From e2155ae540d8881c0ca9b2055db60bc8ed053021 Mon Sep 17 00:00:00 2001 From: "Priket Trivedi (OpenERP Trainee)" Date: Tue, 16 Jul 2013 14:22:31 +0530 Subject: [PATCH 01/18] [IMP] mail in add class to set margin and change pixel for filed bzr revid: trivedi.pariket@gmail.com-20130716085231-8qe107fvcm6rwmj4 --- addons/mail/static/src/css/mail.css | 3 +++ addons/mail/wizard/mail_compose_message_view.xml | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/addons/mail/static/src/css/mail.css b/addons/mail/static/src/css/mail.css index 211133afaf8..a0c60e548b6 100644 --- a/addons/mail/static/src/css/mail.css +++ b/addons/mail/static/src/css/mail.css @@ -53,6 +53,9 @@ .openerp .oe_mail > .oe_thread{ margin-left: 0px; } +.openerp .oe_inline.oe_compose_recipients { + margin-top: -2px; +} /* ---------------- MESSAGES ------------------ */ diff --git a/addons/mail/wizard/mail_compose_message_view.xml b/addons/mail/wizard/mail_compose_message_view.xml index 1ca07b6a94c..2b29d774e77 100644 --- a/addons/mail/wizard/mail_compose_message_view.xml +++ b/addons/mail/wizard/mail_compose_message_view.xml @@ -31,7 +31,7 @@ attrs="{'invisible':[('composition_mode', '=', 'mass_mail')]}"> Followers of - + and Date: Tue, 16 Jul 2013 17:41:24 +0800 Subject: [PATCH 02/18] [IMP] change a reply private discussion Document in chatter and remove a author notified of its own messages bzr revid: mehulmehta008@gmail.com-20130716094124-ksigo91x3njgdj4f --- addons/mail/static/src/xml/mail.xml | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) diff --git a/addons/mail/static/src/xml/mail.xml b/addons/mail/static/src/xml/mail.xml index 94ee1ff452f..318a0f5860a 100644 --- a/addons/mail/static/src/xml/mail.xml +++ b/addons/mail/static/src/xml/mail.xml @@ -121,21 +121,23 @@ To: - + Followers of My Followers Followers of this document - and - - - - - + + and + + + + + + , others... From 5d4f89f9d67b24446c5c88174bc6d61051599adb Mon Sep 17 00:00:00 2001 From: "Atul Patel (OpenERP)" Date: Tue, 23 Jul 2013 11:19:26 +0530 Subject: [PATCH 03/18] [IMP]: check is_author condition bzr revid: atp@tinyerp.com-20130723054926-4t0whshbgcrkql3h --- addons/mail/static/src/xml/mail.xml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/addons/mail/static/src/xml/mail.xml b/addons/mail/static/src/xml/mail.xml index 318a0f5860a..b14b5a5d3ce 100644 --- a/addons/mail/static/src/xml/mail.xml +++ b/addons/mail/static/src/xml/mail.xml @@ -128,10 +128,10 @@ Followers of this document + and - - and + @@ -139,6 +139,7 @@ + , others... <<< From 48c68c3a997a2bc1d32bd6aeb6a47a03cf0eb924 Mon Sep 17 00:00:00 2001 From: "Atul Patel (OpenERP)" Date: Tue, 23 Jul 2013 11:25:11 +0530 Subject: [PATCH 04/18] [FIX]: Fix private message partnerid problem and display and when no author bzr revid: atp@tinyerp.com-20130723055511-edtutz2au78rcinx --- addons/mail/static/src/js/mail.js | 1 + addons/mail/static/src/xml/mail.xml | 4 ++-- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/addons/mail/static/src/js/mail.js b/addons/mail/static/src/js/mail.js index 5d54a6acc48..1715b7b0368 100644 --- a/addons/mail/static/src/js/mail.js +++ b/addons/mail/static/src/js/mail.js @@ -1235,6 +1235,7 @@ openerp.mail = function (session) { this.last_id = datasets.last_id || false; this.parent_id = datasets.parent_id || false; this.is_private = datasets.is_private || false; + this.is_author = datasets.is_author || false, this.author_id = datasets.author_id || false; this.thread_level = (datasets.thread_level+1) || 0; datasets.partner_ids = datasets.partner_ids || []; diff --git a/addons/mail/static/src/xml/mail.xml b/addons/mail/static/src/xml/mail.xml index b14b5a5d3ce..05a3b61d9f3 100644 --- a/addons/mail/static/src/xml/mail.xml +++ b/addons/mail/static/src/xml/mail.xml @@ -128,7 +128,7 @@ Followers of this document - and + and @@ -139,7 +139,7 @@ - + , others... <<< From 2706328ca43a02196bd1b4766d2e04718a8cf1ed Mon Sep 17 00:00:00 2001 From: "Atul Patel (OpenERP)" Date: Thu, 25 Jul 2013 12:49:39 +0530 Subject: [PATCH 05/18] [IMP] mail: Pass current user partner id into datasets and get it into template. add author also for private mail. bzr revid: atp@tinyerp.com-20130725071939-9lmuhfgte987nu03 --- addons/mail/mail_message.py | 1 + addons/mail/static/src/js/mail.js | 7 ++++--- addons/mail/static/src/xml/mail.xml | 7 +++---- addons/mail/wizard/mail_compose_message.py | 6 +++--- 4 files changed, 11 insertions(+), 10 deletions(-) diff --git a/addons/mail/mail_message.py b/addons/mail/mail_message.py index 9d6829f3f6e..df8ced65177 100644 --- a/addons/mail/mail_message.py +++ b/addons/mail/mail_message.py @@ -375,6 +375,7 @@ class mail_message(osv.Model): 'author_id': author, 'partner_ids': partner_ids, 'attachment_ids': attachment_ids, + 'user_pid': pid }) return True diff --git a/addons/mail/static/src/js/mail.js b/addons/mail/static/src/js/mail.js index 1715b7b0368..b77aa7e111b 100644 --- a/addons/mail/static/src/js/mail.js +++ b/addons/mail/static/src/js/mail.js @@ -234,7 +234,7 @@ openerp.mail = function (session) { this.attachment_ids = datasets.attachment_ids || [], this.partner_ids = datasets.partner_ids || []; this.date = datasets.date; - + this.user_pid = datasets.user_pid || false; this.format_data(); // update record_name: Partner profile @@ -564,6 +564,7 @@ openerp.mail = function (session) { 'default_partner_ids': partner_ids, 'mail_post_autofollow': true, 'mail_post_autofollow_partner_ids': partner_ids, + 'is_private': self.is_private }; if (self.is_log) { _.extend(context, {'mail_compose_log': true}); @@ -772,7 +773,7 @@ openerp.mail = function (session) { // if clicked: call for suggested recipients if (event.type == 'click') { this.is_log = $input.hasClass('oe_compose_log'); - suggested_partners = this.parent_thread.ds_thread.call('message_get_suggested_recipients', [[this.context.default_res_id]]).done(function (additional_recipients) { + suggested_partners = this.parent_thread.ds_thread.call('message_get_suggested_recipients', [[this.context.default_res_id], this.context]).done(function (additional_recipients) { var thread_recipients = additional_recipients[self.context.default_res_id]; _.each(thread_recipients, function (recipient) { var parsed_email = mail.ChatterUtils.parse_email(recipient[1]); @@ -1242,9 +1243,9 @@ openerp.mail = function (session) { 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.user_pid = datasets.user_pid || false; this.partner_ids = datasets.partner_ids; this.messages = []; - this.options.flat_mode = (this.options.display_indented_thread - this.thread_level > 0); // object compose message diff --git a/addons/mail/static/src/xml/mail.xml b/addons/mail/static/src/xml/mail.xml index 05a3b61d9f3..147671514bc 100644 --- a/addons/mail/static/src/xml/mail.xml +++ b/addons/mail/static/src/xml/mail.xml @@ -128,18 +128,17 @@ Followers of this document - and - + + and - + - , others... <<< diff --git a/addons/mail/wizard/mail_compose_message.py b/addons/mail/wizard/mail_compose_message.py index 7685a27f1ed..c2a491d59a8 100644 --- a/addons/mail/wizard/mail_compose_message.py +++ b/addons/mail/wizard/mail_compose_message.py @@ -66,14 +66,12 @@ class mail_compose_message(osv.TransientModel): if context is None: context = {} result = super(mail_compose_message, self).default_get(cr, uid, fields, context=context) - # get some important values from context composition_mode = context.get('default_composition_mode', context.get('mail.compose.message.mode')) model = context.get('default_model', context.get('active_model')) res_id = context.get('default_res_id', context.get('active_id')) message_id = context.get('default_parent_id', context.get('message_id', context.get('active_id'))) active_ids = context.get('active_ids') - # get default values according to the composition mode if composition_mode == 'reply': vals = self.get_message_data(cr, uid, message_id, context=context) @@ -206,7 +204,9 @@ class mail_compose_message(osv.TransientModel): # get partner_ids from original message partner_ids = [partner.id for partner in message_data.partner_ids] if message_data.partner_ids else [] partner_ids += context.get('default_partner_ids', []) - + if context.get('is_private',False) and message_data.author_id : #check message is private then add author also in partner list. + partner_ids += [message_data.author_id.id] + # update the result result = { 'record_name': message_data.record_name, From 4468117ad524d5ee88edfd096bec88545c366f76 Mon Sep 17 00:00:00 2001 From: "Atul Patel (OpenERP)" Date: Thu, 25 Jul 2013 13:02:49 +0530 Subject: [PATCH 06/18] [FIX] mail: remove is author unused assignment. bzr revid: atp@tinyerp.com-20130725073249-t1fvurzfdp0wh8j3 --- addons/mail/static/src/js/mail.js | 1 - 1 file changed, 1 deletion(-) diff --git a/addons/mail/static/src/js/mail.js b/addons/mail/static/src/js/mail.js index b77aa7e111b..a901e77c842 100644 --- a/addons/mail/static/src/js/mail.js +++ b/addons/mail/static/src/js/mail.js @@ -1236,7 +1236,6 @@ openerp.mail = function (session) { this.last_id = datasets.last_id || false; this.parent_id = datasets.parent_id || false; this.is_private = datasets.is_private || false; - this.is_author = datasets.is_author || false, this.author_id = datasets.author_id || false; this.thread_level = (datasets.thread_level+1) || 0; datasets.partner_ids = datasets.partner_ids || []; From 7810f03c56a00952dd0b59f9e933532e21bea7af Mon Sep 17 00:00:00 2001 From: "Atul Patel (OpenERP)" Date: Thu, 25 Jul 2013 13:03:54 +0530 Subject: [PATCH 07/18] [REM]: Remove unused space bzr revid: atp@tinyerp.com-20130725073354-uq3b2r0io1wsbdku --- addons/mail/wizard/mail_compose_message.py | 1 - 1 file changed, 1 deletion(-) diff --git a/addons/mail/wizard/mail_compose_message.py b/addons/mail/wizard/mail_compose_message.py index c2a491d59a8..0f0446dd731 100644 --- a/addons/mail/wizard/mail_compose_message.py +++ b/addons/mail/wizard/mail_compose_message.py @@ -206,7 +206,6 @@ class mail_compose_message(osv.TransientModel): partner_ids += context.get('default_partner_ids', []) if context.get('is_private',False) and message_data.author_id : #check message is private then add author also in partner list. partner_ids += [message_data.author_id.id] - # update the result result = { 'record_name': message_data.record_name, From ccbb4335ec1c7fe5faef2d55898ecce5b661d35b Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Wed, 28 Aug 2013 05:03:49 +0000 Subject: [PATCH 08/18] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130828050349-f8ozlg2e354f87ge --- openerp/addons/base/i18n/ab.po | 4 +- openerp/addons/base/i18n/af.po | 4 +- openerp/addons/base/i18n/am.po | 4 +- openerp/addons/base/i18n/ar.po | 4 +- openerp/addons/base/i18n/bg.po | 4 +- openerp/addons/base/i18n/bs.po | 4 +- openerp/addons/base/i18n/ca.po | 4 +- openerp/addons/base/i18n/cs.po | 4 +- openerp/addons/base/i18n/da.po | 4 +- openerp/addons/base/i18n/de.po | 4 +- openerp/addons/base/i18n/el.po | 4 +- openerp/addons/base/i18n/en_GB.po | 4 +- openerp/addons/base/i18n/es.po | 4 +- openerp/addons/base/i18n/es_AR.po | 4 +- openerp/addons/base/i18n/es_CL.po | 4 +- openerp/addons/base/i18n/es_CR.po | 4 +- openerp/addons/base/i18n/es_DO.po | 4 +- openerp/addons/base/i18n/es_EC.po | 4 +- openerp/addons/base/i18n/es_MX.po | 4 +- openerp/addons/base/i18n/es_VE.po | 4 +- openerp/addons/base/i18n/et.po | 4 +- openerp/addons/base/i18n/eu.po | 4 +- openerp/addons/base/i18n/fa.po | 4 +- openerp/addons/base/i18n/fa_AF.po | 4 +- openerp/addons/base/i18n/fi.po | 4 +- openerp/addons/base/i18n/fr.po | 138 +++++++++++++------ openerp/addons/base/i18n/fr_CA.po | 4 +- openerp/addons/base/i18n/gl.po | 4 +- openerp/addons/base/i18n/gu.po | 4 +- openerp/addons/base/i18n/he.po | 4 +- openerp/addons/base/i18n/hi.po | 4 +- openerp/addons/base/i18n/hr.po | 4 +- openerp/addons/base/i18n/hu.po | 4 +- openerp/addons/base/i18n/hy.po | 4 +- openerp/addons/base/i18n/id.po | 4 +- openerp/addons/base/i18n/is.po | 4 +- openerp/addons/base/i18n/it.po | 4 +- openerp/addons/base/i18n/ja.po | 4 +- openerp/addons/base/i18n/ka.po | 4 +- openerp/addons/base/i18n/kk.po | 4 +- openerp/addons/base/i18n/ko.po | 4 +- openerp/addons/base/i18n/lt.po | 4 +- openerp/addons/base/i18n/lv.po | 4 +- openerp/addons/base/i18n/mk.po | 4 +- openerp/addons/base/i18n/mn.po | 4 +- openerp/addons/base/i18n/nb.po | 4 +- openerp/addons/base/i18n/nl.po | 6 +- openerp/addons/base/i18n/nl_BE.po | 4 +- openerp/addons/base/i18n/pl.po | 4 +- openerp/addons/base/i18n/pt.po | 199 +++++++++++++++++++++++---- openerp/addons/base/i18n/pt_BR.po | 4 +- openerp/addons/base/i18n/ro.po | 4 +- openerp/addons/base/i18n/ru.po | 4 +- openerp/addons/base/i18n/sk.po | 4 +- openerp/addons/base/i18n/sl.po | 4 +- openerp/addons/base/i18n/sq.po | 4 +- openerp/addons/base/i18n/sr.po | 4 +- openerp/addons/base/i18n/sr@latin.po | 4 +- openerp/addons/base/i18n/sv.po | 4 +- openerp/addons/base/i18n/th.po | 4 +- openerp/addons/base/i18n/tlh.po | 4 +- openerp/addons/base/i18n/tr.po | 4 +- openerp/addons/base/i18n/uk.po | 4 +- openerp/addons/base/i18n/ur.po | 4 +- openerp/addons/base/i18n/vi.po | 4 +- openerp/addons/base/i18n/zh_CN.po | 31 ++++- openerp/addons/base/i18n/zh_HK.po | 4 +- openerp/addons/base/i18n/zh_TW.po | 4 +- 68 files changed, 427 insertions(+), 203 deletions(-) diff --git a/openerp/addons/base/i18n/ab.po b/openerp/addons/base/i18n/ab.po index ec61ede3227..c7e4553e1f0 100644 --- a/openerp/addons/base/i18n/ab.po +++ b/openerp/addons/base/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-08-14 04:41+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:52+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/af.po b/openerp/addons/base/i18n/af.po index 39446faec0c..54e85b1468e 100644 --- a/openerp/addons/base/i18n/af.po +++ b/openerp/addons/base/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-08-14 04:41+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:52+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/am.po b/openerp/addons/base/i18n/am.po index 91bbf7f0daa..d61da3af120 100644 --- a/openerp/addons/base/i18n/am.po +++ b/openerp/addons/base/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-08-14 04:42+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:52+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/ar.po b/openerp/addons/base/i18n/ar.po index a53dc45722e..d6affded056 100644 --- a/openerp/addons/base/i18n/ar.po +++ b/openerp/addons/base/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-08-14 04:42+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:53+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/bg.po b/openerp/addons/base/i18n/bg.po index fb0a800507d..15f6a036286 100644 --- a/openerp/addons/base/i18n/bg.po +++ b/openerp/addons/base/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-08-14 04:43+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:53+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/bs.po b/openerp/addons/base/i18n/bs.po index 198315c11e3..64f59c38c63 100644 --- a/openerp/addons/base/i18n/bs.po +++ b/openerp/addons/base/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-08-14 04:42+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:53+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/ca.po b/openerp/addons/base/i18n/ca.po index 9d825a522e7..c4c60ade550 100644 --- a/openerp/addons/base/i18n/ca.po +++ b/openerp/addons/base/i18n/ca.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-08-14 04:43+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:53+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/cs.po b/openerp/addons/base/i18n/cs.po index a5b30affa81..09ce234b05b 100644 --- a/openerp/addons/base/i18n/cs.po +++ b/openerp/addons/base/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-08-14 04:43+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:54+0000\n" +"X-Generator: Launchpad (build 16738)\n" "X-Poedit-Language: Czech\n" #. module: base diff --git a/openerp/addons/base/i18n/da.po b/openerp/addons/base/i18n/da.po index ce93e8e3f77..d2b089c8b82 100644 --- a/openerp/addons/base/i18n/da.po +++ b/openerp/addons/base/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-08-14 04:43+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:54+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/de.po b/openerp/addons/base/i18n/de.po index 9f644f41dfc..7d5f99e5752 100644 --- a/openerp/addons/base/i18n/de.po +++ b/openerp/addons/base/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-08-14 04:45+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:55+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/el.po b/openerp/addons/base/i18n/el.po index 30a6960b9e4..ebcde10ec7c 100644 --- a/openerp/addons/base/i18n/el.po +++ b/openerp/addons/base/i18n/el.po @@ -12,8 +12,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-14 04:45+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:55+0000\n" +"X-Generator: Launchpad (build 16738)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/openerp/addons/base/i18n/en_GB.po b/openerp/addons/base/i18n/en_GB.po index daaaa614549..1ae56992180 100644 --- a/openerp/addons/base/i18n/en_GB.po +++ b/openerp/addons/base/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-08-14 04:52+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:02+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/es.po b/openerp/addons/base/i18n/es.po index 423466f16f2..97f973eb76e 100644 --- a/openerp/addons/base/i18n/es.po +++ b/openerp/addons/base/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-08-14 04:50+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:59+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/es_AR.po b/openerp/addons/base/i18n/es_AR.po index dd64f3f8f5b..7c681644bca 100644 --- a/openerp/addons/base/i18n/es_AR.po +++ b/openerp/addons/base/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-08-14 04:52+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:01+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/es_CL.po b/openerp/addons/base/i18n/es_CL.po index 4048451f876..d04ad38bb56 100644 --- a/openerp/addons/base/i18n/es_CL.po +++ b/openerp/addons/base/i18n/es_CL.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-08-14 04:53+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:02+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/es_CR.po b/openerp/addons/base/i18n/es_CR.po index 544d126e6b1..7c86877b84b 100644 --- a/openerp/addons/base/i18n/es_CR.po +++ b/openerp/addons/base/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-08-14 04:53+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:02+0000\n" +"X-Generator: Launchpad (build 16738)\n" "Language: \n" #. module: base diff --git a/openerp/addons/base/i18n/es_DO.po b/openerp/addons/base/i18n/es_DO.po index 418b97889a7..4793cc45aa6 100644 --- a/openerp/addons/base/i18n/es_DO.po +++ b/openerp/addons/base/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-08-14 04:52+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:02+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/es_EC.po b/openerp/addons/base/i18n/es_EC.po index baef7db0427..8677fef1739 100644 --- a/openerp/addons/base/i18n/es_EC.po +++ b/openerp/addons/base/i18n/es_EC.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-08-14 04:54+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:03+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/es_MX.po b/openerp/addons/base/i18n/es_MX.po index f41f26a1189..b4be0aa1809 100644 --- a/openerp/addons/base/i18n/es_MX.po +++ b/openerp/addons/base/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-08-14 04:54+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:03+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/es_VE.po b/openerp/addons/base/i18n/es_VE.po index 9be61b300e3..7c04cd500a2 100644 --- a/openerp/addons/base/i18n/es_VE.po +++ b/openerp/addons/base/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-08-14 04:52+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:01+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/et.po b/openerp/addons/base/i18n/et.po index 76820669016..6ee871c6f59 100644 --- a/openerp/addons/base/i18n/et.po +++ b/openerp/addons/base/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-08-14 04:44+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:54+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/eu.po b/openerp/addons/base/i18n/eu.po index db7a59d1018..a391b66258e 100644 --- a/openerp/addons/base/i18n/eu.po +++ b/openerp/addons/base/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-08-14 04:42+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:53+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/fa.po b/openerp/addons/base/i18n/fa.po index d90be33b5d0..c288f1d8ff8 100644 --- a/openerp/addons/base/i18n/fa.po +++ b/openerp/addons/base/i18n/fa.po @@ -9,8 +9,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-14 04:48+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:58+0000\n" +"X-Generator: Launchpad (build 16738)\n" "X-Poedit-Country: IRAN, ISLAMIC REPUBLIC OF\n" "X-Poedit-Language: Persian\n" diff --git a/openerp/addons/base/i18n/fa_AF.po b/openerp/addons/base/i18n/fa_AF.po index c4905255f33..0ae130cbb86 100644 --- a/openerp/addons/base/i18n/fa_AF.po +++ b/openerp/addons/base/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-08-14 04:54+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:03+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/fi.po b/openerp/addons/base/i18n/fi.po index 92b41f5c675..0cabf5814e8 100644 --- a/openerp/addons/base/i18n/fi.po +++ b/openerp/addons/base/i18n/fi.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-08-14 04:44+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:54+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/fr.po b/openerp/addons/base/i18n/fr.po index 79b5a120706..20624d30d25 100644 --- a/openerp/addons/base/i18n/fr.po +++ b/openerp/addons/base/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-08-14 04:44+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:54+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -8819,7 +8819,7 @@ msgstr "Traduisible" #. module: base #: help:base.language.import,code:0 msgid "ISO Language and Country code, e.g. en_US" -msgstr "" +msgstr "Code ISO de la langue et du pays, ex: en_US" #. module: base #: model:res.country,name:base.vn @@ -9204,7 +9204,7 @@ msgstr "Cette fenêtre" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_anonymous msgid "Anonymous portal" -msgstr "" +msgstr "Portail anonyme" #. module: base #: field:base.language.export,format:0 @@ -9261,7 +9261,7 @@ msgstr "Mot de passe" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_claim msgid "Portal Claim" -msgstr "" +msgstr "Portail Réclamation" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_pe @@ -9275,6 +9275,9 @@ msgid "" "Allow users to login through OAuth2 Provider.\n" "=============================================\n" msgstr "" +"\n" +"Permettre aux utilisateurs de se connecter via un fournisseur OAuth2.\n" +"=============================================\n" #. module: base #: model:ir.actions.act_window,name:base.action_model_fields @@ -9528,7 +9531,7 @@ msgstr "Comptabilité financière et analytique" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_project msgid "Portal Project" -msgstr "" +msgstr "Portail Projet" #. module: base #: model:res.country,name:base.cc @@ -9690,6 +9693,8 @@ msgid "" "Select this if you want to set company's address information for this " "contact" msgstr "" +"Sélecionnez ceci si vous voulez indiquer l'adresse de la société de ce " +"contact." #. module: base #: field:ir.default,field_name:0 @@ -9728,6 +9733,8 @@ msgid "" "This field holds the image used as avatar for this contact, limited to " "1024x1024px" msgstr "" +"Ce champ contient l'image utilisée comme photo d'identité pour ce contact, " +"de taille limitée à 1024x1024px." #. module: base #: model:res.country,name:base.to @@ -9942,6 +9949,9 @@ msgid "" "The kernel of OpenERP, needed for all installation.\n" "===================================================\n" msgstr "" +"\n" +"Le noyau d'OpenERP, nécessaire pour toute installation.\n" +"===================================================\n" #. module: base #: model:ir.model,name:base.model_ir_server_object_lines @@ -10050,7 +10060,7 @@ msgstr "Hong-Kong" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_sale msgid "Portal Sale" -msgstr "" +msgstr "Portail Vente" #. module: base #: field:ir.default,ref_id:0 @@ -10288,6 +10298,9 @@ msgid "" "If the selected language is loaded in the system, all documents related to " "this contact will be printed in this language. If not, it will be English." msgstr "" +"Si la langue sélectionnée est chargée dans le système, tous les documents " +"pour ce contact seront imprimés dans cette langue. Dans le cas contraire, " +"ils le seront en anglais." #. module: base #: model:ir.module.module,description:base.module_hr_evaluation @@ -10502,7 +10515,7 @@ msgstr "Actions multiples" #. module: base #: model:ir.module.module,summary:base.module_mail msgid "Discussions, Mailing Lists, News" -msgstr "" +msgstr "Discussions, listes de diffusion, nouvelles" #. module: base #: model:ir.module.module,description:base.module_fleet @@ -11088,7 +11101,7 @@ msgstr "Raccourcis personnalisés" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_si msgid "Slovenian - Accounting" -msgstr "" +msgstr "Comptabilité - Slovénie" #. module: base #: model:ir.module.module,description:base.module_account_cancel @@ -11102,6 +11115,15 @@ msgid "" "If set to true it allows user to cancel entries & invoices.\n" " " msgstr "" +"\n" +"Autoriser l'annulation d'écritures comptables.\n" +"====================================\n" +"\n" +"Ce module ajoute un champ \"Autoriser l'annulation d'écriture\" sur la vue " +"formulaire d'un journal de compte.\n" +"Lorsque ce champ est coché, un utilisateur peut annuler des écritures et des " +"factures.\n" +" " #. module: base #: model:ir.module.module,shortdesc:base.module_plugin @@ -11249,7 +11271,7 @@ msgstr "Annuler" #: code:addons/orm.py:1507 #, python-format msgid "Unknown database identifier '%s'" -msgstr "" +msgstr "Identifiant de base de données inconnu '%s'" #. module: base #: selection:base.language.export,format:0 @@ -11402,7 +11424,7 @@ msgstr "Allemagne" #. module: base #: model:ir.module.module,shortdesc:base.module_auth_oauth msgid "OAuth2 Authentication" -msgstr "" +msgstr "Identification OAuth2" #. module: base #: view:workflow:0 @@ -11581,7 +11603,7 @@ msgstr "Regrouper par..." #. module: base #: view:base.module.update:0 msgid "Module Update Result" -msgstr "" +msgstr "Résultat de la mise à jour des modules" #. module: base #: model:ir.module.module,description:base.module_analytic_contract_hr_expense @@ -11596,7 +11618,7 @@ msgstr "" #. module: base #: field:ir.attachment,store_fname:0 msgid "Stored Filename" -msgstr "" +msgstr "Nom du fichier enregistré" #. module: base #: field:res.partner,use_parent_address:0 @@ -11653,6 +11675,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Cliquez pour ajouter un contact dans votre carnet d'adresses.\n" +"

\n" +"OpenERP vous aide à suivre toutes les activités d'un fournisseur :\n" +"les discussions, l'historique des achats,\n" +"les documents, etc.\n" +"

\n" +" " #. module: base #: model:res.country,name:base.lr @@ -11820,7 +11850,7 @@ msgstr "Unité de l'intervalle" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_stock msgid "Portal Stock" -msgstr "" +msgstr "Portail Stock" #. module: base #: field:workflow.activity,kind:0 @@ -11903,7 +11933,7 @@ msgstr "res.request" #. module: base #: field:res.partner,image_medium:0 msgid "Medium-sized image" -msgstr "" +msgstr "Image de taille moyenne" #. module: base #: view:ir.model:0 @@ -11988,7 +12018,7 @@ msgstr "Règles sur les enregistrements" #. module: base #: view:multi_company.default:0 msgid "Multi Company" -msgstr "" +msgstr "Multi société" #. module: base #: model:ir.module.category,name:base.module_category_portal @@ -12005,7 +12035,7 @@ msgstr "" #: code:addons/base/ir/ir_fields.py:294 #, python-format msgid "See all possible values" -msgstr "" +msgstr "Voir toutes les valeurs possibles" #. module: base #: model:ir.module.module,description:base.module_claim_from_delivery @@ -12066,7 +12096,7 @@ msgstr "Guinée Bissau" #. module: base #: field:ir.actions.report.xml,header:0 msgid "Add RML Header" -msgstr "" +msgstr "Ajouter l'en-tête RML" #. module: base #: help:res.company,rml_footer:0 @@ -12201,7 +12231,7 @@ msgstr "A Faire" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_hr_employees msgid "Portal HR employees" -msgstr "" +msgstr "Portail RH Employés" #. module: base #: selection:base.language.install,lang:0 @@ -12321,6 +12351,8 @@ msgstr "" msgid "" "Please contact your system administrator if you think this is an error." msgstr "" +"Vous pouvez contacter votre administrateur système si vous pensez qu'il " +"s'agit d'une erreur." #. module: base #: code:addons/base/module/module.py:545 @@ -12368,6 +12400,8 @@ msgid "" "One of the documents you are trying to access has been deleted, please try " "again after refreshing." msgstr "" +"L'un des documents que vous voulez consulter a été supprimé : actualisez la " +"page puis réessayez." #. module: base #: model:ir.model,name:base.model_ir_mail_server @@ -12539,7 +12573,7 @@ msgstr "" #. module: base #: help:res.partner,ean13:0 msgid "BarCode" -msgstr "" +msgstr "Code-barres" #. module: base #: help:ir.model.fields,model_id:0 @@ -12561,6 +12595,7 @@ msgstr "Martinique (Française)" #: help:res.partner,is_company:0 msgid "Check if the contact is a company, otherwise it is a person" msgstr "" +"Cochez si ce contact est une société, sinon il s'agit d'un particulier" #. module: base #: view:ir.sequence.type:0 @@ -12570,7 +12605,7 @@ msgstr "Type de séquences" #. module: base #: view:res.partner:0 msgid "Mobile:" -msgstr "" +msgstr "Portable :" #. module: base #: code:addons/base/res/res_bank.py:195 @@ -12637,7 +12672,7 @@ msgstr "" #: code:addons/base/ir/ir_model.py:1031 #, python-format msgid "Permission Denied" -msgstr "" +msgstr "Permission refusée" #. module: base #: field:ir.ui.menu,child_id:0 @@ -12758,7 +12793,7 @@ msgstr "" #. module: base #: model:res.country,name:base.bl msgid "Saint Barthélémy" -msgstr "" +msgstr "Saint Barthélémy" #. module: base #: selection:ir.module.module,license:0 @@ -12830,7 +12865,7 @@ msgstr "Arabe / الْعَرَبيّة" #. module: base #: selection:ir.translation,state:0 msgid "Translated" -msgstr "" +msgstr "Traduit" #. module: base #: model:ir.actions.act_window,name:base.action_inventory_form @@ -12866,7 +12901,7 @@ msgstr "Domaine" #: code:addons/base/ir/ir_fields.py:166 #, python-format msgid "Use '1' for yes and '0' for no" -msgstr "" +msgstr "Utilisez \"1\" pour oui et \"0\" pour non" #. module: base #: model:ir.module.module,shortdesc:base.module_marketing_campaign @@ -13004,6 +13039,9 @@ msgid "" "Allow users to sign up through OAuth2 Provider.\n" "===============================================\n" msgstr "" +"\n" +"Permettre aux utilisateurs de se connecter via un fournisseur OAuth2.\n" +"===============================================\n" #. module: base #: field:change.password.user,user_id:0 @@ -13062,7 +13100,7 @@ msgstr "Grenade" #. module: base #: help:res.partner,customer:0 msgid "Check this box if this contact is a customer." -msgstr "" +msgstr "Cochez cette case si le contact est un client." #. module: base #: view:ir.actions.server:0 @@ -13142,7 +13180,7 @@ msgstr "" #: field:ir.actions.report.xml,report_rml_content:0 #: field:ir.actions.report.xml,report_rml_content_data:0 msgid "RML Content" -msgstr "" +msgstr "Contenu RML" #. module: base #: view:res.lang:0 @@ -13416,7 +13454,7 @@ msgstr "ir.model.relation" #. module: base #: model:ir.module.module,shortdesc:base.module_account_check_writing msgid "Check Writing" -msgstr "" +msgstr "Écriture de chèques" #. module: base #: model:ir.module.module,description:base.module_plugin_outlook @@ -13641,7 +13679,7 @@ msgstr "Grande Bretagne - Comptabilité" #. module: base #: model:res.partner.title,shortcut:base.res_partner_title_madam msgid "Mrs." -msgstr "" +msgstr "Mme" #. module: base #: code:addons/base/ir/ir_model.py:432 @@ -13663,6 +13701,7 @@ msgstr "Réf. utilisateur" #, python-format msgid "'%s' does not seem to be a valid datetime for field '%%(field)s'" msgstr "" +"'%s' ne semble pas être une date/heure valide pour le champ '%%(fields)s'" #. module: base #: model:res.partner.bank.type.field,name:base.bank_normal_field_bic @@ -13813,7 +13852,7 @@ msgstr "Informations sur la connexion" #. module: base #: model:res.partner.title,name:base.res_partner_title_prof msgid "Professor" -msgstr "" +msgstr "Professeur" #. module: base #: model:res.country,name:base.hm @@ -13842,7 +13881,7 @@ msgstr "Vous aide à gérer vos devis, commandes et factures" #. module: base #: field:res.users,login_date:0 msgid "Latest connection" -msgstr "" +msgstr "Dernière connexion" #. module: base #: field:res.groups,implied_ids:0 @@ -13859,7 +13898,7 @@ msgstr "Sélection" #: model:ir.actions.act_window,name:base.change_password_wizard_action #: view:res.users:0 msgid "Change Password" -msgstr "" +msgstr "Modifier le mot de passe" #. module: base #: model:ir.module.module,description:base.module_l10n_es @@ -13927,7 +13966,7 @@ msgstr "Binaire" #. module: base #: model:res.partner.title,name:base.res_partner_title_doctor msgid "Doctor" -msgstr "" +msgstr "Docteur" #. module: base #: model:ir.module.module,description:base.module_mrp_repair @@ -14136,12 +14175,12 @@ msgstr "Mois de création" #. module: base #: field:ir.module.module,demo:0 msgid "Demo Data" -msgstr "" +msgstr "Données de démonstration" #. module: base #: model:res.partner.title,shortcut:base.res_partner_title_mister msgid "Mr." -msgstr "" +msgstr "M." #. module: base #: model:res.country,name:base.mv @@ -14261,7 +14300,7 @@ msgstr "" #. module: base #: field:ir.actions.report.xml,report_sxw:0 msgid "SXW Path" -msgstr "" +msgstr "Emplacement SXW" #. module: base #: model:ir.module.module,description:base.module_account_asset @@ -15480,7 +15519,7 @@ msgstr "Modules d'installation" #. module: base #: model:ir.ui.menu,name:base.menu_import_crm msgid "Import & Synchronize" -msgstr "" +msgstr "Importer et synchroniser" #. module: base #: view:res.partner:0 @@ -15680,7 +15719,7 @@ msgstr "Action due plusieurs documents" #: model:ir.actions.act_window,name:base.action_partner_title_partner #: model:ir.ui.menu,name:base.menu_partner_title_partner msgid "Titles" -msgstr "" +msgstr "Civilités et Formes juridiques" #. module: base #: model:ir.module.module,description:base.module_anonymization @@ -16288,7 +16327,7 @@ msgstr "Accès" #: field:res.partner,vat:0 #, python-format msgid "TIN" -msgstr "" +msgstr "Numéro fiscal" #. module: base #: model:res.country,name:base.aw @@ -16388,7 +16427,7 @@ msgstr "Services après vente" #. module: base #: field:base.language.import,code:0 msgid "ISO Code" -msgstr "" +msgstr "Code ISO" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_fr @@ -16567,6 +16606,9 @@ msgid "" "Allow users to login through OpenID.\n" "====================================\n" msgstr "" +"\n" +"Permettre aux utilisateurs de se connecter via OpenID.\n" +"====================================\n" #. module: base #: help:ir.mail_server,smtp_port:0 @@ -16809,7 +16851,7 @@ msgstr "Canada - Comptabilité" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_co msgid "Colombian - Accounting" -msgstr "" +msgstr "Colombie - Comptabilité" #. module: base #: model:ir.module.module,description:base.module_account_voucher @@ -16991,7 +17033,7 @@ msgstr "Mise à jour du système" #: field:ir.actions.report.xml,report_sxw_content:0 #: field:ir.actions.report.xml,report_sxw_content_data:0 msgid "SXW Content" -msgstr "" +msgstr "Contenu SXW" #. module: base #: field:ir.attachment,file_size:0 @@ -17038,7 +17080,7 @@ msgstr "Informations générales" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_pt msgid "Portugal - Chart of Accounts" -msgstr "" +msgstr "Portugal - Plan comptable" #. module: base #: field:ir.model.data,complete_name:0 @@ -17088,6 +17130,8 @@ msgid "" "Tax Identification Number. Check the box if this contact is subjected to " "taxes. Used by the some of the legal statements." msgstr "" +"Numéro fiscal. Cochez cette case si ce contact est soumis au paiement de " +"taxe. Utilisé dans certains documents légaux." #. module: base #: field:res.partner.bank,partner_id:0 @@ -17269,6 +17313,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Cliquez pour ajouter un contact dans votre carnet d'adresses.\n" +"

\n" +"OpenERP vous aide à suivre toutes les activités d'un client :\n" +"les discussions, l'historique des opportunités,\n" +"les documents, etc.\n" +"

\n" +" " #. module: base #: model:res.partner.category,name:base.res_partner_category_2 diff --git a/openerp/addons/base/i18n/fr_CA.po b/openerp/addons/base/i18n/fr_CA.po index 341e5213e0f..9e19bf23c19 100644 --- a/openerp/addons/base/i18n/fr_CA.po +++ b/openerp/addons/base/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-08-14 04:53+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:02+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/gl.po b/openerp/addons/base/i18n/gl.po index 30c7f70e51c..dcc122c3b06 100644 --- a/openerp/addons/base/i18n/gl.po +++ b/openerp/addons/base/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-08-14 04:45+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:55+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/gu.po b/openerp/addons/base/i18n/gu.po index 38ab4fd68b3..977d4e6cfc9 100644 --- a/openerp/addons/base/i18n/gu.po +++ b/openerp/addons/base/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-08-14 04:45+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:55+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/he.po b/openerp/addons/base/i18n/he.po index e1a8e8b28e0..1326ac09496 100644 --- a/openerp/addons/base/i18n/he.po +++ b/openerp/addons/base/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-08-14 04:45+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:55+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/hi.po b/openerp/addons/base/i18n/hi.po index d3e7bbdbc83..8c7fb8d2ed0 100644 --- a/openerp/addons/base/i18n/hi.po +++ b/openerp/addons/base/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-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:56+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/hr.po b/openerp/addons/base/i18n/hr.po index 04d1c6b1fe1..a58909f5a62 100644 --- a/openerp/addons/base/i18n/hr.po +++ b/openerp/addons/base/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-08-14 04:49+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:59+0000\n" +"X-Generator: Launchpad (build 16738)\n" "Language: hr\n" #. module: base diff --git a/openerp/addons/base/i18n/hu.po b/openerp/addons/base/i18n/hu.po index 8cf2842ba53..c1f2b8d2bea 100644 --- a/openerp/addons/base/i18n/hu.po +++ b/openerp/addons/base/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-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:56+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/hy.po b/openerp/addons/base/i18n/hy.po index 861a622d7db..88d3d3a1d45 100644 --- a/openerp/addons/base/i18n/hy.po +++ b/openerp/addons/base/i18n/hy.po @@ -9,8 +9,8 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-14 04:42+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:53+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/id.po b/openerp/addons/base/i18n/id.po index eb51d42e0f1..949189bff13 100644 --- a/openerp/addons/base/i18n/id.po +++ b/openerp/addons/base/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-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:56+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/is.po b/openerp/addons/base/i18n/is.po index 2bbf4901d3f..732697d2d59 100644 --- a/openerp/addons/base/i18n/is.po +++ b/openerp/addons/base/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-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:56+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/it.po b/openerp/addons/base/i18n/it.po index f27b70834cd..41d45332310 100644 --- a/openerp/addons/base/i18n/it.po +++ b/openerp/addons/base/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-08-14 04:46+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:56+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/ja.po b/openerp/addons/base/i18n/ja.po index 93748b20b6d..d06a60cf9be 100644 --- a/openerp/addons/base/i18n/ja.po +++ b/openerp/addons/base/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-08-14 04:47+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:56+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/ka.po b/openerp/addons/base/i18n/ka.po index 528a592b10e..d81636cd39f 100644 --- a/openerp/addons/base/i18n/ka.po +++ b/openerp/addons/base/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-08-14 04:44+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:55+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/kk.po b/openerp/addons/base/i18n/kk.po index 6a759e90685..5a7fbd11ad0 100644 --- a/openerp/addons/base/i18n/kk.po +++ b/openerp/addons/base/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-08-14 04:47+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:57+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/ko.po b/openerp/addons/base/i18n/ko.po index 3a1b3dfd143..d434b66dc75 100644 --- a/openerp/addons/base/i18n/ko.po +++ b/openerp/addons/base/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-08-14 04:47+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:57+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/lt.po b/openerp/addons/base/i18n/lt.po index b0e4f48ad68..d9155bf9667 100644 --- a/openerp/addons/base/i18n/lt.po +++ b/openerp/addons/base/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-08-14 04:47+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:57+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/lv.po b/openerp/addons/base/i18n/lv.po index c7274dd1607..3fa7f2d978f 100644 --- a/openerp/addons/base/i18n/lv.po +++ b/openerp/addons/base/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-08-14 04:47+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:57+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/mk.po b/openerp/addons/base/i18n/mk.po index 1b2a43a92bf..1f36dc7e461 100644 --- a/openerp/addons/base/i18n/mk.po +++ b/openerp/addons/base/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-08-14 04:47+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:57+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/mn.po b/openerp/addons/base/i18n/mn.po index 8905dcc6ac8..1d394c26fe7 100644 --- a/openerp/addons/base/i18n/mn.po +++ b/openerp/addons/base/i18n/mn.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-08-14 04:48+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:57+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/nb.po b/openerp/addons/base/i18n/nb.po index d32cb1bd325..a0bc304dc90 100644 --- a/openerp/addons/base/i18n/nb.po +++ b/openerp/addons/base/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-08-14 04:48+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:58+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/nl.po b/openerp/addons/base/i18n/nl.po index 38738ec3617..d5540e4595e 100644 --- a/openerp/addons/base/i18n/nl.po +++ b/openerp/addons/base/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-08-14 04:44+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:54+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -9702,7 +9702,7 @@ msgstr "Gebruikersinterface" #. module: base #: model:ir.module.module,shortdesc:base.module_mrp_byproduct msgid "MRP Byproducts" -msgstr "productie bijproducten" +msgstr "Productie bijproducten" #. module: base #: field:res.request,ref_partner_id:0 diff --git a/openerp/addons/base/i18n/nl_BE.po b/openerp/addons/base/i18n/nl_BE.po index 8087fb98b80..7a6b8ecf4dc 100644 --- a/openerp/addons/base/i18n/nl_BE.po +++ b/openerp/addons/base/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-08-14 04:53+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:02+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/pl.po b/openerp/addons/base/i18n/pl.po index a6edc2f4eff..49c50189bc7 100644 --- a/openerp/addons/base/i18n/pl.po +++ b/openerp/addons/base/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-08-14 04:48+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:58+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/pt.po b/openerp/addons/base/i18n/pt.po index 238f6d324a8..f08eea935da 100644 --- a/openerp/addons/base/i18n/pt.po +++ b/openerp/addons/base/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-08-14 04:48+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:58+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -24,6 +24,10 @@ msgid "" "================================================\n" " " msgstr "" +"\n" +"Módulo para Verificar a Escrita e Verificar a Impresaão.\n" +"================================================\n" +" " #. module: base #: model:res.country,name:base.sh @@ -122,6 +126,18 @@ msgid "" " * Product Attributes\n" " " msgstr "" +"\n" +"Um modulo que acrescenta a identificação de fabricantes e atributos ao " +"formulário de produtos.\n" +"====================================================================\n" +"\n" +"Agora é possível definir o seguinte para cada produto:\n" +"\n" +" Fabricante\n" +" Nome do produto atribuído pelo fabricante\n" +" Código do produto atribuído pelo fabricante\n" +" Atributos do produto\n" +" " #. module: base #: field:ir.actions.client,params:0 @@ -135,6 +151,8 @@ msgid "" "The module adds google user in res user.\n" "========================================\n" msgstr "" +"\n" +"O modulo acrescenta utilizador google em \"res user\".\n" #. module: base #: help:res.partner,employee:0 @@ -170,7 +188,7 @@ msgstr "Janela alvo" #. module: base #: field:ir.actions.report.xml,report_rml:0 msgid "Main Report File Path" -msgstr "" +msgstr "Caminho para o ficheiro do relatório principal" #. module: base #: model:ir.module.module,shortdesc:base.module_sale_analytic_plans @@ -191,6 +209,15 @@ msgid "" "revenue\n" "reports." msgstr "" +"\n" +"Gerar faturas através de Despesas, Folhas de Horas\n" +"========================================================\n" +"\n" +"Modulo que gera faturas baseadas em custos (recursos humanos, despesas, " +"...).\n" +"\n" +"Pode definir tabelas de preços na conta analítica, criar analises teoréticas " +"de vendas." #. module: base #: code:addons/base/ir/ir_sequence.py:134 @@ -226,7 +253,7 @@ msgstr "ir.ui.view.custom" #: code:addons/base/ir/ir_model.py:374 #, python-format msgid "Renaming sparse field \"%s\" is not allowed" -msgstr "" +msgstr "Não é permitido mudar o nome de sparse field \"%s\"" #. module: base #: model:res.country,name:base.sz @@ -292,6 +319,8 @@ msgid "" "The internal user that is in charge of communicating with this contact if " "any." msgstr "" +"O utilizador interno responsável pela comunicação com este contacto (se " +"houver)" #. module: base #: view:res.partner:0 @@ -376,6 +405,15 @@ msgid "" "invoices from picking, OpenERP is able to add and compute the shipping " "line.\n" msgstr "" +"\n" +"Permite adicionar métodos de entrega nas ordens de venda e ordens de " +"preparação de encomendas.\n" +"==============================================================\n" +"\n" +"Assim é possível definir transportadores adicionais e tabelas de preços para " +"entregas. No acto de criar \n" +"uma fatura através um ordem de preparação de encomenda, OpenERP consegue " +"adicionar e calcular custos de entrega.\n" #. module: base #: code:addons/base/ir/ir_filters.py:80 @@ -384,6 +422,8 @@ msgid "" "There is already a shared filter set as default for %(model)s, delete or " "change it before setting a new default" msgstr "" +"Um filtro partilhado já está definido para %(model)s, apague ou modifique o " +"filtro existente antes de criar um novo." #. module: base #: code:addons/orm.py:2649 @@ -452,8 +492,8 @@ msgid "" "Invalid date/time format directive specified. Please refer to the list of " "allowed directives, displayed when you edit a language." msgstr "" -"Data inválida/especifique diretiva do formato da hora. Por favor, consulte a " -"lista de diretivas permitidas, exibida quando se edita uma linguagem." +"A diretiva data/hora especificada é invalida. Por favor, consulte a lista de " +"diretivas permitidas, exibida quando se edita uma linguagem." #. module: base #: code:addons/orm.py:4153 @@ -462,7 +502,7 @@ msgid "" "One of the records you are trying to modify has already been deleted " "(Document type: %s)." msgstr "" -"Um dos registos que está a tentar modificar já deve ter sido excluído " +"Um dos registos que está a tentar modificar já deve ter sido apagado " "(Document type: %s)." #. module: base @@ -552,6 +592,15 @@ msgid "" "that have no counterpart in the general financial accounts.\n" " " msgstr "" +"\n" +"Modulo para definir objetos de contabilidade analítica.\n" +"===============================================\n" +"\n" +"Na OpenERP, contas analíticas estão ligados a contas gerais embora são " +"tratados \n" +"de uma forma independente. Assim é possível adicionar operações analíticas \n" +"mesmo quando não tenham homólogos nas contas gerais.\n" +" " #. module: base #: model:ir.module.module,shortdesc:base.module_idea @@ -575,6 +624,19 @@ msgid "" "* Use emails to automatically confirm and send acknowledgements for any " "event registration\n" msgstr "" +"\n" +"Organização e gestão de Eventos.\n" +"======================================\n" +"\n" +"O modulo de gestão de eventos permite gerir todos as tarefas associadas a " +"organização de eventos: planificação, controlo de inscrições, " +"comparecimento, etc.\n" +"\n" +"Principais Funções\n" +"------------\n" +"* Gerir os seus Eventos e Inscrições\n" +"* Utilizar e-mail para enviar confirmações de forma automática para " +"inscrições nos seus eventos.\n" #. module: base #: selection:base.language.install,lang:0 @@ -774,6 +836,11 @@ msgid "" "This module provides the Integration of the LinkedIn with OpenERP.\n" " " msgstr "" +"\n" +"Módulo OpenERP Web LinkedIn.\n" +"============================\n" +"Este módulo disponibiliza a integração do LinkedIn com o OpenERP.\n" +" " #. module: base #: help:ir.actions.act_window,src_model:0 @@ -839,6 +906,9 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Imagem em pequeno formato para este contacto. É automaticamente " +"redimensionada para 64x64px com o racio do aspect preservado. Utilize este " +"campo onde quer que uma imagem pequena seja necessária." #. module: base #: help:ir.actions.server,mobile:0 @@ -1327,7 +1397,7 @@ msgstr "Contribuintes" #. module: base #: field:ir.rule,perm_unlink:0 msgid "Apply for Delete" -msgstr "" +msgstr "Aplicar para Apagar" #. module: base #: selection:ir.property,type:0 @@ -1465,7 +1535,7 @@ msgstr "Haiti" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_fr_hr_payroll msgid "French Payroll" -msgstr "" +msgstr "Folha de pagamentos Francesa" #. module: base #: view:ir.ui.view:0 @@ -1996,6 +2066,8 @@ msgid "" "Check this box if this contact is a supplier. If it's not checked, purchase " "people will not see it when encoding a purchase order." msgstr "" +"Assinala nesta caixa se o contacto é fornecedor. Se não for assinalado, o " +"contacto não será visível no acto de criar uma nota de encomenda." #. module: base #: model:ir.module.module,shortdesc:base.module_hr_evaluation @@ -2173,6 +2245,27 @@ msgid "" "* *Before Delivery*: A Draft invoice is created and must be paid before " "delivery\n" msgstr "" +"\n" +"Gerir orçamentos e encomendas\n" +"==================================\n" +"\n" +"Este modulo liga a aplicação de vendas com a de gestão de armazéns.\n" +"\n" +"Preferências\n" +"-----------\n" +"* Envios: Escolha entre a entrega total ou parcial de uma encomenda.\n" +"* Faturação: Escolha o prazo de pagamento da fatura\n" +"* Incoterms: Escolha os termos de entrega da mercadoria (EXW, DDU, FOB, " +"etc.)\n" +"\n" +"Escolhe entre varias maneiras flexíveis de faturação:\n" +"\n" +"* *Manualmente*: As faturas são criados manualmente das notas de encomenda " +"quando necessário\n" +"* *Através de Ordem de Entrega*: As faturas são geradas das ordens de " +"entrega (pickings)\n" +"* *Antes de Entrega*: Uma fatura pro-forma é criado e tem de ser liquidada " +"antes de efetuar a entrega\n" #. module: base #: field:ir.ui.menu,complete_name:0 @@ -2198,7 +2291,7 @@ msgstr "" #. module: base #: view:base.language.export:0 msgid "PO(T) format: you should edit it with a PO editor such as" -msgstr "" +msgstr "Formato PO(T): deve editá-lo com um editor de PO tal como" #. module: base #: model:ir.ui.menu,name:base.menu_administration @@ -2287,7 +2380,7 @@ msgstr "Bahamas" #. module: base #: field:ir.rule,perm_create:0 msgid "Apply for Create" -msgstr "" +msgstr "Aplicar para Criar" #. module: base #: model:ir.module.category,name:base.module_category_tools @@ -2310,6 +2403,8 @@ msgid "" "Appears by default on the top right corner of your printed documents (report " "header)." msgstr "" +"Aparece por defeito no campo superior direito dos documentos impressos " +"(cabeçalho do relatório)." #. module: base #: field:base.module.update,update:0 @@ -2357,6 +2452,31 @@ msgid "" "* Maximal difference between timesheet and attendances\n" " " msgstr "" +"\n" +"Gravar e validar folhas de horas e comparecimento/assiduidade com " +"facilidade\n" +"=====================================================\n" +"\n" +"Esta aplicação cria uma nova ecrã que permite gerir comparecimento (entradas " +"e saídas) e o preenchimento de folhas de horas por período. Entradas na " +"folha de horas são efetuadas pelos funcionários diariamente. No fim do " +"período estipulado, o funcionário valida a folha de horas. De seguida a " +"folha é sujeito a aprovação da gerente de equipa. A definição do tempo de " +"cada período é feito nas configurações da empresa e podem ser efetuados " +"mensalmente ou semanalmente.\n" +"\n" +"O processo de validação da folha de horas é feito assim:\n" +"---------------------------------------------\n" +"* Preencher folha (funcionário)\n" +"* Confirmar a folha no fim do período (funcionário)\n" +"* Validação da folha pelo gestor da equipa\n" +"\n" +"As preferências de validação podem ser escolhidos nas configurações da " +"empresa:\n" +"------------------------------------------------\n" +"Periodicidade (Dia, Semana, Mês)\n" +"Diferenciação máxima permitida entre a folha de horas e comparecimento\n" +" " #. module: base #: code:addons/base/ir/ir_fields.py:341 @@ -2429,6 +2549,9 @@ msgid "" "=================================\n" " " msgstr "" +"\n" +"Permite que um utilizador anónimo aceda ao portal.\n" +" " #. module: base #: model:res.country,name:base.ge @@ -2677,6 +2800,12 @@ msgid "" "orders.\n" " " msgstr "" +"\n" +"O modulo base para gerir distribuição analítica e notas de encomenda.\n" +"=================================================================\n" +"\n" +"Este modulo permite ligar contas analíticas a notas de encomenda.\n" +" " #. module: base #: model:ir.module.module,description:base.module_l10n_us @@ -2817,6 +2946,9 @@ msgid "" "Module to attach a google document to any model.\n" "================================================\n" msgstr "" +"\n" +"Módulo para anexar um documento google a qualquer modelo.\n" +"=========================================================\n" #. module: base #: code:addons/base/ir/ir_fields.py:333 @@ -5010,7 +5142,7 @@ msgstr "ir.needaction_mixin" #. module: base #: view:base.language.export:0 msgid "This file was generated using the universal" -msgstr "" +msgstr "Este ficheiro foi gerado usando o universal" #. module: base #: model:res.partner.category,name:base.res_partner_category_7 @@ -5082,7 +5214,7 @@ msgstr "Saltar" #. module: base #: model:ir.module.module,shortdesc:base.module_event_sale msgid "Events Sales" -msgstr "" +msgstr "Vendas dos Eventos" #. module: base #: model:res.country,name:base.ls @@ -5269,7 +5401,7 @@ msgstr "Apenas se a conta bancária pertencer à sua empresa" #: code:addons/base/ir/ir_fields.py:337 #, python-format msgid "Unknown sub-field '%s'" -msgstr "" +msgstr "Sub-campo '%s' desconhecido" #. module: base #: model:res.country,name:base.za @@ -5385,6 +5517,10 @@ msgid "" "================\n" "\n" msgstr "" +"\n" +"Openerp Web API.\n" +"================\n" +"\n" #. module: base #: selection:res.request,state:0 @@ -6154,6 +6290,8 @@ msgid "" "How many times the method is called,\n" "a negative number indicates no limit." msgstr "" +"Quantas vezes o método é chamado,\n" +"um número negativo sem limite." #. module: base #: field:res.partner.bank.type.field,bank_type_id:0 @@ -6280,7 +6418,7 @@ msgstr "" #: code:addons/base/ir/ir_fields.py:182 #, python-format msgid "'%s' does not seem to be a number for field '%%(field)s'" -msgstr "" +msgstr "'%s' não parece ser um número para o campo '%%(field)s'" #. module: base #: help:res.country.state,name:0 @@ -8013,7 +8151,7 @@ msgstr "Campo Personalizado" #. module: base #: model:ir.module.module,summary:base.module_account_accountant msgid "Financial and Analytic Accounting" -msgstr "" +msgstr "Contabilidade Financeira e Analítica" #. module: base #: model:ir.module.module,shortdesc:base.module_portal_project @@ -8352,7 +8490,7 @@ msgstr "Finlândia" #. module: base #: model:ir.module.module,shortdesc:base.module_web_shortcuts msgid "Web Shortcuts" -msgstr "" +msgstr "Atalhos web" #. module: base #: view:res.partner:0 @@ -8558,6 +8696,8 @@ msgid "" "Translation features are unavailable until you install an extra OpenERP " "translation." msgstr "" +"As opções de tradução estão indisponíveis até que instale uma tradução extra " +"do OpenERP." #. module: base #: model:ir.module.module,description:base.module_l10n_nl @@ -8752,6 +8892,9 @@ msgid "" "If the selected language is loaded in the system, all documents related to " "this contact will be printed in this language. If not, it will be English." msgstr "" +"Se o idioma seleccionado está carregado no sistema, todos os documentos " +"relacionados com este contacto serão impressos neste idioma. Caso contrário " +"serão impressos em Inglês." #. module: base #: model:ir.module.module,description:base.module_hr_evaluation @@ -8860,7 +9003,7 @@ msgstr "Esloveno / slovenščina" #. module: base #: field:res.currency,position:0 msgid "Symbol Position" -msgstr "" +msgstr "Posição do Símbolo" #. module: base #: model:ir.module.module,description:base.module_l10n_de @@ -10007,7 +10150,7 @@ msgstr "Agrupar por..." #. module: base #: view:base.module.update:0 msgid "Module Update Result" -msgstr "" +msgstr "Resultado da actualização do módulo" #. module: base #: model:ir.module.module,description:base.module_analytic_contract_hr_expense @@ -10469,7 +10612,7 @@ msgstr "" #. module: base #: view:res.company:0 msgid "Click to set your company logo." -msgstr "" +msgstr "Clique para definir o logo da empresa." #. module: base #: view:res.lang:0 @@ -10792,6 +10935,8 @@ msgid "" "One of the documents you are trying to access has been deleted, please try " "again after refreshing." msgstr "" +"Um dos documentos a que tenta aceder foi removido, tente novamente depois de " +"actualizar." #. module: base #: model:ir.model,name:base.model_ir_mail_server @@ -11300,7 +11445,7 @@ msgstr "Ficheiro binário ou URL" #: code:addons/base/ir/ir_fields.py:313 #, python-format msgid "Invalid database id '%s' for the field '%%(field)s'" -msgstr "" +msgstr "Id de base de dados '%s' inválido para o campo '%%(field)s'" #. module: base #: view:res.lang:0 @@ -11444,7 +11589,7 @@ msgstr "" #. module: base #: field:workflow.transition,signal:0 msgid "Signal (Button Name)" -msgstr "" +msgstr "Sinal (Nome do botão)" #. module: base #: view:ir.actions.act_window:0 @@ -11819,7 +11964,7 @@ msgstr "ir.model.relation" #. module: base #: model:ir.module.module,shortdesc:base.module_account_check_writing msgid "Check Writing" -msgstr "" +msgstr "Verificar escrita" #. module: base #: model:ir.module.module,description:base.module_plugin_outlook @@ -12387,7 +12532,7 @@ msgstr "Outros Parceiros" #: view:workflow.workitem:0 #: field:workflow.workitem,state:0 msgid "Status" -msgstr "" +msgstr "Estado" #. module: base #: model:ir.actions.act_window,name:base.action_currency_form @@ -13376,7 +13521,7 @@ msgstr "ir.sequence.type" #. module: base #: model:ir.module.module,shortdesc:base.module_l10n_be_hr_payroll_account msgid "Belgium - Payroll with Accounting" -msgstr "" +msgstr "Bélgica - Folha de pagamentos com Contabildade" #. module: base #: selection:base.language.export,format:0 @@ -15269,7 +15414,7 @@ msgstr "Chile" #. module: base #: model:ir.module.module,shortdesc:base.module_web_view_editor msgid "View Editor" -msgstr "" +msgstr "Ver o Editor" #. module: base #: view:ir.cron:0 @@ -15349,6 +15494,8 @@ msgid "" "Do you confirm the uninstallation of this module? This will permanently " "erase all data currently stored by the module!" msgstr "" +"Confirma a desinstalação deste módulo? Esta acção apaga todos os dados " +"guardados neste momento por este módulo!" #. module: base #: field:ir.actions.server,mobile:0 diff --git a/openerp/addons/base/i18n/pt_BR.po b/openerp/addons/base/i18n/pt_BR.po index 725841dd5b4..034670d263a 100644 --- a/openerp/addons/base/i18n/pt_BR.po +++ b/openerp/addons/base/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-08-14 04:52+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:01+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/ro.po b/openerp/addons/base/i18n/ro.po index bcdce72dcf3..013e869b86a 100644 --- a/openerp/addons/base/i18n/ro.po +++ b/openerp/addons/base/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-08-14 04:49+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:58+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/ru.po b/openerp/addons/base/i18n/ru.po index 60901c65176..cc2134b1c30 100644 --- a/openerp/addons/base/i18n/ru.po +++ b/openerp/addons/base/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-08-17 05:25+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:59+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/sk.po b/openerp/addons/base/i18n/sk.po index f8de2c29f68..293f0fd254e 100644 --- a/openerp/addons/base/i18n/sk.po +++ b/openerp/addons/base/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-08-14 04:50+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:59+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/sl.po b/openerp/addons/base/i18n/sl.po index 5a83965e7c7..670c6e6c8b3 100644 --- a/openerp/addons/base/i18n/sl.po +++ b/openerp/addons/base/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-08-14 04:50+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:59+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/sq.po b/openerp/addons/base/i18n/sq.po index 832482fc461..2a444f01db6 100644 --- a/openerp/addons/base/i18n/sq.po +++ b/openerp/addons/base/i18n/sq.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-08-14 04:42+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:52+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/sr.po b/openerp/addons/base/i18n/sr.po index 9244d62560d..6494f9167c3 100644 --- a/openerp/addons/base/i18n/sr.po +++ b/openerp/addons/base/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-08-14 04:49+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 04:59+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/sr@latin.po b/openerp/addons/base/i18n/sr@latin.po index e5d26cedcd6..7446ab0c59f 100644 --- a/openerp/addons/base/i18n/sr@latin.po +++ b/openerp/addons/base/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-08-14 04:54+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:03+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/sv.po b/openerp/addons/base/i18n/sv.po index b5482e17652..2923e2b99ce 100644 --- a/openerp/addons/base/i18n/sv.po +++ b/openerp/addons/base/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-08-14 04:50+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:00+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/th.po b/openerp/addons/base/i18n/th.po index 10786646d33..d7f7ecf6e1a 100644 --- a/openerp/addons/base/i18n/th.po +++ b/openerp/addons/base/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-08-14 04:50+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:00+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/tlh.po b/openerp/addons/base/i18n/tlh.po index e8a8fc1ace4..5a8d9db5fae 100644 --- a/openerp/addons/base/i18n/tlh.po +++ b/openerp/addons/base/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-08-14 04:51+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:00+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/tr.po b/openerp/addons/base/i18n/tr.po index 4999aee125a..afc7e6d81c7 100644 --- a/openerp/addons/base/i18n/tr.po +++ b/openerp/addons/base/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-08-14 04:51+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:00+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/uk.po b/openerp/addons/base/i18n/uk.po index 0a62e3016a1..bf6140465db 100644 --- a/openerp/addons/base/i18n/uk.po +++ b/openerp/addons/base/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-08-14 04:51+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:00+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/ur.po b/openerp/addons/base/i18n/ur.po index 1e4086cdec5..86f3a2d57b9 100644 --- a/openerp/addons/base/i18n/ur.po +++ b/openerp/addons/base/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-08-14 04:51+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:01+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/vi.po b/openerp/addons/base/i18n/vi.po index 8a323a54d7c..e40a603f688 100644 --- a/openerp/addons/base/i18n/vi.po +++ b/openerp/addons/base/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-08-14 04:51+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:01+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/zh_CN.po b/openerp/addons/base/i18n/zh_CN.po index 74c13a73e90..085b3c28b4e 100644 --- a/openerp/addons/base/i18n/zh_CN.po +++ b/openerp/addons/base/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-08-14 04:53+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:03+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing @@ -997,6 +997,21 @@ msgid "" "also possible in order to automatically create a meeting when a holiday " "request is accepted by setting up a type of meeting in Leave Type.\n" msgstr "" +"\n" +"休假申请和假期分配\n" +"=====================================\n" +"\n" +"此模块管理公司员工的休假。员工可以申请休假,然后等待经理批准,当然也可能拒绝。这样就可以使公司或部门的整体休假计划得到管控。\n" +"\n" +"可以配置多种休假类型(病假、法定假日、带薪休假等)并通过分配申请分配给单个员工或部门。员工也可以申请\n" +"增加假期天数,这需要填写一个额外的假期申请。如果增加假期天数的申请被批准,这个类型假期的可用天数会自动增加。\n" +"\n" +"以下报表用于对假期进行跟踪:\n" +"* 休假总览\n" +"* 按部门休假\n" +"* 休假分析\n" +"\n" +"如果为休假设置了一种日程类型,就可以与CRM中的日程同步,也就是说休假批准后会在日程上标识出此员工正在休假中。\n" #. module: base #: selection:base.language.install,lang:0 @@ -2065,7 +2080,7 @@ msgstr "读权限" #. module: base #: help:ir.attachment,res_id:0 msgid "The record id this is attached to" -msgstr "" +msgstr "附件相关的数据记录id" #. module: base #: model:ir.module.module,description:base.module_share @@ -2166,6 +2181,11 @@ msgid "" "with the effect of creating, editing and deleting either ways.\n" " " msgstr "" +"\n" +"项目进度与工时记录的集成\n" +"====================================================================\n" +"安装了此模块,项目进度的添加删除和修改会自动同步到工时表上。\n" +" " #. module: base #: model:ir.model,name:base.model_ir_model_access @@ -2185,6 +2205,11 @@ msgid "" " templates to target objects.\n" " " msgstr "" +"\n" +" * 科目表、税、税项、凭证类型、科目模版、成本要素和成本凭证类型的多语言支持。\n" +" * 对设置向导的修改\n" +" - 从模版复制科目表、税、税项和替换规则到目标数据表。\n" +" " #. module: base #: field:workflow.transition,act_from:0 diff --git a/openerp/addons/base/i18n/zh_HK.po b/openerp/addons/base/i18n/zh_HK.po index a60bbc91821..8924939e685 100644 --- a/openerp/addons/base/i18n/zh_HK.po +++ b/openerp/addons/base/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-08-14 04:51+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:01+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing diff --git a/openerp/addons/base/i18n/zh_TW.po b/openerp/addons/base/i18n/zh_TW.po index 14fa2ca2623..9b416886fc8 100644 --- a/openerp/addons/base/i18n/zh_TW.po +++ b/openerp/addons/base/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-08-14 04:53+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-28 05:02+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: base #: model:ir.module.module,description:base.module_account_check_writing From 895481c21dd1f6e1e4d5e3761965397220718f14 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Thu, 29 Aug 2013 04:53:42 +0000 Subject: [PATCH 09/18] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130827044704-wom10yf9wm9nzeho bzr revid: launchpad_translations_on_behalf_of_openerp-20130828050800-3u3eo84ahvpggvao bzr revid: launchpad_translations_on_behalf_of_openerp-20130829045342-evt31nszsin4eqj5 --- 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 | 117 +++++---- addons/web/i18n/da.po | 379 ++++++++++++++------------- 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 | 6 +- 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 | 187 ++++++------- addons/web/i18n/lv.po | 4 +- addons/web/i18n/mk.po | 4 +- addons/web/i18n/mn.po | 4 +- addons/web/i18n/nb.po | 4 +- 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 | 4 +- 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 | 4 +- addons/web/i18n/uk.po | 4 +- addons/web/i18n/vi.po | 4 +- addons/web/i18n/zh_CN.po | 6 +- addons/web/i18n/zh_TW.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 | 6 +- 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 | 4 +- 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 | 4 +- 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/th.po | 4 +- addons/web_calendar/i18n/tr.po | 4 +- 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 | 4 +- 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/th.po | 4 +- addons/web_diagram/i18n/tr.po | 4 +- addons/web_diagram/i18n/zh_CN.po | 4 +- addons/web_diagram/i18n/zh_TW.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/th.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/fr_CA.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 | 4 +- 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/th.po | 4 +- addons/web_graph/i18n/tr.po | 4 +- addons/web_graph/i18n/zh_CN.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 | 4 +- addons/web_kanban/i18n/fr_CA.po | 4 +- 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 | 4 +- 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 | 4 +- addons/web_kanban/i18n/sr@latin.po | 4 +- addons/web_kanban/i18n/sv.po | 4 +- addons/web_kanban/i18n/th.po | 4 +- addons/web_kanban/i18n/tr.po | 4 +- addons/web_kanban/i18n/zh_CN.po | 4 +- addons/web_kanban/i18n/zh_TW.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/fi.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/lt.po | 4 +- addons/web_view_editor/i18n/lv.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 | 4 +- 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/th.po | 4 +- addons/web_view_editor/i18n/tr.po | 4 +- addons/web_view_editor/i18n/zh_CN.po | 4 +- 328 files changed, 1005 insertions(+), 984 deletions(-) diff --git a/addons/web/i18n/ar.po b/addons/web/i18n/ar.po index 06ba093cf02..eb9041c585e 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:44+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/bg.po b/addons/web/i18n/bg.po index 8e3b538aefb..988b4e3a659 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:44+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/bn.po b/addons/web/i18n/bn.po index 766cacfaff2..bcfc65395af 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:44+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/bs.po b/addons/web/i18n/bs.po index 67b0acfc49d..8576e8affac 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:44+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/ca.po b/addons/web/i18n/ca.po index 65d46307db5..5f01d27dc72 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:44+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/cs.po b/addons/web/i18n/cs.po index fc1d9f0c437..d7c1dc997e2 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:44+0000\n" +"X-Generator: Launchpad (build 16738)\n" "X-Poedit-Language: Czech\n" #. module: web @@ -244,7 +244,7 @@ msgstr "Formulář" #: code:addons/web/static/src/xml/base.xml:1352 #, python-format msgid "(no string)" -msgstr "(bez řetězce)" +msgstr "(prázdný text)" #. module: web #. openerp-web @@ -335,7 +335,7 @@ msgstr "Vlastní filtr" #: code:addons/web/static/src/xml/base.xml:177 #, python-format msgid "Duplicate Database" -msgstr "Duplicitní databáze" +msgstr "Duplikovat databázi" #. module: web #. openerp-web @@ -386,7 +386,7 @@ msgstr "Skupina" #: code:addons/web/static/src/xml/base.xml:949 #, python-format msgid "Unhandled widget" -msgstr "Neobsloužené udělátko" +msgstr "Neobsloužený widget" #. module: web #. openerp-web @@ -484,7 +484,7 @@ msgstr "Načítání (%d)" #: code:addons/web/static/src/js/search.js:1216 #, python-format msgid "GroupBy" -msgstr "GroupBy" +msgstr "Seskupit" #. module: web #. openerp-web @@ -498,7 +498,7 @@ msgstr "Musíte vybrat alespoň jeden záznam." #: code:addons/web/static/src/xml/base.xml:557 #, python-format msgid "View Log (perm_read)" -msgstr "Zobrazení záznamu (perm_read)" +msgstr "Zobrazení protokolu (perm_read)" #. module: web #. openerp-web @@ -512,7 +512,7 @@ msgstr "Nastavit výchozí" #: code:addons/web/static/src/xml/base.xml:1000 #, python-format msgid "Relation:" -msgstr "Vztažené:" +msgstr "Vztah:" #. module: web #. openerp-web @@ -610,7 +610,7 @@ msgstr "UTF-8" #: code:addons/web/static/src/xml/base.xml:443 #, python-format msgid "For more information visit" -msgstr "Pro více informací navštivtě" +msgstr "Pro více informací navštivte" #. module: web #. openerp-web @@ -669,7 +669,7 @@ msgstr "větší než" #: code:addons/web/static/src/xml/base.xml:568 #, python-format msgid "View" -msgstr "Pohled" +msgstr "Zobrazení" #. module: web #. openerp-web @@ -691,14 +691,15 @@ msgstr "ID akce:" #, python-format msgid "Your user's preference timezone does not match your browser timezone:" msgstr "" -"Vaše předvolba časové zóny se neshoduje s časovou zónou vašeho prohlížeče:" +"Časová zóna ve vašich uživatelských nastaveních se neshoduje s časovou zónou " +"vašeho prohlížeče:" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:1237 #, python-format msgid "Field '%s' specified in view could not be found." -msgstr "Pole '%s' specifikované v pohledu nelze nalézt." +msgstr "Pole '%s' specifikované v zobrazení nelze nalézt." #. module: web #. openerp-web @@ -769,7 +770,7 @@ msgstr "Chyba e-mailu" #: code:addons/web/static/src/js/coresetup.js:595 #, python-format msgid "a day ago" -msgstr "před jedním dnem" +msgstr "včera" #. module: web #. openerp-web @@ -817,7 +818,7 @@ msgstr "Technický překlad" #: code:addons/web/static/src/xml/base.xml:1818 #, python-format msgid "Delimiter:" -msgstr "Omezovač:" +msgstr "Oddělovač:" #. module: web #. openerp-web @@ -855,7 +856,7 @@ msgstr "Přidat" #: code:addons/web/static/src/xml/base.xml:558 #, python-format msgid "Toggle Form Layout Outline" -msgstr "Přepnout náčrt rozložení formuláře" +msgstr "Přepnout osnovu rozložení formuláře" #. module: web #. openerp-web @@ -869,7 +870,7 @@ msgstr "OpenERP.com" #: code:addons/web/static/src/js/view_form.js:2349 #, python-format msgid "Can't send email to invalid e-mail address" -msgstr "Nemohu odeslat email na neplatnou emailovou adresu" +msgstr "Nelze odeslat e-mail na neplatnou e-mailovou adresu" #. module: web #. openerp-web @@ -890,7 +891,7 @@ msgstr "Předvolby" #: code:addons/web/static/src/js/view_form.js:435 #, python-format msgid "Wrong on change format: %s" -msgstr "Neplatný při změně formátu: %s" +msgstr "Neplatný formát: %s" #. module: web #. openerp-web @@ -905,7 +906,7 @@ msgstr "Smazat databázi" #: code:addons/web/static/src/xml/base.xml:488 #, python-format msgid "Click here to change your user's timezone." -msgstr "Klikěte sem pro změnu časové zóny uživatele" +msgstr "Klikěte sem pro změnu časové zóny svého uživatele" #. module: web #. openerp-web @@ -944,14 +945,14 @@ msgstr "Více" #: code:addons/web/static/src/xml/base.xml:73 #, python-format msgid "Username" -msgstr "Jméno uživatele" +msgstr "Uživatelské jméno" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:503 #, python-format msgid "Duplicating database" -msgstr "Duplikuji databázi" +msgstr "Duplikace databáze" #. module: web #. openerp-web @@ -979,7 +980,7 @@ msgstr "Ladící zobrazení#" #: code:addons/web/static/src/xml/base.xml:77 #, python-format msgid "Log in" -msgstr "Přihlásit" +msgstr "Přihlásit se" #. module: web #. openerp-web @@ -1031,7 +1032,7 @@ msgstr "Spustit" #: code:addons/web/static/src/js/views.js:897 #, python-format msgid "View Log (%s)" -msgstr "Zobrazit záznam (%s)" +msgstr "Zobrazit protokol (%s)" #. module: web #. openerp-web @@ -1128,7 +1129,7 @@ msgstr "před %d dny" #: code:addons/web/static/src/xml/base.xml:1500 #, python-format msgid "(Any existing filter with the same name will be replaced)" -msgstr "(jakýkoliv existující filtr s stejným jménem bude nahrazen)" +msgstr "(jakýkoliv existující filtr s stejným názvem bude nahrazen)" #. module: web #. openerp-web @@ -1200,7 +1201,7 @@ msgid "" " you should use the export tool with the \"Import Compatible\" option." msgstr "" "Vyberte .CSV soubor k importu. Pokud potřebuje vzorový soubor k importu,\n" -" můžete použít nástroj exportu s volbou \"Importovat slučitelné\"." +" můžete použít nástroj exportu s volbou \"Importovatelný export\"." #. module: web #. openerp-web @@ -1215,7 +1216,7 @@ msgstr "před %d měsíci" #: code:addons/web/static/src/xml/base.xml:326 #, python-format msgid "Drop" -msgstr "Odstranit" +msgstr "Smazat" #. module: web #. openerp-web @@ -1329,7 +1330,7 @@ msgstr "Neplatné hledání" #: code:addons/web/static/src/js/view_list.js:990 #, python-format msgid "Could not find id in dataset" -msgstr "Nemohu najít id v datové sestavě" +msgstr "Nemohu najít id v datasetu" #. module: web #. openerp-web @@ -1395,8 +1396,8 @@ msgid "" "For use if CSV files have titles on multiple lines, skips more than a single " "line during import" msgstr "" -"Pro použití pokud mají CSV soubory titulky na více řádcích, přeskočí více " -"než jeden řádek během importu" +"Pro použití pokud mají CSV soubory titulky na více řádcích, přeskočí během " +"importu více než jeden řádek" #. module: web #. openerp-web @@ -1438,7 +1439,7 @@ msgstr "Změnit výchozí:" #: code:addons/web/static/src/xml/base.xml:189 #, python-format msgid "Original database name:" -msgstr "Původní název databáze:" +msgstr "Název zdrojové databáze:" #. module: web #. openerp-web @@ -1462,14 +1463,14 @@ msgstr "Nemohu serializovat XML" #: code:addons/web/static/src/xml/base.xml:1637 #, python-format msgid "Advanced Search" -msgstr "Pokročilé vyhledávání" +msgstr "Pokročilé hledání" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:308 #, python-format msgid "Confirm new master password:" -msgstr "Potvrdit hlavní heslo:" +msgstr "Potvrdit nové hlavní heslo:" #. module: web #. openerp-web @@ -1594,7 +1595,7 @@ msgstr "Uzel [%s] není JSONifikovaný uzel XML" #: code:addons/web/static/src/xml/base.xml:1454 #, python-format msgid "Advanced Search..." -msgstr "Pokročilé vyhledávání..." +msgstr "Pokročilé hledání..." #. module: web #. openerp-web @@ -1609,7 +1610,7 @@ msgstr "Mažu databázi" #: code:addons/web/static/src/xml/base.xml:467 #, python-format msgid "Powered by" -msgstr "Založeno na" +msgstr "" #. module: web #. openerp-web @@ -1624,7 +1625,7 @@ msgstr "Ano" #: code:addons/web/static/src/js/view_form.js:5002 #, python-format msgid "There was a problem while uploading your file" -msgstr "Chyba při nahrávání vašeho souboru" +msgstr "Při nahrávání vašeho souboru nastal problém" #. module: web #. openerp-web @@ -1652,7 +1653,7 @@ msgstr "--- Neimportovat ---" #: code:addons/web/static/src/xml/base.xml:1697 #, python-format msgid "Import-Compatible Export" -msgstr "Import-kompatibilní export" +msgstr "Importovatelný export" #. module: web #. openerp-web @@ -1702,7 +1703,7 @@ msgstr "Pole je prázdné, není co ukládat!" #: code:addons/web/static/src/xml/base.xml:567 #, python-format msgid "Manage Views" -msgstr "Spravovat pohledy" +msgstr "Spravovat zobrazení" #. module: web #. openerp-web @@ -1795,7 +1796,7 @@ msgstr "Vytvořit: " #: code:addons/web/static/src/xml/base.xml:562 #, python-format msgid "View Fields" -msgstr "Zobrazení polí" +msgstr "Pole zobrazení" #. module: web #. openerp-web @@ -1898,7 +1899,7 @@ msgstr "O aplikaci" #: code:addons/web/static/src/xml/base.xml:1457 #, python-format msgid "Search Again" -msgstr "Vyhledat znovu" +msgstr "Hledat znovu" #. module: web #. openerp-web @@ -1931,8 +1932,8 @@ msgid "" "Grouping on field '%s' is not possible because that field does not appear in " "the list view." msgstr "" -"Seskupení podle pole '%s' není možné protože toto pole není zobrazeno v " -"seznamu." +"Seskupení podle pole '%s' není možné, protože toto pole není přítomno v " +"zobrazení seznamu." #. module: web #. openerp-web @@ -1951,24 +1952,24 @@ msgid "" " You can export all data or only the fields that can be " "reimported after modification." msgstr "" -"Tento průvodce exportuje všechna data do CSV souboru, která odpovídají " -"vyhledávacímu kritériu.\n" -" Můžete exportovat všechna data nebo pouze pole, které mohou být " -"znovuimportována po úpravách." +"Tento průvodce exportuje všechna data, která odpovídají vyhledávacímu " +"kritériu, do CSV souboru.\n" +" Můžete exportovat všechna data, nebo pouze pole, která mohou být " +"po úpravách znovu importována." #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:320 #, python-format msgid "The record could not be found in the database." -msgstr "Záznam nebyl nalezen v databázi." +msgstr "Záznam nebyl v databázi nalezen." #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1498 #, python-format msgid "Filter Name:" -msgstr "Jméno filtru" +msgstr "Název filtru" #. module: web #. openerp-web @@ -1982,7 +1983,7 @@ msgstr "Typ:" #: code:addons/web/static/src/js/chrome.js:560 #, python-format msgid "Incorrect super-administrator password" -msgstr "Chybné heslo superadministrátora" +msgstr "Nesprávné hlavní heslo" #. module: web #. openerp-web @@ -2065,7 +2066,7 @@ msgstr "Latin 1" #: code:addons/web/static/src/xml/base.xml:1773 #, python-format msgid "Ok" -msgstr "Ok" +msgstr "OK" #. module: web #. openerp-web @@ -2196,7 +2197,7 @@ msgstr "Získat pole pohledu" #: code:addons/web/static/src/xml/base.xml:163 #, python-format msgid "Confirm password:" -msgstr "Potvrdit heslo:" +msgstr "Potvrďte heslo:" #. module: web #. openerp-web @@ -2254,7 +2255,7 @@ msgstr "O OpenERP" #: code:addons/web/static/src/js/formats.js:301 #, python-format msgid "'%s' is not a correct date, datetime nor time" -msgstr "'%s' není platné datum, datum/čas ani čas" +msgstr "'%s' není platné datum, datum/čas, ani čas" #. module: web #: code:addons/web/controllers/main.py:1307 @@ -2267,7 +2268,7 @@ msgstr "Žádný obsah pole '%s' nebyl nalezen v '%s:%s'" #: code:addons/web/static/src/xml/base.xml:322 #, python-format msgid "Database Management" -msgstr "Správa databáze" +msgstr "Správa databází" #. module: web #. openerp-web @@ -2281,7 +2282,7 @@ msgstr "Obrázek" #: code:addons/web/static/src/xml/base.xml:81 #, python-format msgid "Manage Databases" -msgstr "Spravovat databáze" +msgstr "Správa databází" #. module: web #. openerp-web @@ -2321,7 +2322,7 @@ msgstr "Ne" #: code:addons/web/static/src/js/formats.js:313 #, python-format msgid "'%s' is not convertible to date, datetime nor time" -msgstr "'%s' nelze převést na datum, datum/čas ani čas" +msgstr "'%s' nelze převést na datum, datum/čas, ani čas" #. module: web #. openerp-web @@ -2367,7 +2368,7 @@ msgstr "Neplatná hodnata pro pole %(fieldname)s: [%(value)s] je %(message)s" #: code:addons/web/static/src/js/view_form.js:3926 #, python-format msgid "The o2m record must be saved before an action can be used" -msgstr "Záznam o2m musí být uložen před tím, než je akce použita" +msgstr "Záznam o2m musí být uložen před tím, než může být akce použita" #. module: web #. openerp-web @@ -2395,7 +2396,7 @@ msgstr "%s (%d)" #: code:addons/web/static/src/js/search.js:841 #, python-format msgid "triggered from search view" -msgstr "vyvoláno z pohledu hledání" +msgstr "vyvoláno z hledání" #. module: web #. openerp-web @@ -2409,7 +2410,7 @@ msgstr "Filtr" #: code:addons/web/static/src/xml/base.xml:972 #, python-format msgid "Widget:" -msgstr "Udělátko:" +msgstr "Widget:" #. module: web #. openerp-web @@ -2437,7 +2438,7 @@ msgstr "Pouze vy" #: code:addons/web/static/src/xml/base.xml:571 #, python-format msgid "Edit Workflow" -msgstr "Upravit pracovní tok" +msgstr "Upravit pracovní postup" #. module: web #. openerp-web @@ -2501,7 +2502,7 @@ msgstr "Tisk" #: code:addons/web/static/src/xml/base.xml:1359 #, python-format msgid "Special:" -msgstr "Zvláštní:" +msgstr "Speciální:" #. module: web #: code:addons/web/controllers/main.py:877 diff --git a/addons/web/i18n/da.po b/addons/web/i18n/da.po index afe6789d6e7..a086f230329 100644 --- a/addons/web/i18n/da.po +++ b/addons/web/i18n/da.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openerp-web\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2012-07-01 08:50+0000\n" -"Last-Translator: Aputsiaq Niels Janussen \n" +"PO-Revision-Date: 2013-08-27 23:48+0000\n" +"Last-Translator: Morten Schou \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-29 04:53+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web @@ -29,21 +29,21 @@ msgstr "Standardsprog:" #: code:addons/web/static/src/js/coresetup.js:592 #, python-format msgid "%d minutes ago" -msgstr "" +msgstr "%d minutter siden" #. module: web #. openerp-web #: code:addons/web/static/src/js/coresetup.js:620 #, python-format msgid "Still loading...
Please be patient." -msgstr "" +msgstr "Indlæser stadig...
Vent Venligst." #. module: web #. openerp-web #: code:addons/web/static/src/js/search.js:1999 #, 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 lig med" #: code:addons/web/static/src/js/chrome.js:410 #, python-format msgid "Please enter your previous password" -msgstr "" +msgstr "Indtast dit forrige kodeord" #. module: web #. openerp-web @@ -75,42 +75,42 @@ msgstr "Hovedadgangskode" #: code:addons/web/static/src/xml/base.xml:292 #, python-format msgid "Change Master Password" -msgstr "" +msgstr "Skift primær adgangskode" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:513 #, python-format msgid "Do you really want to delete the database: %s ?" -msgstr "" +msgstr "Er du sikker på, du vil slette databasen: %s ?" #. module: web #. openerp-web #: code:addons/web/static/src/js/search.js:1502 #, python-format msgid "Search %(field)s at: %(value)s" -msgstr "" +msgstr "Søg %(field)s i: %(value)s" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:559 #, python-format msgid "Access Denied" -msgstr "" +msgstr "Adgang nægtet" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:5220 #, python-format msgid "Uploading error" -msgstr "" +msgstr "Fejl ved upload" #. module: web #. openerp-web #: code:addons/web/static/src/js/coresetup.js:593 #, python-format msgid "about an hour ago" -msgstr "" +msgstr "For ca. en time siden" #. module: web #. openerp-web @@ -119,14 +119,14 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:234 #, python-format msgid "Backup Database" -msgstr "" +msgstr "Backup Database" #. module: web #. openerp-web #: code:addons/web/static/src/js/views.js:518 #, python-format msgid "%(view_type)s view" -msgstr "" +msgstr "%(view_type)s visning" #. module: web #. openerp-web @@ -134,34 +134,34 @@ 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 #: code:addons/web/static/src/xml/base.xml:1858 #, python-format msgid "Here is a preview of the file we could not import:" -msgstr "Her er et preview of af filen som vi ikke kunne importere:" +msgstr "Her er et eksempel af filen som vi ikke kunne importere:" #. module: web #. openerp-web #: code:addons/web/static/src/js/coresetup.js:591 #, python-format msgid "about a minute ago" -msgstr "" +msgstr "For ca. et minut 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:869 #, python-format msgid "You cannot leave any password empty." -msgstr "" +msgstr "Kodeord feltet kan ikke være tomt" #. module: web #. openerp-web @@ -206,28 +206,28 @@ msgstr "Udgave" #: code:addons/web/static/src/xml/base.xml:592 #, python-format msgid "Latest Modification Date:" -msgstr "" +msgstr "Seneste ændringsdato:" #. module: web #. openerp-web #: code:addons/web/static/src/js/search.js:1566 #, python-format msgid "M2O search fields do not currently handle multiple default values" -msgstr "" +msgstr "M2O søgefelt understøtter ikke flere default værdier" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:1241 #, python-format msgid "Widget type '%s' is not implemented" -msgstr "" +msgstr "Kontrol typen '%s' er ikke implementeret" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1626 #, python-format msgid "Share with all users" -msgstr "" +msgstr "Del med alle brugere" #. module: web #. openerp-web @@ -249,14 +249,14 @@ msgstr "(ingen streng)" #: code:addons/web/static/src/js/formats.js:286 #, python-format msgid "'%s' is not a correct time" -msgstr "" +msgstr "'%s' er ikke et korrekt klokkeslæt" #. module: web #. openerp-web #: code:addons/web/static/src/js/search.js:1401 #, python-format msgid "not a valid number" -msgstr "" +msgstr "ikke et gyldigt tal" #. module: web #. openerp-web @@ -270,14 +270,14 @@ msgstr "Ny adgangskode:" #: code:addons/web/static/src/xml/base.xml:632 #, python-format msgid "Attachment :" -msgstr "" +msgstr "Vedhæftning" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1712 #, python-format msgid "Fields to export" -msgstr "Felter der kan eksporteres" +msgstr "Felter der eksporteres" #. module: web #. openerp-web @@ -291,49 +291,49 @@ msgstr "Ikke defineret" #: code:addons/web/static/src/js/view_form.js:5002 #, python-format msgid "File Upload" -msgstr "" +msgstr "Fil sendt" #. module: web #. openerp-web #: code:addons/web/static/src/js/coresetup.js:597 #, python-format msgid "about a month ago" -msgstr "" +msgstr "For ca. en måned siden" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1618 #, python-format msgid "Custom Filters" -msgstr "" +msgstr "Bruger defineret filter" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1364 #, python-format msgid "Button Type:" -msgstr "" +msgstr "Knap-type:" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:441 #, python-format msgid "OpenERP SA Company" -msgstr "OpenERP SA Company" +msgstr "OpenERP SA firma" #. module: web #. openerp-web #: code:addons/web/static/src/js/search.js:1663 #, python-format msgid "Custom Filter" -msgstr "" +msgstr "Tilpasset filter" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:177 #, python-format msgid "Duplicate Database" -msgstr "" +msgstr "Kopier Database" #. module: web #. openerp-web @@ -355,7 +355,7 @@ msgstr "Skift adgangskode" #: code:addons/web/static/src/js/view_form.js:3528 #, python-format msgid "View type '%s' is not supported in One2Many." -msgstr "" +msgstr "Visning type '%s' er ikke supporteret ved en til mange." #. module: web #. openerp-web @@ -370,14 +370,14 @@ msgstr "Download" #: code:addons/web/static/src/js/formats.js:270 #, python-format msgid "'%s' is not a correct datetime" -msgstr "" +msgstr "'%s' er ikke en valid dato/klokkeslæt" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_list.js:432 #, python-format msgid "Group" -msgstr "" +msgstr "Gruppe" #. module: web #. openerp-web @@ -391,55 +391,55 @@ msgstr "Ubehandlet widget" #: code:addons/web/static/src/xml/base.xml:1004 #, python-format msgid "Selection:" -msgstr "" +msgstr "Markering:" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:881 #, python-format msgid "The following fields are invalid:" -msgstr "" +msgstr "Disse felter er ugyldige" #. module: web #: code:addons/web/controllers/main.py:890 #, python-format msgid "Languages" -msgstr "" +msgstr "Sprog" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1298 #, python-format msgid "...Upload in progress..." -msgstr "" +msgstr "...Upload er igang..." #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1789 #, python-format msgid "Import" -msgstr "Importér" +msgstr "Importer" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:565 #, python-format msgid "Could not restore the database" -msgstr "" +msgstr "Kunne ikke genindlæse Databasen" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:4982 #, python-format msgid "File upload" -msgstr "" +msgstr "Fil upload" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:3925 #, python-format msgid "Action Button" -msgstr "" +msgstr "Handling knap" #. module: web #. openerp-web @@ -461,42 +461,42 @@ msgstr "indeholder" #: code:addons/web/static/src/js/coresetup.js:623 #, python-format msgid "Take a minute to get a coffee,
because it's loading..." -msgstr "" +msgstr "Hent en kop kaffe,
der indlæses" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:435 #, python-format msgid "Activate the developer mode" -msgstr "" +msgstr "Aktiver udvikler tilstand" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:341 #, python-format msgid "Loading (%d)" -msgstr "" +msgstr "Indlæser (%d)" #. module: web #. openerp-web #: code:addons/web/static/src/js/search.js:1216 #, python-format msgid "GroupBy" -msgstr "" +msgstr "Grupper efter" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_list.js:699 #, python-format msgid "You must select at least one record." -msgstr "" +msgstr "Du skal vælge mindst en post" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:557 #, python-format msgid "View Log (perm_read)" -msgstr "" +msgstr "Vis log (perm_read)" #. module: web #. openerp-web @@ -517,7 +517,7 @@ msgstr "Relation:" #: code:addons/web/static/src/js/coresetup.js:590 #, python-format msgid "less than a minute ago" -msgstr "" +msgstr "For mindre end et minut siden" #. module: web #. openerp-web @@ -531,14 +531,14 @@ msgstr "Betingelse:" #: code:addons/web/static/src/js/view_form.js:1709 #, python-format msgid "Unsupported operator %s in domain %s" -msgstr "" +msgstr "Ikke-understøttet operator %s i domænet %s" #. module: web #. openerp-web #: code:addons/web/static/src/js/formats.js:246 #, python-format msgid "'%s' is not a correct float" -msgstr "" +msgstr "'%s' er ikke korrekt kommatal" #. module: web #. openerp-web @@ -552,28 +552,28 @@ msgstr "Gendannet" #: code:addons/web/static/src/js/view_list.js:409 #, python-format msgid "%d-%d of %d" -msgstr "" +msgstr "%d-%d af %d" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:2955 #, python-format msgid "Create and Edit..." -msgstr "" +msgstr "Opret og rediger" #. module: web #. openerp-web #: code:addons/web/static/src/js/pyeval.js:736 #, python-format msgid "Unknown nonliteral type " -msgstr "" +msgstr "Ukendt karakter type " #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:2359 #, python-format msgid "Resource error" -msgstr "" +msgstr "Ressource fejl" #. module: web #. openerp-web @@ -587,14 +587,14 @@ msgstr "er ikke" #: code:addons/web/static/src/xml/base.xml:572 #, python-format msgid "Print Workflow" -msgstr "" +msgstr "Udskriv workflow" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:413 #, python-format msgid "Please confirm your new password" -msgstr "" +msgstr "Bekræft venligst dit nye kodeord" #. module: web #. openerp-web @@ -608,14 +608,14 @@ msgstr "UTF-8" #: code:addons/web/static/src/xml/base.xml:443 #, python-format msgid "For more information visit" -msgstr "" +msgstr "For mere information, besøg" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1880 #, python-format msgid "Add All Info..." -msgstr "" +msgstr "Tilføj al info..." #. module: web #. openerp-web @@ -629,28 +629,28 @@ msgstr "Eksporter formater" #: code:addons/web/static/src/xml/base.xml:996 #, python-format msgid "On change:" -msgstr "" +msgstr "Ved ændring:" #. module: web #. openerp-web #: code:addons/web/static/src/js/views.js:939 #, python-format msgid "Model %s fields" -msgstr "" +msgstr "Modellér %s felter" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_list.js:906 #, python-format msgid "Setting 'id' attribute on existing record %s" -msgstr "" +msgstr "Opdaterer 'id' attribute på eksisterende poster %s" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_list.js:8 #, python-format msgid "List" -msgstr "" +msgstr "Liste" #. module: web #. openerp-web @@ -667,7 +667,7 @@ msgstr "større end" #: code:addons/web/static/src/xml/base.xml:568 #, python-format msgid "View" -msgstr "" +msgstr "Vis" #. module: web #. openerp-web @@ -681,7 +681,7 @@ msgstr "Gem filter" #: code:addons/web/static/src/xml/base.xml:1372 #, python-format msgid "Action ID:" -msgstr "" +msgstr "Aktion ID:" #. module: web #. openerp-web @@ -689,13 +689,14 @@ msgstr "" #, python-format msgid "Your user's preference timezone does not match your browser timezone:" msgstr "" +"Din brugers valgte tidszone stemmer ikke overens med browser tidszone:" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:1237 #, python-format msgid "Field '%s' specified in view could not be found." -msgstr "" +msgstr "Felt '%s' defineret i view findes ikke." #. module: web #. openerp-web @@ -723,14 +724,14 @@ msgstr "" #: code:addons/web/static/src/js/chrome.js:503 #, python-format msgid "The database has been duplicated." -msgstr "" +msgstr "Databasen er kopieret" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1643 #, python-format msgid "Apply" -msgstr "" +msgstr "Tilføj" #. module: web #. openerp-web @@ -752,21 +753,21 @@ msgstr "Gem 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 #: code:addons/web/static/src/js/view_form.js:2330 #, python-format msgid "E-mail error" -msgstr "" +msgstr "E-mail fejl" #. module: web #. openerp-web #: code:addons/web/static/src/js/coresetup.js:595 #, python-format msgid "a day ago" -msgstr "" +msgstr "en dag siden" #. module: web #. openerp-web @@ -791,6 +792,9 @@ msgid "" "\n" "Are you sure you want to leave this page ?" msgstr "" +"Advarsel, posten er ændret, dine ændringer mistes.\n" +"\n" +"Er du sikker på at du vil forlade denne side ?" #. module: web #. openerp-web @@ -818,21 +822,21 @@ msgstr "Begrænsning" #: code:addons/web/static/src/xml/base.xml:484 #, python-format msgid "Browser's timezone" -msgstr "" +msgstr "Browser's tidszone" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1623 #, python-format msgid "Filter name" -msgstr "" +msgstr "Filter navn" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1490 #, python-format msgid "-- Actions --" -msgstr "" +msgstr "- Handlinger -" #. module: web #. openerp-web @@ -849,7 +853,7 @@ msgstr "Tilføj" #: code:addons/web/static/src/xml/base.xml:558 #, python-format msgid "Toggle Form Layout Outline" -msgstr "" +msgstr "Skift formular layout udseende" #. module: web #. openerp-web @@ -863,14 +867,14 @@ msgstr "OpenERP.com" #: code:addons/web/static/src/js/view_form.js:2349 #, python-format msgid "Can't send email to invalid e-mail address" -msgstr "" +msgstr "Kan ikke sende email til ugyldig email adresse" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:658 #, python-format msgid "Add..." -msgstr "" +msgstr "Tilføj..." #. module: web #. openerp-web @@ -884,7 +888,7 @@ msgstr "Egenskaber" #: code:addons/web/static/src/js/view_form.js:435 #, python-format msgid "Wrong on change format: %s" -msgstr "" +msgstr "Fejl ved ændring af format: %s" #. module: web #. openerp-web @@ -892,14 +896,14 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:203 #, python-format msgid "Drop Database" -msgstr "" +msgstr "Slet databasen" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:488 #, python-format msgid "Click here to change your user's timezone." -msgstr "" +msgstr "Klik her for at ændre brugers tidszone" #. module: web #. openerp-web @@ -913,7 +917,7 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:649 #, python-format msgid "Delete this attachment" -msgstr "" +msgstr "Slet vedhæftet" #. module: web #. openerp-web @@ -931,7 +935,7 @@ msgstr "Gem" #: code:addons/web/static/src/xml/base.xml:370 #, python-format msgid "More" -msgstr "" +msgstr "Flere" #. module: web #. openerp-web @@ -945,28 +949,28 @@ msgstr "Brugernavn" #: code:addons/web/static/src/js/chrome.js:503 #, python-format msgid "Duplicating database" -msgstr "" +msgstr "Kopiering database" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:585 #, python-format msgid "Password has been changed successfully" -msgstr "" +msgstr "Kodeord opdateret" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_list_editable.js:793 #, python-format msgid "The form's data can not be discarded" -msgstr "" +msgstr "Data i formular kan ikke annulleres" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:555 #, python-format msgid "Debug View#" -msgstr "" +msgstr "Debug visning#" #. module: web #. openerp-web @@ -994,13 +998,17 @@ msgid "" "\n" "%s" msgstr "" +"Lokal validering fejl\n" +"%s\n" +"\n" +"%s" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:367 #, python-format msgid "Invalid database name" -msgstr "" +msgstr "Ugyldigt navn på database" #. module: web #. openerp-web @@ -1014,49 +1022,49 @@ msgstr "Gem listen med felter" #: code:addons/web/doc/module/static/src/xml/web_example.xml:5 #, python-format msgid "Start" -msgstr "" +msgstr "Start" #. module: web #. openerp-web #: code:addons/web/static/src/js/views.js:897 #, python-format msgid "View Log (%s)" -msgstr "" +msgstr "Vis log (%s)" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:586 #, python-format msgid "Creation Date:" -msgstr "" +msgstr "Oprettelse dato:" #. module: web #: code:addons/web/controllers/main.py:833 #: code:addons/web/controllers/main.py:878 #, python-format msgid "Error, password not changed !" -msgstr "" +msgstr "Fejl, password ikke ændret !" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:4981 #, python-format msgid "The selected file exceed the maximum file size of %s." -msgstr "" +msgstr "Den valgte fil er større end maksimal fil størrelse %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:585 #, python-format msgid "Changed Password" -msgstr "" +msgstr "Ændrede adgangskode" #. module: web #. openerp-web @@ -1074,7 +1082,7 @@ msgstr "Søg" #: code:addons/web/static/src/js/view_form.js:4482 #, python-format msgid "Open: " -msgstr "" +msgstr "Åbn: " #. module: web #. openerp-web @@ -1090,35 +1098,35 @@ msgstr "Sikkerhedskopi" #: code:addons/web/static/src/js/dates.js:80 #, python-format msgid "'%s' is not a valid time" -msgstr "" +msgstr "'%s' ikke en gyldig tid" #. 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' ikke en gyldig dato" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:955 #, python-format msgid "(nolabel)" -msgstr "" +msgstr "(nolabel)" #. module: web #. openerp-web #: code:addons/web/static/src/js/coresetup.js:596 #, python-format msgid "%d days ago" -msgstr "" +msgstr "%d dage siden" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1500 #, python-format msgid "(Any existing filter with the same name will be replaced)" -msgstr "(Et hvert filter med samme navn vil blive overskrevet)" +msgstr "Eksisterende filtre med samme navn vil blive overskrevet" #. module: web #. openerp-web @@ -1128,7 +1136,7 @@ msgstr "(Et hvert filter med samme navn vil blive overskrevet)" #: code:addons/web/static/src/xml/base.xml:1881 #, python-format msgid "Cancel" -msgstr "Annullér" +msgstr "Annuller" #. module: web #. openerp-web @@ -1144,28 +1152,28 @@ msgstr "Indlæser..." #: code:addons/web/static/src/xml/base.xml:589 #, python-format msgid "Latest Modification by:" -msgstr "" +msgstr "Seneste ændring af:" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:492 #, python-format msgid "Timezone mismatch" -msgstr "" +msgstr "Tidszone forskellig" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:1663 #, python-format msgid "Unknown operator %s in domain %s" -msgstr "" +msgstr "Ukendt operator %s i domænet %s" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:427 #, python-format msgid "%d / %d" -msgstr "" +msgstr "%d / %d" #. module: web #. openerp-web @@ -1199,7 +1207,7 @@ msgstr "" #: code:addons/web/static/src/js/coresetup.js:598 #, python-format msgid "%d months ago" -msgstr "" +msgstr "%d måneder siden" #. module: web #. openerp-web @@ -1214,13 +1222,13 @@ msgstr "Drop" #: code:addons/web/static/src/xml/base.xml:1491 #, python-format msgid "Add Advanced Filter" -msgstr "" +msgstr "Tilføj avanceret filter" #. module: web #: code:addons/web/controllers/main.py:871 #, python-format msgid "The new password and its confirmation must be identical." -msgstr "" +msgstr "Nyt kodeord skal være ens i begge linier" #. module: web #. openerp-web @@ -1228,14 +1236,14 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:266 #, python-format msgid "Restore Database" -msgstr "" +msgstr "Gendan database" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:702 #, python-format msgid "Login" -msgstr "" +msgstr "Log ind" #. module: web #. openerp-web @@ -1257,28 +1265,28 @@ msgstr "Gendan" #: code:addons/web/static/src/xml/base.xml:1695 #, python-format msgid "Export Type:" -msgstr "Eksporteringstype:" +msgstr "Eksport type:" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:428 #, python-format msgid "Log out" -msgstr "" +msgstr "Log af" #. module: web #. openerp-web #: code:addons/web/static/src/js/search.js:1192 #, python-format msgid "Group by: %s" -msgstr "" +msgstr "Gruper efter: %s" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:154 #, python-format msgid "No data provided." -msgstr "" +msgstr "Ingen data leveret." #. module: web #. openerp-web @@ -1286,7 +1294,7 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:1683 #, python-format msgid "Export" -msgstr "Eksportér" +msgstr "Eksporter" #. module: web #. openerp-web @@ -1300,28 +1308,28 @@ msgstr "Eksporter Til Fil" #: code:addons/web/static/src/js/views.js:1172 #, python-format msgid "You must choose at least one record." -msgstr "Du skal vælge mindst en registrering." +msgstr "Du skal vælge mindst en post." #. module: web #. openerp-web #: code:addons/web/static/src/js/coresetup.js:621 #, python-format msgid "Don't leave yet,
it's still loading..." -msgstr "" +msgstr "Forlad ikke,
indlæser stadigt..." #. module: web #. openerp-web #: code:addons/web/static/src/js/search.js:841 #, python-format msgid "Invalid Search" -msgstr "" +msgstr "Ugyldig søgning" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_list.js:990 #, python-format msgid "Could not find id in dataset" -msgstr "" +msgstr "Id i dataset ikke fundet" #. module: web #. openerp-web @@ -1349,28 +1357,28 @@ msgstr "%(page)d/%(page_count)d" #: code:addons/web/static/src/js/chrome.js:414 #, python-format msgid "The confirmation does not match the password" -msgstr "" +msgstr "Bekræftigelse svarer ikke til kodeord" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:463 #, python-format msgid "Edit Company data" -msgstr "" +msgstr "Ret firma data" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:5017 #, python-format msgid "Save As..." -msgstr "" +msgstr "Gem som..." #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:5138 #, python-format msgid "Could not display the selected image." -msgstr "" +msgstr "Kan ikke vise det valgte billed." #. module: web #. openerp-web @@ -1387,13 +1395,15 @@ msgid "" "For use if CSV files have titles on multiple lines, skips more than a single " "line during import" msgstr "" +"Bruges hvis CSV fil indeholder overskrifter i flere linier, udelader flere " +"linier under indlæsning" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:414 #, python-format msgid "99+" -msgstr "" +msgstr "99+" #. module: web #. openerp-web @@ -1407,28 +1417,28 @@ msgstr "1. Importér en .CSV fil" #: code:addons/web/static/src/js/chrome.js:702 #, python-format msgid "No database selected !" -msgstr "" +msgstr "Database ikke valgt !" #. module: web #. openerp-web #: code:addons/web/static/src/js/formats.js:184 #, python-format msgid "(%d records)" -msgstr "" +msgstr "(%d records)" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:992 #, python-format msgid "Change default:" -msgstr "" +msgstr "Ret standard:" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:189 #, python-format msgid "Original database name:" -msgstr "" +msgstr "Original database navn:" #. module: web #. openerp-web @@ -1445,14 +1455,14 @@ msgstr "er lig med" #: code:addons/web/static/src/js/views.js:1581 #, python-format msgid "Could not serialize XML" -msgstr "" +msgstr "Kunne ikke signere XML" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1637 #, python-format msgid "Advanced Search" -msgstr "" +msgstr "Avanceret søgning" #. module: web #. openerp-web @@ -1466,7 +1476,7 @@ msgstr "Bekræft ny hovedadgangskode" #: code:addons/web/static/src/js/coresetup.js:624 #, python-format msgid "Maybe you should consider reloading the application by pressing F5..." -msgstr "" +msgstr "Du bør overveje at genindlæse programmet med tasten F5..." #. module: web #. openerp-web @@ -1491,14 +1501,14 @@ msgstr "indeholder ikke" #: code:addons/web/static/src/xml/base.xml:1806 #, python-format msgid "Import Options" -msgstr "Importeringsindstillinger" +msgstr "Importindstillinger" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:3023 #, python-format msgid "Add %s" -msgstr "" +msgstr "Tilføj %s" #. module: web #. openerp-web @@ -1522,7 +1532,7 @@ msgstr "Luk" #, python-format msgid "" "You may not believe it,
but the application is actually loading..." -msgstr "" +msgstr "Du tror det ikke,
men programmet er igang med at indlæse..." #. module: web #. openerp-web @@ -1536,7 +1546,7 @@ msgstr "CSV Fil:" #: code:addons/web/static/src/js/search.js:1879 #, python-format msgid "Advanced" -msgstr "" +msgstr "Avanceret" #. module: web #. openerp-web @@ -1549,14 +1559,14 @@ msgstr "Træ" #: code:addons/web/controllers/main.py:793 #, python-format msgid "Could not drop database !" -msgstr "" +msgstr "Kan ikke slette databasen !" #. 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 ikke et valid heltal" #. module: web #. openerp-web @@ -1570,28 +1580,28 @@ msgstr "Alle brugere" #: code:addons/web/static/src/js/view_form.js:1671 #, python-format msgid "Unknown field %s in domain %s" -msgstr "" +msgstr "Ukendt felt %s i domænet %s" #. module: web #. openerp-web #: code:addons/web/static/src/js/views.js:1546 #, python-format msgid "Node [%s] is not a JSONified XML node" -msgstr "" +msgstr "Node [%s] er ikke et JSONified XML node" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1454 #, python-format msgid "Advanced Search..." -msgstr "" +msgstr "Avanceret søgning..." #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:521 #, python-format msgid "Dropping database" -msgstr "" +msgstr "Sletter database" #. module: web #. openerp-web @@ -1614,7 +1624,7 @@ msgstr "Ja" #: code:addons/web/static/src/js/view_form.js:5002 #, python-format msgid "There was a problem while uploading your file" -msgstr "" +msgstr "Fejl ved upload af din fil" #. module: web #. openerp-web @@ -1635,28 +1645,28 @@ msgstr "Størrelse:" #: code:addons/web/static/src/xml/base.xml:1845 #, python-format msgid "--- Don't Import ---" -msgstr "" +msgstr "--- Indlæs ikke ---" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1697 #, python-format msgid "Import-Compatible Export" -msgstr "" +msgstr "Importer - kompatibel eksport" #. module: web #. openerp-web #: code:addons/web/static/src/js/coresetup.js:600 #, python-format msgid "%d years ago" -msgstr "" +msgstr "%d år siden" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_list.js:1050 #, python-format msgid "Unknown m2m command %s" -msgstr "" +msgstr "Ukendt m2m kommando %s" #. module: web #. openerp-web @@ -1678,21 +1688,21 @@ msgstr "Nyt database navn:" #: code:addons/web/static/src/js/chrome.js:411 #, python-format msgid "Please enter your new password" -msgstr "" +msgstr "Indtast din nye adgangskode" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:5017 #, python-format msgid "The field is empty, there's nothing to save !" -msgstr "" +msgstr "Feltet er tomt, der er intet at gemme !" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:567 #, python-format msgid "Manage Views" -msgstr "" +msgstr "Håndtér visninger" #. module: web #. openerp-web @@ -1713,14 +1723,14 @@ msgstr "Linier, der springes over" #: code:addons/web/static/src/js/view_form.js:2945 #, python-format msgid "Create \"%s\"" -msgstr "" +msgstr "Opret \"%s\"" #. module: web #. openerp-web #: code:addons/web/static/src/js/data_export.js:362 #, python-format msgid "Please select fields to save export list..." -msgstr "Vælg venligst mulighed for at gemme eksporteringsliste..." +msgstr "Vælg felter for at gemme eksport liste..." #. module: web #. openerp-web @@ -1734,7 +1744,7 @@ msgstr "" #: code:addons/web/static/src/js/view_form.js:2379 #, python-format msgid "This resource is empty" -msgstr "" +msgstr "Denne ressource er tom" #. module: web #. openerp-web @@ -1756,7 +1766,7 @@ msgstr "Importeringen fejlede som følge af:" #: code:addons/web/static/src/xml/base.xml:561 #, python-format msgid "JS Tests" -msgstr "" +msgstr "JS Tests" #. module: web #. openerp-web @@ -1770,7 +1780,7 @@ msgstr "Gem som:" #: code:addons/web/static/src/js/search.js:1024 #, python-format msgid "Filter on: %s" -msgstr "" +msgstr "Filtrer med: %s" #. module: web #. openerp-web @@ -1850,7 +1860,7 @@ msgstr "OpenERP" #: code:addons/web/doc/module/static/src/xml/web_example.xml:8 #, python-format msgid "Stop" -msgstr "" +msgstr "Stop" #. module: web #. openerp-web @@ -1874,7 +1884,7 @@ msgstr "Uploader ..." #: code:addons/web/static/src/xml/base.xml:1874 #, python-format msgid "Name:" -msgstr "" +msgstr "Navn:" #. module: web #. openerp-web @@ -1888,14 +1898,14 @@ msgstr "Om" #: code:addons/web/static/src/xml/base.xml:1457 #, python-format msgid "Search Again" -msgstr "" +msgstr "Søg igen" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1481 #, python-format msgid "-- Filters --" -msgstr "" +msgstr "- Filtre -" #. module: web #. openerp-web @@ -1911,7 +1921,7 @@ msgstr "Ryd" #: code:addons/web/static/src/xml/base.xml:1698 #, python-format msgid "Export all Data" -msgstr "Eksporter alt Data" +msgstr "Eksporter alle Data" #. module: web #. openerp-web @@ -1921,13 +1931,14 @@ msgid "" "Grouping on field '%s' is not possible because that field does not appear in " "the list view." msgstr "" +"Gruppering af felt '%s' er ikke muligt da feltet ikke vises i oversigten." #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:559 #, python-format msgid "Set Defaults" -msgstr "" +msgstr "Det standard" #. module: web #. openerp-web @@ -1949,7 +1960,7 @@ msgstr "" #: code:addons/web/static/src/js/view_form.js:320 #, python-format msgid "The record could not be found in the database." -msgstr "" +msgstr "Posten findes ikke i databasen." #. module: web #. openerp-web @@ -1970,7 +1981,7 @@ msgstr "Type:" #: code:addons/web/static/src/js/chrome.js:560 #, python-format msgid "Incorrect super-administrator password" -msgstr "" +msgstr "Forkert super-administrators kodeord" #. module: web #. openerp-web @@ -1985,14 +1996,14 @@ msgstr "Objekt:" #: code:addons/web/static/src/js/chrome.js:343 #, python-format msgid "Loading" -msgstr "" +msgstr "Indlæser" #. module: web #. openerp-web #: code:addons/web/static/src/js/coresetup.js:599 #, python-format msgid "about a year ago" -msgstr "" +msgstr "cirka et år siden" #. module: web #. openerp-web @@ -2012,13 +2023,15 @@ msgid "" "The type of the field '%s' must be a many2many field with a relation to " "'ir.attachment' model." msgstr "" +"Typen på feltet '%s' skal være et mange til mange felt med relation til " +"'ir.attachment' model." #. module: web #. openerp-web #: code:addons/web/static/src/js/coresetup.js:594 #, python-format msgid "%d hours ago" -msgstr "" +msgstr "%d timer siden" #. module: web #. openerp-web @@ -2026,14 +2039,14 @@ msgstr "" #: code:addons/web/static/src/js/view_form.js:4464 #, python-format msgid "Add: " -msgstr "" +msgstr "Tilføj: " #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1879 #, python-format msgid "Quick Add" -msgstr "" +msgstr "Hurtig tilføj" #. module: web #. openerp-web @@ -2060,7 +2073,7 @@ msgstr "Ok" #: code:addons/web/static/src/js/views.js:1237 #, python-format msgid "Uploading..." -msgstr "" +msgstr "Uploader..." #. module: web #. openerp-web @@ -2074,7 +2087,7 @@ msgstr "Indlæs demonstrations data:" #: code:addons/web/static/src/xml/base.xml:637 #, python-format msgid "Created by :" -msgstr "" +msgstr "Oprettet af:" #. module: web #. openerp-web @@ -2082,7 +2095,7 @@ msgstr "" #: code:addons/web/static/src/js/dates.js:26 #, python-format msgid "'%s' is not a valid datetime" -msgstr "" +msgstr "'%s' er ikke korrekt dato-tide" #. module: web #. openerp-web @@ -2113,7 +2126,7 @@ msgstr "Advarsel" #: code:addons/web/static/src/xml/base.xml:569 #, python-format msgid "Edit SearchView" -msgstr "" +msgstr "Rediger søgevisning" #. module: web #. openerp-web @@ -2127,14 +2140,14 @@ msgstr "er sandt" #: code:addons/web/static/src/js/view_form.js:4030 #, python-format msgid "Add an item" -msgstr "" +msgstr "Tilføj et element" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1621 #, python-format msgid "Save current filter" -msgstr "" +msgstr "Gem nuværende filter" #. module: web #. openerp-web @@ -2148,7 +2161,7 @@ msgstr "Bekræft" #: code:addons/web/static/src/js/data_export.js:127 #, python-format msgid "Please enter save field list name" -msgstr "" +msgstr "Indtast gem felt list navn" #. module: web #. openerp-web @@ -2162,14 +2175,14 @@ msgstr "Download \"%s\"" #: code:addons/web/static/src/js/view_form.js:325 #, python-format msgid "New" -msgstr "" +msgstr "Ny" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_list.js:1777 #, python-format msgid "Can't convert value %s to context" -msgstr "" +msgstr "Kan ikke konvertere værdien %s til context" #. module: web #. openerp-web @@ -2524,7 +2537,7 @@ msgstr "Gem & Luk" #: code:addons/web/static/src/js/view_form.js:2932 #, python-format msgid "Search More..." -msgstr "" +msgstr "Søg flere..." #. module: web #. openerp-web @@ -2563,7 +2576,7 @@ msgstr "Vælg dato" #: code:addons/web/static/src/js/search.js:1369 #, python-format msgid "Search %(field)s for: %(value)s" -msgstr "" +msgstr "Søg %(field)s efter: %(value)s" #. module: web #. openerp-web diff --git a/addons/web/i18n/de.po b/addons/web/i18n/de.po index 9ad1bb5a141..a2281ab4b1a 100644 --- a/addons/web/i18n/de.po +++ b/addons/web/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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/en_AU.po b/addons/web/i18n/en_AU.po index 09b64803d82..1e3a37162db 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/en_GB.po b/addons/web/i18n/en_GB.po index 08c31c1c0e3..7dfa6515d4e 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/es.po b/addons/web/i18n/es.po index 8d531e4ed78..34f60912f93 100644 --- a/addons/web/i18n/es.po +++ b/addons/web/i18n/es.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" "PO-Revision-Date: 2012-12-10 20:41+0000\n" -"Last-Translator: Santi (Pexego) \n" +"Last-Translator: Santi Argüeso(Pexego) \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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/es_CL.po b/addons/web/i18n/es_CL.po index 650bcadd3e5..fc481f3d3f3 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/es_CR.po b/addons/web/i18n/es_CR.po index f3650992b16..fef6986e35d 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" "Language: es\n" #. module: web diff --git a/addons/web/i18n/es_DO.po b/addons/web/i18n/es_DO.po index 439c44269cc..86bb3862f19 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/es_EC.po b/addons/web/i18n/es_EC.po index e3c3487150e..2689e3b0572 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/es_MX.po b/addons/web/i18n/es_MX.po index ecbbd282b52..211d645ac6b 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/et.po b/addons/web/i18n/et.po index 24fc5f0196d..c8ada6f9e52 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/eu.po b/addons/web/i18n/eu.po index 0f7886a41ab..ad981b78047 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:44+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/fa.po b/addons/web/i18n/fa.po index dd37ceea97c..e2f8024867f 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/fi.po b/addons/web/i18n/fi.po index f6cec972efd..ef20351be73 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/fr.po b/addons/web/i18n/fr.po index 6f58b51f26a..661ac102fe3 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/fr_CA.po b/addons/web/i18n/fr_CA.po index 8f920c29c44..086b1885aec 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/gl.po b/addons/web/i18n/gl.po index cc432c2af08..3a8b37f7db7 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/gu.po b/addons/web/i18n/gu.po index 483336d1fca..7fab254c9d5 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/hi.po b/addons/web/i18n/hi.po index 2351f16b14f..d10150e471b 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/hr.po b/addons/web/i18n/hr.po index ae81e7ba566..08710210cde 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/hu.po b/addons/web/i18n/hu.po index ed9e7054f1a..4a1fd98dac1 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/id.po b/addons/web/i18n/id.po index 9b924485eb8..49e8cc77468 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/it.po b/addons/web/i18n/it.po index 6084746456e..eb04e78d915 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/ja.po b/addons/web/i18n/ja.po index dc850856727..8b0f350a322 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/ka.po b/addons/web/i18n/ka.po index 373330d5532..65084778ade 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/ko.po b/addons/web/i18n/ko.po index d7dd6efb9e0..8fefc62c832 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/lo.po b/addons/web/i18n/lo.po index 375932109d6..cfb3098e4cd 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/lt.po b/addons/web/i18n/lt.po index 78597cba711..20e4e0f1e8e 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web @@ -29,7 +29,7 @@ msgstr "Numatytoji kalba:" #: code:addons/web/static/src/js/coresetup.js:592 #, python-format msgid "%d minutes ago" -msgstr "prieš %d minutes" +msgstr "Prieš %d min." #. module: web #. openerp-web @@ -59,7 +59,7 @@ msgstr "mažiau arba lygu" #: code:addons/web/static/src/js/chrome.js:410 #, python-format msgid "Please enter your previous password" -msgstr "" +msgstr "Prašome įvesti seną slaptažodį" #. module: web #. openerp-web @@ -82,7 +82,7 @@ msgstr "Pakeisti pagrindinį slaptažodį" #: code:addons/web/static/src/js/chrome.js:513 #, python-format msgid "Do you really want to delete the database: %s ?" -msgstr "" +msgstr "Ar tikrai norite ištrinti duomenų bazę: %s ?" #. module: web #. openerp-web @@ -96,7 +96,7 @@ msgstr "Ieškoti %(field)s ties: %(value)s" #: code:addons/web/static/src/js/chrome.js:559 #, python-format msgid "Access Denied" -msgstr "" +msgstr "Prieiga uždrausta" #. module: web #. openerp-web @@ -134,7 +134,7 @@ msgstr "%(view_type)s rodinys" #: code:addons/web/static/src/js/dates.js:53 #, python-format msgid "'%s' is not a valid date" -msgstr "" +msgstr "„%s“ nėra tinkama data" #. module: web #. openerp-web @@ -161,7 +161,7 @@ msgstr "" #: code:addons/web/controllers/main.py:869 #, python-format msgid "You cannot leave any password empty." -msgstr "" +msgstr "Jūs negalite palikti slaptažodio lauko tuščio." #. module: web #. openerp-web @@ -214,13 +214,14 @@ msgstr "Paskutinio keitimo data:" #, python-format msgid "M2O search fields do not currently handle multiple default values" msgstr "" +"M2O paieškos laukai šiuo metu negali apdoroti kelių numatytųjų reikšmių" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:1241 #, python-format msgid "Widget type '%s' is not implemented" -msgstr "" +msgstr "Valdiklis '%s' neįdiegtas" #. module: web #. openerp-web @@ -249,7 +250,7 @@ msgstr "" #: code:addons/web/static/src/js/formats.js:286 #, python-format msgid "'%s' is not a correct time" -msgstr "" +msgstr "'%s' netinkamas laiko formatas" #. module: web #. openerp-web @@ -270,7 +271,7 @@ msgstr "Naujas slaptažodis:" #: code:addons/web/static/src/xml/base.xml:632 #, python-format msgid "Attachment :" -msgstr "" +msgstr "Priedas:" #. module: web #. openerp-web @@ -319,21 +320,21 @@ msgstr "Mygtuko tipas:" #: code:addons/web/static/src/xml/base.xml:441 #, python-format msgid "OpenERP SA Company" -msgstr "" +msgstr "OpenERP SA Įmonė" #. module: web #. openerp-web #: code:addons/web/static/src/js/search.js:1663 #, python-format msgid "Custom Filter" -msgstr "" +msgstr "Pasirinktinis filtras" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:177 #, python-format msgid "Duplicate Database" -msgstr "" +msgstr "Duomenų bazė dubliuojasi" #. module: web #. openerp-web @@ -355,7 +356,7 @@ msgstr "Pakeisti slaptažodį" #: code:addons/web/static/src/js/view_form.js:3528 #, python-format msgid "View type '%s' is not supported in One2Many." -msgstr "" +msgstr "Užklausos tipas '%s' nepalaikomas vienas-su-daug ryšyje." #. module: web #. openerp-web @@ -370,7 +371,7 @@ msgstr "Atsisiųsti" #: code:addons/web/static/src/js/formats.js:270 #, python-format msgid "'%s' is not a correct datetime" -msgstr "" +msgstr "'%s' nėra teisingas datos ir laiko formatas" #. module: web #. openerp-web @@ -384,7 +385,7 @@ msgstr "Grupė" #: code:addons/web/static/src/xml/base.xml:949 #, python-format msgid "Unhandled widget" -msgstr "" +msgstr "Nepalaikomas valdiklis" #. module: web #. openerp-web @@ -404,14 +405,14 @@ msgstr "Šių laukų reikšmės neteisingos:" #: code:addons/web/controllers/main.py:890 #, python-format msgid "Languages" -msgstr "" +msgstr "Kalbos" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1298 #, python-format msgid "...Upload in progress..." -msgstr "" +msgstr "...Įkeliama..." #. module: web #. openerp-web @@ -425,21 +426,21 @@ msgstr "Importuoti" #: code:addons/web/static/src/js/chrome.js:565 #, python-format msgid "Could not restore the database" -msgstr "" +msgstr "Nepavyko atkurti duomenų bazės" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:4982 #, python-format msgid "File upload" -msgstr "" +msgstr "Nusiųsti failą" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:3925 #, python-format msgid "Action Button" -msgstr "" +msgstr "Veiksmo mygtukas" #. module: web #. openerp-web @@ -461,7 +462,7 @@ msgstr "turi" #: code:addons/web/static/src/js/coresetup.js:623 #, python-format msgid "Take a minute to get a coffee,
because it's loading..." -msgstr "" +msgstr "Minutėlę palaukite,
kraunama..." #. module: web #. openerp-web @@ -552,7 +553,7 @@ msgstr "Atkurta" #: code:addons/web/static/src/js/view_list.js:409 #, python-format msgid "%d-%d of %d" -msgstr "" +msgstr "%d-%d iš %d" #. module: web #. openerp-web @@ -566,7 +567,7 @@ msgstr "Sukurti ir keisti..." #: code:addons/web/static/src/js/pyeval.js:736 #, python-format msgid "Unknown nonliteral type " -msgstr "" +msgstr "Nežinomas tipas " #. module: web #. openerp-web @@ -594,21 +595,21 @@ msgstr "Spausdinti darbų seką" #: code:addons/web/static/src/js/chrome.js:413 #, python-format msgid "Please confirm your new password" -msgstr "" +msgstr "Prašome patvirtinti savo naują slaptažodį" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:1825 #, python-format msgid "UTF-8" -msgstr "" +msgstr "UTF-8" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:443 #, python-format msgid "For more information visit" -msgstr "" +msgstr "Daugiau informacijos rasite" #. module: web #. openerp-web @@ -629,21 +630,21 @@ msgstr "Eksportavimo formatai" #: code:addons/web/static/src/xml/base.xml:996 #, python-format msgid "On change:" -msgstr "" +msgstr "Pakeitus:" #. module: web #. openerp-web #: code:addons/web/static/src/js/views.js:939 #, python-format msgid "Model %s fields" -msgstr "" +msgstr "Modelio %s laukeliai" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_list.js:906 #, python-format msgid "Setting 'id' attribute on existing record %s" -msgstr "" +msgstr "Nustatomas 'id' atributas esamam įrašui %s" #. module: web #. openerp-web @@ -697,7 +698,7 @@ msgstr "" #: code:addons/web/static/src/js/view_form.js:1237 #, python-format msgid "Field '%s' specified in view could not be found." -msgstr "" +msgstr "Luakas '%s' nurodytas užklausoje nerastas." #. module: web #. openerp-web @@ -718,14 +719,14 @@ msgstr "Senas slaptažodis:" #: code:addons/web/static/src/js/formats.js:113 #, python-format msgid "Bytes,Kb,Mb,Gb,Tb,Pb,Eb,Zb,Yb" -msgstr "" +msgstr "Bitai,Kb,Mb,Gb,Tb,Pb,Eb,Zb,Yb" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:503 #, python-format msgid "The database has been duplicated." -msgstr "" +msgstr "Duomenų bazė buvo dubliuota." #. module: web #. openerp-web @@ -754,7 +755,7 @@ msgstr "Įrašyti kaip" #: 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 @@ -868,7 +869,7 @@ msgstr "OpenERP.com" #: code:addons/web/static/src/js/view_form.js:2349 #, python-format msgid "Can't send email to invalid e-mail address" -msgstr "" +msgstr "Nepavyksta išsiųsti laiško netinkamu elektroninio pašto adresu" #. module: web #. openerp-web @@ -889,7 +890,7 @@ msgstr "Nustatymai" #: code:addons/web/static/src/js/view_form.js:435 #, python-format msgid "Wrong on change format: %s" -msgstr "" +msgstr "Blogai pakeistas formatas: %s" #. module: web #. openerp-web @@ -950,28 +951,28 @@ msgstr "Naudotojo vardas" #: code:addons/web/static/src/js/chrome.js:503 #, python-format msgid "Duplicating database" -msgstr "" +msgstr "Duomenų bazė dubliuojasi" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:585 #, python-format msgid "Password has been changed successfully" -msgstr "" +msgstr "Slaptažodis buvo sėkmingai pakeistas" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_list_editable.js:793 #, python-format msgid "The form's data can not be discarded" -msgstr "" +msgstr "Formos duomenys negali būti sunaikinti" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:555 #, python-format msgid "Debug View#" -msgstr "" +msgstr "Derinti užklausą#" #. module: web #. openerp-web @@ -1019,7 +1020,7 @@ msgstr "Įrašyti laukų sarašą" #: code:addons/web/doc/module/static/src/xml/web_example.xml:5 #, python-format msgid "Start" -msgstr "" +msgstr "Pradėti" #. module: web #. openerp-web @@ -1040,14 +1041,14 @@ msgstr "Sukūrimo data:" #: code:addons/web/controllers/main.py:878 #, python-format msgid "Error, password not changed !" -msgstr "" +msgstr "Klaida, slaptažodžis nepakeistas!" #. module: web #. openerp-web #: code:addons/web/static/src/js/view_form.js:4981 #, python-format msgid "The selected file exceed the maximum file size of %s." -msgstr "" +msgstr "Pasirinktas failas viršija maksimalų failo dydį %s." #. module: web #. openerp-web @@ -1061,7 +1062,7 @@ msgstr "" #: code:addons/web/static/src/js/chrome.js:585 #, python-format msgid "Changed Password" -msgstr "" +msgstr "Slaptažodis pakeistas" #. module: web #. openerp-web @@ -1095,14 +1096,14 @@ msgstr "Daryti atsarginę kopiją" #: code:addons/web/static/src/js/dates.js:80 #, python-format msgid "'%s' is not a valid time" -msgstr "" +msgstr "'%s' nėra tinkamas laiko formatas" #. 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' nėra teisingas datos formatas" #. module: web #. openerp-web @@ -1170,7 +1171,7 @@ msgstr "Nežinomas operatorius %s domene %s" #: code:addons/web/static/src/js/view_form.js:427 #, python-format msgid "%d / %d" -msgstr "" +msgstr "%d / %d" #. module: web #. openerp-web @@ -1224,7 +1225,7 @@ msgstr "Pridėti sudėtingą filtrą" #: code:addons/web/controllers/main.py:871 #, python-format msgid "The new password and its confirmation must be identical." -msgstr "" +msgstr "Naujas slaptažodis ir jo patvirtinimas turi sutapti." #. module: web #. openerp-web @@ -1246,7 +1247,7 @@ msgstr "Prisijungimas" #: code:addons/web/static/src/xml/base.xml:442 #, python-format msgid "Licenced under the terms of" -msgstr "" +msgstr "Licencijuota pagal" #. module: web #. openerp-web @@ -1282,7 +1283,7 @@ msgstr "Grupuoti pagal: %s" #: code:addons/web/static/src/js/view_form.js:154 #, python-format msgid "No data provided." -msgstr "" +msgstr "Neturima duomenų." #. module: web #. openerp-web @@ -1311,7 +1312,7 @@ msgstr "Turite pasirinkti bent vieną įrašą." #: code:addons/web/static/src/js/coresetup.js:621 #, python-format msgid "Don't leave yet,
it's still loading..." -msgstr "" +msgstr "Neišeikite kolkas
puslapis vis dar kraunamas ..." #. module: web #. openerp-web @@ -1353,7 +1354,7 @@ msgstr "" #: code:addons/web/static/src/js/chrome.js:414 #, python-format msgid "The confirmation does not match the password" -msgstr "" +msgstr "Slaptažodžiai nesutampa" #. module: web #. openerp-web @@ -1374,7 +1375,7 @@ msgstr "Įrašyti kaip..." #: code:addons/web/static/src/js/view_form.js:5138 #, python-format msgid "Could not display the selected image." -msgstr "" +msgstr "Nepavyko parodyti pasirinkto vaizdo." #. module: web #. openerp-web @@ -1397,7 +1398,7 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:414 #, python-format msgid "99+" -msgstr "" +msgstr "99+" #. module: web #. openerp-web @@ -1411,7 +1412,7 @@ msgstr "1. Importuoti .CSV failą" #: code:addons/web/static/src/js/chrome.js:702 #, python-format msgid "No database selected !" -msgstr "" +msgstr "Nepasirinkta duomenų bazė!" #. module: web #. openerp-web @@ -1425,14 +1426,14 @@ msgstr "(%d įrašai)" #: code:addons/web/static/src/xml/base.xml:992 #, python-format msgid "Change default:" -msgstr "" +msgstr "Keisti numatytąsias reikšmes:" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:189 #, python-format msgid "Original database name:" -msgstr "" +msgstr "Duomenų bazės pavadinimas:" #. module: web #. openerp-web @@ -1471,6 +1472,7 @@ msgstr "Pakartoti naują pagrindinį slaptažodį:" #, python-format msgid "Maybe you should consider reloading the application by pressing F5..." msgstr "" +"Gal jūs turėtumėte apsvarstyti puslapio perkrovimą paspausdami F5 ..." #. module: web #. openerp-web @@ -1527,6 +1529,7 @@ msgstr "Uždaryta" msgid "" "You may not believe it,
but the application is actually loading..." msgstr "" +"Jūs galite nepatikėti,
tačiau programa iš tikrųjų kraunama ..." #. module: web #. openerp-web @@ -1553,14 +1556,14 @@ msgstr "Medis" #: code:addons/web/controllers/main.py:793 #, python-format msgid "Could not drop database !" -msgstr "" +msgstr "Nepavyko ištrinti duomenų bazės!" #. 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' nėra sveikasis skaičius" #. module: web #. openerp-web @@ -1595,7 +1598,7 @@ msgstr "Išsami paieška..." #: code:addons/web/static/src/js/chrome.js:521 #, python-format msgid "Dropping database" -msgstr "" +msgstr "Trinama duomenų bazė" #. module: web #. openerp-web @@ -1625,7 +1628,7 @@ msgstr "Įkeliant failą kilo problema" #: code:addons/web/static/src/xml/base.xml:580 #, python-format msgid "XML ID:" -msgstr "" +msgstr "XML identifikatorius:" #. module: web #. openerp-web @@ -1660,7 +1663,7 @@ msgstr "prieš %d metus" #: code:addons/web/static/src/js/view_list.js:1050 #, python-format msgid "Unknown m2m command %s" -msgstr "" +msgstr "Nežinomas m2m komanda %s" #. module: web #. openerp-web @@ -1682,7 +1685,7 @@ msgstr "Naujos duomenų bazės pavadinimas:" #: code:addons/web/static/src/js/chrome.js:411 #, python-format msgid "Please enter your new password" -msgstr "" +msgstr "Prašome įvesti naują slaptažodį" #. module: web #. openerp-web @@ -1724,14 +1727,14 @@ msgstr "Sukurti \"%s\"" #: code:addons/web/static/src/js/data_export.js:362 #, python-format msgid "Please select fields to save export list..." -msgstr "" +msgstr "Prašome pasirinkti laukus eksportuojamo sąrašo išsaugojimui..." #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:440 #, python-format msgid "Copyright © 2004-TODAY OpenERP SA. All Rights Reserved." -msgstr "" +msgstr "Visos teisės saugomos © 2004-TODAY OpenERP SA." #. module: web #. openerp-web @@ -1760,7 +1763,7 @@ msgstr "Importavimas nepavyko dėl:" #: code:addons/web/static/src/xml/base.xml:561 #, python-format msgid "JS Tests" -msgstr "" +msgstr "JS testai" #. module: web #. openerp-web @@ -1789,14 +1792,14 @@ msgstr "Sukurti: " #: code:addons/web/static/src/xml/base.xml:562 #, python-format msgid "View Fields" -msgstr "" +msgstr "Užklausos laukai" #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:348 #, python-format msgid "Confirm New Password:" -msgstr "" +msgstr "Patvirtinkite naują slaptažodį:" #. module: web #. openerp-web @@ -1847,7 +1850,7 @@ msgstr "Numatyta:" #: code:addons/web/static/src/xml/base.xml:468 #, python-format msgid "OpenERP" -msgstr "" +msgstr "OpenERP" #. module: web #. openerp-web @@ -1925,13 +1928,15 @@ msgid "" "Grouping on field '%s' is not possible because that field does not appear in " "the list view." msgstr "" +"Grupavimas pagal laukus '%s' nėra įmanomas, nes ši sritis nėra rodoma sąrašo " +"rodinyje." #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:559 #, python-format msgid "Set Defaults" -msgstr "" +msgstr "Nustatyti numatytuosius" #. module: web #. openerp-web @@ -1974,7 +1979,7 @@ msgstr "Tipas:" #: code:addons/web/static/src/js/chrome.js:560 #, python-format msgid "Incorrect super-administrator password" -msgstr "" +msgstr "Neteisingas super-administratoriaus slaptažodis" #. module: web #. openerp-web @@ -2044,7 +2049,7 @@ msgstr "Greitas pridėjimas" #: code:addons/web/static/src/xml/base.xml:1826 #, python-format msgid "Latin 1" -msgstr "" +msgstr "Latin 1" #. module: web #. openerp-web @@ -2078,7 +2083,7 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:637 #, python-format msgid "Created by :" -msgstr "" +msgstr "Sukūrė:" #. module: web #. openerp-web @@ -2086,7 +2091,7 @@ msgstr "" #: code:addons/web/static/src/js/dates.js:26 #, python-format msgid "'%s' is not a valid datetime" -msgstr "" +msgstr "'%s' nėra teisingas datos ir laiko formatas" #. module: web #. openerp-web @@ -2131,7 +2136,7 @@ msgstr "yra teigiamas" #: code:addons/web/static/src/js/view_form.js:4030 #, python-format msgid "Add an item" -msgstr "" +msgstr "Pridėti objektą" #. module: web #. openerp-web @@ -2152,7 +2157,7 @@ msgstr "Patvirtinti" #: code:addons/web/static/src/js/data_export.js:127 #, python-format msgid "Please enter save field list name" -msgstr "" +msgstr "Prašome įvesti saugomo lauko sąrašo pavadinimą" #. module: web #. openerp-web @@ -2173,7 +2178,7 @@ msgstr "Nauja" #: code:addons/web/static/src/js/view_list.js:1777 #, python-format msgid "Can't convert value %s to context" -msgstr "" +msgstr "Negalima konvertuoti vertės %s kontekste" #. module: web #. openerp-web @@ -2211,7 +2216,7 @@ msgstr "Mygtukas" #: code:addons/web/static/src/xml/base.xml:440 #, python-format msgid "OpenERP is a trademark of the" -msgstr "" +msgstr "OpenERP yra prekinis ženklas" #. module: web #. openerp-web @@ -2246,13 +2251,13 @@ msgstr "Apie OpenERP" #: code:addons/web/static/src/js/formats.js:301 #, python-format msgid "'%s' is not a correct date, datetime nor time" -msgstr "" +msgstr "'%s' nėra teisinga datos, datos ir laiko arba tik laiko formatas" #. module: web #: code:addons/web/controllers/main.py:1307 #, python-format msgid "No content found for field '%s' on '%s:%s'" -msgstr "" +msgstr "Nėra rasta turinio nurodytiems laukams '%s' iš '%s:%s'" #. module: web #. openerp-web @@ -2280,7 +2285,7 @@ msgstr "Tvarkyti duomenų bazes" #: code:addons/web/static/src/js/pyeval.js:770 #, python-format msgid "Evaluation Error" -msgstr "" +msgstr "Vertinimo klaida" #. module: web #. openerp-web @@ -2314,6 +2319,7 @@ msgstr "Ne" #, python-format msgid "'%s' is not convertible to date, datetime nor time" msgstr "" +"'%s' nėra konvertuojamas į datos, datos ir laiko ar tik laiko formatą" #. module: web #. openerp-web @@ -2366,7 +2372,7 @@ msgstr "" #: code:addons/web/static/src/js/chrome.js:531 #, python-format msgid "Backed" -msgstr "" +msgstr "Palaiko" #. module: web #. openerp-web @@ -2380,7 +2386,7 @@ msgstr "Numatytasis" #: code:addons/web/static/src/js/view_list.js:1358 #, python-format msgid "%s (%d)" -msgstr "" +msgstr "%s (%d)" #. module: web #. openerp-web @@ -2401,7 +2407,7 @@ msgstr "Filtras" #: code:addons/web/static/src/xml/base.xml:972 #, python-format msgid "Widget:" -msgstr "" +msgstr "Valdiklis:" #. module: web #. openerp-web @@ -2415,7 +2421,7 @@ msgstr "Keisti veiksmą" #: code:addons/web/static/src/xml/base.xml:577 #, python-format msgid "ID:" -msgstr "" +msgstr "Identifikatorius:" #. module: web #. openerp-web @@ -2457,14 +2463,14 @@ msgstr "Laukas:" #: code:addons/web/static/src/xml/base.xml:642 #, python-format msgid "Modified by :" -msgstr "" +msgstr "Pakeistas:" #. module: web #. openerp-web #: code:addons/web/static/src/js/chrome.js:521 #, python-format msgid "The database %s has been dropped" -msgstr "" +msgstr "Duomenų bazė %s buvo panaikinta" #. module: web #. openerp-web @@ -2493,7 +2499,7 @@ msgstr "Spausdinti" #: code:addons/web/static/src/xml/base.xml:1359 #, python-format msgid "Special:" -msgstr "" +msgstr "Specialus:" #. module: web #: code:addons/web/controllers/main.py:877 @@ -2501,6 +2507,7 @@ msgstr "" msgid "" "The old password you provided is incorrect, your password was not changed." msgstr "" +"Senas slaptažodis yra neteisingas, jūsų slaptažodis nebuvo pakeistas." #. module: web #. openerp-web @@ -2588,7 +2595,7 @@ msgstr "Sukurti duomenų bazę" #: code:addons/web/static/src/xml/base.xml:442 #, python-format msgid "GNU Affero General Public License" -msgstr "" +msgstr "GNU Affero General Public licenzija" #. module: web #. openerp-web diff --git a/addons/web/i18n/lv.po b/addons/web/i18n/lv.po index f9b7b2c16ea..038e54572ad 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/mk.po b/addons/web/i18n/mk.po index 460e297c2b1..ddaa0502bf7 100644 --- a/addons/web/i18n/mk.po +++ b/addons/web/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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/mn.po b/addons/web/i18n/mn.po index 92c21f14d1b..1a441ce0db5 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/nb.po b/addons/web/i18n/nb.po index 3caecbb3ba1..f091a4110d3 100644 --- a/addons/web/i18n/nb.po +++ b/addons/web/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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/nl.po b/addons/web/i18n/nl.po index 8dcc70a1944..4a8d2c99643 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/nl_BE.po b/addons/web/i18n/nl_BE.po index c9c1e0b4850..efc1059a186 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/pl.po b/addons/web/i18n/pl.po index b3b005b3164..fb435909899 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/pt.po b/addons/web/i18n/pt.po index 9076cb07aa5..43af9b3df1a 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/pt_BR.po b/addons/web/i18n/pt_BR.po index 7dcf539a74d..eba73e98386 100644 --- a/addons/web/i18n/pt_BR.po +++ b/addons/web/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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/ro.po b/addons/web/i18n/ro.po index 77b05766373..f128136055b 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/ru.po b/addons/web/i18n/ru.po index 929275bbba0..0ece8fa7647 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/sk.po b/addons/web/i18n/sk.po index fdd5173ccb1..20189da93fa 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/sl.po b/addons/web/i18n/sl.po index dab2fbb33d1..993c9844123 100644 --- a/addons/web/i18n/sl.po +++ b/addons/web/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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/sq.po b/addons/web/i18n/sq.po index d5717c29e3d..fe83bfb2472 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-08-16 05:18+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:44+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/sr@latin.po b/addons/web/i18n/sr@latin.po index 73038127c33..0318dfa0307 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/sv.po b/addons/web/i18n/sv.po index c62a4eb22a7..cd7c635f50c 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/th.po b/addons/web/i18n/th.po index ca86b864db0..57ea48c34b1 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/tr.po b/addons/web/i18n/tr.po index 0a2870ea974..64a2fb91f36 100644 --- a/addons/web/i18n/tr.po +++ b/addons/web/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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:45+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/uk.po b/addons/web/i18n/uk.po index 351a524c2ba..18f17f66786 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/vi.po b/addons/web/i18n/vi.po index 69e765f397f..51831ce098b 100644 --- a/addons/web/i18n/vi.po +++ b/addons/web/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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web/i18n/zh_CN.po b/addons/web/i18n/zh_CN.po index a527ede1c62..1829371b6d4 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web @@ -875,7 +875,7 @@ msgstr "不能发送email到错误的email第hi" #: code:addons/web/static/src/xml/base.xml:658 #, python-format msgid "Add..." -msgstr "添加..." +msgstr "添加附件..." #. module: web #. openerp-web diff --git a/addons/web/i18n/zh_TW.po b/addons/web/i18n/zh_TW.po index d56562bdd53..c947aa2ac8a 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web #. openerp-web diff --git a/addons/web_calendar/i18n/ar.po b/addons/web_calendar/i18n/ar.po index 2dd6d15cccc..7c162d8147c 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/bg.po b/addons/web_calendar/i18n/bg.po index 82b2452dca9..a4246b38560 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/bn.po b/addons/web_calendar/i18n/bn.po index 33852fc1854..03a9ec80bad 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/bs.po b/addons/web_calendar/i18n/bs.po index d13a1503102..b235bd87eba 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/ca.po b/addons/web_calendar/i18n/ca.po index 7b1fbab6911..2cb0a121182 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/cs.po b/addons/web_calendar/i18n/cs.po index 5250cd22ea5..089e5096edc 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 6c6d77fed3e..3ad79e87ff6 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/de.po b/addons/web_calendar/i18n/de.po index dc7efcbf080..4b4c557fc50 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 ece66814946..95636638a1b 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 451efe79d40..038b0268282 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/es.po b/addons/web_calendar/i18n/es.po index d47caef0d00..592bb7354fa 100644 --- a/addons/web_calendar/i18n/es.po +++ b/addons/web_calendar/i18n/es.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" "PO-Revision-Date: 2012-12-17 13:10+0000\n" -"Last-Translator: Santi (Pexego) \n" +"Last-Translator: Santi Argüeso(Pexego) \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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 3eddf7b55b9..8b102a8f82c 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 9c469f3048d..f29d1ceeb99 100644 --- a/addons/web_calendar/i18n/es_CR.po +++ b/addons/web_calendar/i18n/es_CR.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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" "Language: es\n" #. module: web_calendar diff --git a/addons/web_calendar/i18n/es_DO.po b/addons/web_calendar/i18n/es_DO.po index 98d02f7d072..cc995222d36 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 82855ade7e8..fedb02e0e8f 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 7a38530a4d4..f0996ec3285 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/et.po b/addons/web_calendar/i18n/et.po index d07701fc145..0cc4bbac830 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/eu.po b/addons/web_calendar/i18n/eu.po index b79e1ad9566..04ebeb6c74f 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/fa.po b/addons/web_calendar/i18n/fa.po index 41f9040cd00..59ecd768fee 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/fi.po b/addons/web_calendar/i18n/fi.po index 29da7964b38..241ab72e8b7 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/fr.po b/addons/web_calendar/i18n/fr.po index d05d5d4aaae..e759925e441 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 5c7365fe087..352fa771fde 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/gl.po b/addons/web_calendar/i18n/gl.po index e9244322aed..882ac6b46d4 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/gu.po b/addons/web_calendar/i18n/gu.po index 332733f78dd..76e7f30d02d 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/hr.po b/addons/web_calendar/i18n/hr.po index f13e2e07b25..69d20f57bae 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/hu.po b/addons/web_calendar/i18n/hu.po index b49b2ed6cb5..3b00c0c666b 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/id.po b/addons/web_calendar/i18n/id.po index e0c3b2e0150..32d6d6f8471 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/it.po b/addons/web_calendar/i18n/it.po index 30b47a8d321..37ec0cd4cfe 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/ja.po b/addons/web_calendar/i18n/ja.po index e2b060900d8..267b239d3d5 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/ka.po b/addons/web_calendar/i18n/ka.po index 490242f8c3f..c3cddb3b2f3 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/ko.po b/addons/web_calendar/i18n/ko.po index 9d1a0d307e1..281e3ef955c 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/lt.po b/addons/web_calendar/i18n/lt.po index 1bfbb04340c..df0817a8789 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/mk.po b/addons/web_calendar/i18n/mk.po index 36c93e23aca..6f112a647bd 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/mn.po b/addons/web_calendar/i18n/mn.po index 22876bbbc51..d10d791c857 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/nb.po b/addons/web_calendar/i18n/nb.po index e53cbd03907..d1371cd5220 100644 --- a/addons/web_calendar/i18n/nb.po +++ b/addons/web_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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/nl.po b/addons/web_calendar/i18n/nl.po index 977fbbd3547..23cf975b43b 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 c85cc19066e..e99d29c08b4 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/pl.po b/addons/web_calendar/i18n/pl.po index 0f1dc70232d..9b18046fd00 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/pt.po b/addons/web_calendar/i18n/pt.po index 969e80fe191..f4a524d1d67 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 df6cbcb747e..e0d415cfce3 100644 --- a/addons/web_calendar/i18n/pt_BR.po +++ b/addons/web_calendar/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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/ro.po b/addons/web_calendar/i18n/ro.po index f2dd43e9800..beb9caee54c 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/ru.po b/addons/web_calendar/i18n/ru.po index a76e6d4d0d7..5cec06bdff3 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/sk.po b/addons/web_calendar/i18n/sk.po index aebb67bb6f0..28a1d8b9c5c 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/sl.po b/addons/web_calendar/i18n/sl.po index 81c15c2c3d5..26c774b18d8 100644 --- a/addons/web_calendar/i18n/sl.po +++ b/addons/web_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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/sq.po b/addons/web_calendar/i18n/sq.po index e96498eab76..10fcac53e84 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 c60819099f0..738969ff95f 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/sv.po b/addons/web_calendar/i18n/sv.po index 505b298f19b..deeb0621629 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/th.po b/addons/web_calendar/i18n/th.po index 8809ca35462..2f06d1360e4 100644 --- a/addons/web_calendar/i18n/th.po +++ b/addons/web_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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/tr.po b/addons/web_calendar/i18n/tr.po index 5cf2fb3120e..60bad30663f 100644 --- a/addons/web_calendar/i18n/tr.po +++ b/addons/web_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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_calendar/i18n/uk.po b/addons/web_calendar/i18n/uk.po index 69a67e97ec1..4ad02609517 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 b19318f9868..019b652a7a4 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_calendar #. openerp-web diff --git a/addons/web_diagram/i18n/ar.po b/addons/web_diagram/i18n/ar.po index b6d28f27802..eb24bf7ea1d 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/bg.po b/addons/web_diagram/i18n/bg.po index 8440c6f717e..3da657741eb 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/bn.po b/addons/web_diagram/i18n/bn.po index 81444177413..0a7d5a1a75f 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/bs.po b/addons/web_diagram/i18n/bs.po index ed7abc74e35..9ef09ab05bf 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/ca.po b/addons/web_diagram/i18n/ca.po index c24f2cde788..7e05849ed80 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/cs.po b/addons/web_diagram/i18n/cs.po index 58611764bdf..48eab24092b 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 5987225667c..14d5c63e44b 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/de.po b/addons/web_diagram/i18n/de.po index c4b31a24f22..9e230dbe96f 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 fdf0edffbd8..f4f359e0636 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 079e1c5918b..56ceef846b1 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/es.po b/addons/web_diagram/i18n/es.po index 1d7fd5d9529..8ffd7f50dcc 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 db29d8a9dac..00393ad1fe8 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 9a69e8988ad..087edd0296d 100644 --- a/addons/web_diagram/i18n/es_CR.po +++ b/addons/web_diagram/i18n/es_CR.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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" "Language: es\n" #. module: web_diagram diff --git a/addons/web_diagram/i18n/es_DO.po b/addons/web_diagram/i18n/es_DO.po index 7da156c0db8..f02c4a2886f 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 8cba5d5875d..594a320ed8d 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 898ece21ac8..904ff6793d4 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/et.po b/addons/web_diagram/i18n/et.po index acd03908462..eb618b79dd7 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/fa.po b/addons/web_diagram/i18n/fa.po index 03f98bf200a..5be6bb13982 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/fi.po b/addons/web_diagram/i18n/fi.po index 5e84272ff9f..c9ea4bc90c6 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/fr.po b/addons/web_diagram/i18n/fr.po index e9a548aed75..ffc0423518e 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/gl.po b/addons/web_diagram/i18n/gl.po index a6da9369182..3cab0a4c976 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/gu.po b/addons/web_diagram/i18n/gu.po index 5ff85c8f2a6..00ac0b3abb3 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/hr.po b/addons/web_diagram/i18n/hr.po index e94803cdb47..912987942d3 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/hu.po b/addons/web_diagram/i18n/hu.po index 5d8162cbc90..30332a5a3b5 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/id.po b/addons/web_diagram/i18n/id.po index b484ab53d95..06f639f2883 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/it.po b/addons/web_diagram/i18n/it.po index 1ef9650f029..4c85daa23a3 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/ja.po b/addons/web_diagram/i18n/ja.po index 56c02d646d4..f3bdb5f27db 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/ka.po b/addons/web_diagram/i18n/ka.po index 495342678ed..d8883ed4f7c 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/ko.po b/addons/web_diagram/i18n/ko.po index cc836eeba47..b7391be6a35 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/lt.po b/addons/web_diagram/i18n/lt.po index 5246d2d8516..8564d592351 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/mk.po b/addons/web_diagram/i18n/mk.po index c1e2968a47f..9799a83f7d7 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/mn.po b/addons/web_diagram/i18n/mn.po index 72a8ded56c7..aa4e4fee8af 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/nb.po b/addons/web_diagram/i18n/nb.po index 11fb24ad87f..a0d0174b18f 100644 --- a/addons/web_diagram/i18n/nb.po +++ b/addons/web_diagram/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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/nl.po b/addons/web_diagram/i18n/nl.po index 78cb0021709..418b7d414e1 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 718a3751788..dd6c2af4fdf 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/pl.po b/addons/web_diagram/i18n/pl.po index 896a39d21ef..226004019fc 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/pt.po b/addons/web_diagram/i18n/pt.po index b1399f36199..db02c95feb5 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 395b426bf7a..103880c16e5 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/ro.po b/addons/web_diagram/i18n/ro.po index 3eac785d3ad..a2d6efe6804 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/ru.po b/addons/web_diagram/i18n/ru.po index 80d8577c653..ba07bfd67ca 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/sl.po b/addons/web_diagram/i18n/sl.po index 8c5ed7e0811..1dba3d48358 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/sq.po b/addons/web_diagram/i18n/sq.po index 1f75a97cb35..4fa76fccc24 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 92de06fd543..0e50be0f3dd 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/sv.po b/addons/web_diagram/i18n/sv.po index e94cf7b35a7..14072652093 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/th.po b/addons/web_diagram/i18n/th.po index 683e2323f95..4be3da8d991 100644 --- a/addons/web_diagram/i18n/th.po +++ b/addons/web_diagram/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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/tr.po b/addons/web_diagram/i18n/tr.po index 3cdd0793628..7ac9d802b3e 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 add92ec5e77..8c2a33946f3 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_diagram/i18n/zh_TW.po b/addons/web_diagram/i18n/zh_TW.po index a42db936a19..b575de75737 100644 --- a/addons/web_diagram/i18n/zh_TW.po +++ b/addons/web_diagram/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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_diagram #. openerp-web diff --git a/addons/web_gantt/i18n/ar.po b/addons/web_gantt/i18n/ar.po index 23e07e614aa..87f7d2f4e61 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/bg.po b/addons/web_gantt/i18n/bg.po index d025a076de5..1edc358f9ce 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/bn.po b/addons/web_gantt/i18n/bn.po index a2cdba62a07..ccfd295084d 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/bs.po b/addons/web_gantt/i18n/bs.po index 6248632b299..270e56f546c 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/ca.po b/addons/web_gantt/i18n/ca.po index 46ebf31db6d..cdfb55ea105 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/cs.po b/addons/web_gantt/i18n/cs.po index 98d7382a7ec..831a5fa7892 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 ffc14d118f0..7725a9d1aa9 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/de.po b/addons/web_gantt/i18n/de.po index c4719dbdb72..e8b648b9ce9 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 a0450584405..32b748b34a0 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 1d46d097615..fdddde01403 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/es.po b/addons/web_gantt/i18n/es.po index a50fb777430..3962c1bbb4e 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 9480cddf0ed..618934fdfd3 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 edc5c3442f4..2ecd1ccfce0 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 2e08b5aba2e..71452a90422 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 9078c64e7e7..670e5e3e9e4 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 09397ed6d8b..df85159ec8a 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/et.po b/addons/web_gantt/i18n/et.po index 4d6c082d573..732a236660e 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/fa.po b/addons/web_gantt/i18n/fa.po index 35f4783c3e0..7f8c540b3af 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/fi.po b/addons/web_gantt/i18n/fi.po index 752ed933639..7f0438d2fb3 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/fr.po b/addons/web_gantt/i18n/fr.po index 3c853fd614f..1fdd9bd9cd4 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/gl.po b/addons/web_gantt/i18n/gl.po index 880afeaf78e..8c482ee3196 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/gu.po b/addons/web_gantt/i18n/gu.po index 00f810bf104..1081fe344de 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/hr.po b/addons/web_gantt/i18n/hr.po index f642538db62..265757767d3 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/hu.po b/addons/web_gantt/i18n/hu.po index e30c345441a..6073535d31f 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/it.po b/addons/web_gantt/i18n/it.po index d3119f55896..4a249625fb1 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/ja.po b/addons/web_gantt/i18n/ja.po index 2c806ecf975..d42e227c930 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/ka.po b/addons/web_gantt/i18n/ka.po index 618440ca4aa..9c903f7871b 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/ko.po b/addons/web_gantt/i18n/ko.po index 939fc1e936f..3721e0d932b 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/lo.po b/addons/web_gantt/i18n/lo.po index b8a5e3b6e9e..c44949f745e 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/lt.po b/addons/web_gantt/i18n/lt.po index 9e9d11423ec..345dc7149ad 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/mk.po b/addons/web_gantt/i18n/mk.po index dc91a3df3f6..efd68a5b856 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/mn.po b/addons/web_gantt/i18n/mn.po index a269bd59f46..c3db07c6840 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/nb.po b/addons/web_gantt/i18n/nb.po index b2fa1f73bc8..c3614bcc05c 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/nl.po b/addons/web_gantt/i18n/nl.po index 2e19e1a96da..0810961e7ae 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 7a6d36b84d9..f5d79ecf96e 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/pl.po b/addons/web_gantt/i18n/pl.po index 79f9232ae8b..d219765c333 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/pt.po b/addons/web_gantt/i18n/pt.po index b66e82ac493..c500fd33934 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 a72dfb110c7..e4afa1306b5 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/ro.po b/addons/web_gantt/i18n/ro.po index 28331cafd71..2286511957b 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/ru.po b/addons/web_gantt/i18n/ru.po index 6d9094c917e..5fbbdd434bf 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/sl.po b/addons/web_gantt/i18n/sl.po index e4cb0243f52..eb922f04cde 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/sq.po b/addons/web_gantt/i18n/sq.po index 3db20fe7e65..1bd6fd1aa43 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 5903a06d1c9..bea9d70ac70 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/sv.po b/addons/web_gantt/i18n/sv.po index a92dcff396d..481ce922570 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/th.po b/addons/web_gantt/i18n/th.po index 19ebb5bb3ba..87255a667c0 100644 --- a/addons/web_gantt/i18n/th.po +++ b/addons/web_gantt/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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_gantt/i18n/tr.po b/addons/web_gantt/i18n/tr.po index 6c06be71e6a..141f1ae13cc 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 c795bb18374..31ac80b4e28 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_gantt #. openerp-web diff --git a/addons/web_graph/i18n/ar.po b/addons/web_graph/i18n/ar.po index 621b5f1a422..d4f73dfda2f 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/bg.po b/addons/web_graph/i18n/bg.po index be3c977a3eb..42a8fd2009c 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/bn.po b/addons/web_graph/i18n/bn.po index 81e41aea5e7..004f35cf4b3 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/bs.po b/addons/web_graph/i18n/bs.po index 589d3b0e347..43a45aaf7c7 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/ca.po b/addons/web_graph/i18n/ca.po index 32729cffbc8..99026f92843 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/cs.po b/addons/web_graph/i18n/cs.po index cc635210091..29e9ea4455d 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/da.po b/addons/web_graph/i18n/da.po index f65c94c462a..fba5e64ce7a 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/de.po b/addons/web_graph/i18n/de.po index bfd5b7e9a82..97f73bb439c 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 be937cb7374..25e1a7be2b5 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 9ddb9525c15..3eaa2fbc9cd 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/es.po b/addons/web_graph/i18n/es.po index f4a935843be..2f51d157e8c 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 7f50d5aa276..839e6929110 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 d3d92e9632c..7f2a105475b 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 9e3878c2b20..34df7ea49c3 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 5d075b09e53..2cf76590c27 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 01802eeeecc..0758bd06f43 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/et.po b/addons/web_graph/i18n/et.po index 658760d1488..a35aa0fd586 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/fa.po b/addons/web_graph/i18n/fa.po index 7b4ae205dff..ad5e7071b5c 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/fi.po b/addons/web_graph/i18n/fi.po index 437c874bfab..3ec6aa20a01 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/fr.po b/addons/web_graph/i18n/fr.po index 0b5ff1ca371..13e189497f3 100644 --- a/addons/web_graph/i18n/fr.po +++ b/addons/web_graph/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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/fr_CA.po b/addons/web_graph/i18n/fr_CA.po index 0b9a418cc5d..c6af09e7fd3 100644 --- a/addons/web_graph/i18n/fr_CA.po +++ b/addons/web_graph/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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/gl.po b/addons/web_graph/i18n/gl.po index 6ba9ce526ba..4b7734320a1 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/gu.po b/addons/web_graph/i18n/gu.po index e31e0f6f882..507440420e6 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/hr.po b/addons/web_graph/i18n/hr.po index 04d61ff7c52..1d071f343cb 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/hu.po b/addons/web_graph/i18n/hu.po index 317397d8461..f0c094c862f 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/it.po b/addons/web_graph/i18n/it.po index c6263f90b28..e9ec8d54756 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/ja.po b/addons/web_graph/i18n/ja.po index ebd8e2c0056..857b6ae2e41 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/ka.po b/addons/web_graph/i18n/ka.po index eebcaddb4d5..e6ae40ce4d6 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/ko.po b/addons/web_graph/i18n/ko.po index fc30ade81dd..75e74d33c23 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/lt.po b/addons/web_graph/i18n/lt.po index 51835e7db13..2587f79f2c4 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/mk.po b/addons/web_graph/i18n/mk.po index 0b0551c1432..f4fa8c606c2 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/mn.po b/addons/web_graph/i18n/mn.po index 406e566e0de..74bb9f3bc49 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/nb.po b/addons/web_graph/i18n/nb.po index 18bec12220c..fec711e9290 100644 --- a/addons/web_graph/i18n/nb.po +++ b/addons/web_graph/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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/nl.po b/addons/web_graph/i18n/nl.po index 910ef243341..a49a49e053f 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 f764de6f51e..a20da382ea5 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/pl.po b/addons/web_graph/i18n/pl.po index ead5c2d7cfc..6b4c6c08be7 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/pt.po b/addons/web_graph/i18n/pt.po index 72ef1276040..c6ed95d86bd 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 76c1bf3caf7..b8361a403b8 100644 --- a/addons/web_graph/i18n/pt_BR.po +++ b/addons/web_graph/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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/ro.po b/addons/web_graph/i18n/ro.po index 686515dcb10..cbcfbaf8019 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/ru.po b/addons/web_graph/i18n/ru.po index 140a9173600..f1a0efa27ef 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/sl.po b/addons/web_graph/i18n/sl.po index 0bbcdcd07f7..116937e2ca7 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/sq.po b/addons/web_graph/i18n/sq.po index 4f7d70b6fc4..c4100f3750f 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-08-16 05:19+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 c3a2f5f6f39..4230171cac9 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/sv.po b/addons/web_graph/i18n/sv.po index 425892f1332..4cf13d34687 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/th.po b/addons/web_graph/i18n/th.po index 6b3a50a3371..ab9c36f1003 100644 --- a/addons/web_graph/i18n/th.po +++ b/addons/web_graph/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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_graph/i18n/tr.po b/addons/web_graph/i18n/tr.po index c42756c9a0c..91f56013311 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 3e64ef80197..e84f01901ea 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_graph #. openerp-web diff --git a/addons/web_kanban/i18n/ar.po b/addons/web_kanban/i18n/ar.po index 0a67731153d..9a8d807e84a 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/bg.po b/addons/web_kanban/i18n/bg.po index 8db75910025..f308f964365 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/bn.po b/addons/web_kanban/i18n/bn.po index 58c2d0fb167..a882bb0e6a5 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/bs.po b/addons/web_kanban/i18n/bs.po index 516d176f5cd..1cfdd4a904e 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/ca.po b/addons/web_kanban/i18n/ca.po index 05256cb6c61..9f213d8d870 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/cs.po b/addons/web_kanban/i18n/cs.po index 50a3315909f..47935b16d15 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 538d5c655c0..f05caf0ab21 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/de.po b/addons/web_kanban/i18n/de.po index 190af6c9e9d..7bca2ae5a45 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 c087e8274d4..5584f3768c4 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 1dcd36dda5e..35b05b54812 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/es.po b/addons/web_kanban/i18n/es.po index dd021f1e0b9..cda06227eed 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 0beb4469fef..b9d8fb1f8f4 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 c2af4a35be6..112b4ba1cfd 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 252a1ae1f4e..8cdc02b9158 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 72a50a3c24d..9ae2c565b68 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 ed095a4d462..63b80f8fbeb 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/et.po b/addons/web_kanban/i18n/et.po index 0e5ee548554..4d56c02e779 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/fa.po b/addons/web_kanban/i18n/fa.po index fd47ae6732f..74dbb5183f7 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/fi.po b/addons/web_kanban/i18n/fi.po index fb6c28e84ee..54647e1e924 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/fr.po b/addons/web_kanban/i18n/fr.po index 2a9f3370117..0d42f526456 100644 --- a/addons/web_kanban/i18n/fr.po +++ b/addons/web_kanban/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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/fr_CA.po b/addons/web_kanban/i18n/fr_CA.po index 26184a353e7..ea3bdf3c1d2 100644 --- a/addons/web_kanban/i18n/fr_CA.po +++ b/addons/web_kanban/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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/gl.po b/addons/web_kanban/i18n/gl.po index 417d2902cd8..13cfe984825 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/gu.po b/addons/web_kanban/i18n/gu.po index e26abcd63fe..524294faef8 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/hr.po b/addons/web_kanban/i18n/hr.po index 8b2450b5569..22ae167cf1b 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/hu.po b/addons/web_kanban/i18n/hu.po index e254b4cc046..304a8274643 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/it.po b/addons/web_kanban/i18n/it.po index bf59a9be4fa..201aedc19fc 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/ja.po b/addons/web_kanban/i18n/ja.po index 2de909df4ba..b7349b818f7 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/ka.po b/addons/web_kanban/i18n/ka.po index 3946d9a5b99..5c456dfe75b 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/ko.po b/addons/web_kanban/i18n/ko.po index 7666cdc6e0c..2bc3fbf98ef 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/lt.po b/addons/web_kanban/i18n/lt.po index a5aac53d4d0..ef3283baf83 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/mk.po b/addons/web_kanban/i18n/mk.po index 53c9a109faa..8b7627b7252 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/mn.po b/addons/web_kanban/i18n/mn.po index 541b9247ad5..2fcf1953293 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/nb.po b/addons/web_kanban/i18n/nb.po index 65ddc0e5219..37039377cce 100644 --- a/addons/web_kanban/i18n/nb.po +++ b/addons/web_kanban/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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/nl.po b/addons/web_kanban/i18n/nl.po index 2c7889b0dd6..99356210d67 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 d2d8cdc0f8d..9c97e1c234b 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/pl.po b/addons/web_kanban/i18n/pl.po index 66eb0271cc4..7f67e44fc16 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/pt.po b/addons/web_kanban/i18n/pt.po index 4d2bf8b463a..d5429321119 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 c3192a313eb..c913979a141 100644 --- a/addons/web_kanban/i18n/pt_BR.po +++ b/addons/web_kanban/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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/ro.po b/addons/web_kanban/i18n/ro.po index 8e7baa6b05d..3a817f0e611 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/ru.po b/addons/web_kanban/i18n/ru.po index e2cfc95e5a3..e6efcf7028e 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/sl.po b/addons/web_kanban/i18n/sl.po index 2e463c9dde3..fd423275403 100644 --- a/addons/web_kanban/i18n/sl.po +++ b/addons/web_kanban/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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/sr@latin.po b/addons/web_kanban/i18n/sr@latin.po index 5843c3e2acd..9fcdfc171e7 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/sv.po b/addons/web_kanban/i18n/sv.po index 14541e91615..4015f96191a 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/th.po b/addons/web_kanban/i18n/th.po index 35951ec9c8b..2190f1fa152 100644 --- a/addons/web_kanban/i18n/th.po +++ b/addons/web_kanban/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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/tr.po b/addons/web_kanban/i18n/tr.po index 501435fc87e..358e9a3318f 100644 --- a/addons/web_kanban/i18n/tr.po +++ b/addons/web_kanban/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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/zh_CN.po b/addons/web_kanban/i18n/zh_CN.po index fa5217afecd..3e9baac3fc0 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_kanban/i18n/zh_TW.po b/addons/web_kanban/i18n/zh_TW.po index 5c5fce48a6f..a535c3603d1 100644 --- a/addons/web_kanban/i18n/zh_TW.po +++ b/addons/web_kanban/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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_kanban #. openerp-web diff --git a/addons/web_view_editor/i18n/ar.po b/addons/web_view_editor/i18n/ar.po index f81c512e674..c320801ab28 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 dbb436a2232..e6818bf6869 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 45136e1a820..9aa612152d2 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 74fd794d933..2f5749f8bde 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 425316df6cb..f4b1748eb8e 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 c1f77d4fbc5..f0e3c2803dc 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 e0e74617ba8..289aa810006 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 a37097582bd..b5ab4675849 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 8d00e79e42d..6c541f1c716 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 91d2f26b8b2..d4bc264ac1d 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/fi.po b/addons/web_view_editor/i18n/fi.po index fb2ae1fc32f..bea2233678c 100644 --- a/addons/web_view_editor/i18n/fi.po +++ b/addons/web_view_editor/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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 1fea42da1f2..d8e010548c5 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 0d37fadd8c3..38940c24af2 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 a6448e5cf58..9549b92bf5b 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 728a4c19fbe..b1435f9883a 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 7d43b16ced2..359308dd3b9 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/lt.po b/addons/web_view_editor/i18n/lt.po index 8802144673e..f2c4e0418e3 100644 --- a/addons/web_view_editor/i18n/lt.po +++ b/addons/web_view_editor/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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/lv.po b/addons/web_view_editor/i18n/lv.po index 4b8ef6079c0..afe91a24a59 100644 --- a/addons/web_view_editor/i18n/lv.po +++ b/addons/web_view_editor/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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 f1b7ecb37b6..89d84026301 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 a94d4f574a0..ac579b9b0bb 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 index 36c8268dd78..d3454639d43 100644 --- a/addons/web_view_editor/i18n/nb.po +++ b/addons/web_view_editor/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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/nl.po b/addons/web_view_editor/i18n/nl.po index e642a562f66..13fe8912e87 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:46+0000\n" +"X-Generator: Launchpad (build 16738)\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 507f50757bb..4f6c88b4dd5 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 ef711500d3d..dfa1bb275f9 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 995d1da86f2..080e3aeaf32 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 4ebcdd2f475..7ecef34708b 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 a9965788db4..3e25a1c0f72 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 5a5106a19ba..337bf9c7afa 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 3f4aa855475..dcd1ea53bbe 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_view_editor #. openerp-web diff --git a/addons/web_view_editor/i18n/th.po b/addons/web_view_editor/i18n/th.po index 229cd929acc..1552f0ef154 100644 --- a/addons/web_view_editor/i18n/th.po +++ b/addons/web_view_editor/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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 001bf798a3b..d3d252ac7cc 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\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 f740eb9ee6a..8a9ecb53399 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-08-16 05:20+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-08-27 04:47+0000\n" +"X-Generator: Launchpad (build 16738)\n" #. module: web_view_editor #. openerp-web From 982d598a8d3eaae6ca00d83d53f9487a68a322c4 Mon Sep 17 00:00:00 2001 From: niv-openerp Date: Thu, 29 Aug 2013 10:58:01 +0200 Subject: [PATCH 10/18] [IMP] now remembers OpenERP sessions bzr revid: nicolas.vanhoren@openerp.com-20130829085801-z2wxxif0nzpbf5x2 --- addons/web/http.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/addons/web/http.py b/addons/web/http.py index dcdea68958e..ccd1125fa22 100644 --- a/addons/web/http.py +++ b/addons/web/http.py @@ -936,7 +936,7 @@ class Root(object): if httprequest.session.should_save: self.session_store.save(httprequest.session) if not explicit_session and hasattr(response, 'set_cookie'): - response.set_cookie('session_id', httprequest.session.sid) + response.set_cookie('session_id', httprequest.session.sid, max_age=90 * 24 * 60 * 60) return response(environ, start_response) except werkzeug.exceptions.HTTPException, e: From 9b9abd31aff1ddeea2d94906d7964348510ed8d2 Mon Sep 17 00:00:00 2001 From: Antony Lesuisse Date: Thu, 29 Aug 2013 17:07:48 +0200 Subject: [PATCH 11/18] [FIX] switch silently to local modules bzr revid: al@openerp.com-20130829150748-9oew9qzqwmzfhau5 --- openerp/addons/base/static/src/js/apps.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openerp/addons/base/static/src/js/apps.js b/openerp/addons/base/static/src/js/apps.js index f877e9258b1..e339ed2230e 100644 --- a/openerp/addons/base/static/src/js/apps.js +++ b/openerp/addons/base/static/src/js/apps.js @@ -102,7 +102,7 @@ openerp.base = function(instance) { }); }). fail(function(client) {*/ - self.do_warn(_t('OpenERP Apps Unreachable'), _t('Showing locally available modules'), true); + //self.do_warn(_t('OpenERP Apps Unreachable'), _t('Showing locally available modules'), true); self.rpc('/web/action/load', {action_id: self.failback_action_id}).done(function(action) { self.do_action(action); instance.webclient.menu.open_action(action.id); From 845e2c503faa390cff452dfc0fe776571ad8c973 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Fri, 30 Aug 2013 05:12:26 +0000 Subject: [PATCH 12/18] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130830051226-26up1fywxr056cz5 --- addons/web/i18n/da.po | 103 +++++++++++++++++++++++++++++++++++------- 1 file changed, 86 insertions(+), 17 deletions(-) diff --git a/addons/web/i18n/da.po b/addons/web/i18n/da.po index a086f230329..80771cc89f0 100644 --- a/addons/web/i18n/da.po +++ b/addons/web/i18n/da.po @@ -8,14 +8,14 @@ msgstr "" "Project-Id-Version: openerp-web\n" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:06+0000\n" -"PO-Revision-Date: 2013-08-27 23:48+0000\n" -"Last-Translator: Morten Schou \n" +"PO-Revision-Date: 2013-08-29 14:48+0000\n" +"Last-Translator: Aputsiaq Niels Janussen \n" "Language-Team: Danish \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-08-29 04:53+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-08-30 05:12+0000\n" +"X-Generator: Launchpad (build 16750)\n" #. module: web #. openerp-web @@ -68,7 +68,7 @@ msgstr "Indtast dit forrige kodeord" #: code:addons/web/static/src/xml/base.xml:300 #, python-format msgid "Master password:" -msgstr "Hovedadgangskode" +msgstr "Primær adgangskode:" #. module: web #. openerp-web @@ -1738,6 +1738,7 @@ msgstr "Vælg felter for at gemme eksport liste..." #, python-format msgid "Copyright © 2004-TODAY OpenERP SA. All Rights Reserved." msgstr "" +"Ophavsret © 2004 til dags dato, OpenERP SA. Alle rettigheder forbeholdes." #. module: web #. openerp-web @@ -1788,14 +1789,14 @@ msgstr "Filtrer med: %s" #: code:addons/web/static/src/js/view_form.js:3878 #, python-format msgid "Create: " -msgstr "" +msgstr "Opret: " #. module: web #. openerp-web #: code:addons/web/static/src/xml/base.xml:562 #, python-format msgid "View Fields" -msgstr "" +msgstr "Vis felter" #. module: web #. openerp-web @@ -1809,7 +1810,7 @@ msgstr "" #: code:addons/web/static/src/js/view_list.js:587 #, python-format msgid "Do you really want to remove these records?" -msgstr "" +msgstr "Vil du virkelig fjerne disse poster?" #. module: web #. openerp-web @@ -2282,7 +2283,7 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:81 #, python-format msgid "Manage Databases" -msgstr "" +msgstr "Håndtér databaser" #. module: web #. openerp-web @@ -2296,7 +2297,7 @@ msgstr "" #: code:addons/web/static/src/js/search.js:1387 #, python-format msgid "not a valid integer" -msgstr "" +msgstr "ikke et gyldigt heltal" #. module: web #. openerp-web @@ -2396,7 +2397,7 @@ msgstr "" #: code:addons/web/static/src/js/search.js:841 #, python-format msgid "triggered from search view" -msgstr "" +msgstr "udløst fra søgevisning" #. module: web #. openerp-web @@ -2410,7 +2411,7 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:972 #, python-format msgid "Widget:" -msgstr "" +msgstr "Kontrol:" #. module: web #. openerp-web @@ -2438,7 +2439,7 @@ msgstr "Kun dig" #: code:addons/web/static/src/xml/base.xml:571 #, python-format msgid "Edit Workflow" -msgstr "" +msgstr "Redigér arbejdsgang" #. module: web #. openerp-web @@ -2502,7 +2503,7 @@ msgstr "" #: code:addons/web/static/src/xml/base.xml:1359 #, python-format msgid "Special:" -msgstr "" +msgstr "Speciel:" #. module: web #: code:addons/web/controllers/main.py:877 @@ -2755,28 +2756,54 @@ msgstr "Filtre" #~ msgid "Customize" #~ msgstr "Tilpasse" -#~ msgid "Attachments" -#~ msgstr "vedhæftet fil" - #, python-format #~ msgid "Do you really want to delete the attachment %s?" #~ msgstr "Vil du virkelig slette den vedhæftede fil %r?" +#~ msgid "Attachments" +#~ msgstr "Vedhæftede filer" + +#~ msgid "Do you really wants to create an inherited view here?" +#~ msgstr "Vil du virkelig oprette en nedarvet visning her?" + +#~ msgid "Inherited View" +#~ msgstr "Nedarvet visning" + +#, python-format +#~ msgid "[%(first_record)d to %(last_record)d] of %(records_count)d" +#~ msgstr "[%(first_record)d til %(last_record)d] af %(records_count)d" + #~ msgid "Page" #~ msgstr "Side" +#~ msgid "Could not find current view declaration" +#~ msgstr "Kunne ikke finde nuværende visningsdeklaration" + #~ msgid "Translate" #~ msgstr "Oversæt" #~ msgid "Other Options" #~ msgstr "Andre tilvalg" +#~ msgid "What you did:" +#~ msgstr "Hvad du foretog dig:" + #~ msgid "Your report will be sent to the OpenERP Enterprise team." #~ msgstr "Din rapport vil blive sendt til OpenERP Enterprise-holdet." #~ msgid "Summary:" #~ msgstr "Resumé:" +#~ msgid "" +#~ "Your version of OpenERP is unsupported. Support & maintenance services are " +#~ "available here:" +#~ msgstr "" +#~ "Din version af OpenERP understøttes ikke. Tjenester for support & " +#~ "vedligehold er tilgængelige her:" + +#~ msgid "OpenERP Entreprise" +#~ msgstr "OpenERP Entreprise" + #~ msgid "OpenERP Enterprise Contract." #~ msgstr "OpenERP Enterprise-kontrakt." @@ -2792,8 +2819,50 @@ msgstr "Filtre" #~ msgid "Actions" #~ msgstr "Handlinger" +#~ msgid "Add / Remove Shortcut..." +#~ msgstr "Tilføj/fjern genvej ..." + +#~ msgid "Home" +#~ msgstr "Hjem" + +#~ msgid "Unfold menu" +#~ msgstr "Udfold menu" + +#~ msgid "Fold menu" +#~ msgstr "Sammenfold menu" + +#~ msgid "More…" +#~ msgstr "Mere ..." + +#~ msgid "Add attachment" +#~ msgstr "Tilføj vedhæftet fil" + +#~ msgid "Set Image" +#~ msgstr "Angiv billede" + #~ msgid "Open this resource" #~ msgstr "Åbn denne ressource" #~ msgid "Send an e-mail with your default e-mail client" #~ msgstr "Send en e-mail med din standard e-mail-klient" + +#~ msgid "Advanced Filters" +#~ msgstr "Avancerede filtre" + +#~ msgid "Select Dashboard to add this filter to:" +#~ msgstr "Vælg instrumentbræt som skal have dette filter tilføjet:" + +#~ msgid "Title of new Dashboard item:" +#~ msgstr "Titel på ny brik i instrumentbræt:" + +#~ msgid "Activate the developper mode" +#~ msgstr "Aktivér udviklingstilstand" + +#~ msgid "Send OpenERP Enterprise Report" +#~ msgstr "Send OpenERP Enterprise-rapport" + +#~ msgid "Filter Entry" +#~ msgstr "Filtrér post" + +#~ msgid "Filter disabled due to invalid syntax" +#~ msgstr "Filtret er deaktiveret på grund af ugyldig syntaks" From 1cb5d9ff8cbf6c77393b09b0fbe3ba581d4b549e Mon Sep 17 00:00:00 2001 From: niv-openerp Date: Mon, 2 Sep 2013 16:21:33 +0200 Subject: [PATCH 13/18] [FIX] boring bug that throws an exception in some cases when we use the middle-click bzr revid: nicolas.vanhoren@openerp.com-20130902142133-odxuddgbar4so3v7 --- addons/web/static/src/js/search.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/addons/web/static/src/js/search.js b/addons/web/static/src/js/search.js index eab09cc24a0..6241fe6da28 100644 --- a/addons/web/static/src/js/search.js +++ b/addons/web/static/src/js/search.js @@ -241,6 +241,8 @@ my.InputView = instance.web.Widget.extend({ setTimeout(function () { // Read text content (ignore pasted HTML) var data = this.$el.text(); + if (!data) + return; // paste raw text back in this.$el.empty().text(data); this.el.normalize(); From a9f5a8298673e6b37719d89dfd5e9c1674292f1e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Fr=C3=A9d=C3=A9ric=20van=20der=20Essen?= Date: Mon, 2 Sep 2013 17:59:07 +0200 Subject: [PATCH 14/18] [FIX] point_of_sale: fix regression due to session api change. + some cleanup on ressource release on quit. bzr revid: fva@openerp.com-20130902155907-99qk1bnmj1o4ztpe --- addons/point_of_sale/static/src/js/devices.js | 6 ++++-- addons/point_of_sale/static/src/js/models.js | 8 ++++++++ addons/point_of_sale/static/src/js/widgets.js | 11 ++--------- 3 files changed, 14 insertions(+), 11 deletions(-) diff --git a/addons/point_of_sale/static/src/js/devices.js b/addons/point_of_sale/static/src/js/devices.js index 835b7fe7b5a..9a74eec0c05 100644 --- a/addons/point_of_sale/static/src/js/devices.js +++ b/addons/point_of_sale/static/src/js/devices.js @@ -25,13 +25,15 @@ function openerp_pos_devices(instance,module){ //module is instance.point_of_sal }; this.custom_payment_status = this.default_payment_status; - this.connection = new instance.web.JsonRPC(); - this.connection.setup(url); + this.connection = new instance.web.Session(undefined,url); this.bypass_proxy = false; this.notifications = {}; }, + close: function(){ + this.connection.destroy(); + }, message : function(name,params){ var ret = new $.Deferred(); var callbacks = this.notifications[name] || []; diff --git a/addons/point_of_sale/static/src/js/models.js b/addons/point_of_sale/static/src/js/models.js index 70fdc89246e..e4d69bca26f 100644 --- a/addons/point_of_sale/static/src/js/models.js +++ b/addons/point_of_sale/static/src/js/models.js @@ -71,6 +71,14 @@ function openerp_pos_models(instance, module){ //module is instance.point_of_sal }); }, + // releases ressources holds by the model at the end of life of the posmodel + destroy: function(){ + // FIXME, should wait for flushing, return a deferred to indicate successfull destruction + // this.flush(); + this.proxy.close(); + this.barcode_reader.disconnect(); + }, + // helper function to load data from the server fetch: function(model, fields, domain, ctx){ return new instance.web.Model(model).query(fields).filter(domain).context(ctx).all() diff --git a/addons/point_of_sale/static/src/js/widgets.js b/addons/point_of_sale/static/src/js/widgets.js index af0ff2ab746..bf7cf4d13af 100644 --- a/addons/point_of_sale/static/src/js/widgets.js +++ b/addons/point_of_sale/static/src/js/widgets.js @@ -990,7 +990,7 @@ function openerp_pos_widgets(instance, module){ //module is instance.point_of_sa this.close_button = new module.HeaderButtonWidget(this,{ label: _t('Close'), - action: function(){ self.try_close(); }, + action: function(){ self.close(); }, }); this.close_button.appendTo(this.$('#rightheader')); @@ -1100,15 +1100,8 @@ function openerp_pos_widgets(instance, module){ //module is instance.point_of_sa } } }, - try_close: function() { - var self = this; - //TODO : do the close after the flush... - self.pos.flush() - self.close(); - }, close: function() { var self = this; - this.pos.barcode_reader.disconnect(); return new instance.web.Model("ir.model.data").get_func("search_read")([['name', '=', 'action_client_pos_menu']], ['res_id']).pipe( _.bind(function(res) { return this.rpc('/web/action/load', {'action_id': res[0]['res_id']}).pipe(_.bind(function(result) { @@ -1120,8 +1113,8 @@ function openerp_pos_widgets(instance, module){ //module is instance.point_of_sa }, this)); }, destroy: function() { + this.pos.destroy(); instance.webclient.set_content_full_screen(false); - self.pos = undefined; this._super(); } }); From 599602bb76b31e3d7e564eb825e8f0ef48bb649a Mon Sep 17 00:00:00 2001 From: niv-openerp Date: Mon, 2 Sep 2013 19:36:29 +0200 Subject: [PATCH 15/18] [FIX] potential bug in application initialization bzr revid: nicolas.vanhoren@openerp.com-20130902173629-be1r67o5vtbgb9yp --- addons/web/static/src/js/chrome.js | 18 +++++++++++------- 1 file changed, 11 insertions(+), 7 deletions(-) diff --git a/addons/web/static/src/js/chrome.js b/addons/web/static/src/js/chrome.js index 82cdf46bba8..55ab5ec073d 100644 --- a/addons/web/static/src/js/chrome.js +++ b/addons/web/static/src/js/chrome.js @@ -1307,13 +1307,8 @@ instance.web.WebClient = instance.web.Client.extend({ this.on("change:title_part", this, this._title_changed); this._title_changed(); return $.when(this._super()).then(function() { - if (jQuery.param !== undefined && jQuery.deparam(jQuery.param.querystring()).kitten !== undefined) { - $("body").addClass("kitten-mode-activated"); - $("body").css("background-image", "url(" + instance.session.origin + "/web/static/src/img/back-enable.jpg" + ")"); - if ($.blockUI) { - var imgkit = Math.floor(Math.random() * 2 + 1); - $.blockUI.defaults.message = ''; - } + if (jQuery.deparam !== undefined && jQuery.deparam(jQuery.param.querystring()).kitten !== undefined) { + self.to_kitten(); } if (!self.session.session_is_valid()) { self.show_login(); @@ -1322,6 +1317,15 @@ instance.web.WebClient = instance.web.Client.extend({ } }); }, + to_kitten: function() { + this.kitten = true; + $("body").addClass("kitten-mode-activated"); + $("body").css("background-image", "url(" + instance.session.origin + "/web/static/src/img/back-enable.jpg" + ")"); + if ($.blockUI) { + var imgkit = Math.floor(Math.random() * 2 + 1); + $.blockUI.defaults.message = ''; + } + }, /** Sets the first part of the title of the window, dedicated to the current action. */ From cb8f9c5a0d1879619812209f699ec8e0c8382120 Mon Sep 17 00:00:00 2001 From: Launchpad Translations on behalf of openerp <> Date: Tue, 3 Sep 2013 05:48:57 +0000 Subject: [PATCH 16/18] Launchpad automatic translations update. bzr revid: launchpad_translations_on_behalf_of_openerp-20130903054857-i15nhvtthlho7chm --- addons/account/i18n/ar.po | 391 ++-- addons/account/i18n/bg.po | 364 ++-- addons/account/i18n/br.po | 364 ++-- addons/account/i18n/bs.po | 463 +++-- addons/account/i18n/ca.po | 364 ++-- addons/account/i18n/cs.po | 694 ++++--- addons/account/i18n/da.po | 364 ++-- addons/account/i18n/de.po | 364 ++-- addons/account/i18n/el.po | 364 ++-- addons/account/i18n/en_GB.po | 364 ++-- addons/account/i18n/en_US.po | 364 ++-- addons/account/i18n/es.po | 368 ++-- addons/account/i18n/es_AR.po | 364 ++-- addons/account/i18n/es_CL.po | 364 ++-- addons/account/i18n/es_CR.po | 364 ++-- addons/account/i18n/es_DO.po | 366 ++-- addons/account/i18n/es_EC.po | 364 ++-- addons/account/i18n/es_MX.po | 442 ++-- addons/account/i18n/es_PY.po | 364 ++-- addons/account/i18n/es_UY.po | 364 ++-- addons/account/i18n/es_VE.po | 364 ++-- addons/account/i18n/et.po | 372 ++-- addons/account/i18n/eu.po | 364 ++-- addons/account/i18n/fa.po | 364 ++-- addons/account/i18n/fa_AF.po | 364 ++-- addons/account/i18n/fi.po | 364 ++-- addons/account/i18n/fr.po | 534 +++-- addons/account/i18n/fr_BE.po | 364 ++-- addons/account/i18n/gl.po | 364 ++-- addons/account/i18n/gu.po | 364 ++-- addons/account/i18n/he.po | 477 +++-- addons/account/i18n/hi.po | 364 ++-- addons/account/i18n/hr.po | 366 ++-- addons/account/i18n/hu.po | 453 ++-- addons/account/i18n/id.po | 364 ++-- addons/account/i18n/is.po | 4 +- addons/account/i18n/it.po | 386 ++-- addons/account/i18n/ja.po | 379 ++-- addons/account/i18n/kab.po | 366 ++-- addons/account/i18n/kk.po | 364 ++-- addons/account/i18n/ko.po | 370 ++-- addons/account/i18n/lo.po | 364 ++-- addons/account/i18n/lt.po | 1830 ++++++++++------- addons/account/i18n/lv.po | 364 ++-- addons/account/i18n/mk.po | 1625 +++++++++------ addons/account/i18n/mn.po | 551 ++--- addons/account/i18n/nb.po | 364 ++-- addons/account/i18n/nl.po | 527 ++--- addons/account/i18n/nl_BE.po | 364 ++-- addons/account/i18n/oc.po | 364 ++-- addons/account/i18n/pl.po | 376 ++-- addons/account/i18n/pt.po | 378 ++-- addons/account/i18n/pt_BR.po | 418 ++-- addons/account/i18n/ro.po | 370 ++-- addons/account/i18n/ru.po | 283 +-- addons/account/i18n/si.po | 364 ++-- addons/account/i18n/sk.po | 364 ++-- addons/account/i18n/sl.po | 364 ++-- addons/account/i18n/sq.po | 364 ++-- addons/account/i18n/sr.po | 364 ++-- addons/account/i18n/sr@latin.po | 364 ++-- addons/account/i18n/sv.po | 364 ++-- addons/account/i18n/ta.po | 366 ++-- addons/account/i18n/te.po | 364 ++-- addons/account/i18n/th.po | 375 ++-- addons/account/i18n/tlh.po | 364 ++-- addons/account/i18n/tr.po | 879 ++++---- addons/account/i18n/ug.po | 364 ++-- addons/account/i18n/uk.po | 364 ++-- addons/account/i18n/ur.po | 364 ++-- addons/account/i18n/vi.po | 4 +- addons/account/i18n/zh_CN.po | 154 +- addons/account/i18n/zh_HK.po | 364 ++-- addons/account/i18n/zh_TW.po | 364 ++-- 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 | 6 +- 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 | 6 +- addons/account_accountant/i18n/es_CO.po | 4 +- addons/account_accountant/i18n/es_CR.po | 4 +- addons/account_accountant/i18n/es_DO.po | 6 +- 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 | 6 +- addons/account_accountant/i18n/ja.po | 4 +- addons/account_accountant/i18n/ko.po | 6 +- addons/account_accountant/i18n/lo.po | 4 +- addons/account_accountant/i18n/lt.po | 6 +- addons/account_accountant/i18n/lv.po | 4 +- addons/account_accountant/i18n/mk.po | 6 +- 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 | 6 +- 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 | 6 +- addons/account_accountant/i18n/tr.po | 4 +- addons/account_accountant/i18n/uk.po | 4 +- addons/account_accountant/i18n/vi.po | 6 +- addons/account_accountant/i18n/zh_CN.po | 6 +- addons/account_accountant/i18n/zh_TW.po | 4 +- addons/account_analytic_analysis/i18n/ar.po | 7 +- addons/account_analytic_analysis/i18n/bg.po | 7 +- addons/account_analytic_analysis/i18n/bs.po | 7 +- addons/account_analytic_analysis/i18n/ca.po | 7 +- addons/account_analytic_analysis/i18n/cs.po | 7 +- addons/account_analytic_analysis/i18n/da.po | 7 +- addons/account_analytic_analysis/i18n/de.po | 7 +- addons/account_analytic_analysis/i18n/el.po | 7 +- .../account_analytic_analysis/i18n/en_GB.po | 7 +- addons/account_analytic_analysis/i18n/es.po | 7 +- .../account_analytic_analysis/i18n/es_AR.po | 7 +- .../account_analytic_analysis/i18n/es_CR.po | 7 +- .../account_analytic_analysis/i18n/es_EC.po | 7 +- .../account_analytic_analysis/i18n/es_MX.po | 7 +- .../account_analytic_analysis/i18n/es_PY.po | 7 +- addons/account_analytic_analysis/i18n/et.po | 7 +- addons/account_analytic_analysis/i18n/fa.po | 7 +- addons/account_analytic_analysis/i18n/fi.po | 7 +- addons/account_analytic_analysis/i18n/fr.po | 31 +- addons/account_analytic_analysis/i18n/gl.po | 7 +- addons/account_analytic_analysis/i18n/gu.po | 7 +- addons/account_analytic_analysis/i18n/hr.po | 7 +- addons/account_analytic_analysis/i18n/hu.po | 35 +- addons/account_analytic_analysis/i18n/id.po | 7 +- addons/account_analytic_analysis/i18n/it.po | 7 +- addons/account_analytic_analysis/i18n/ja.po | 7 +- addons/account_analytic_analysis/i18n/ko.po | 7 +- addons/account_analytic_analysis/i18n/lt.po | 7 +- addons/account_analytic_analysis/i18n/lv.po | 7 +- addons/account_analytic_analysis/i18n/mk.po | 109 +- addons/account_analytic_analysis/i18n/mn.po | 9 +- addons/account_analytic_analysis/i18n/nb.po | 7 +- addons/account_analytic_analysis/i18n/nl.po | 7 +- .../account_analytic_analysis/i18n/nl_BE.po | 7 +- addons/account_analytic_analysis/i18n/oc.po | 7 +- addons/account_analytic_analysis/i18n/pl.po | 7 +- addons/account_analytic_analysis/i18n/pt.po | 7 +- .../account_analytic_analysis/i18n/pt_BR.po | 7 +- addons/account_analytic_analysis/i18n/ro.po | 7 +- addons/account_analytic_analysis/i18n/ru.po | 8 +- addons/account_analytic_analysis/i18n/sl.po | 7 +- addons/account_analytic_analysis/i18n/sq.po | 7 +- addons/account_analytic_analysis/i18n/sr.po | 7 +- .../i18n/sr@latin.po | 7 +- addons/account_analytic_analysis/i18n/sv.po | 7 +- addons/account_analytic_analysis/i18n/tlh.po | 7 +- addons/account_analytic_analysis/i18n/tr.po | 33 +- addons/account_analytic_analysis/i18n/uk.po | 7 +- addons/account_analytic_analysis/i18n/vi.po | 7 +- .../account_analytic_analysis/i18n/zh_CN.po | 7 +- .../account_analytic_analysis/i18n/zh_TW.po | 7 +- 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 | 22 +- 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 | 33 +- addons/account_analytic_default/i18n/lv.po | 4 +- addons/account_analytic_default/i18n/mk.po | 16 +- addons/account_analytic_default/i18n/mn.po | 10 +- addons/account_analytic_default/i18n/nb.po | 4 +- addons/account_analytic_default/i18n/nl.po | 6 +- 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 | 6 +- 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 | 8 +- addons/account_analytic_default/i18n/uk.po | 4 +- addons/account_analytic_default/i18n/vi.po | 4 +- addons/account_analytic_default/i18n/zh_CN.po | 6 +- 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 | 24 +- 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 | 73 +- addons/account_analytic_plans/i18n/mn.po | 24 +- addons/account_analytic_plans/i18n/nb.po | 4 +- addons/account_analytic_plans/i18n/nl.po | 6 +- 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 | 22 +- 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 | 6 +- addons/account_anglo_saxon/i18n/ja.po | 4 +- addons/account_anglo_saxon/i18n/lv.po | 4 +- addons/account_anglo_saxon/i18n/mk.po | 8 +- 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 | 6 +- 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 | 6 +- addons/account_asset/i18n/ca.po | 6 +- addons/account_asset/i18n/cs.po | 6 +- addons/account_asset/i18n/da.po | 6 +- addons/account_asset/i18n/de.po | 6 +- addons/account_asset/i18n/en_GB.po | 150 +- addons/account_asset/i18n/es.po | 12 +- addons/account_asset/i18n/es_AR.po | 6 +- addons/account_asset/i18n/es_CR.po | 6 +- addons/account_asset/i18n/es_EC.po | 6 +- addons/account_asset/i18n/es_MX.po | 6 +- addons/account_asset/i18n/et.po | 6 +- addons/account_asset/i18n/fi.po | 6 +- addons/account_asset/i18n/fr.po | 6 +- addons/account_asset/i18n/gu.po | 6 +- addons/account_asset/i18n/hr.po | 6 +- addons/account_asset/i18n/hu.po | 4 +- addons/account_asset/i18n/id.po | 6 +- addons/account_asset/i18n/it.po | 6 +- addons/account_asset/i18n/ja.po | 6 +- addons/account_asset/i18n/ko.po | 6 +- addons/account_asset/i18n/lt.po | 228 +- addons/account_asset/i18n/mk.po | 52 +- addons/account_asset/i18n/mn.po | 8 +- addons/account_asset/i18n/nb.po | 6 +- addons/account_asset/i18n/nl.po | 8 +- addons/account_asset/i18n/nl_BE.po | 6 +- addons/account_asset/i18n/pl.po | 10 +- addons/account_asset/i18n/pt.po | 6 +- addons/account_asset/i18n/pt_BR.po | 6 +- addons/account_asset/i18n/ro.po | 6 +- addons/account_asset/i18n/ru.po | 8 +- addons/account_asset/i18n/sl.po | 6 +- addons/account_asset/i18n/sr@latin.po | 6 +- addons/account_asset/i18n/sv.po | 6 +- addons/account_asset/i18n/th.po | 4 +- addons/account_asset/i18n/tr.po | 6 +- addons/account_asset/i18n/vi.po | 6 +- addons/account_asset/i18n/zh_CN.po | 12 +- addons/account_asset/i18n/zh_TW.po | 6 +- .../i18n/ar.po | 4 +- .../i18n/cs.po | 4 +- .../i18n/de.po | 6 +- .../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 | 8 +- .../i18n/gu.po | 4 +- .../i18n/hr.po | 4 +- .../i18n/hu.po | 4 +- .../i18n/it.po | 4 +- .../i18n/ja.po | 4 +- .../i18n/mk.po | 24 +- .../i18n/mn.po | 6 +- .../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/ru.po | 4 +- .../i18n/sl.po | 4 +- .../i18n/sr@latin.po | 4 +- .../i18n/sv.po | 4 +- .../i18n/tr.po | 64 +- .../i18n/zh_CN.po | 8 +- .../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 | 30 +- 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 | 22 +- addons/account_budget/i18n/id.po | 4 +- addons/account_budget/i18n/it.po | 6 +- 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 | 6 +- addons/account_budget/i18n/lv.po | 4 +- addons/account_budget/i18n/mk.po | 19 +- addons/account_budget/i18n/mn.po | 8 +- addons/account_budget/i18n/nb.po | 4 +- addons/account_budget/i18n/nl.po | 14 +- addons/account_budget/i18n/nl_BE.po | 4 +- addons/account_budget/i18n/oc.po | 4 +- addons/account_budget/i18n/pl.po | 8 +- addons/account_budget/i18n/pt.po | 4 +- addons/account_budget/i18n/pt_BR.po | 14 +- addons/account_budget/i18n/ro.po | 4 +- addons/account_budget/i18n/ru.po | 8 +- 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 | 6 +- 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 | 6 +- addons/account_cancel/i18n/th.po | 4 +- addons/account_cancel/i18n/tr.po | 4 +- addons/account_cancel/i18n/uk.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 | 6 +- 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 | 8 +- 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/bs.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/hu.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 | 30 +- 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 | 14 +- addons/account_check_writing/i18n/zh_CN.po | 24 +- addons/account_check_writing/i18n/zh_TW.po | 4 +- addons/account_followup/i18n/ar.po | 14 +- addons/account_followup/i18n/bg.po | 14 +- addons/account_followup/i18n/bs.po | 14 +- addons/account_followup/i18n/ca.po | 14 +- addons/account_followup/i18n/cs.po | 14 +- addons/account_followup/i18n/da.po | 14 +- addons/account_followup/i18n/de.po | 14 +- addons/account_followup/i18n/el.po | 14 +- addons/account_followup/i18n/en_GB.po | 14 +- addons/account_followup/i18n/es.po | 14 +- addons/account_followup/i18n/es_AR.po | 14 +- addons/account_followup/i18n/es_CR.po | 14 +- addons/account_followup/i18n/es_EC.po | 14 +- addons/account_followup/i18n/es_PY.po | 14 +- addons/account_followup/i18n/et.po | 14 +- addons/account_followup/i18n/fa.po | 14 +- addons/account_followup/i18n/fi.po | 14 +- addons/account_followup/i18n/fr.po | 208 +- addons/account_followup/i18n/gl.po | 14 +- addons/account_followup/i18n/hr.po | 14 +- addons/account_followup/i18n/hu.po | 16 +- addons/account_followup/i18n/id.po | 14 +- addons/account_followup/i18n/it.po | 14 +- addons/account_followup/i18n/ja.po | 14 +- addons/account_followup/i18n/ko.po | 14 +- addons/account_followup/i18n/lt.po | 14 +- addons/account_followup/i18n/mk.po | 58 +- addons/account_followup/i18n/mn.po | 420 +++- addons/account_followup/i18n/nb.po | 14 +- addons/account_followup/i18n/nl.po | 20 +- addons/account_followup/i18n/nl_BE.po | 36 +- addons/account_followup/i18n/oc.po | 14 +- addons/account_followup/i18n/pl.po | 14 +- addons/account_followup/i18n/pt.po | 28 +- addons/account_followup/i18n/pt_BR.po | 14 +- addons/account_followup/i18n/ro.po | 14 +- addons/account_followup/i18n/ru.po | 120 +- addons/account_followup/i18n/sl.po | 14 +- addons/account_followup/i18n/sq.po | 14 +- addons/account_followup/i18n/sr.po | 14 +- addons/account_followup/i18n/sr@latin.po | 14 +- addons/account_followup/i18n/sv.po | 14 +- addons/account_followup/i18n/tlh.po | 14 +- addons/account_followup/i18n/tr.po | 127 +- addons/account_followup/i18n/uk.po | 14 +- addons/account_followup/i18n/vi.po | 14 +- addons/account_followup/i18n/zh_CN.po | 40 +- addons/account_followup/i18n/zh_TW.po | 14 +- 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 | 14 +- 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 | 6 +- addons/account_payment/i18n/id.po | 4 +- addons/account_payment/i18n/it.po | 6 +- addons/account_payment/i18n/ja.po | 4 +- addons/account_payment/i18n/ko.po | 4 +- addons/account_payment/i18n/lt.po | 6 +- addons/account_payment/i18n/lv.po | 4 +- addons/account_payment/i18n/mk.po | 107 +- addons/account_payment/i18n/mn.po | 6 +- addons/account_payment/i18n/nb.po | 4 +- addons/account_payment/i18n/nl.po | 8 +- 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 | 8 +- 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/cs.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 | 20 +- addons/account_sequence/i18n/mn.po | 10 +- addons/account_sequence/i18n/nb.po | 4 +- addons/account_sequence/i18n/nl.po | 6 +- addons/account_sequence/i18n/nl_BE.po | 4 +- addons/account_sequence/i18n/pl.po | 6 +- 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/cs.po | 4 +- addons/account_test/i18n/en_GB.po | 4 +- addons/account_test/i18n/es.po | 4 +- addons/account_test/i18n/fr.po | 50 +- addons/account_test/i18n/hr.po | 4 +- addons/account_test/i18n/hu.po | 4 +- addons/account_test/i18n/it.po | 4 +- addons/account_test/i18n/mk.po | 23 +- 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 | 8 +- addons/account_test/i18n/pt_BR.po | 4 +- addons/account_test/i18n/ro.po | 8 +- addons/account_test/i18n/ru.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 | 51 +- addons/account_voucher/i18n/bg.po | 51 +- addons/account_voucher/i18n/bs.po | 51 +- addons/account_voucher/i18n/ca.po | 51 +- addons/account_voucher/i18n/cs.po | 351 ++-- addons/account_voucher/i18n/da.po | 51 +- addons/account_voucher/i18n/de.po | 55 +- addons/account_voucher/i18n/el.po | 51 +- addons/account_voucher/i18n/en_GB.po | 51 +- addons/account_voucher/i18n/es.po | 51 +- addons/account_voucher/i18n/es_AR.po | 51 +- addons/account_voucher/i18n/es_CR.po | 51 +- addons/account_voucher/i18n/es_EC.po | 51 +- addons/account_voucher/i18n/es_PY.po | 51 +- addons/account_voucher/i18n/et.po | 51 +- addons/account_voucher/i18n/fa.po | 51 +- addons/account_voucher/i18n/fr.po | 51 +- addons/account_voucher/i18n/gl.po | 51 +- addons/account_voucher/i18n/gu.po | 51 +- addons/account_voucher/i18n/hi.po | 51 +- addons/account_voucher/i18n/hr.po | 204 +- addons/account_voucher/i18n/hu.po | 51 +- addons/account_voucher/i18n/id.po | 51 +- addons/account_voucher/i18n/it.po | 51 +- addons/account_voucher/i18n/ja.po | 51 +- addons/account_voucher/i18n/ko.po | 51 +- addons/account_voucher/i18n/lt.po | 310 +-- addons/account_voucher/i18n/mk.po | 189 +- addons/account_voucher/i18n/mn.po | 90 +- addons/account_voucher/i18n/nb.po | 51 +- addons/account_voucher/i18n/nl.po | 73 +- addons/account_voucher/i18n/nl_BE.po | 4 +- addons/account_voucher/i18n/oc.po | 51 +- addons/account_voucher/i18n/pl.po | 53 +- addons/account_voucher/i18n/pt.po | 55 +- addons/account_voucher/i18n/pt_BR.po | 51 +- addons/account_voucher/i18n/ro.po | 51 +- addons/account_voucher/i18n/ru.po | 4 +- addons/account_voucher/i18n/sl.po | 183 +- addons/account_voucher/i18n/sq.po | 51 +- addons/account_voucher/i18n/sr.po | 51 +- addons/account_voucher/i18n/sr@latin.po | 51 +- addons/account_voucher/i18n/sv.po | 51 +- addons/account_voucher/i18n/tlh.po | 51 +- addons/account_voucher/i18n/tr.po | 69 +- addons/account_voucher/i18n/uk.po | 51 +- addons/account_voucher/i18n/vi.po | 63 +- addons/account_voucher/i18n/zh_CN.po | 51 +- addons/account_voucher/i18n/zh_TW.po | 51 +- addons/analytic/i18n/ar.po | 5 +- addons/analytic/i18n/bg.po | 5 +- addons/analytic/i18n/bs.po | 5 +- addons/analytic/i18n/ca.po | 5 +- addons/analytic/i18n/cs.po | 5 +- addons/analytic/i18n/da.po | 5 +- addons/analytic/i18n/de.po | 5 +- addons/analytic/i18n/el.po | 5 +- addons/analytic/i18n/en_GB.po | 5 +- addons/analytic/i18n/es.po | 5 +- addons/analytic/i18n/es_CR.po | 5 +- addons/analytic/i18n/es_EC.po | 5 +- addons/analytic/i18n/es_PY.po | 5 +- addons/analytic/i18n/et.po | 5 +- addons/analytic/i18n/fa.po | 5 +- addons/analytic/i18n/fi.po | 5 +- addons/analytic/i18n/fr.po | 11 +- addons/analytic/i18n/gl.po | 5 +- addons/analytic/i18n/hr.po | 5 +- addons/analytic/i18n/hu.po | 41 +- addons/analytic/i18n/it.po | 7 +- addons/analytic/i18n/ja.po | 5 +- addons/analytic/i18n/lt.po | 107 +- addons/analytic/i18n/lv.po | 5 +- addons/analytic/i18n/mk.po | 39 +- addons/analytic/i18n/mn.po | 17 +- addons/analytic/i18n/nb.po | 5 +- addons/analytic/i18n/nl.po | 9 +- addons/analytic/i18n/nl_BE.po | 5 +- addons/analytic/i18n/pl.po | 5 +- addons/analytic/i18n/pt.po | 5 +- addons/analytic/i18n/pt_BR.po | 5 +- addons/analytic/i18n/ro.po | 9 +- addons/analytic/i18n/ru.po | 17 +- addons/analytic/i18n/sl.po | 5 +- addons/analytic/i18n/sq.po | 5 +- addons/analytic/i18n/sr.po | 5 +- addons/analytic/i18n/sr@latin.po | 5 +- addons/analytic/i18n/sv.po | 5 +- addons/analytic/i18n/tr.po | 7 +- addons/analytic/i18n/vi.po | 5 +- addons/analytic/i18n/zh_CN.po | 5 +- addons/analytic/i18n/zh_TW.po | 5 +- .../analytic_contract_hr_expense/i18n/ar.po | 8 +- .../analytic_contract_hr_expense/i18n/cs.po | 8 +- .../analytic_contract_hr_expense/i18n/de.po | 8 +- .../i18n/en_GB.po | 8 +- .../analytic_contract_hr_expense/i18n/es.po | 8 +- .../analytic_contract_hr_expense/i18n/fr.po | 8 +- .../analytic_contract_hr_expense/i18n/hr.po | 8 +- .../analytic_contract_hr_expense/i18n/hu.po | 8 +- .../analytic_contract_hr_expense/i18n/it.po | 8 +- .../analytic_contract_hr_expense/i18n/mk.po | 12 +- .../analytic_contract_hr_expense/i18n/mn.po | 8 +- .../analytic_contract_hr_expense/i18n/nb.po | 8 +- .../analytic_contract_hr_expense/i18n/nl.po | 16 +- .../i18n/nl_BE.po | 8 +- .../analytic_contract_hr_expense/i18n/pl.po | 8 +- .../analytic_contract_hr_expense/i18n/pt.po | 8 +- .../i18n/pt_BR.po | 16 +- .../analytic_contract_hr_expense/i18n/ro.po | 8 +- .../analytic_contract_hr_expense/i18n/sl.po | 8 +- .../analytic_contract_hr_expense/i18n/tr.po | 8 +- .../i18n/zh_CN.po | 8 +- 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 | 13 +- 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 | 4 +- 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 | 16 +- addons/analytic_user_function/i18n/mn.po | 6 +- 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 | 20 +- 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/cs.po | 4 +- addons/anonymization/i18n/da.po | 4 +- addons/anonymization/i18n/de.po | 26 +- 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 | 10 +- 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 | 24 +- 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 | 4 +- addons/association/i18n/id.po | 4 +- addons/association/i18n/it.po | 6 +- 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 | 8 +- 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 | 4 +- addons/association/i18n/sl.po | 28 +- 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 | 4 +- 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 | 32 +- 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 | 8 +- 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 | 102 +- 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/cs.po | 8 +- 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/lt.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/nl_BE.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/cs.po | 53 +- 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 | 32 +- addons/auth_ldap/i18n/it.po | 4 +- addons/auth_ldap/i18n/ja.po | 4 +- addons/auth_ldap/i18n/mk.po | 10 +- 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 | 39 +- 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/cs.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 | 10 +- addons/auth_oauth/i18n/it.po | 4 +- addons/auth_oauth/i18n/mk.po | 10 +- addons/auth_oauth/i18n/nb.po | 4 +- addons/auth_oauth/i18n/nl.po | 6 +- addons/auth_oauth/i18n/pl.po | 4 +- addons/auth_oauth/i18n/pt.po | 8 +- addons/auth_oauth/i18n/pt_BR.po | 4 +- addons/auth_oauth/i18n/ro.po | 4 +- addons/auth_oauth/i18n/sl.po | 40 +- addons/auth_oauth/i18n/sv.po | 4 +- addons/auth_oauth/i18n/tr.po | 22 +- addons/auth_oauth/i18n/zh_CN.po | 4 +- addons/auth_oauth_signup/i18n/cs.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/lt.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/nl_BE.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/vi.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/cs.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 | 6 +- 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 | 6 +- 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/vi.po | 4 +- addons/auth_openid/i18n/zh_CN.po | 4 +- addons/auth_signup/i18n/ar.po | 40 +- addons/auth_signup/i18n/cs.po | 136 +- addons/auth_signup/i18n/de.po | 45 +- addons/auth_signup/i18n/en_GB.po | 40 +- addons/auth_signup/i18n/es.po | 40 +- addons/auth_signup/i18n/es_CO.po | 40 +- addons/auth_signup/i18n/fr.po | 40 +- addons/auth_signup/i18n/hr.po | 42 +- addons/auth_signup/i18n/hu.po | 40 +- addons/auth_signup/i18n/it.po | 42 +- addons/auth_signup/i18n/lt.po | 56 +- addons/auth_signup/i18n/mk.po | 42 +- addons/auth_signup/i18n/mn.po | 40 +- addons/auth_signup/i18n/nb.po | 40 +- addons/auth_signup/i18n/nl.po | 46 +- addons/auth_signup/i18n/pl.po | 40 +- addons/auth_signup/i18n/pt.po | 42 +- addons/auth_signup/i18n/pt_BR.po | 40 +- addons/auth_signup/i18n/ro.po | 40 +- addons/auth_signup/i18n/ru.po | 40 +- addons/auth_signup/i18n/sl.po | 40 +- addons/auth_signup/i18n/tr.po | 40 +- addons/auth_signup/i18n/vi.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 | 10 +- 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 | 80 +- addons/base_action_rule/i18n/it.po | 4 +- addons/base_action_rule/i18n/ja.po | 4 +- addons/base_action_rule/i18n/lt.po | 30 +- addons/base_action_rule/i18n/lv.po | 4 +- addons/base_action_rule/i18n/mk.po | 27 +- addons/base_action_rule/i18n/mn.po | 4 +- addons/base_action_rule/i18n/nb.po | 4 +- addons/base_action_rule/i18n/nl.po | 8 +- 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 | 6 +- 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 | 55 +- addons/base_action_rule/i18n/zh_CN.po | 16 +- addons/base_action_rule/i18n/zh_TW.po | 4 +- addons/base_calendar/i18n/af.po | 18 +- addons/base_calendar/i18n/ar.po | 18 +- addons/base_calendar/i18n/bg.po | 18 +- addons/base_calendar/i18n/bn.po | 18 +- addons/base_calendar/i18n/bs.po | 18 +- addons/base_calendar/i18n/ca.po | 18 +- addons/base_calendar/i18n/cs.po | 18 +- addons/base_calendar/i18n/da.po | 18 +- addons/base_calendar/i18n/de.po | 18 +- addons/base_calendar/i18n/el.po | 18 +- addons/base_calendar/i18n/es.po | 18 +- addons/base_calendar/i18n/es_CR.po | 18 +- addons/base_calendar/i18n/es_EC.po | 18 +- addons/base_calendar/i18n/es_MX.po | 18 +- addons/base_calendar/i18n/es_PY.po | 18 +- addons/base_calendar/i18n/et.po | 18 +- addons/base_calendar/i18n/fa.po | 18 +- addons/base_calendar/i18n/fi.po | 18 +- addons/base_calendar/i18n/fr.po | 44 +- addons/base_calendar/i18n/gl.po | 18 +- addons/base_calendar/i18n/hr.po | 18 +- addons/base_calendar/i18n/hu.po | 18 +- addons/base_calendar/i18n/id.po | 18 +- addons/base_calendar/i18n/it.po | 20 +- addons/base_calendar/i18n/ja.po | 18 +- addons/base_calendar/i18n/ln.po | 18 +- addons/base_calendar/i18n/lt.po | 216 +- addons/base_calendar/i18n/lv.po | 18 +- addons/base_calendar/i18n/mk.po | 88 +- addons/base_calendar/i18n/mn.po | 18 +- addons/base_calendar/i18n/nb.po | 18 +- addons/base_calendar/i18n/nl.po | 40 +- addons/base_calendar/i18n/pl.po | 18 +- addons/base_calendar/i18n/pt.po | 20 +- addons/base_calendar/i18n/pt_BR.po | 18 +- addons/base_calendar/i18n/ro.po | 296 +-- addons/base_calendar/i18n/ru.po | 18 +- addons/base_calendar/i18n/sk.po | 18 +- addons/base_calendar/i18n/sl.po | 18 +- addons/base_calendar/i18n/sq.po | 18 +- addons/base_calendar/i18n/sr.po | 18 +- addons/base_calendar/i18n/sr@latin.po | 18 +- addons/base_calendar/i18n/sv.po | 98 +- addons/base_calendar/i18n/th.po | 18 +- addons/base_calendar/i18n/tr.po | 63 +- addons/base_calendar/i18n/zh_CN.po | 74 +- addons/base_calendar/i18n/zh_TW.po | 18 +- addons/base_crypt/i18n/ar.po | 4 +- addons/base_crypt/i18n/bg.po | 4 +- addons/base_crypt/i18n/ca.po | 4 +- addons/base_crypt/i18n/cs.po | 4 +- addons/base_crypt/i18n/da.po | 4 +- addons/base_crypt/i18n/de.po | 4 +- addons/base_crypt/i18n/el.po | 4 +- addons/base_crypt/i18n/en_GB.po | 4 +- addons/base_crypt/i18n/es.po | 4 +- addons/base_crypt/i18n/es_CL.po | 4 +- addons/base_crypt/i18n/es_CR.po | 4 +- addons/base_crypt/i18n/es_PY.po | 4 +- addons/base_crypt/i18n/et.po | 4 +- addons/base_crypt/i18n/fa.po | 4 +- addons/base_crypt/i18n/fi.po | 4 +- addons/base_crypt/i18n/fr.po | 4 +- addons/base_crypt/i18n/gl.po | 4 +- addons/base_crypt/i18n/gu.po | 4 +- addons/base_crypt/i18n/hr.po | 4 +- addons/base_crypt/i18n/hu.po | 4 +- addons/base_crypt/i18n/id.po | 4 +- addons/base_crypt/i18n/it.po | 6 +- addons/base_crypt/i18n/ja.po | 4 +- addons/base_crypt/i18n/lv.po | 4 +- addons/base_crypt/i18n/mn.po | 4 +- addons/base_crypt/i18n/nb.po | 4 +- addons/base_crypt/i18n/nl.po | 4 +- addons/base_crypt/i18n/nl_BE.po | 4 +- addons/base_crypt/i18n/oc.po | 4 +- addons/base_crypt/i18n/pl.po | 4 +- addons/base_crypt/i18n/pt.po | 4 +- addons/base_crypt/i18n/pt_BR.po | 4 +- addons/base_crypt/i18n/ro.po | 4 +- addons/base_crypt/i18n/ru.po | 4 +- addons/base_crypt/i18n/sk.po | 4 +- addons/base_crypt/i18n/sl.po | 4 +- addons/base_crypt/i18n/sq.po | 4 +- addons/base_crypt/i18n/sr@latin.po | 4 +- addons/base_crypt/i18n/sv.po | 4 +- addons/base_crypt/i18n/tr.po | 4 +- addons/base_crypt/i18n/vi.po | 4 +- addons/base_crypt/i18n/zh_CN.po | 4 +- addons/base_crypt/i18n/zh_TW.po | 4 +- addons/base_gengo/i18n/ar.po | 4 +- addons/base_gengo/i18n/cs.po | 4 +- addons/base_gengo/i18n/de.po | 7 +- addons/base_gengo/i18n/es.po | 4 +- addons/base_gengo/i18n/fr.po | 12 +- 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 | 34 +- addons/base_gengo/i18n/mn.po | 4 +- addons/base_gengo/i18n/nb.po | 4 +- addons/base_gengo/i18n/nl.po | 44 +- addons/base_gengo/i18n/pt.po | 6 +- 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/th.po | 4 +- addons/base_gengo/i18n/tr.po | 12 +- 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 | 4 +- 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 | 8 +- addons/base_iban/i18n/lv.po | 4 +- addons/base_iban/i18n/mk.po | 16 +- 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/cs.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 | 45 +- addons/base_import/i18n/hr.po | 4 +- addons/base_import/i18n/hu.po | 20 +- 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 | 22 +- addons/base_import/i18n/pl.po | 4 +- addons/base_import/i18n/pt.po | 12 +- addons/base_import/i18n/pt_BR.po | 254 ++- 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 | 106 +- addons/base_import/i18n/zh_CN.po | 211 +- 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 | 4 +- addons/base_report_designer/i18n/id.po | 4 +- addons/base_report_designer/i18n/it.po | 6 +- 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 | 14 +- 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 | 6 +- 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 | 130 +- 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 | 10 +- 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 | 21 +- 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 | 6 +- addons/base_setup/i18n/ko.po | 4 +- addons/base_setup/i18n/lt.po | 24 +- addons/base_setup/i18n/lv.po | 4 +- addons/base_setup/i18n/mk.po | 6 +- addons/base_setup/i18n/mn.po | 4 +- addons/base_setup/i18n/nb.po | 4 +- addons/base_setup/i18n/nl.po | 11 +- addons/base_setup/i18n/nl_BE.po | 4 +- addons/base_setup/i18n/pl.po | 4 +- addons/base_setup/i18n/pt.po | 25 +- addons/base_setup/i18n/pt_BR.po | 4 +- addons/base_setup/i18n/ro.po | 4 +- addons/base_setup/i18n/ru.po | 8 +- 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 | 40 +- addons/base_setup/i18n/tlh.po | 4 +- addons/base_setup/i18n/tr.po | 8 +- 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_vat/i18n/ar.po | 8 +- addons/base_vat/i18n/bg.po | 8 +- addons/base_vat/i18n/bs.po | 8 +- addons/base_vat/i18n/ca.po | 8 +- addons/base_vat/i18n/cs.po | 8 +- addons/base_vat/i18n/da.po | 8 +- addons/base_vat/i18n/de.po | 8 +- addons/base_vat/i18n/el.po | 8 +- addons/base_vat/i18n/en_AU.po | 8 +- addons/base_vat/i18n/en_GB.po | 8 +- addons/base_vat/i18n/es.po | 8 +- addons/base_vat/i18n/es_AR.po | 8 +- addons/base_vat/i18n/es_CL.po | 8 +- addons/base_vat/i18n/es_CR.po | 8 +- addons/base_vat/i18n/es_EC.po | 8 +- addons/base_vat/i18n/es_MX.po | 18 +- addons/base_vat/i18n/es_PY.po | 8 +- addons/base_vat/i18n/et.po | 8 +- addons/base_vat/i18n/eu.po | 8 +- addons/base_vat/i18n/fa.po | 8 +- addons/base_vat/i18n/fi.po | 8 +- addons/base_vat/i18n/fr.po | 8 +- addons/base_vat/i18n/gl.po | 8 +- addons/base_vat/i18n/gu.po | 8 +- addons/base_vat/i18n/hr.po | 8 +- addons/base_vat/i18n/hu.po | 8 +- addons/base_vat/i18n/id.po | 8 +- addons/base_vat/i18n/it.po | 8 +- addons/base_vat/i18n/ja.po | 8 +- addons/base_vat/i18n/ko.po | 8 +- addons/base_vat/i18n/lt.po | 24 +- addons/base_vat/i18n/lv.po | 8 +- addons/base_vat/i18n/mk.po | 14 +- addons/base_vat/i18n/mn.po | 8 +- addons/base_vat/i18n/nb.po | 8 +- addons/base_vat/i18n/nl.po | 8 +- addons/base_vat/i18n/nl_BE.po | 8 +- addons/base_vat/i18n/oc.po | 8 +- addons/base_vat/i18n/pl.po | 8 +- addons/base_vat/i18n/pt.po | 8 +- addons/base_vat/i18n/pt_BR.po | 8 +- addons/base_vat/i18n/ro.po | 8 +- addons/base_vat/i18n/ru.po | 8 +- addons/base_vat/i18n/sk.po | 8 +- addons/base_vat/i18n/sl.po | 8 +- addons/base_vat/i18n/sq.po | 8 +- addons/base_vat/i18n/sr.po | 8 +- addons/base_vat/i18n/sr@latin.po | 8 +- addons/base_vat/i18n/sv.po | 8 +- addons/base_vat/i18n/th.po | 8 +- addons/base_vat/i18n/tlh.po | 8 +- addons/base_vat/i18n/tr.po | 8 +- addons/base_vat/i18n/uk.po | 8 +- addons/base_vat/i18n/vi.po | 8 +- addons/base_vat/i18n/zh_CN.po | 8 +- addons/base_vat/i18n/zh_TW.po | 8 +- 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 | 59 +- 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 | 44 +- addons/board/i18n/ln.po | 4 +- addons/board/i18n/lt.po | 57 +- 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 | 18 +- 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 | 10 +- 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 | 6 +- 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/vi.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 | 11 +- addons/contacts/i18n/hu.po | 4 +- addons/contacts/i18n/it.po | 6 +- addons/contacts/i18n/ko.po | 4 +- addons/contacts/i18n/lt.po | 4 +- addons/contacts/i18n/mk.po | 8 +- addons/contacts/i18n/mn.po | 4 +- addons/contacts/i18n/nl.po | 4 +- addons/contacts/i18n/nl_BE.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 | 16 +- addons/contacts/i18n/ru.po | 4 +- addons/contacts/i18n/sl.po | 4 +- addons/contacts/i18n/sv.po | 4 +- addons/contacts/i18n/th.po | 6 +- addons/contacts/i18n/tr.po | 4 +- addons/contacts/i18n/vi.po | 4 +- addons/contacts/i18n/zh_CN.po | 4 +- addons/contacts/i18n/zh_TW.po | 4 +- addons/crm/i18n/ar.po | 31 +- addons/crm/i18n/bg.po | 31 +- addons/crm/i18n/bs.po | 31 +- addons/crm/i18n/ca.po | 31 +- addons/crm/i18n/cs.po | 794 ++++--- addons/crm/i18n/da.po | 31 +- addons/crm/i18n/de.po | 31 +- addons/crm/i18n/el.po | 31 +- addons/crm/i18n/es.po | 35 +- addons/crm/i18n/es_AR.po | 4 +- addons/crm/i18n/es_CR.po | 31 +- addons/crm/i18n/es_EC.po | 31 +- addons/crm/i18n/es_MX.po | 31 +- addons/crm/i18n/es_PY.po | 31 +- addons/crm/i18n/et.po | 31 +- addons/crm/i18n/fi.po | 31 +- addons/crm/i18n/fr.po | 38 +- addons/crm/i18n/gl.po | 31 +- addons/crm/i18n/gu.po | 31 +- addons/crm/i18n/hr.po | 312 +-- addons/crm/i18n/hu.po | 4 +- addons/crm/i18n/id.po | 31 +- addons/crm/i18n/it.po | 35 +- addons/crm/i18n/ja.po | 31 +- addons/crm/i18n/ko.po | 994 +++++---- addons/crm/i18n/lo.po | 31 +- addons/crm/i18n/lt.po | 486 +++-- addons/crm/i18n/lv.po | 31 +- addons/crm/i18n/mk.po | 102 +- addons/crm/i18n/mn.po | 41 +- addons/crm/i18n/nb.po | 31 +- addons/crm/i18n/nl.po | 35 +- addons/crm/i18n/nl_BE.po | 31 +- addons/crm/i18n/pl.po | 31 +- addons/crm/i18n/pt.po | 195 +- addons/crm/i18n/pt_BR.po | 45 +- addons/crm/i18n/ro.po | 31 +- addons/crm/i18n/ru.po | 35 +- addons/crm/i18n/sk.po | 31 +- addons/crm/i18n/sl.po | 49 +- addons/crm/i18n/sq.po | 31 +- addons/crm/i18n/sr.po | 31 +- addons/crm/i18n/sr@latin.po | 31 +- addons/crm/i18n/sv.po | 31 +- addons/crm/i18n/th.po | 6 +- addons/crm/i18n/tlh.po | 31 +- addons/crm/i18n/tr.po | 55 +- addons/crm/i18n/uk.po | 31 +- addons/crm/i18n/vi.po | 75 +- addons/crm/i18n/zh_CN.po | 16 +- addons/crm/i18n/zh_TW.po | 31 +- 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/cs.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 | 42 +- 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/ko.po | 4 +- addons/crm_claim/i18n/lt.po | 4 +- addons/crm_claim/i18n/mk.po | 29 +- addons/crm_claim/i18n/mn.po | 47 +- 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 | 10 +- 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 | 10 +- addons/crm_claim/i18n/zh_CN.po | 42 +- 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/cs.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 | 10 +- 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/ko.po | 4 +- addons/crm_helpdesk/i18n/lt.po | 4 +- addons/crm_helpdesk/i18n/lv.po | 4 +- addons/crm_helpdesk/i18n/mk.po | 63 +- addons/crm_helpdesk/i18n/mn.po | 4 +- addons/crm_helpdesk/i18n/nb.po | 4 +- addons/crm_helpdesk/i18n/nl.po | 6 +- 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 | 8 +- addons/crm_helpdesk/i18n/zh_CN.po | 10 +- 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/cs.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 | 6 +- 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/ko.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 | 76 +- addons/crm_partner_assign/i18n/mn.po | 10 +- addons/crm_partner_assign/i18n/nb.po | 4 +- addons/crm_partner_assign/i18n/nl.po | 8 +- addons/crm_partner_assign/i18n/pl.po | 4 +- addons/crm_partner_assign/i18n/pt.po | 6 +- addons/crm_partner_assign/i18n/pt_BR.po | 8 +- 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 | 52 +- 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 | 50 +- addons/crm_profiling/i18n/lt.po | 4 +- addons/crm_profiling/i18n/lv.po | 4 +- addons/crm_profiling/i18n/mk.po | 11 +- 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/cs.po | 4 +- addons/crm_todo/i18n/da.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 | 10 +- 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/ko.po | 4 +- addons/crm_todo/i18n/lt.po | 4 +- addons/crm_todo/i18n/mk.po | 12 +- 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 | 6 +- addons/decimal_precision/i18n/ja.po | 4 +- addons/decimal_precision/i18n/ko.po | 4 +- addons/decimal_precision/i18n/lt.po | 6 +- 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 | 8 +- 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 | 22 +- addons/delivery/i18n/gl.po | 4 +- addons/delivery/i18n/hi.po | 6 +- addons/delivery/i18n/hr.po | 21 +- 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 | 86 +- addons/delivery/i18n/mn.po | 4 +- addons/delivery/i18n/nb.po | 4 +- addons/delivery/i18n/nl.po | 10 +- addons/delivery/i18n/nl_BE.po | 4 +- addons/delivery/i18n/pl.po | 4 +- addons/delivery/i18n/pt.po | 8 +- 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 | 28 +- 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 | 18 +- 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 | 6 +- addons/document/i18n/lv.po | 4 +- addons/document/i18n/mk.po | 47 +- addons/document/i18n/mn.po | 4 +- addons/document/i18n/nb.po | 4 +- addons/document/i18n/nl.po | 6 +- addons/document/i18n/nl_BE.po | 4 +- addons/document/i18n/pl.po | 4 +- addons/document/i18n/pt.po | 18 +- 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 | 6 +- 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 | 14 +- 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 | 6 +- 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 | 24 +- 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 | 12 +- addons/document_webdav/i18n/mn.po | 4 +- addons/document_webdav/i18n/nb.po | 4 +- addons/document_webdav/i18n/nl.po | 6 +- 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/cs.po | 4 +- addons/edi/i18n/de.po | 4 +- addons/edi/i18n/en_GB.po | 4 +- addons/edi/i18n/es.po | 4 +- addons/edi/i18n/es_CR.po | 4 +- addons/edi/i18n/fi.po | 19 +- addons/edi/i18n/fr.po | 4 +- addons/edi/i18n/hr.po | 4 +- addons/edi/i18n/hu.po | 4 +- addons/edi/i18n/is.po | 4 +- addons/edi/i18n/it.po | 6 +- addons/edi/i18n/ja.po | 4 +- addons/edi/i18n/lt.po | 10 +- 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 | 6 +- 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 | 12 +- addons/email_template/i18n/bg.po | 12 +- addons/email_template/i18n/ca.po | 12 +- addons/email_template/i18n/cs.po | 12 +- addons/email_template/i18n/da.po | 12 +- addons/email_template/i18n/de.po | 12 +- addons/email_template/i18n/es.po | 12 +- addons/email_template/i18n/es_CL.po | 12 +- addons/email_template/i18n/es_CR.po | 12 +- addons/email_template/i18n/es_EC.po | 12 +- addons/email_template/i18n/et.po | 12 +- addons/email_template/i18n/fa_AF.po | 12 +- addons/email_template/i18n/fi.po | 12 +- addons/email_template/i18n/fr.po | 16 +- addons/email_template/i18n/hr.po | 12 +- addons/email_template/i18n/hu.po | 12 +- addons/email_template/i18n/it.po | 14 +- addons/email_template/i18n/ja.po | 12 +- addons/email_template/i18n/lt.po | 60 +- addons/email_template/i18n/mk.po | 53 +- addons/email_template/i18n/mn.po | 26 +- addons/email_template/i18n/nb.po | 12 +- addons/email_template/i18n/nl.po | 18 +- addons/email_template/i18n/nl_BE.po | 12 +- addons/email_template/i18n/pl.po | 12 +- addons/email_template/i18n/pt.po | 16 +- addons/email_template/i18n/pt_BR.po | 12 +- addons/email_template/i18n/ro.po | 12 +- addons/email_template/i18n/ru.po | 12 +- addons/email_template/i18n/sl.po | 12 +- addons/email_template/i18n/sr.po | 12 +- addons/email_template/i18n/sr@latin.po | 12 +- addons/email_template/i18n/sv.po | 12 +- addons/email_template/i18n/tr.po | 18 +- addons/email_template/i18n/zh_CN.po | 40 +- addons/email_template/i18n/zh_TW.po | 12 +- 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 | 102 +- 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 | 54 +- addons/event/i18n/mn.po | 4 +- addons/event/i18n/nb.po | 4 +- addons/event/i18n/nl.po | 52 +- addons/event/i18n/nl_BE.po | 4 +- addons/event/i18n/pl.po | 6 +- addons/event/i18n/pt.po | 14 +- addons/event/i18n/pt_BR.po | 4 +- addons/event/i18n/ro.po | 10 +- 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 | 8 +- addons/event/i18n/uk.po | 4 +- addons/event/i18n/vi.po | 4 +- addons/event/i18n/zh_CN.po | 10 +- addons/event/i18n/zh_TW.po | 4 +- addons/event_moodle/i18n/cs.po | 4 +- addons/event_moodle/i18n/de.po | 6 +- addons/event_moodle/i18n/es.po | 4 +- addons/event_moodle/i18n/fr.po | 8 +- addons/event_moodle/i18n/hr.po | 4 +- addons/event_moodle/i18n/hu.po | 4 +- addons/event_moodle/i18n/mk.po | 18 +- addons/event_moodle/i18n/mn.po | 4 +- addons/event_moodle/i18n/nl.po | 4 +- addons/event_moodle/i18n/pt.po | 18 +- 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 | 58 +- addons/event_sale/i18n/ar.po | 4 +- addons/event_sale/i18n/cs.po | 4 +- addons/event_sale/i18n/da.po | 4 +- addons/event_sale/i18n/de.po | 4 +- addons/event_sale/i18n/es.po | 4 +- addons/event_sale/i18n/fr.po | 8 +- 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 | 12 +- 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 | 16 +- addons/fetchmail/i18n/ar.po | 8 +- addons/fetchmail/i18n/bg.po | 8 +- addons/fetchmail/i18n/ca.po | 8 +- addons/fetchmail/i18n/cs.po | 8 +- addons/fetchmail/i18n/da.po | 8 +- addons/fetchmail/i18n/de.po | 8 +- addons/fetchmail/i18n/el.po | 8 +- addons/fetchmail/i18n/en_GB.po | 8 +- addons/fetchmail/i18n/es.po | 8 +- addons/fetchmail/i18n/es_CR.po | 8 +- addons/fetchmail/i18n/et.po | 8 +- addons/fetchmail/i18n/fi.po | 8 +- addons/fetchmail/i18n/fr.po | 8 +- addons/fetchmail/i18n/gl.po | 8 +- addons/fetchmail/i18n/hr.po | 8 +- addons/fetchmail/i18n/hu.po | 8 +- addons/fetchmail/i18n/it.po | 8 +- addons/fetchmail/i18n/ja.po | 8 +- addons/fetchmail/i18n/ko.po | 4 +- addons/fetchmail/i18n/lt.po | 20 +- addons/fetchmail/i18n/lv.po | 8 +- addons/fetchmail/i18n/mk.po | 8 +- addons/fetchmail/i18n/mn.po | 8 +- addons/fetchmail/i18n/nb.po | 8 +- addons/fetchmail/i18n/nl.po | 10 +- addons/fetchmail/i18n/pl.po | 8 +- addons/fetchmail/i18n/pt.po | 8 +- addons/fetchmail/i18n/pt_BR.po | 8 +- addons/fetchmail/i18n/ro.po | 8 +- addons/fetchmail/i18n/ru.po | 8 +- addons/fetchmail/i18n/sl.po | 8 +- addons/fetchmail/i18n/sr.po | 8 +- addons/fetchmail/i18n/sr@latin.po | 8 +- addons/fetchmail/i18n/sv.po | 8 +- addons/fetchmail/i18n/tr.po | 8 +- addons/fetchmail/i18n/vi.po | 8 +- addons/fetchmail/i18n/zh_CN.po | 10 +- addons/fleet/i18n/ar.po | 4 +- addons/fleet/i18n/bg.po | 36 +- addons/fleet/i18n/cs.po | 4 +- addons/fleet/i18n/de.po | 24 +- addons/fleet/i18n/es.po | 4 +- addons/fleet/i18n/es_MX.po | 4 +- addons/fleet/i18n/fr.po | 34 +- addons/fleet/i18n/hr.po | 4 +- addons/fleet/i18n/hu.po | 4 +- addons/fleet/i18n/it.po | 4 +- addons/fleet/i18n/lv.po | 4 +- addons/fleet/i18n/mk.po | 167 +- addons/fleet/i18n/mn.po | 4 +- addons/fleet/i18n/nl.po | 4 +- addons/fleet/i18n/nl_BE.po | 4 +- addons/fleet/i18n/pl.po | 4 +- addons/fleet/i18n/pt.po | 22 +- addons/fleet/i18n/pt_BR.po | 4 +- addons/fleet/i18n/ro.po | 178 +- addons/fleet/i18n/ru.po | 4 +- addons/fleet/i18n/sl.po | 4 +- addons/fleet/i18n/sv.po | 4 +- addons/fleet/i18n/tr.po | 475 +++-- addons/fleet/i18n/zh_CN.po | 18 +- addons/google_base_account/i18n/ar.po | 4 +- addons/google_base_account/i18n/cs.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_drive/i18n/ar.po | 4 +- addons/google_drive/i18n/cs.po | 4 +- addons/google_drive/i18n/de.po | 4 +- addons/google_drive/i18n/es.po | 4 +- addons/google_drive/i18n/fr.po | 4 +- addons/google_drive/i18n/hr.po | 4 +- addons/google_drive/i18n/hu.po | 4 +- addons/google_drive/i18n/it.po | 4 +- addons/google_drive/i18n/ln.po | 4 +- addons/google_drive/i18n/mk.po | 4 +- addons/google_drive/i18n/mn.po | 4 +- addons/google_drive/i18n/nl.po | 4 +- addons/google_drive/i18n/pl.po | 4 +- addons/google_drive/i18n/pt.po | 4 +- addons/google_drive/i18n/pt_BR.po | 4 +- addons/google_drive/i18n/ro.po | 4 +- addons/google_drive/i18n/ru.po | 4 +- addons/google_drive/i18n/sl.po | 4 +- addons/google_drive/i18n/sv.po | 4 +- addons/google_drive/i18n/tr.po | 4 +- addons/google_drive/i18n/zh_CN.po | 6 +- addons/hr/i18n/ar.po | 53 +- 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 | 8 +- 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 | 71 +- 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 | 6 +- addons/hr/i18n/ja.po | 4 +- addons/hr/i18n/ko.po | 4 +- addons/hr/i18n/lo.po | 4 +- addons/hr/i18n/lt.po | 141 +- addons/hr/i18n/lv.po | 4 +- addons/hr/i18n/mk.po | 13 +- 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 | 85 +- addons/hr/i18n/pt_BR.po | 4 +- addons/hr/i18n/ro.po | 4 +- addons/hr/i18n/ru.po | 134 +- 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 | 238 ++- addons/hr/i18n/tlh.po | 4 +- addons/hr/i18n/tr.po | 58 +- addons/hr/i18n/uk.po | 4 +- addons/hr/i18n/vi.po | 8 +- 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 | 7 +- 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 | 6 +- 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 | 9 +- addons/hr_attendance/i18n/mn.po | 4 +- addons/hr_attendance/i18n/nb.po | 4 +- addons/hr_attendance/i18n/nl.po | 6 +- 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/th.po | 4 +- addons/hr_attendance/i18n/tlh.po | 4 +- addons/hr_attendance/i18n/tr.po | 40 +- addons/hr_attendance/i18n/uk.po | 4 +- addons/hr_attendance/i18n/vi.po | 4 +- addons/hr_attendance/i18n/zh_CN.po | 6 +- 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 | 6 +- 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 | 14 +- 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 | 74 +- addons/hr_contract/i18n/lv.po | 4 +- addons/hr_contract/i18n/mk.po | 16 +- 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/th.po | 56 +- addons/hr_contract/i18n/tlh.po | 4 +- addons/hr_contract/i18n/tr.po | 22 +- 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/cs.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 | 39 +- 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 | 173 +- addons/hr_evaluation/i18n/mn.po | 4 +- addons/hr_evaluation/i18n/nl.po | 8 +- 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 | 154 +- addons/hr_evaluation/i18n/zh_CN.po | 4 +- addons/hr_expense/i18n/ar.po | 24 +- addons/hr_expense/i18n/bg.po | 24 +- addons/hr_expense/i18n/bs.po | 24 +- addons/hr_expense/i18n/ca.po | 24 +- addons/hr_expense/i18n/cs.po | 24 +- addons/hr_expense/i18n/da.po | 24 +- addons/hr_expense/i18n/de.po | 24 +- addons/hr_expense/i18n/el.po | 24 +- addons/hr_expense/i18n/es.po | 24 +- addons/hr_expense/i18n/es_AR.po | 24 +- addons/hr_expense/i18n/es_CR.po | 24 +- addons/hr_expense/i18n/es_EC.po | 24 +- addons/hr_expense/i18n/et.po | 24 +- addons/hr_expense/i18n/fi.po | 111 +- addons/hr_expense/i18n/fr.po | 35 +- addons/hr_expense/i18n/hr.po | 24 +- addons/hr_expense/i18n/hu.po | 26 +- addons/hr_expense/i18n/id.po | 24 +- addons/hr_expense/i18n/it.po | 24 +- addons/hr_expense/i18n/ja.po | 24 +- addons/hr_expense/i18n/ko.po | 24 +- addons/hr_expense/i18n/lt.po | 256 +-- addons/hr_expense/i18n/lv.po | 24 +- addons/hr_expense/i18n/mk.po | 59 +- addons/hr_expense/i18n/mn.po | 28 +- addons/hr_expense/i18n/nb.po | 24 +- addons/hr_expense/i18n/nl.po | 28 +- addons/hr_expense/i18n/nl_BE.po | 24 +- addons/hr_expense/i18n/pl.po | 24 +- addons/hr_expense/i18n/pt.po | 30 +- addons/hr_expense/i18n/pt_BR.po | 81 +- addons/hr_expense/i18n/ro.po | 24 +- addons/hr_expense/i18n/ru.po | 24 +- addons/hr_expense/i18n/sl.po | 24 +- addons/hr_expense/i18n/sq.po | 24 +- addons/hr_expense/i18n/sr.po | 24 +- addons/hr_expense/i18n/sr@latin.po | 24 +- addons/hr_expense/i18n/sv.po | 24 +- addons/hr_expense/i18n/th.po | 4 +- addons/hr_expense/i18n/tlh.po | 24 +- addons/hr_expense/i18n/tr.po | 103 +- addons/hr_expense/i18n/uk.po | 24 +- addons/hr_expense/i18n/vi.po | 24 +- addons/hr_expense/i18n/zh_CN.po | 24 +- addons/hr_expense/i18n/zh_TW.po | 24 +- addons/hr_holidays/i18n/ar.po | 32 +- addons/hr_holidays/i18n/bg.po | 32 +- addons/hr_holidays/i18n/bs.po | 32 +- addons/hr_holidays/i18n/ca.po | 32 +- addons/hr_holidays/i18n/cs.po | 32 +- addons/hr_holidays/i18n/da.po | 32 +- addons/hr_holidays/i18n/de.po | 32 +- addons/hr_holidays/i18n/el.po | 32 +- addons/hr_holidays/i18n/es.po | 32 +- addons/hr_holidays/i18n/es_AR.po | 32 +- addons/hr_holidays/i18n/es_CR.po | 32 +- addons/hr_holidays/i18n/es_EC.po | 32 +- addons/hr_holidays/i18n/et.po | 32 +- addons/hr_holidays/i18n/fi.po | 32 +- addons/hr_holidays/i18n/fr.po | 172 +- addons/hr_holidays/i18n/gu.po | 32 +- addons/hr_holidays/i18n/hi.po | 32 +- addons/hr_holidays/i18n/hr.po | 255 +-- addons/hr_holidays/i18n/hu.po | 32 +- addons/hr_holidays/i18n/id.po | 32 +- addons/hr_holidays/i18n/it.po | 32 +- addons/hr_holidays/i18n/ja.po | 32 +- addons/hr_holidays/i18n/ko.po | 32 +- addons/hr_holidays/i18n/lt.po | 232 ++- addons/hr_holidays/i18n/lv.po | 32 +- addons/hr_holidays/i18n/mk.po | 61 +- addons/hr_holidays/i18n/mn.po | 34 +- addons/hr_holidays/i18n/nb.po | 32 +- addons/hr_holidays/i18n/nl.po | 32 +- addons/hr_holidays/i18n/nl_BE.po | 32 +- addons/hr_holidays/i18n/pl.po | 4 +- addons/hr_holidays/i18n/pt.po | 36 +- addons/hr_holidays/i18n/pt_BR.po | 32 +- addons/hr_holidays/i18n/ro.po | 32 +- addons/hr_holidays/i18n/ru.po | 32 +- addons/hr_holidays/i18n/sl.po | 32 +- addons/hr_holidays/i18n/sq.po | 32 +- addons/hr_holidays/i18n/sr.po | 32 +- addons/hr_holidays/i18n/sr@latin.po | 32 +- addons/hr_holidays/i18n/sv.po | 32 +- addons/hr_holidays/i18n/th.po | 100 +- addons/hr_holidays/i18n/tlh.po | 32 +- addons/hr_holidays/i18n/tr.po | 90 +- addons/hr_holidays/i18n/uk.po | 32 +- addons/hr_holidays/i18n/vi.po | 32 +- addons/hr_holidays/i18n/zh_CN.po | 80 +- addons/hr_holidays/i18n/zh_TW.po | 32 +- addons/hr_payroll/i18n/ar.po | 36 +- addons/hr_payroll/i18n/bg.po | 36 +- addons/hr_payroll/i18n/ca.po | 36 +- addons/hr_payroll/i18n/cs.po | 36 +- addons/hr_payroll/i18n/da.po | 36 +- addons/hr_payroll/i18n/de.po | 36 +- addons/hr_payroll/i18n/en_GB.po | 36 +- addons/hr_payroll/i18n/es.po | 36 +- addons/hr_payroll/i18n/es_CR.po | 36 +- addons/hr_payroll/i18n/es_EC.po | 36 +- addons/hr_payroll/i18n/es_MX.po | 36 +- addons/hr_payroll/i18n/et.po | 36 +- addons/hr_payroll/i18n/fi.po | 36 +- addons/hr_payroll/i18n/fr.po | 71 +- addons/hr_payroll/i18n/gl.po | 36 +- addons/hr_payroll/i18n/gu.po | 36 +- addons/hr_payroll/i18n/he.po | 36 +- addons/hr_payroll/i18n/hr.po | 36 +- addons/hr_payroll/i18n/hu.po | 36 +- addons/hr_payroll/i18n/id.po | 44 +- addons/hr_payroll/i18n/it.po | 36 +- addons/hr_payroll/i18n/ja.po | 36 +- addons/hr_payroll/i18n/lo.po | 36 +- addons/hr_payroll/i18n/lt.po | 353 ++-- addons/hr_payroll/i18n/lv.po | 36 +- addons/hr_payroll/i18n/mk.po | 36 +- addons/hr_payroll/i18n/mn.po | 38 +- addons/hr_payroll/i18n/nb.po | 36 +- addons/hr_payroll/i18n/nl.po | 36 +- addons/hr_payroll/i18n/pl.po | 36 +- addons/hr_payroll/i18n/pt.po | 38 +- addons/hr_payroll/i18n/pt_BR.po | 36 +- addons/hr_payroll/i18n/ro.po | 36 +- addons/hr_payroll/i18n/ru.po | 36 +- addons/hr_payroll/i18n/sl.po | 36 +- addons/hr_payroll/i18n/sr.po | 36 +- addons/hr_payroll/i18n/sr@latin.po | 36 +- addons/hr_payroll/i18n/sv.po | 36 +- addons/hr_payroll/i18n/tr.po | 150 +- addons/hr_payroll/i18n/vi.po | 36 +- addons/hr_payroll/i18n/zh_CN.po | 44 +- addons/hr_payroll_account/i18n/ar.po | 24 +- addons/hr_payroll_account/i18n/bg.po | 18 +- addons/hr_payroll_account/i18n/ca.po | 18 +- addons/hr_payroll_account/i18n/cs.po | 18 +- addons/hr_payroll_account/i18n/da.po | 18 +- addons/hr_payroll_account/i18n/de.po | 18 +- addons/hr_payroll_account/i18n/en_GB.po | 18 +- addons/hr_payroll_account/i18n/es.po | 18 +- addons/hr_payroll_account/i18n/es_CR.po | 18 +- addons/hr_payroll_account/i18n/es_EC.po | 18 +- addons/hr_payroll_account/i18n/es_PY.po | 18 +- addons/hr_payroll_account/i18n/fr.po | 18 +- addons/hr_payroll_account/i18n/gl.po | 18 +- addons/hr_payroll_account/i18n/gu.po | 18 +- addons/hr_payroll_account/i18n/hr.po | 18 +- addons/hr_payroll_account/i18n/hu.po | 18 +- addons/hr_payroll_account/i18n/id.po | 18 +- addons/hr_payroll_account/i18n/it.po | 18 +- addons/hr_payroll_account/i18n/ja.po | 18 +- addons/hr_payroll_account/i18n/lt.po | 44 +- addons/hr_payroll_account/i18n/lv.po | 18 +- addons/hr_payroll_account/i18n/mk.po | 24 +- addons/hr_payroll_account/i18n/mn.po | 20 +- addons/hr_payroll_account/i18n/nb.po | 18 +- addons/hr_payroll_account/i18n/nl.po | 18 +- addons/hr_payroll_account/i18n/pl.po | 18 +- addons/hr_payroll_account/i18n/pt.po | 18 +- addons/hr_payroll_account/i18n/pt_BR.po | 18 +- addons/hr_payroll_account/i18n/ro.po | 18 +- addons/hr_payroll_account/i18n/ru.po | 18 +- addons/hr_payroll_account/i18n/sl.po | 18 +- addons/hr_payroll_account/i18n/sr@latin.po | 18 +- addons/hr_payroll_account/i18n/sv.po | 18 +- addons/hr_payroll_account/i18n/tr.po | 55 +- addons/hr_payroll_account/i18n/zh_CN.po | 18 +- 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/cs.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 | 100 +- 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 | 6 +- addons/hr_recruitment/i18n/nb.po | 4 +- addons/hr_recruitment/i18n/nl.po | 10 +- 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/th.po | 94 +- addons/hr_recruitment/i18n/tr.po | 108 +- addons/hr_recruitment/i18n/vi.po | 4 +- addons/hr_recruitment/i18n/zh_CN.po | 4 +- addons/hr_timesheet/i18n/ar.po | 20 +- addons/hr_timesheet/i18n/bg.po | 20 +- addons/hr_timesheet/i18n/bs.po | 20 +- addons/hr_timesheet/i18n/ca.po | 20 +- addons/hr_timesheet/i18n/cs.po | 20 +- addons/hr_timesheet/i18n/da.po | 20 +- addons/hr_timesheet/i18n/de.po | 20 +- addons/hr_timesheet/i18n/el.po | 20 +- addons/hr_timesheet/i18n/en_GB.po | 20 +- addons/hr_timesheet/i18n/es.po | 20 +- addons/hr_timesheet/i18n/es_AR.po | 20 +- addons/hr_timesheet/i18n/es_CR.po | 20 +- addons/hr_timesheet/i18n/es_EC.po | 20 +- addons/hr_timesheet/i18n/et.po | 20 +- addons/hr_timesheet/i18n/fi.po | 20 +- addons/hr_timesheet/i18n/fr.po | 48 +- addons/hr_timesheet/i18n/gl.po | 20 +- addons/hr_timesheet/i18n/hr.po | 20 +- addons/hr_timesheet/i18n/hu.po | 20 +- addons/hr_timesheet/i18n/id.po | 20 +- addons/hr_timesheet/i18n/it.po | 22 +- addons/hr_timesheet/i18n/ja.po | 20 +- addons/hr_timesheet/i18n/ko.po | 20 +- addons/hr_timesheet/i18n/lt.po | 20 +- addons/hr_timesheet/i18n/lv.po | 20 +- addons/hr_timesheet/i18n/mk.po | 59 +- addons/hr_timesheet/i18n/mn.po | 20 +- addons/hr_timesheet/i18n/nb.po | 20 +- addons/hr_timesheet/i18n/nl.po | 22 +- addons/hr_timesheet/i18n/pl.po | 20 +- addons/hr_timesheet/i18n/pt.po | 20 +- addons/hr_timesheet/i18n/pt_BR.po | 20 +- addons/hr_timesheet/i18n/ro.po | 20 +- addons/hr_timesheet/i18n/ru.po | 42 +- addons/hr_timesheet/i18n/sl.po | 20 +- addons/hr_timesheet/i18n/sq.po | 20 +- addons/hr_timesheet/i18n/sr@latin.po | 20 +- addons/hr_timesheet/i18n/sv.po | 20 +- addons/hr_timesheet/i18n/th.po | 4 +- addons/hr_timesheet/i18n/tlh.po | 20 +- addons/hr_timesheet/i18n/tr.po | 78 +- addons/hr_timesheet/i18n/uk.po | 20 +- addons/hr_timesheet/i18n/vi.po | 20 +- addons/hr_timesheet/i18n/zh_CN.po | 20 +- addons/hr_timesheet/i18n/zh_TW.po | 20 +- addons/hr_timesheet_invoice/i18n/ar.po | 20 +- addons/hr_timesheet_invoice/i18n/bg.po | 20 +- addons/hr_timesheet_invoice/i18n/bs.po | 20 +- addons/hr_timesheet_invoice/i18n/ca.po | 20 +- addons/hr_timesheet_invoice/i18n/cs.po | 20 +- addons/hr_timesheet_invoice/i18n/da.po | 20 +- addons/hr_timesheet_invoice/i18n/de.po | 20 +- addons/hr_timesheet_invoice/i18n/el.po | 20 +- addons/hr_timesheet_invoice/i18n/es.po | 20 +- addons/hr_timesheet_invoice/i18n/es_AR.po | 20 +- addons/hr_timesheet_invoice/i18n/es_CR.po | 20 +- addons/hr_timesheet_invoice/i18n/es_EC.po | 20 +- addons/hr_timesheet_invoice/i18n/et.po | 20 +- addons/hr_timesheet_invoice/i18n/fi.po | 20 +- addons/hr_timesheet_invoice/i18n/fr.po | 64 +- addons/hr_timesheet_invoice/i18n/hr.po | 20 +- addons/hr_timesheet_invoice/i18n/hu.po | 20 +- addons/hr_timesheet_invoice/i18n/id.po | 20 +- addons/hr_timesheet_invoice/i18n/it.po | 20 +- addons/hr_timesheet_invoice/i18n/ja.po | 20 +- addons/hr_timesheet_invoice/i18n/ko.po | 20 +- addons/hr_timesheet_invoice/i18n/lt.po | 20 +- addons/hr_timesheet_invoice/i18n/lv.po | 20 +- addons/hr_timesheet_invoice/i18n/mk.po | 66 +- addons/hr_timesheet_invoice/i18n/mn.po | 26 +- addons/hr_timesheet_invoice/i18n/nl.po | 26 +- addons/hr_timesheet_invoice/i18n/nl_BE.po | 20 +- addons/hr_timesheet_invoice/i18n/pl.po | 20 +- addons/hr_timesheet_invoice/i18n/pt.po | 20 +- addons/hr_timesheet_invoice/i18n/pt_BR.po | 22 +- addons/hr_timesheet_invoice/i18n/ro.po | 20 +- addons/hr_timesheet_invoice/i18n/ru.po | 86 +- addons/hr_timesheet_invoice/i18n/sl.po | 20 +- addons/hr_timesheet_invoice/i18n/sq.po | 20 +- addons/hr_timesheet_invoice/i18n/sr@latin.po | 20 +- addons/hr_timesheet_invoice/i18n/sv.po | 20 +- addons/hr_timesheet_invoice/i18n/tlh.po | 20 +- addons/hr_timesheet_invoice/i18n/tr.po | 39 +- addons/hr_timesheet_invoice/i18n/uk.po | 20 +- addons/hr_timesheet_invoice/i18n/vi.po | 20 +- addons/hr_timesheet_invoice/i18n/zh_CN.po | 20 +- addons/hr_timesheet_invoice/i18n/zh_TW.po | 20 +- addons/hr_timesheet_sheet/i18n/ar.po | 24 +- addons/hr_timesheet_sheet/i18n/bg.po | 24 +- addons/hr_timesheet_sheet/i18n/bs.po | 24 +- addons/hr_timesheet_sheet/i18n/ca.po | 24 +- addons/hr_timesheet_sheet/i18n/cs.po | 24 +- addons/hr_timesheet_sheet/i18n/da.po | 24 +- addons/hr_timesheet_sheet/i18n/de.po | 24 +- addons/hr_timesheet_sheet/i18n/el.po | 24 +- addons/hr_timesheet_sheet/i18n/es.po | 24 +- addons/hr_timesheet_sheet/i18n/es_AR.po | 24 +- addons/hr_timesheet_sheet/i18n/es_CR.po | 24 +- addons/hr_timesheet_sheet/i18n/es_EC.po | 24 +- addons/hr_timesheet_sheet/i18n/et.po | 24 +- addons/hr_timesheet_sheet/i18n/fi.po | 24 +- addons/hr_timesheet_sheet/i18n/fr.po | 100 +- addons/hr_timesheet_sheet/i18n/hr.po | 24 +- addons/hr_timesheet_sheet/i18n/hu.po | 24 +- addons/hr_timesheet_sheet/i18n/id.po | 24 +- addons/hr_timesheet_sheet/i18n/it.po | 60 +- addons/hr_timesheet_sheet/i18n/ja.po | 24 +- addons/hr_timesheet_sheet/i18n/ko.po | 91 +- addons/hr_timesheet_sheet/i18n/lt.po | 24 +- addons/hr_timesheet_sheet/i18n/lv.po | 24 +- addons/hr_timesheet_sheet/i18n/mk.po | 189 +- addons/hr_timesheet_sheet/i18n/mn.po | 24 +- addons/hr_timesheet_sheet/i18n/nl.po | 26 +- addons/hr_timesheet_sheet/i18n/nl_BE.po | 24 +- addons/hr_timesheet_sheet/i18n/pl.po | 24 +- addons/hr_timesheet_sheet/i18n/pt.po | 26 +- addons/hr_timesheet_sheet/i18n/pt_BR.po | 24 +- addons/hr_timesheet_sheet/i18n/ro.po | 24 +- addons/hr_timesheet_sheet/i18n/ru.po | 71 +- addons/hr_timesheet_sheet/i18n/sk.po | 24 +- addons/hr_timesheet_sheet/i18n/sl.po | 24 +- addons/hr_timesheet_sheet/i18n/sq.po | 24 +- addons/hr_timesheet_sheet/i18n/sv.po | 24 +- addons/hr_timesheet_sheet/i18n/th.po | 4 +- addons/hr_timesheet_sheet/i18n/tlh.po | 24 +- addons/hr_timesheet_sheet/i18n/tr.po | 147 +- addons/hr_timesheet_sheet/i18n/uk.po | 24 +- addons/hr_timesheet_sheet/i18n/vi.po | 24 +- addons/hr_timesheet_sheet/i18n/zh_CN.po | 24 +- addons/hr_timesheet_sheet/i18n/zh_TW.po | 24 +- 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 | 8 +- 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 | 38 +- 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/th.po | 4 +- addons/knowledge/i18n/tr.po | 12 +- addons/knowledge/i18n/zh_CN.po | 4 +- addons/knowledge/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 | 22 +- 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 | 58 +- 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 | 1326 +++++++----- 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 | 18 +- 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_hr_payroll/i18n/zh_CN.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 | 17 +- 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/en_GB.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_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 | 50 +- 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 | 8 +- addons/l10n_fr_rib/i18n/sl.po | 4 +- addons/l10n_fr_rib/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 | 323 +-- 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_in_hr_payroll/i18n/zh_CN.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 | 8 +- addons/l10n_multilang/i18n/mn.po | 6 +- 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_multilang/i18n/zh_CN.po | 4 +- addons/lunch/i18n/ar.po | 6 +- addons/lunch/i18n/bg.po | 6 +- addons/lunch/i18n/ca.po | 6 +- addons/lunch/i18n/cs.po | 6 +- addons/lunch/i18n/da.po | 6 +- addons/lunch/i18n/de.po | 14 +- addons/lunch/i18n/es.po | 6 +- addons/lunch/i18n/es_CR.po | 6 +- addons/lunch/i18n/es_PY.po | 6 +- addons/lunch/i18n/fi.po | 6 +- addons/lunch/i18n/fr.po | 107 +- addons/lunch/i18n/gl.po | 6 +- addons/lunch/i18n/hr.po | 6 +- addons/lunch/i18n/hu.po | 6 +- addons/lunch/i18n/it.po | 6 +- addons/lunch/i18n/ja.po | 6 +- addons/lunch/i18n/ko.po | 10 +- addons/lunch/i18n/mk.po | 6 +- addons/lunch/i18n/mn.po | 6 +- addons/lunch/i18n/nl.po | 6 +- addons/lunch/i18n/pt.po | 10 +- addons/lunch/i18n/pt_BR.po | 6 +- addons/lunch/i18n/ro.po | 6 +- addons/lunch/i18n/ru.po | 10 +- addons/lunch/i18n/sl.po | 6 +- addons/lunch/i18n/sr@latin.po | 6 +- addons/lunch/i18n/sv.po | 6 +- addons/lunch/i18n/tr.po | 6 +- addons/lunch/i18n/zh_CN.po | 35 +- addons/lunch/i18n/zh_TW.po | 6 +- addons/mail/i18n/ar.po | 68 +- addons/mail/i18n/bg.po | 68 +- addons/mail/i18n/bs.po | 4 +- addons/mail/i18n/ca.po | 68 +- addons/mail/i18n/cs.po | 626 +++--- addons/mail/i18n/da.po | 68 +- addons/mail/i18n/de.po | 76 +- addons/mail/i18n/es.po | 70 +- addons/mail/i18n/es_CR.po | 68 +- addons/mail/i18n/es_MX.po | 74 +- addons/mail/i18n/es_PY.po | 68 +- addons/mail/i18n/et.po | 68 +- addons/mail/i18n/fi.po | 68 +- addons/mail/i18n/fr.po | 148 +- addons/mail/i18n/gl.po | 68 +- addons/mail/i18n/hr.po | 426 ++-- addons/mail/i18n/hu.po | 68 +- addons/mail/i18n/it.po | 86 +- addons/mail/i18n/ja.po | 80 +- addons/mail/i18n/ko.po | 68 +- addons/mail/i18n/lt.po | 342 +-- addons/mail/i18n/lv.po | 68 +- addons/mail/i18n/mk.po | 145 +- addons/mail/i18n/mn.po | 68 +- addons/mail/i18n/nl.po | 77 +- addons/mail/i18n/pl.po | 68 +- addons/mail/i18n/pt.po | 84 +- addons/mail/i18n/pt_BR.po | 70 +- addons/mail/i18n/ro.po | 387 ++-- addons/mail/i18n/ru.po | 111 +- addons/mail/i18n/sl.po | 68 +- addons/mail/i18n/sr@latin.po | 68 +- addons/mail/i18n/sv.po | 68 +- addons/mail/i18n/th.po | 4 +- addons/mail/i18n/tr.po | 161 +- addons/mail/i18n/vi.po | 4 +- addons/mail/i18n/zh_CN.po | 68 +- addons/mail/i18n/zh_TW.po | 68 +- addons/marketing/i18n/ar.po | 4 +- addons/marketing/i18n/bg.po | 4 +- addons/marketing/i18n/ca.po | 4 +- addons/marketing/i18n/cs.po | 36 +- 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 | 24 +- 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 | 20 +- addons/marketing/i18n/tr.po | 4 +- addons/marketing/i18n/zh_CN.po | 32 +- 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 | 40 +- 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 | 15 +- addons/marketing_campaign/i18n/mn.po | 8 +- addons/marketing_campaign/i18n/nl.po | 44 +- 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 | 8 +- 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 | 55 +- 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 | 12 +- 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 | 212 +- 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 | 10 +- addons/mrp/i18n/bg.po | 10 +- addons/mrp/i18n/bs.po | 10 +- addons/mrp/i18n/ca.po | 10 +- addons/mrp/i18n/cs.po | 14 +- addons/mrp/i18n/da.po | 10 +- addons/mrp/i18n/de.po | 10 +- addons/mrp/i18n/el.po | 10 +- addons/mrp/i18n/es.po | 18 +- addons/mrp/i18n/es_AR.po | 10 +- addons/mrp/i18n/es_CL.po | 10 +- addons/mrp/i18n/es_CR.po | 10 +- addons/mrp/i18n/es_EC.po | 10 +- addons/mrp/i18n/es_MX.po | 10 +- addons/mrp/i18n/et.po | 10 +- addons/mrp/i18n/fi.po | 10 +- addons/mrp/i18n/fr.po | 66 +- addons/mrp/i18n/gl.po | 10 +- addons/mrp/i18n/hi.po | 10 +- addons/mrp/i18n/hr.po | 10 +- addons/mrp/i18n/hu.po | 10 +- addons/mrp/i18n/id.po | 10 +- addons/mrp/i18n/it.po | 12 +- addons/mrp/i18n/ja.po | 10 +- addons/mrp/i18n/ko.po | 10 +- addons/mrp/i18n/lt.po | 565 +++-- addons/mrp/i18n/lv.po | 10 +- addons/mrp/i18n/mk.po | 12 +- addons/mrp/i18n/mn.po | 28 +- addons/mrp/i18n/nb.po | 10 +- addons/mrp/i18n/nl.po | 43 +- addons/mrp/i18n/nl_BE.po | 10 +- addons/mrp/i18n/pl.po | 10 +- addons/mrp/i18n/pt.po | 12 +- addons/mrp/i18n/pt_BR.po | 10 +- addons/mrp/i18n/ro.po | 22 +- addons/mrp/i18n/ru.po | 10 +- addons/mrp/i18n/sk.po | 10 +- addons/mrp/i18n/sl.po | 10 +- addons/mrp/i18n/sq.po | 10 +- addons/mrp/i18n/sr@latin.po | 10 +- addons/mrp/i18n/sv.po | 10 +- addons/mrp/i18n/tlh.po | 10 +- addons/mrp/i18n/tr.po | 18 +- addons/mrp/i18n/uk.po | 10 +- addons/mrp/i18n/vi.po | 10 +- addons/mrp/i18n/zh_CN.po | 4 +- addons/mrp/i18n/zh_HK.po | 10 +- addons/mrp/i18n/zh_TW.po | 10 +- 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 | 12 +- 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 | 24 +- addons/mrp_byproduct/i18n/lv.po | 4 +- addons/mrp_byproduct/i18n/mk.po | 4 +- addons/mrp_byproduct/i18n/mn.po | 8 +- 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/en_GB.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 | 6 +- addons/mrp_jit/i18n/ko.po | 4 +- addons/mrp_jit/i18n/lt.po | 6 +- 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 | 6 +- 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 | 6 +- 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 | 111 +- addons/mrp_operations/i18n/mk.po | 116 +- addons/mrp_operations/i18n/mn.po | 6 +- addons/mrp_operations/i18n/nl.po | 6 +- 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 | 6 +- 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 | 96 +- 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 | 38 +- 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 | 27 +- addons/mrp_repair/i18n/mn.po | 4 +- addons/mrp_repair/i18n/nl.po | 6 +- 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 | 8 +- 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 | 10 +- 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 | 13 +- addons/multi_company/i18n/tr.po | 8 +- addons/multi_company/i18n/uk.po | 4 +- addons/multi_company/i18n/vi.po | 8 +- addons/multi_company/i18n/zh_CN.po | 4 +- addons/multi_company/i18n/zh_TW.po | 4 +- addons/note/i18n/bs.po | 4 +- addons/note/i18n/cs.po | 4 +- addons/note/i18n/de.po | 4 +- addons/note/i18n/es.po | 4 +- addons/note/i18n/fr.po | 43 +- addons/note/i18n/hr.po | 4 +- addons/note/i18n/hu.po | 4 +- addons/note/i18n/id.po | 4 +- addons/note/i18n/it.po | 6 +- addons/note/i18n/lt.po | 10 +- 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 | 6 +- addons/note/i18n/ru.po | 4 +- addons/note/i18n/sl.po | 4 +- addons/note/i18n/sv.po | 4 +- addons/note/i18n/tr.po | 30 +- addons/note/i18n/zh_CN.po | 4 +- addons/note_pad/i18n/cs.po | 4 +- addons/note_pad/i18n/de.po | 4 +- addons/note_pad/i18n/en_GB.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/lt.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/vi.po | 4 +- addons/note_pad/i18n/zh_CN.po | 4 +- addons/pad/i18n/ar.po | 8 +- addons/pad/i18n/bg.po | 8 +- addons/pad/i18n/ca.po | 8 +- addons/pad/i18n/cs.po | 26 +- addons/pad/i18n/da.po | 8 +- addons/pad/i18n/de.po | 14 +- addons/pad/i18n/es.po | 8 +- addons/pad/i18n/es_CR.po | 8 +- addons/pad/i18n/fi.po | 8 +- addons/pad/i18n/fr.po | 20 +- addons/pad/i18n/gl.po | 8 +- addons/pad/i18n/hr.po | 8 +- addons/pad/i18n/hu.po | 8 +- addons/pad/i18n/it.po | 8 +- addons/pad/i18n/ja.po | 8 +- addons/pad/i18n/mk.po | 8 +- addons/pad/i18n/mn.po | 8 +- addons/pad/i18n/nb.po | 8 +- addons/pad/i18n/nl.po | 10 +- addons/pad/i18n/pl.po | 8 +- addons/pad/i18n/pt.po | 8 +- addons/pad/i18n/pt_BR.po | 8 +- addons/pad/i18n/ro.po | 8 +- addons/pad/i18n/ru.po | 8 +- addons/pad/i18n/sl.po | 24 +- addons/pad/i18n/sr@latin.po | 8 +- addons/pad/i18n/sv.po | 8 +- addons/pad/i18n/tr.po | 16 +- addons/pad/i18n/zh_CN.po | 8 +- 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 | 6 +- 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/lt.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/lt.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/cs.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 | 25 +- addons/plugin_thunderbird/i18n/zh_CN.po | 4 +- addons/point_of_sale/i18n/ar.po | 82 +- addons/point_of_sale/i18n/bg.po | 81 +- addons/point_of_sale/i18n/bs.po | 80 +- addons/point_of_sale/i18n/ca.po | 81 +- addons/point_of_sale/i18n/cs.po | 104 +- addons/point_of_sale/i18n/da.po | 80 +- addons/point_of_sale/i18n/de.po | 136 +- addons/point_of_sale/i18n/el.po | 81 +- addons/point_of_sale/i18n/es.po | 84 +- addons/point_of_sale/i18n/es_AR.po | 81 +- addons/point_of_sale/i18n/es_CR.po | 84 +- addons/point_of_sale/i18n/es_EC.po | 81 +- addons/point_of_sale/i18n/et.po | 81 +- addons/point_of_sale/i18n/fi.po | 81 +- addons/point_of_sale/i18n/fr.po | 110 +- addons/point_of_sale/i18n/he.po | 4 +- addons/point_of_sale/i18n/hi.po | 80 +- addons/point_of_sale/i18n/hr.po | 83 +- addons/point_of_sale/i18n/hu.po | 81 +- addons/point_of_sale/i18n/id.po | 80 +- addons/point_of_sale/i18n/it.po | 81 +- addons/point_of_sale/i18n/ja.po | 84 +- addons/point_of_sale/i18n/ko.po | 81 +- addons/point_of_sale/i18n/lt.po | 80 +- addons/point_of_sale/i18n/lv.po | 80 +- addons/point_of_sale/i18n/mk.po | 219 +- addons/point_of_sale/i18n/mn.po | 146 +- addons/point_of_sale/i18n/nb.po | 80 +- addons/point_of_sale/i18n/nl.po | 84 +- addons/point_of_sale/i18n/nl_BE.po | 84 +- addons/point_of_sale/i18n/pl.po | 81 +- addons/point_of_sale/i18n/pt.po | 276 ++- addons/point_of_sale/i18n/pt_BR.po | 301 ++- addons/point_of_sale/i18n/ro.po | 84 +- addons/point_of_sale/i18n/ru.po | 81 +- addons/point_of_sale/i18n/sl.po | 81 +- addons/point_of_sale/i18n/sq.po | 80 +- addons/point_of_sale/i18n/sr.po | 81 +- addons/point_of_sale/i18n/sr@latin.po | 81 +- addons/point_of_sale/i18n/sv.po | 84 +- addons/point_of_sale/i18n/tlh.po | 80 +- addons/point_of_sale/i18n/tr.po | 550 +++-- addons/point_of_sale/i18n/uk.po | 80 +- addons/point_of_sale/i18n/vi.po | 131 +- addons/point_of_sale/i18n/zh_CN.po | 4 +- addons/point_of_sale/i18n/zh_HK.po | 80 +- addons/point_of_sale/i18n/zh_TW.po | 80 +- 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 | 33 +- 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 | 22 +- 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/ko.po | 4 +- addons/portal/i18n/lo.po | 4 +- addons/portal/i18n/lt.po | 46 +- addons/portal/i18n/mk.po | 50 +- addons/portal/i18n/mn.po | 4 +- addons/portal/i18n/nl.po | 40 +- addons/portal/i18n/pl.po | 4 +- addons/portal/i18n/pt.po | 38 +- addons/portal/i18n/pt_BR.po | 4 +- addons/portal/i18n/ro.po | 4 +- addons/portal/i18n/ru.po | 55 +- addons/portal/i18n/sl.po | 4 +- addons/portal/i18n/sr.po | 4 +- addons/portal/i18n/sv.po | 4 +- addons/portal/i18n/th.po | 4 +- addons/portal/i18n/tr.po | 34 +- 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/de.po | 25 + addons/portal_anonymous/i18n/en_AU.po | 4 +- addons/portal_anonymous/i18n/en_GB.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/lt.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/ru.po | 4 +- addons/portal_anonymous/i18n/sl.po | 4 +- addons/portal_anonymous/i18n/sv.po | 4 +- addons/portal_anonymous/i18n/th.po | 4 +- addons/portal_anonymous/i18n/tr.po | 4 +- addons/portal_anonymous/i18n/zh_CN.po | 4 +- addons/portal_claim/i18n/cs.po | 4 +- addons/portal_claim/i18n/de.po | 4 +- addons/portal_claim/i18n/en_GB.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 | 18 +- 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/bs.po | 4 +- addons/portal_crm/i18n/cs.po | 84 +- addons/portal_crm/i18n/de.po | 58 +- addons/portal_crm/i18n/es.po | 4 +- addons/portal_crm/i18n/fr.po | 193 +- addons/portal_crm/i18n/hr.po | 4 +- addons/portal_crm/i18n/hu.po | 4 +- addons/portal_crm/i18n/lt.po | 175 +- addons/portal_crm/i18n/mk.po | 30 +- addons/portal_crm/i18n/nl.po | 4 +- addons/portal_crm/i18n/pl.po | 4 +- addons/portal_crm/i18n/pt.po | 16 +- 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/th.po | 4 +- addons/portal_crm/i18n/tr.po | 209 +- 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/fr.po | 20 +- addons/portal_event/i18n/hr.po | 4 +- addons/portal_event/i18n/hu.po | 4 +- addons/portal_event/i18n/mk.po | 6 +- 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/cs.po | 4 +- addons/portal_hr_employees/i18n/de.po | 4 +- addons/portal_hr_employees/i18n/es.po | 4 +- addons/portal_hr_employees/i18n/fr.po | 34 +- addons/portal_hr_employees/i18n/hr.po | 4 +- addons/portal_hr_employees/i18n/hu.po | 4 +- addons/portal_hr_employees/i18n/lt.po | 28 +- addons/portal_hr_employees/i18n/mk.po | 6 +- 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/th.po | 4 +- addons/portal_hr_employees/i18n/tr.po | 34 +- addons/portal_hr_employees/i18n/zh_CN.po | 12 +- 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/en_GB.po | 4 +- addons/portal_project_issue/i18n/es.po | 4 +- addons/portal_project_issue/i18n/fr.po | 16 +- 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 | 12 +- 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 | 13 +- 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 | 247 ++- addons/portal_sale/i18n/hr.po | 4 +- addons/portal_sale/i18n/hu.po | 4 +- addons/portal_sale/i18n/lt.po | 14 +- addons/portal_sale/i18n/mk.po | 16 +- addons/portal_sale/i18n/mn.po | 4 +- addons/portal_sale/i18n/nl.po | 13 +- addons/portal_sale/i18n/pl.po | 4 +- addons/portal_sale/i18n/pt.po | 6 +- addons/portal_sale/i18n/pt_BR.po | 4 +- addons/portal_sale/i18n/ro.po | 4 +- addons/portal_sale/i18n/sl.po | 12 +- addons/portal_sale/i18n/sv.po | 4 +- addons/portal_sale/i18n/tr.po | 249 ++- 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 | 24 +- 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 | 6 +- addons/process/i18n/ja.po | 4 +- addons/process/i18n/ko.po | 4 +- addons/process/i18n/lt.po | 14 +- 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 | 72 +- addons/procurement/i18n/es.po | 18 +- 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 | 38 +- 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/lt.po | 285 ++- addons/procurement/i18n/mk.po | 61 +- addons/procurement/i18n/mn.po | 4 +- addons/procurement/i18n/nb.po | 4 +- addons/procurement/i18n/nl.po | 13 +- addons/procurement/i18n/pl.po | 4 +- addons/procurement/i18n/pt.po | 6 +- addons/procurement/i18n/pt_BR.po | 4 +- addons/procurement/i18n/ro.po | 16 +- addons/procurement/i18n/ru.po | 8 +- 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 | 223 +- addons/procurement/i18n/vi.po | 4 +- addons/procurement/i18n/zh_CN.po | 4 +- addons/product/i18n/ar.po | 8 +- addons/product/i18n/bg.po | 8 +- addons/product/i18n/bs.po | 8 +- addons/product/i18n/ca.po | 8 +- addons/product/i18n/cs.po | 10 +- addons/product/i18n/da.po | 8 +- addons/product/i18n/de.po | 16 +- addons/product/i18n/el.po | 8 +- addons/product/i18n/es.po | 10 +- addons/product/i18n/es_AR.po | 8 +- addons/product/i18n/es_CL.po | 8 +- addons/product/i18n/es_CR.po | 8 +- addons/product/i18n/es_EC.po | 8 +- addons/product/i18n/es_PY.po | 8 +- addons/product/i18n/et.po | 8 +- addons/product/i18n/eu.po | 8 +- addons/product/i18n/fi.po | 8 +- addons/product/i18n/fr.po | 32 +- addons/product/i18n/gl.po | 8 +- addons/product/i18n/hr.po | 8 +- addons/product/i18n/hu.po | 18 +- addons/product/i18n/id.po | 8 +- addons/product/i18n/it.po | 10 +- addons/product/i18n/ja.po | 8 +- addons/product/i18n/ko.po | 8 +- addons/product/i18n/lo.po | 8 +- addons/product/i18n/lt.po | 455 +++- addons/product/i18n/lv.po | 8 +- addons/product/i18n/mk.po | 70 +- addons/product/i18n/mn.po | 12 +- addons/product/i18n/nb.po | 8 +- addons/product/i18n/nl.po | 18 +- addons/product/i18n/nl_BE.po | 8 +- addons/product/i18n/pl.po | 18 +- addons/product/i18n/pt.po | 16 +- addons/product/i18n/pt_BR.po | 8 +- addons/product/i18n/ro.po | 10 +- addons/product/i18n/ru.po | 8 +- addons/product/i18n/sk.po | 8 +- addons/product/i18n/sl.po | 8 +- addons/product/i18n/sq.po | 8 +- addons/product/i18n/sr.po | 8 +- addons/product/i18n/sr@latin.po | 8 +- addons/product/i18n/sv.po | 8 +- addons/product/i18n/th.po | 8 +- addons/product/i18n/tlh.po | 8 +- addons/product/i18n/tr.po | 550 +++-- addons/product/i18n/uk.po | 8 +- addons/product/i18n/vi.po | 8 +- addons/product/i18n/zh_CN.po | 16 +- addons/product/i18n/zh_TW.po | 8 +- 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 | 22 +- 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 | 8 +- addons/product_expiry/i18n/mn.po | 12 +- 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 | 22 +- 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 | 6 +- 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 | 14 +- 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 | 18 +- 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 | 6 +- 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 | 12 +- 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 | 28 +- 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 | 28 +- addons/project/i18n/bg.po | 28 +- addons/project/i18n/bs.po | 28 +- addons/project/i18n/ca.po | 28 +- addons/project/i18n/cs.po | 28 +- addons/project/i18n/da.po | 28 +- addons/project/i18n/de.po | 28 +- addons/project/i18n/el.po | 28 +- addons/project/i18n/es.po | 28 +- addons/project/i18n/es_AR.po | 28 +- addons/project/i18n/es_CO.po | 473 +++-- addons/project/i18n/es_CR.po | 28 +- addons/project/i18n/es_EC.po | 28 +- addons/project/i18n/es_MX.po | 28 +- addons/project/i18n/es_PY.po | 28 +- addons/project/i18n/et.po | 28 +- addons/project/i18n/eu.po | 28 +- addons/project/i18n/fi.po | 28 +- addons/project/i18n/fr.po | 170 +- addons/project/i18n/gl.po | 28 +- addons/project/i18n/gu.po | 28 +- addons/project/i18n/hr.po | 28 +- addons/project/i18n/hu.po | 30 +- addons/project/i18n/id.po | 28 +- addons/project/i18n/it.po | 71 +- addons/project/i18n/ja.po | 28 +- addons/project/i18n/ko.po | 28 +- addons/project/i18n/lt.po | 70 +- addons/project/i18n/lv.po | 28 +- addons/project/i18n/mk.po | 47 +- addons/project/i18n/mn.po | 32 +- addons/project/i18n/nb.po | 28 +- addons/project/i18n/nl.po | 34 +- addons/project/i18n/nl_BE.po | 28 +- addons/project/i18n/pl.po | 32 +- addons/project/i18n/pt.po | 30 +- addons/project/i18n/pt_BR.po | 28 +- addons/project/i18n/ro.po | 64 +- addons/project/i18n/ru.po | 28 +- addons/project/i18n/sk.po | 28 +- addons/project/i18n/sl.po | 310 +-- addons/project/i18n/sq.po | 28 +- addons/project/i18n/sv.po | 28 +- addons/project/i18n/th.po | 238 +-- addons/project/i18n/tlh.po | 28 +- addons/project/i18n/tr.po | 141 +- addons/project/i18n/uk.po | 28 +- addons/project/i18n/vi.po | 28 +- addons/project/i18n/zh_CN.po | 4 +- addons/project/i18n/zh_TW.po | 28 +- 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 | 82 +- addons/project_gtd/i18n/lv.po | 4 +- addons/project_gtd/i18n/mk.po | 18 +- 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 | 16 +- addons/project_issue/i18n/bs.po | 4 +- addons/project_issue/i18n/ca.po | 16 +- addons/project_issue/i18n/cs.po | 16 +- addons/project_issue/i18n/da.po | 16 +- addons/project_issue/i18n/de.po | 16 +- addons/project_issue/i18n/es.po | 16 +- addons/project_issue/i18n/es_CR.po | 16 +- addons/project_issue/i18n/fi.po | 16 +- addons/project_issue/i18n/fr.po | 139 +- addons/project_issue/i18n/hr.po | 16 +- addons/project_issue/i18n/hu.po | 16 +- addons/project_issue/i18n/it.po | 144 +- addons/project_issue/i18n/ja.po | 16 +- addons/project_issue/i18n/lt.po | 16 +- addons/project_issue/i18n/lv.po | 16 +- addons/project_issue/i18n/mk.po | 87 +- addons/project_issue/i18n/mn.po | 20 +- addons/project_issue/i18n/nb.po | 16 +- addons/project_issue/i18n/nl.po | 22 +- addons/project_issue/i18n/nl_BE.po | 16 +- addons/project_issue/i18n/pl.po | 16 +- addons/project_issue/i18n/pt.po | 16 +- addons/project_issue/i18n/pt_BR.po | 16 +- addons/project_issue/i18n/ro.po | 16 +- addons/project_issue/i18n/ru.po | 16 +- addons/project_issue/i18n/sk.po | 16 +- addons/project_issue/i18n/sl.po | 16 +- addons/project_issue/i18n/sv.po | 16 +- addons/project_issue/i18n/tr.po | 105 +- addons/project_issue/i18n/zh_CN.po | 20 +- addons/project_issue/i18n/zh_TW.po | 16 +- addons/project_issue_sheet/i18n/ar.po | 4 +- addons/project_issue_sheet/i18n/ca.po | 4 +- addons/project_issue_sheet/i18n/cs.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 | 6 +- addons/project_issue_sheet/i18n/ja.po | 4 +- addons/project_issue_sheet/i18n/lv.po | 4 +- addons/project_issue_sheet/i18n/mk.po | 16 +- addons/project_issue_sheet/i18n/mn.po | 4 +- addons/project_issue_sheet/i18n/nl.po | 6 +- 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/cs.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 | 30 +- 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 | 19 +- 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 | 28 +- 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 | 31 +- 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 | 10 +- 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 | 31 +- 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 | 6 +- addons/project_mrp/i18n/uk.po | 4 +- addons/project_mrp/i18n/vi.po | 4 +- addons/project_mrp/i18n/zh_CN.po | 16 +- 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 | 43 +- 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 | 36 +- addons/project_timesheet/i18n/mn.po | 16 +- 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 | 54 +- 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 | 60 +- addons/purchase/i18n/bg.po | 60 +- addons/purchase/i18n/bs.po | 754 ++++--- addons/purchase/i18n/ca.po | 60 +- addons/purchase/i18n/cs.po | 237 ++- addons/purchase/i18n/da.po | 60 +- addons/purchase/i18n/de.po | 209 +- addons/purchase/i18n/el.po | 60 +- addons/purchase/i18n/en_GB.po | 60 +- addons/purchase/i18n/es.po | 60 +- addons/purchase/i18n/es_AR.po | 60 +- addons/purchase/i18n/es_CL.po | 60 +- addons/purchase/i18n/es_CO.po | 60 +- addons/purchase/i18n/es_CR.po | 60 +- addons/purchase/i18n/es_EC.po | 60 +- addons/purchase/i18n/es_MX.po | 60 +- addons/purchase/i18n/et.po | 60 +- addons/purchase/i18n/fi.po | 116 +- addons/purchase/i18n/fr.po | 408 +++- addons/purchase/i18n/gl.po | 60 +- addons/purchase/i18n/hr.po | 60 +- addons/purchase/i18n/hu.po | 62 +- addons/purchase/i18n/id.po | 76 +- addons/purchase/i18n/it.po | 63 +- addons/purchase/i18n/ja.po | 60 +- addons/purchase/i18n/ko.po | 60 +- addons/purchase/i18n/lt.po | 521 +++-- addons/purchase/i18n/lv.po | 60 +- addons/purchase/i18n/mk.po | 127 +- addons/purchase/i18n/mn.po | 78 +- addons/purchase/i18n/nb.po | 60 +- addons/purchase/i18n/nl.po | 78 +- addons/purchase/i18n/nl_BE.po | 60 +- addons/purchase/i18n/pl.po | 60 +- addons/purchase/i18n/pt.po | 66 +- addons/purchase/i18n/pt_BR.po | 60 +- addons/purchase/i18n/ro.po | 118 +- addons/purchase/i18n/ru.po | 62 +- addons/purchase/i18n/sk.po | 60 +- addons/purchase/i18n/sl.po | 60 +- addons/purchase/i18n/sq.po | 60 +- addons/purchase/i18n/sr.po | 60 +- addons/purchase/i18n/sr@latin.po | 60 +- addons/purchase/i18n/sv.po | 60 +- addons/purchase/i18n/th.po | 90 +- addons/purchase/i18n/tlh.po | 60 +- addons/purchase/i18n/tr.po | 175 +- addons/purchase/i18n/uk.po | 60 +- addons/purchase/i18n/vi.po | 60 +- addons/purchase/i18n/zh_CN.po | 62 +- addons/purchase/i18n/zh_TW.po | 60 +- 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/en_GB.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 | 6 +- 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 | 6 +- 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/cs.po | 4 +- addons/purchase_double_validation/i18n/da.po | 4 +- addons/purchase_double_validation/i18n/de.po | 6 +- 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/lt.po | 8 +- 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/cs.po | 4 +- addons/purchase_requisition/i18n/da.po | 4 +- addons/purchase_requisition/i18n/de.po | 6 +- 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 | 74 +- 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 | 6 +- addons/purchase_requisition/i18n/mn.po | 4 +- addons/purchase_requisition/i18n/nb.po | 4 +- addons/purchase_requisition/i18n/nl.po | 6 +- 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 | 10 +- addons/purchase_requisition/i18n/ru.po | 14 +- addons/purchase_requisition/i18n/sl.po | 4 +- addons/purchase_requisition/i18n/sv.po | 4 +- addons/purchase_requisition/i18n/tr.po | 20 +- 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 | 6 +- addons/report_intrastat/i18n/mn.po | 10 +- 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 | 18 +- 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 | 6 +- addons/report_intrastat/i18n/uk.po | 4 +- addons/report_intrastat/i18n/vi.po | 4 +- addons/report_intrastat/i18n/zh_CN.po | 18 +- addons/report_intrastat/i18n/zh_TW.po | 4 +- addons/report_webkit/i18n/ar.po | 22 +- addons/report_webkit/i18n/bg.po | 22 +- addons/report_webkit/i18n/ca.po | 22 +- addons/report_webkit/i18n/cs.po | 22 +- addons/report_webkit/i18n/da.po | 22 +- addons/report_webkit/i18n/de.po | 24 +- addons/report_webkit/i18n/es.po | 22 +- addons/report_webkit/i18n/es_CR.po | 22 +- addons/report_webkit/i18n/fi.po | 22 +- addons/report_webkit/i18n/fr.po | 50 +- addons/report_webkit/i18n/hr.po | 22 +- addons/report_webkit/i18n/hu.po | 22 +- addons/report_webkit/i18n/it.po | 22 +- addons/report_webkit/i18n/ja.po | 22 +- addons/report_webkit/i18n/mk.po | 28 +- addons/report_webkit/i18n/mn.po | 22 +- addons/report_webkit/i18n/nl.po | 22 +- addons/report_webkit/i18n/pl.po | 22 +- addons/report_webkit/i18n/pt.po | 22 +- addons/report_webkit/i18n/pt_BR.po | 22 +- addons/report_webkit/i18n/ro.po | 22 +- addons/report_webkit/i18n/ru.po | 22 +- addons/report_webkit/i18n/sl.po | 22 +- addons/report_webkit/i18n/sv.po | 22 +- addons/report_webkit/i18n/tr.po | 186 +- addons/report_webkit/i18n/zh_CN.po | 40 +- addons/resource/i18n/ar.po | 10 +- addons/resource/i18n/bg.po | 10 +- addons/resource/i18n/ca.po | 10 +- addons/resource/i18n/cs.po | 10 +- addons/resource/i18n/da.po | 10 +- addons/resource/i18n/de.po | 10 +- addons/resource/i18n/es.po | 10 +- addons/resource/i18n/es_CR.po | 10 +- addons/resource/i18n/es_EC.po | 10 +- addons/resource/i18n/et.po | 10 +- addons/resource/i18n/fi.po | 10 +- addons/resource/i18n/fr.po | 25 +- addons/resource/i18n/gl.po | 10 +- addons/resource/i18n/hr.po | 10 +- addons/resource/i18n/hu.po | 10 +- addons/resource/i18n/it.po | 10 +- addons/resource/i18n/ja.po | 10 +- addons/resource/i18n/lt.po | 46 +- addons/resource/i18n/mk.po | 10 +- addons/resource/i18n/mn.po | 10 +- addons/resource/i18n/nl.po | 10 +- addons/resource/i18n/pl.po | 10 +- addons/resource/i18n/pt.po | 10 +- addons/resource/i18n/pt_BR.po | 10 +- addons/resource/i18n/ro.po | 10 +- addons/resource/i18n/ru.po | 10 +- addons/resource/i18n/sl.po | 10 +- addons/resource/i18n/sv.po | 10 +- addons/resource/i18n/tr.po | 10 +- addons/resource/i18n/vi.po | 10 +- addons/resource/i18n/zh_CN.po | 10 +- addons/sale/i18n/ar.po | 44 +- addons/sale/i18n/bg.po | 44 +- addons/sale/i18n/bs.po | 44 +- addons/sale/i18n/ca.po | 44 +- addons/sale/i18n/cs.po | 688 +++++-- addons/sale/i18n/da.po | 44 +- addons/sale/i18n/de.po | 44 +- addons/sale/i18n/el.po | 44 +- addons/sale/i18n/es.po | 52 +- addons/sale/i18n/es_AR.po | 44 +- addons/sale/i18n/es_CL.po | 44 +- addons/sale/i18n/es_CR.po | 44 +- addons/sale/i18n/es_EC.po | 44 +- addons/sale/i18n/es_MX.po | 128 +- addons/sale/i18n/et.po | 44 +- addons/sale/i18n/eu.po | 44 +- addons/sale/i18n/fi.po | 44 +- addons/sale/i18n/fr.po | 325 ++- addons/sale/i18n/gl.po | 44 +- addons/sale/i18n/hr.po | 138 +- addons/sale/i18n/hu.po | 4 +- addons/sale/i18n/id.po | 44 +- addons/sale/i18n/is.po | 44 +- addons/sale/i18n/it.po | 277 ++- addons/sale/i18n/ja.po | 108 +- addons/sale/i18n/ko.po | 46 +- addons/sale/i18n/lo.po | 44 +- addons/sale/i18n/lt.po | 423 ++-- addons/sale/i18n/lv.po | 44 +- addons/sale/i18n/mk.po | 85 +- addons/sale/i18n/mn.po | 50 +- addons/sale/i18n/nb.po | 44 +- addons/sale/i18n/nl.po | 66 +- addons/sale/i18n/nl_BE.po | 44 +- addons/sale/i18n/oc.po | 44 +- addons/sale/i18n/pl.po | 46 +- addons/sale/i18n/pt.po | 48 +- addons/sale/i18n/pt_BR.po | 44 +- addons/sale/i18n/ro.po | 293 +-- addons/sale/i18n/ru.po | 109 +- addons/sale/i18n/sk.po | 44 +- addons/sale/i18n/sl.po | 58 +- addons/sale/i18n/sq.po | 44 +- addons/sale/i18n/sr.po | 44 +- addons/sale/i18n/sr@latin.po | 44 +- addons/sale/i18n/sv.po | 44 +- addons/sale/i18n/th.po | 110 +- addons/sale/i18n/tlh.po | 44 +- addons/sale/i18n/tr.po | 68 +- addons/sale/i18n/uk.po | 44 +- addons/sale/i18n/vi.po | 92 +- addons/sale/i18n/zh_CN.po | 101 +- addons/sale/i18n/zh_TW.po | 44 +- 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 | 6 +- 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/en_GB.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 | 6 +- 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 | 6 +- 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 | 16 +- addons/sale_crm/i18n/bg.po | 16 +- addons/sale_crm/i18n/bs.po | 16 +- addons/sale_crm/i18n/ca.po | 16 +- addons/sale_crm/i18n/cs.po | 28 +- addons/sale_crm/i18n/da.po | 16 +- addons/sale_crm/i18n/de.po | 16 +- addons/sale_crm/i18n/el.po | 16 +- addons/sale_crm/i18n/es.po | 16 +- addons/sale_crm/i18n/es_AR.po | 16 +- addons/sale_crm/i18n/es_CL.po | 16 +- addons/sale_crm/i18n/es_CR.po | 16 +- addons/sale_crm/i18n/et.po | 16 +- addons/sale_crm/i18n/fi.po | 16 +- addons/sale_crm/i18n/fr.po | 44 +- addons/sale_crm/i18n/gl.po | 16 +- addons/sale_crm/i18n/hr.po | 16 +- addons/sale_crm/i18n/hu.po | 16 +- addons/sale_crm/i18n/id.po | 16 +- addons/sale_crm/i18n/it.po | 16 +- addons/sale_crm/i18n/ja.po | 16 +- addons/sale_crm/i18n/ko.po | 62 +- addons/sale_crm/i18n/lt.po | 52 +- addons/sale_crm/i18n/lv.po | 16 +- addons/sale_crm/i18n/mk.po | 29 +- addons/sale_crm/i18n/mn.po | 16 +- addons/sale_crm/i18n/nb.po | 16 +- addons/sale_crm/i18n/nl.po | 16 +- addons/sale_crm/i18n/nl_BE.po | 16 +- addons/sale_crm/i18n/pl.po | 16 +- addons/sale_crm/i18n/pt.po | 41 +- addons/sale_crm/i18n/pt_BR.po | 16 +- addons/sale_crm/i18n/ro.po | 16 +- addons/sale_crm/i18n/ru.po | 24 +- addons/sale_crm/i18n/sk.po | 16 +- addons/sale_crm/i18n/sl.po | 16 +- addons/sale_crm/i18n/sq.po | 16 +- addons/sale_crm/i18n/sv.po | 16 +- addons/sale_crm/i18n/tlh.po | 16 +- addons/sale_crm/i18n/tr.po | 16 +- addons/sale_crm/i18n/uk.po | 16 +- addons/sale_crm/i18n/vi.po | 16 +- addons/sale_crm/i18n/zh_CN.po | 16 +- addons/sale_crm/i18n/zh_TW.po | 16 +- 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 | 39 +- 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 | 6 +- 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 | 32 +- addons/sale_journal/i18n/lt.po | 4 +- addons/sale_journal/i18n/lv.po | 4 +- addons/sale_journal/i18n/mk.po | 10 +- 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/cs.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 | 6 +- addons/sale_margin/i18n/hr.po | 4 +- addons/sale_margin/i18n/hu.po | 4 +- addons/sale_margin/i18n/it.po | 6 +- 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/cs.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 | 6 +- addons/sale_mrp/i18n/ja.po | 4 +- addons/sale_mrp/i18n/lt.po | 14 +- 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/cs.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 | 6 +- 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 | 6 +- addons/sale_order_dates/i18n/ja.po | 4 +- addons/sale_order_dates/i18n/mk.po | 8 +- 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 | 32 +- addons/sale_stock/i18n/bg.po | 32 +- addons/sale_stock/i18n/bs.po | 32 +- addons/sale_stock/i18n/ca.po | 32 +- addons/sale_stock/i18n/cs.po | 32 +- addons/sale_stock/i18n/da.po | 32 +- addons/sale_stock/i18n/de.po | 34 +- addons/sale_stock/i18n/el.po | 32 +- addons/sale_stock/i18n/es.po | 32 +- addons/sale_stock/i18n/et.po | 32 +- addons/sale_stock/i18n/fi.po | 32 +- addons/sale_stock/i18n/fr.po | 62 +- addons/sale_stock/i18n/gl.po | 32 +- addons/sale_stock/i18n/hr.po | 32 +- addons/sale_stock/i18n/hu.po | 32 +- addons/sale_stock/i18n/id.po | 32 +- addons/sale_stock/i18n/is.po | 32 +- addons/sale_stock/i18n/it.po | 32 +- addons/sale_stock/i18n/ja.po | 32 +- addons/sale_stock/i18n/ko.po | 88 +- addons/sale_stock/i18n/lo.po | 32 +- addons/sale_stock/i18n/lt.po | 90 +- addons/sale_stock/i18n/lv.po | 32 +- addons/sale_stock/i18n/mk.po | 149 +- addons/sale_stock/i18n/mn.po | 34 +- addons/sale_stock/i18n/nb.po | 32 +- addons/sale_stock/i18n/nl.po | 38 +- addons/sale_stock/i18n/oc.po | 32 +- addons/sale_stock/i18n/pl.po | 32 +- addons/sale_stock/i18n/pt.po | 62 +- addons/sale_stock/i18n/pt_BR.po | 32 +- addons/sale_stock/i18n/ro.po | 32 +- addons/sale_stock/i18n/ru.po | 34 +- addons/sale_stock/i18n/sk.po | 32 +- addons/sale_stock/i18n/sl.po | 32 +- addons/sale_stock/i18n/sq.po | 32 +- addons/sale_stock/i18n/sr.po | 32 +- addons/sale_stock/i18n/sr@latin.po | 32 +- addons/sale_stock/i18n/sv.po | 32 +- addons/sale_stock/i18n/th.po | 32 +- addons/sale_stock/i18n/tlh.po | 32 +- addons/sale_stock/i18n/tr.po | 32 +- addons/sale_stock/i18n/uk.po | 32 +- addons/sale_stock/i18n/vi.po | 32 +- addons/sale_stock/i18n/zh_CN.po | 43 +- addons/sale_stock/i18n/zh_TW.po | 32 +- addons/share/i18n/ar.po | 82 +- addons/share/i18n/bg.po | 82 +- addons/share/i18n/bs.po | 4 +- addons/share/i18n/ca.po | 82 +- addons/share/i18n/cs.po | 82 +- addons/share/i18n/da.po | 82 +- addons/share/i18n/de.po | 82 +- addons/share/i18n/es.po | 82 +- addons/share/i18n/es_CR.po | 82 +- addons/share/i18n/et.po | 82 +- addons/share/i18n/fi.po | 82 +- addons/share/i18n/fr.po | 182 +- addons/share/i18n/gl.po | 82 +- addons/share/i18n/hr.po | 82 +- addons/share/i18n/hu.po | 82 +- addons/share/i18n/it.po | 82 +- addons/share/i18n/ja.po | 82 +- addons/share/i18n/lt.po | 138 +- addons/share/i18n/mk.po | 99 +- addons/share/i18n/mn.po | 82 +- addons/share/i18n/nl.po | 82 +- addons/share/i18n/pl.po | 82 +- addons/share/i18n/pt.po | 84 +- addons/share/i18n/pt_BR.po | 174 +- addons/share/i18n/ro.po | 82 +- addons/share/i18n/ru.po | 101 +- addons/share/i18n/sl.po | 82 +- addons/share/i18n/sv.po | 82 +- addons/share/i18n/tr.po | 110 +- addons/share/i18n/zh_CN.po | 132 +- addons/stock/i18n/ar.po | 81 +- addons/stock/i18n/bg.po | 67 +- addons/stock/i18n/bs.po | 67 +- addons/stock/i18n/ca.po | 67 +- addons/stock/i18n/cs.po | 793 ++++--- addons/stock/i18n/da.po | 67 +- addons/stock/i18n/de.po | 81 +- addons/stock/i18n/el.po | 67 +- addons/stock/i18n/es.po | 669 +++--- addons/stock/i18n/es_AR.po | 67 +- addons/stock/i18n/es_CL.po | 67 +- addons/stock/i18n/es_CR.po | 67 +- addons/stock/i18n/es_DO.po | 67 +- addons/stock/i18n/es_EC.po | 67 +- addons/stock/i18n/es_MX.po | 67 +- addons/stock/i18n/es_VE.po | 67 +- addons/stock/i18n/et.po | 67 +- addons/stock/i18n/fi.po | 67 +- addons/stock/i18n/fr.po | 422 +++- addons/stock/i18n/gl.po | 67 +- addons/stock/i18n/hr.po | 193 +- addons/stock/i18n/hu.po | 67 +- addons/stock/i18n/id.po | 67 +- addons/stock/i18n/it.po | 67 +- addons/stock/i18n/ja.po | 67 +- addons/stock/i18n/ko.po | 163 +- addons/stock/i18n/lt.po | 1001 +++++---- addons/stock/i18n/lv.po | 67 +- addons/stock/i18n/mk.po | 440 ++-- addons/stock/i18n/mn.po | 96 +- addons/stock/i18n/nb.po | 67 +- addons/stock/i18n/nl.po | 113 +- addons/stock/i18n/nl_BE.po | 67 +- addons/stock/i18n/pl.po | 67 +- addons/stock/i18n/pt.po | 135 +- addons/stock/i18n/pt_BR.po | 69 +- addons/stock/i18n/ro.po | 603 +++--- addons/stock/i18n/ru.po | 75 +- addons/stock/i18n/sl.po | 83 +- addons/stock/i18n/sq.po | 67 +- addons/stock/i18n/sr.po | 67 +- addons/stock/i18n/sr@latin.po | 67 +- addons/stock/i18n/sv.po | 67 +- addons/stock/i18n/th.po | 117 +- addons/stock/i18n/tlh.po | 67 +- addons/stock/i18n/tr.po | 621 ++++-- addons/stock/i18n/uk.po | 67 +- addons/stock/i18n/vi.po | 67 +- addons/stock/i18n/zh_CN.po | 145 +- addons/stock/i18n/zh_TW.po | 67 +- 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/en_GB.po | 4 +- addons/stock_invoice_directly/i18n/es.po | 6 +- 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 | 6 +- 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 | 6 +- 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 | 24 +- 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 | 4 +- 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 | 23 +- addons/stock_location/i18n/mn.po | 4 +- addons/stock_location/i18n/nb.po | 4 +- addons/stock_location/i18n/nl.po | 14 +- 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/th.po | 30 +- addons/stock_location/i18n/tlh.po | 4 +- addons/stock_location/i18n/tr.po | 12 +- addons/stock_location/i18n/uk.po | 4 +- addons/stock_location/i18n/vi.po | 4 +- addons/stock_location/i18n/zh_CN.po | 8 +- 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 | 6 +- 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 | 12 +- addons/subscription/i18n/bg.po | 12 +- addons/subscription/i18n/bs.po | 12 +- addons/subscription/i18n/ca.po | 12 +- addons/subscription/i18n/cs.po | 12 +- addons/subscription/i18n/da.po | 12 +- addons/subscription/i18n/de.po | 12 +- addons/subscription/i18n/es.po | 12 +- addons/subscription/i18n/es_AR.po | 12 +- addons/subscription/i18n/es_CR.po | 12 +- addons/subscription/i18n/et.po | 12 +- addons/subscription/i18n/fi.po | 12 +- addons/subscription/i18n/fr.po | 12 +- addons/subscription/i18n/gl.po | 12 +- addons/subscription/i18n/hr.po | 12 +- addons/subscription/i18n/hu.po | 12 +- addons/subscription/i18n/id.po | 12 +- addons/subscription/i18n/it.po | 14 +- addons/subscription/i18n/ja.po | 12 +- addons/subscription/i18n/ko.po | 12 +- addons/subscription/i18n/lt.po | 12 +- addons/subscription/i18n/mk.po | 17 +- addons/subscription/i18n/nl.po | 14 +- addons/subscription/i18n/nl_BE.po | 12 +- addons/subscription/i18n/pl.po | 12 +- addons/subscription/i18n/pt.po | 12 +- addons/subscription/i18n/pt_BR.po | 12 +- addons/subscription/i18n/ro.po | 12 +- addons/subscription/i18n/ru.po | 12 +- addons/subscription/i18n/sl.po | 12 +- addons/subscription/i18n/sq.po | 12 +- addons/subscription/i18n/sv.po | 12 +- addons/subscription/i18n/tlh.po | 12 +- addons/subscription/i18n/tr.po | 89 +- addons/subscription/i18n/uk.po | 12 +- addons/subscription/i18n/vi.po | 12 +- addons/subscription/i18n/zh_CN.po | 12 +- addons/subscription/i18n/zh_TW.po | 12 +- 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 | 65 +- 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 | 124 +- addons/survey/i18n/mn.po | 4 +- addons/survey/i18n/nl.po | 10 +- addons/survey/i18n/pl.po | 4 +- addons/survey/i18n/pt.po | 9 +- addons/survey/i18n/pt_BR.po | 42 +- 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 | 147 +- addons/survey/i18n/zh_CN.po | 20 +- 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 | 6 +- addons/warning/i18n/ja.po | 4 +- addons/warning/i18n/ko.po | 4 +- addons/warning/i18n/lt.po | 4 +- addons/warning/i18n/mk.po | 11 +- 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 | 28 +- 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/th.po | 26 +- 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 | 18 +- addons/warning/i18n/zh_TW.po | 4 +- addons/web_linkedin/i18n/cs.po | 12 +- addons/web_linkedin/i18n/de.po | 12 +- addons/web_linkedin/i18n/es.po | 12 +- addons/web_linkedin/i18n/fr.po | 12 +- addons/web_linkedin/i18n/hr.po | 12 +- addons/web_linkedin/i18n/hu.po | 12 +- addons/web_linkedin/i18n/it.po | 14 +- addons/web_linkedin/i18n/mk.po | 14 +- addons/web_linkedin/i18n/mn.po | 12 +- addons/web_linkedin/i18n/nl.po | 20 +- addons/web_linkedin/i18n/pl.po | 12 +- addons/web_linkedin/i18n/pt.po | 18 +- addons/web_linkedin/i18n/pt_BR.po | 12 +- addons/web_linkedin/i18n/ro.po | 14 +- addons/web_linkedin/i18n/sl.po | 12 +- addons/web_linkedin/i18n/tr.po | 12 +- addons/web_linkedin/i18n/zh_CN.po | 12 +- addons/web_shortcuts/i18n/cs.po | 4 +- addons/web_shortcuts/i18n/de.po | 4 +- addons/web_shortcuts/i18n/en_GB.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 | 6 +- addons/web_shortcuts/i18n/lt.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 | 6 +- addons/web_shortcuts/i18n/ro.po | 6 +- 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/th.po | 4 +- addons/web_shortcuts/i18n/tr.po | 4 +- addons/web_shortcuts/i18n/vi.po | 4 +- addons/web_shortcuts/i18n/zh_CN.po | 6 +- addons/web_shortcuts/i18n/zh_TW.po | 4 +- 5543 files changed, 69929 insertions(+), 56081 deletions(-) create mode 100644 addons/portal_anonymous/i18n/de.po diff --git a/addons/account/i18n/ar.po b/addons/account/i18n/ar.po index 5943c20bc03..8f34b3ccdda 100644 --- a/addons/account/i18n/ar.po +++ b/addons/account/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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:05+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -25,7 +25,7 @@ msgstr "مدفوعات النظام" #: sql_constraint:account.fiscal.position.account:0 msgid "" "An account fiscal position could be defined only once time on same accounts." -msgstr "" +msgstr "يمكن تعريف وضع الحساب المالي مرة واحدة فقط." #. module: account #: help:account.tax.code,sequence:0 @@ -33,8 +33,8 @@ msgid "" "Determine the display order in the report 'Accounting \\ Reporting \\ " "Generic Reporting \\ Taxes \\ Taxes Report'" msgstr "" -"تحديد ترتيب العرض التقرير ’الحسابات/التقارير/ التقارير العمومية/الضرائب/ " -"تقرير الضرائب’" +"تحديد ترتيب عرض التقرير 'الحسابات / التقارير / التقارير العمومية / الضرائب / " +"تقرير الضرائب'" #. module: account #: view:account.move.reconcile:0 @@ -59,7 +59,7 @@ msgid "Residual" msgstr "متبقي" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "بند اليومية \"%s\" غير صحيح." @@ -75,9 +75,9 @@ msgid "Import from invoice or payment" msgstr "إستيراد من فاتورة أو دفعة" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "حساب غير صالح!" @@ -86,7 +86,7 @@ msgstr "حساب غير صالح!" #: view:account.move:0 #: view:account.move.line:0 msgid "Total Debit" -msgstr "مجموع المدين" +msgstr "أجمالى المدين" #. module: account #: constraint:account.account.template:0 @@ -95,7 +95,7 @@ msgid "" "You cannot create recursive account templates." msgstr "" "خطأ!\n" -"لا يمكنك انشاء قوالب حساب متداخلة" +"لا يمكنك انشاء قوالب حسابات متداخلة." #. module: account #. openerp-web @@ -133,15 +133,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -153,7 +153,7 @@ msgid "Warning!" msgstr "تحذير!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "يومية ممتنوعة" @@ -188,17 +188,17 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_view_created_invoice_dashboard msgid "Invoices Created Within Past 15 Days" -msgstr "الفواتير التي تم أنشاءها خلال 15 يوما الماضية" +msgstr "الفواتير التي تم إنشاؤها خلال 15 يوماً الماضية" #. module: account #: field:accounting.report,label_filter:0 msgid "Column Label" -msgstr "عمود الأسماء" +msgstr "اسم العمود" #. module: account #: help:account.config.settings,code_digits:0 msgid "No. of digits to use for account code" -msgstr "عدد الأرقام التي يتم استخدامها لرمز الحساب" +msgstr "عدد الخانات في رمز الحساب" #. module: account #: help:account.analytic.journal,type:0 @@ -207,8 +207,8 @@ msgid "" "invoice) to create analytic entries, OpenERP will look for a matching " "journal of the same type." msgstr "" -"يعطي نوع من تحليل اليومية. عندما يحتاج لوثيقة (مثل : فاتورة) لإنشاء مدخلات " -"تحليلية، نظام OpenERP سوف يبحث عن يومية مطابقة من نفس النوع." +"يحدد نوع اليومية التحليلية. عند الحاجة لوثيقة (مثل: فاتورة) لإنشاء مدخلات " +"تحليلية، سيقوم OpenERP بالبحث عن يومية مطابقة من نفس النوع." #. module: account #: help:account.tax,account_analytic_collected_id:0 @@ -217,6 +217,9 @@ msgid "" "lines for invoices. Leave empty if you don't want to use an analytic account " "on the invoice tax lines by default." msgstr "" +"حدد الحساب التحليلي الذي سيستخدم بشكل افتراضي على خطوط الفاتورة الضريبية " +"للفواتير. اتركه فارغاً إذا كنت لا ترغب في استخدام حساب تحليلي على خطوط " +"الفاتورة الضريبية بشكل افتراضي." #. module: account #: model:ir.actions.act_window,name:account.action_account_tax_template_form @@ -342,7 +345,7 @@ msgid "Allow multi currencies" msgstr "السماح لأكثر من عملة" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "يجب تعريف دفتر يومية تحليلي من نوع '%s'!" @@ -432,7 +435,7 @@ msgstr "" #. module: account #: help:account.bank.statement.line,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "المنشئ لمعلومات المستفيد" #. module: account #. openerp-web @@ -663,7 +666,7 @@ msgid "Profit Account" msgstr "حساب الأرباح" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "لا توجد نقطة فاصلة في التاريخ أو توجد أكثر من نقطة." @@ -674,13 +677,13 @@ msgid "Report of the Sales by Account Type" msgstr "تقرير المبيعات حسب نوع الحساب" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "شباب العمال الاشتراكي." #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "لا يمكن التحريك بعملة غير .." @@ -733,7 +736,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "حسابات مدينة" @@ -773,7 +778,7 @@ msgid "Are you sure you want to create entries?" msgstr "هل أنت متأكد من إنشاء القيد؟" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -844,7 +849,7 @@ msgid "Type" msgstr "نوع" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -869,7 +874,7 @@ msgid "Supplier Invoices And Refunds" msgstr "فواتير المورد و المردودات المالية" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "تم تسوية المدخل" @@ -942,13 +947,15 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " " opening/closing fiscal " "year process." msgstr "" +"لا يمكنك إلغاء تسوية مدخلات اليوميات التي تم إنشاؤها عن طريق عملية فتح/إغلاق " +"السنة المالية." #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_new @@ -1026,7 +1033,7 @@ msgid "Liability" msgstr "الخصوم" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "من فضلك حدد تسلسل دفاتير اليومية التي لها علاقة بهذه الفاتورة" @@ -1100,10 +1107,10 @@ msgid "Features" msgstr "مزايا" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1231,7 +1238,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "مصرف" @@ -1540,15 +1547,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "برصيد لا يساوي صفر" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1775,8 +1784,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "فاتورة" @@ -1851,7 +1862,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "بعض القيود قد تمت تسويتها مسبقا." @@ -2003,36 +2014,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2046,8 +2057,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "خطأ!" @@ -2089,7 +2100,7 @@ msgid "period close" msgstr "غلق الفترة" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2163,7 +2174,7 @@ msgid "Analytic account" msgstr "حساب تحليلي" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "تحقق من أن الحساب معرف في اليومية." @@ -2263,7 +2274,9 @@ msgstr "إدارة الأصول" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "حسابات الدائنون" @@ -2575,7 +2588,7 @@ msgid "Create an Account Based on this Template" msgstr "انشأ حساب مبنيًا على هذا القالب" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2600,7 +2613,7 @@ msgid "Main Sequence" msgstr "المسلسل الرئيسي" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2625,7 +2638,7 @@ msgid "Fiscal Positions" msgstr "الأوضاع المالية" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2733,7 +2746,7 @@ msgid "Account Model Entries" msgstr "إدخالات نماذج الحسابات" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "EXJ" @@ -2849,21 +2862,20 @@ msgid "Accounts" msgstr "حسابات" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "خطأ في الإعدادات!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "قد تم تأكيد كشف %s، تم انشاء اليومية." @@ -3056,7 +3068,7 @@ msgstr "" "لا يمكن تأكيد الفواتير المختارة لأنها ليست 'مسودات' أو 'فواتير مبدئية'." #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "يجب اختيار الفترات التي تنتمي لنفس الشركة" @@ -3069,7 +3081,7 @@ msgid "Sales by Account" msgstr "المبيعات بعرض الحسابات" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3085,8 +3097,8 @@ msgid "Sale journal" msgstr "يومية البيع" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3249,7 +3261,7 @@ msgid "Fiscal Position" msgstr "الوضع المالي" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3349,7 +3361,7 @@ msgstr "" "تستخدم المعاملات القادمة المعدل عند التاريخ." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3412,8 +3424,8 @@ msgid "View" msgstr "عرض" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "بنك" @@ -3682,7 +3694,7 @@ msgstr "" "كإسم البيان. وهي تسمح لمدخلات البيان ان يكون لها نفس المراجع عن البيان نفسه." #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3697,7 +3709,7 @@ msgid "Starting Balance" msgstr "رصيد أول المدة" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "لا يوجد شريك معرف !" @@ -3749,7 +3761,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3901,7 +3913,7 @@ msgid "Period Length (days)" msgstr "طول الفترة (أيام)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3972,9 +3984,13 @@ msgid "VAT :" msgstr "ضريبة القيمة المضافة:" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4063,7 +4079,7 @@ msgid "Chart of Accounts Template" msgstr "قالب الدليل المحاسبي" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4075,8 +4091,10 @@ msgstr "" "الرجاء حدد شريك عليها!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4235,7 +4253,7 @@ msgid "Name" msgstr "اسم" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "لا يوجد شركات لم يتم إعدادها!" @@ -4309,8 +4327,8 @@ msgstr "" "على الفاتورة." #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "لا يمكنك استخدام حساب غير مغعل." @@ -4340,7 +4358,7 @@ msgid "Consolidated Children" msgstr "فرعي موحد" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4547,7 +4565,7 @@ msgid "Cancel the Selected Invoices" msgstr "إلغاء الفواتير المختارة" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "لديك تعيين تحليل اليومية علي'%s' دفتر اليومية" @@ -4618,8 +4636,8 @@ msgid "Supplier invoice sequence" msgstr "تسلسل فاتورة المورد/الشريك" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4682,7 +4700,7 @@ msgid "Account Base Code" msgstr "رمز حساب الأساس" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4750,7 +4768,7 @@ msgid "Statement from invoice or payment" msgstr "بيان من الفاتورة أو الدفع" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4804,7 +4822,7 @@ msgid "Bank statements are entered in the system." msgstr "كشوف حسابات البنك تم إدخالها في النظام." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "تسوية المبالغ المعدومة" @@ -4897,7 +4915,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4912,7 +4930,7 @@ msgid "Based On" msgstr "بناءًا على" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -4980,7 +4998,7 @@ msgstr "" "الافتراضية للشركة." #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "ضريبة الشراء %0.2f%%" @@ -5054,7 +5072,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "متفرقات" @@ -5227,7 +5245,7 @@ msgid "Tax Application" msgstr "التطبيق الضريبي" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5405,7 +5423,7 @@ msgid "Target Moves" msgstr "تحركات الهدف" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5489,7 +5507,7 @@ msgid "Internal Name" msgstr "اسم داخلي" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5563,7 +5581,7 @@ msgid "Compute Code (if type=code)" msgstr "رمز الحساب (إذا كان النوع = الرمز)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5695,7 +5713,7 @@ msgid "Recompute taxes and total" msgstr "أعد حساب الضريبة والمجموع الكلي." #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "لا يمكنك تعديل/حذف يومية لها قيود لهذه الفترة." @@ -5725,7 +5743,7 @@ msgid "Amount Computation" msgstr "حساب المبلغ" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "لا يمكنك اضافة/تعديل قيود لفترة قد تم اغلاقها %s لليومية %s." @@ -6024,7 +6042,7 @@ msgid "Fixed Amount" msgstr "مبلغ ثابت" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "لا يمكنك تغيير الضريبة، يجب أن تحذف وتنشئ أصناف(خطوط) جديدة." @@ -6075,14 +6093,14 @@ msgid "Child Accounts" msgstr "حسابات فرعية" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "نقل اسم(معرف):%s(%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "إلغاء" @@ -6108,7 +6126,7 @@ msgstr "الدخل" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "مورِّد" @@ -6128,7 +6146,7 @@ msgid "Account n°" msgstr "الحساب" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "مرجع حر" @@ -6138,7 +6156,9 @@ msgstr "مرجع حر" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "حسابات الدائنون و المدينون" @@ -6247,7 +6267,7 @@ msgid "Filter by" msgstr "ترشيح بـ" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "لديك تعبير خاطئ\"%(...)s\"في نموذجك" @@ -6295,7 +6315,7 @@ msgid "Number of Days" msgstr "عدد الأيام" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6442,7 +6462,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6619,7 +6639,7 @@ msgid "You cannot create journal items on closed account." msgstr "لا يمكنك إنشاء يومية أصناف لحساب مغلق." #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6640,7 +6660,7 @@ msgid "The related account currency if not equal to the company one." msgstr "عملة الحساب ذات الصلة إن لم تكن مساويةً لشركة واحدة." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6667,7 +6687,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6693,7 +6713,7 @@ msgid "Power" msgstr "طاقة" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "لا يمكن انشاء رمز قيد يوميه غير مستخدم" @@ -6769,12 +6789,12 @@ msgstr "" "الحالة، ترتيب التقييم يصبح مهمًا." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6858,7 +6878,9 @@ msgstr "لا يمكنك تغيير شركة مالكة لحساب يحتوي ب #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "رد للمورد" @@ -7007,7 +7029,7 @@ msgstr "إحصائيات القيود التحليلية" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "القيود: " @@ -7120,7 +7142,7 @@ msgstr "لا يمكنك حذف حساب لديه يوميات متعلقة به" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "خطأ !" @@ -7349,7 +7371,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7420,7 +7442,7 @@ msgid "Done" msgstr "تم" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7714,7 +7736,7 @@ msgstr "التقارير" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7779,7 +7801,7 @@ msgid "Use model" msgstr "استخدم النموذج" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7830,7 +7852,7 @@ msgid "Root/View" msgstr "جذور / عرض او نظره" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7899,7 +7921,7 @@ msgid "Maturity Date" msgstr "تاريخ الاستحقاق" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "يومية المبيعات" @@ -7910,7 +7932,7 @@ msgid "Invoice Tax" msgstr "ضريبة الفاتورة" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "لا يوجد رقم للقطعة !" @@ -7953,7 +7975,7 @@ msgid "Sales Properties" msgstr "خصائص المبيعات" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7978,7 +8000,7 @@ msgstr "إلى" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "تعديل العملة" @@ -8012,7 +8034,7 @@ msgid "May" msgstr "مايو" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "الضرائب العلميه المحدده لكنها لا تكون في اسطر الفاتوره" @@ -8053,7 +8075,7 @@ msgstr "سجل المدخلات اليومية" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "العميل" @@ -8069,7 +8091,7 @@ msgstr "اسم التقرير" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "نقدي" @@ -8241,6 +8263,7 @@ msgstr "ثابت" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "تحذير !" @@ -8308,7 +8331,7 @@ msgid "Select a currency to apply on the invoice" msgstr "اختر عملة للفاتورة" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "لا سطور للفاتورة !" @@ -8332,7 +8355,7 @@ msgid "Tax Use In" msgstr "استخدام الضرائب في" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8340,7 +8363,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "حالة خطوط المدخلات للحاسب غير صالحة." @@ -8384,7 +8407,7 @@ msgid "Associated Partner" msgstr "شريك متحد" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "يجب عليك اولاً اختيار شريك !" @@ -8465,13 +8488,13 @@ msgstr "" "التالية." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "يومية تسديد الشراء" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "الرجاء تعريف تسلسل لليومية" @@ -8718,7 +8741,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8819,7 +8842,7 @@ msgid "The partner account used for this invoice." msgstr "يستخدم حساب الشريك لهذه الفاتورة." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "ضرائب %.2f%%" @@ -8837,7 +8860,7 @@ msgid "Payment Term Line" msgstr "سطر شروط السداد" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "يومية المشتريات" @@ -9007,7 +9030,7 @@ msgid "Journal Name" msgstr "اسم اليومية" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "المدخل \"%s\" غير صالح !" @@ -9057,7 +9080,7 @@ msgid "" msgstr "تم التعبير عن المبلغ في عملة اخرى اختيارية اذا كانت مدخل عملة متعدد." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -9118,7 +9141,7 @@ msgid "Reconciled entries" msgstr "قيود مسواه" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "نموذج خاطئ !" @@ -9140,7 +9163,7 @@ msgid "Print Account Partner Balance" msgstr "طباعة رصيد حساب الشريك" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9179,7 +9202,7 @@ msgstr "مجهول" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "يومية القيود الإفتتاحية" @@ -9276,7 +9299,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "يومية رد المبيعات" @@ -9342,13 +9365,13 @@ msgid "Purchase Tax(%)" msgstr "ضريبة المشتريات (%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "قم بإنشاء سطور للفاتورة." #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9361,7 +9384,7 @@ msgid "Display Detail" msgstr "عرض التفاصيل" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "SCNJ" @@ -9522,8 +9545,8 @@ msgid "Receivable Account" msgstr "حساب المدينون" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "لتسوية القيود, الشركة يجب أن تكون نفسها لكل القيود المختارة." @@ -9624,7 +9647,7 @@ msgid "Move" msgstr "نقل" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9720,7 +9743,7 @@ msgid "Balance :" msgstr "رصيد:" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9811,7 +9834,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9906,7 +9929,7 @@ msgid "Unreconciled" msgstr "غير مسوي" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "إجمالي سئ!" @@ -9997,7 +10020,7 @@ msgid "Comparison" msgstr "مقارنة" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10085,7 +10108,7 @@ msgid "Journal Entry Model" msgstr "نموذج قيد اليومية" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "فترة البدأ يجب أن تكون قبل فترة الانتهاء" @@ -10386,6 +10409,7 @@ msgstr "فتح للتسوية البنكية" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10401,7 +10425,9 @@ msgstr "فتح للتسوية البنكية" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10410,6 +10436,7 @@ msgstr "فتح للتسوية البنكية" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10503,7 +10530,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "لا يمكنك تغيير الضريبة!" @@ -10572,8 +10599,10 @@ msgstr "الوضع المالي للحسابات" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "فاتورة المورد" @@ -10659,8 +10688,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "مع حركات" @@ -10755,7 +10786,7 @@ msgid "Entries Sorted by" msgstr "قيود يوميه مصنفه حسب" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10836,6 +10867,8 @@ msgstr "بحث الفواتير" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "رد" @@ -10906,7 +10939,7 @@ msgid "Manual Invoice Taxes" msgstr "ضرائب الفاتورة يدوياً" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "لا يوجد شروط دفع للمورد في خانة شروط الدفع" diff --git a/addons/account/i18n/bg.po b/addons/account/i18n/bg.po index e8068ddc611..7bde1d54aa8 100644 --- a/addons/account/i18n/bg.po +++ b/addons/account/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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:05+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -59,7 +59,7 @@ msgid "Residual" msgstr "Остатък" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "Елемент \"%s\" от дневника е невалиден." @@ -75,9 +75,9 @@ msgid "Import from invoice or payment" msgstr "Импортиране от фактура или плащане" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -131,15 +131,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -151,7 +151,7 @@ msgid "Warning!" msgstr "Предупреждение!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Различни дневници" @@ -345,7 +345,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -666,7 +666,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "Липса на период или множество намерени периоди за тази дата." @@ -677,13 +677,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -736,7 +736,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Приходни сметки" @@ -776,7 +778,7 @@ msgid "Are you sure you want to create entries?" msgstr "Сигурни ли сте че искате да създадете записи?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -845,7 +847,7 @@ msgid "Type" msgstr "Тип" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -870,7 +872,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -943,7 +945,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1027,7 +1029,7 @@ msgid "Liability" msgstr "Пасив" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1098,10 +1100,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1227,7 +1229,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Банка" @@ -1533,15 +1535,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: 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" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1764,8 +1768,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Фактура" @@ -1840,7 +1846,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1992,36 +1998,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2035,8 +2041,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2078,7 +2084,7 @@ msgid "period close" msgstr "затворен период" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2150,7 +2156,7 @@ msgid "Analytic account" msgstr "Аналтична сметка" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Моля проверете че в дневника е зададена сметка" @@ -2250,7 +2256,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Разплащателни сметки" @@ -2555,7 +2563,7 @@ msgid "Create an Account Based on this Template" msgstr "Създаване на сметка според този шаблон" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2576,7 +2584,7 @@ msgid "Main Sequence" msgstr "Основна последователност" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2600,7 +2608,7 @@ msgid "Fiscal Positions" msgstr "Фискални позиции" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2708,7 +2716,7 @@ msgid "Account Model Entries" msgstr "Запис на модела на сметка" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2825,21 +2833,20 @@ msgid "Accounts" msgstr "Сметки" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Грешка при настройване!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3028,7 +3035,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3041,7 +3048,7 @@ msgid "Sales by Account" msgstr "Продажби по сметка" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3057,8 +3064,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3220,7 +3227,7 @@ msgid "Fiscal Position" msgstr "Фискална позиция" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3318,7 +3325,7 @@ msgstr "" "използват курса за датата." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3381,8 +3388,8 @@ msgid "View" msgstr "Изглед" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3638,7 +3645,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3653,7 +3660,7 @@ msgid "Starting Balance" msgstr "Начален баланс" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Не е зададен партньор !" @@ -3705,7 +3712,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3853,7 +3860,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3922,9 +3929,13 @@ msgid "VAT :" msgstr "ДДС :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4015,7 +4026,7 @@ msgid "Chart of Accounts Template" msgstr "Диаграма на шаблони на сметка" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4024,8 +4035,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4181,7 +4194,7 @@ msgid "Name" msgstr "Име" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4252,8 +4265,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4283,7 +4296,7 @@ msgid "Consolidated Children" msgstr "Косолидирани подчинени сметки" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4485,7 +4498,7 @@ msgid "Cancel the Selected Invoices" msgstr "Отмяна на избраните фактури" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4550,8 +4563,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4614,7 +4627,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4680,7 +4693,7 @@ msgid "Statement from invoice or payment" msgstr "Извлечение от фактура или плащане" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4734,7 +4747,7 @@ msgid "Bank statements are entered in the system." msgstr "В системата са въведени банкови извлечения." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Равняване на отписване" @@ -4824,7 +4837,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4839,7 +4852,7 @@ msgid "Based On" msgstr "Базирано на" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4905,7 +4918,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4979,7 +4992,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5148,7 +5161,7 @@ msgid "Tax Application" msgstr "Бланка за данък" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5322,7 +5335,7 @@ msgid "Target Moves" msgstr "Целеви движения" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5403,7 +5416,7 @@ msgid "Internal Name" msgstr "Вътрешно име" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5475,7 +5488,7 @@ msgid "Compute Code (if type=code)" msgstr "Изчисли кода (if type=code)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5603,7 +5616,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5633,7 +5646,7 @@ msgid "Amount Computation" msgstr "Пресмятане на количество" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5928,7 +5941,7 @@ msgid "Fixed Amount" msgstr "Фиксирана сметка" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5979,14 +5992,14 @@ msgid "Child Accounts" msgstr "Подчинени сметки" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Отписване" @@ -6012,7 +6025,7 @@ msgstr "Приход" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Доставчик" @@ -6032,7 +6045,7 @@ msgid "Account n°" msgstr "Сметка n°" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Свободна отпратка" @@ -6042,7 +6055,9 @@ msgstr "Свободна отпратка" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Сметки за получаване и плащане" @@ -6146,7 +6161,7 @@ msgid "Filter by" msgstr "Подреждане по" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6194,7 +6209,7 @@ msgid "Number of Days" msgstr "Брой дни" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6340,7 +6355,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6513,7 +6528,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6534,7 +6549,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6561,7 +6576,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6587,7 +6602,7 @@ msgid "Power" msgstr "Степенуване" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6663,12 +6678,12 @@ msgstr "" "В този случай реда на изчисление е важен." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6746,7 +6761,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Обезщетение на доставчик" @@ -6891,7 +6908,7 @@ msgstr "Статистика на аналитични записи" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Записи: " @@ -7002,7 +7019,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Грешка!" @@ -7223,7 +7240,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7302,7 +7319,7 @@ msgid "Done" msgstr "Готово" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7592,7 +7609,7 @@ msgstr "Справки" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7655,7 +7672,7 @@ msgid "Use model" msgstr "Използвай модел" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7706,7 +7723,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7775,7 +7792,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Дневник продажби" @@ -7786,7 +7803,7 @@ msgid "Invoice Tax" msgstr "Данък на фактура" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Няма номер на цена !" @@ -7825,7 +7842,7 @@ msgid "Sales Properties" msgstr "Характеристики на продажбите" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7850,7 +7867,7 @@ msgstr "До" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7882,7 +7899,7 @@ msgid "May" msgstr "Май" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7923,7 +7940,7 @@ msgstr "Публикуване на дневникови записи" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Клиент" @@ -7939,7 +7956,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "В брой" @@ -8109,6 +8126,7 @@ msgstr "Фиксиран" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Предупреждение !" @@ -8176,7 +8194,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Изберете валута за фактурата" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Няма фактурни редове!" @@ -8199,7 +8217,7 @@ msgid "Tax Use In" msgstr "Използван данък" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8207,7 +8225,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Редовете на записите на сметката не са във валидно състояние." @@ -8251,7 +8269,7 @@ msgid "Associated Partner" msgstr "Асоцииран партньор" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Първо трябва да изберете партньор !" @@ -8332,13 +8350,13 @@ msgstr "" "изчисляването на следващите данъци." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Дневник обезщетения за покупки" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8583,7 +8601,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8684,7 +8702,7 @@ msgid "The partner account used for this invoice." msgstr "Партньорска сметка използвана за тази фактура" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8702,7 +8720,7 @@ msgid "Payment Term Line" msgstr "Ред на условие за плащане" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Дневник за поръчки" @@ -8871,7 +8889,7 @@ msgid "Journal Name" msgstr "Име на дневник" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Запис \"%s\" е невалиден !" @@ -8921,7 +8939,7 @@ msgstr "" "Сумата изразена във възможна друга валута ако записа е в повече валути" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8982,7 +9000,7 @@ msgid "Reconciled entries" msgstr "Обединени записи" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -9004,7 +9022,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9038,7 +9056,7 @@ msgstr "неизвестен" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Отваряне на Журнал със записи" @@ -9135,7 +9153,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Дневник обезщетения за продажби" @@ -9201,13 +9219,13 @@ msgid "Purchase Tax(%)" msgstr "Данък покупка (%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9220,7 +9238,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9379,8 +9397,8 @@ msgid "Receivable Account" msgstr "Приходна сметка" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9481,7 +9499,7 @@ msgid "Move" msgstr "Преместване" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9577,7 +9595,7 @@ msgid "Balance :" msgstr "Баланс :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9668,7 +9686,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9757,7 +9775,7 @@ msgid "Unreconciled" msgstr "Неприравнен" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Грешна обща сума !" @@ -9842,7 +9860,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9931,7 +9949,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10230,6 +10248,7 @@ msgstr "Започни обединяване на банка" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10245,7 +10264,9 @@ msgstr "Започни обединяване на банка" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10254,6 +10275,7 @@ msgstr "Започни обединяване на банка" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10345,7 +10367,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10414,8 +10436,10 @@ msgstr "Фискална позиция на сметки" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Фактура за доставчик" @@ -10501,8 +10525,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "С движения" @@ -10597,7 +10623,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10678,6 +10704,8 @@ msgstr "Търсене на фактура" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Обезщетение" @@ -10748,7 +10776,7 @@ msgid "Manual Invoice Taxes" msgstr "Ръчно фактуриране на данъци" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/br.po b/addons/account/i18n/br.po index 71d9d1a08d8..fafd5b75756 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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:05+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8049,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/bs.po b/addons/account/i18n/bs.po index 2b2f55fb979..4bf76cdc1fb 100644 --- a/addons/account/i18n/bs.po +++ b/addons/account/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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:05+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -34,7 +34,7 @@ msgid "" "Generic Reporting \\ Taxes \\ Taxes Report'" msgstr "" "Odredite prikazni redoslijed u izvještaju 'Računovodstvo \\ Izvještavanje \\ " -"Općenito Izvještavanje \\ Porezi \\ Porezni Izvještaj'" +"Opšte Izvještavanje \\ Porezi \\ Porezni Izvještaj'" #. module: account #: view:account.move.reconcile:0 @@ -59,10 +59,10 @@ msgid "Residual" msgstr "Ostatak" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." -msgstr "" +msgstr "Stavka dnevnika \"%s\" nije validna." #. module: account #: model:ir.model,name:account.model_report_aged_receivable @@ -72,15 +72,15 @@ msgstr "Zastarjela potraživanja do danas" #. module: account #: model:process.transition,name:account.process_transition_invoiceimport0 msgid "Import from invoice or payment" -msgstr "" +msgstr "Učitaj iz fakture ili plaćanja" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" -msgstr "" +msgstr "Loš konto!" #. module: account #: view:account.move:0 @@ -93,7 +93,7 @@ msgstr "Ukupan dug" msgid "" "Error!\n" "You cannot create recursive account templates." -msgstr "" +msgstr "Greška!" #. module: account #. openerp-web @@ -104,7 +104,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:30 #, python-format msgid "Reconcile" -msgstr "Uskladi" +msgstr "Izravnaj" #. module: account #: field:account.bank.statement,name:0 @@ -124,20 +124,22 @@ msgid "" "If the active field is set to False, it will allow you to hide the payment " "term without removing it." msgstr "" +"Ako su aktivna polja postavljena na False, dozvoliti će Vam skrivanje uslova " +"plaćanja bez da ih uklanjate." #. module: account #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -149,10 +151,10 @@ msgid "Warning!" msgstr "Upozorenje!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" -msgstr "" +msgstr "Različiti dnevnici" #. module: account #: code:addons/account/wizard/account_open_closed_fiscalyear.py:39 @@ -162,6 +164,9 @@ msgid "" "which is set after generating opening entries from 'Generate Opening " "Entries'." msgstr "" +"Morate postaviti 'Zapise o kraju godine u dnevnik' za fiskalnu godinu koja " +"je postavljena nakon generisanja početnog stanja iz 'Generisanje početnog " +"stanja'." #. module: account #: field:account.fiscal.position.account,account_src_id:0 @@ -180,21 +185,28 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite da dodate fiskalni period.\n" +"

\n" +" Računovodstveni period je obično mjesečni ili tromjesečni. \n" +" Obično odgovara periodima poreskih prijava.\n" +"

\n" +" " #. module: account #: model:ir.actions.act_window,name:account.action_view_created_invoice_dashboard msgid "Invoices Created Within Past 15 Days" -msgstr "Fakture unesene u zadnjih 15 dana" +msgstr "Fakture kreirane u zadnjih 15 dana" #. module: account #: field:accounting.report,label_filter:0 msgid "Column Label" -msgstr "" +msgstr "Naljepnica kolone" #. module: account #: help:account.config.settings,code_digits:0 msgid "No. of digits to use for account code" -msgstr "" +msgstr "Broj brojeva za korištenje u kontnim šiframa" #. module: account #: help:account.analytic.journal,type:0 @@ -203,6 +215,9 @@ msgid "" "invoice) to create analytic entries, OpenERP will look for a matching " "journal of the same type." msgstr "" +"Daje tip analitičkog dnevnika. Kada je potreban za dokumente (npr: neku " +"fakturu) da bi se kreirali analitički zapisi, OpenERP će potražiti " +"podudarajući dnevnik istog tipa." #. module: account #: help:account.tax,account_analytic_collected_id:0 @@ -211,6 +226,9 @@ msgid "" "lines for invoices. Leave empty if you don't want to use an analytic account " "on the invoice tax lines by default." msgstr "" +"Postavite analitički konto koji će se koristiti kao zadani na stavkama " +"poreza za fakture. Ostavite prazno ako ne želite da zadano koristite neki " +"analitički konto na stavkama poreza fakture." #. module: account #: model:ir.actions.act_window,name:account.action_account_tax_template_form @@ -221,27 +239,27 @@ msgstr "Predlošci poreza" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile_select msgid "Move line reconcile select" -msgstr "" +msgstr "Premjesti selektovane linije izravnavanja" #. module: account #: model:process.transition,note:account.process_transition_supplierentriesreconcile0 msgid "Accounting entries are an input of the reconciliation." -msgstr "" +msgstr "Računovodstveni zapisi su neki ulaz izravnavanja." #. module: account #: model:ir.ui.menu,name:account.menu_finance_management_belgian_reports msgid "Belgian Reports" -msgstr "" +msgstr "Belgijski izvještaji" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "" +msgstr "Validirano" #. module: account #: model:account.account.type,name:account.account_type_income_view1 msgid "Income View" -msgstr "" +msgstr "Pregled prihoda" #. module: account #: help:account.account,user_type:0 @@ -250,11 +268,14 @@ msgid "" "legal reports, and set the rules to close a fiscal year and generate opening " "entries." msgstr "" +"Tip konta se koristi u informacijske svrhe, da bi se generisali državno " +"specifični pravni izvještaji, i postavila pravila za zatvaranje fiskalne " +"godine i otvaranje nove." #. module: account #: field:account.config.settings,sale_refund_sequence_next:0 msgid "Next credit note number" -msgstr "" +msgstr "Sljedeći zapisani kreditni broj" #. module: account #: help:account.config.settings,module_account_voucher:0 @@ -263,21 +284,24 @@ msgid "" "sales, purchase, expense, contra, etc.\n" " This installs the module account_voucher." msgstr "" +"Ovo uključuje sve opšte zahtjeve izvoda banke, gotovine, prodaje, nabave, " +"troškova, itd.\n" +" Ovo instalira modul account_voucher." #. module: account #: model:ir.actions.act_window,name:account.action_account_use_model_create_entry msgid "Manual Recurring" -msgstr "" +msgstr "Ručno ponavljanje" #. module: account #: field:account.automatic.reconcile,allow_write_off:0 msgid "Allow write off" -msgstr "" +msgstr "Dozvoli otpisivanje" #. module: account #: view:account.analytic.chart:0 msgid "Select the Period for Analysis" -msgstr "Izaberi period za analizu" +msgstr "Odaberi period za analizu" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree3 @@ -294,6 +318,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknite da kreirate knjižno odobrenje kupcu. \n" +"

\n" +" Knjižno odobrenje je dokument koji stornira \n" +" fakturu kompletno ili parcijalno.\n" +"

\n" +" Umjesto ručnog kreiranja povrata kupcu, možete ga \n" +" generisati direktno iz povezane fakture kupca.\n" +"

\n" +" " #. module: account #: help:account.installer,charts:0 @@ -301,6 +335,8 @@ msgid "" "Installs localized accounting charts to match as closely as possible the " "accounting needs of your company based on your country." msgstr "" +"Instalira lokaliziran kontni plan da odgovara što je više moguće " +"računovodstvenim potrebama vaše kompanije bazirano prema vašoj državi." #. module: account #: model:ir.model,name:account.model_account_unreconcile @@ -310,7 +346,7 @@ msgstr "" #. module: account #: field:account.config.settings,module_account_budget:0 msgid "Budget management" -msgstr "" +msgstr "Upravljanje busžetom" #. module: account #: view:product.template:0 @@ -324,17 +360,20 @@ msgid "" "leave the automatic formatting, it will be computed based on the financial " "reports hierarchy (auto-computed field 'level')." msgstr "" +"Ovde možete postaviti format onako kako želite da ovaj zapis bude " +"prikazan.Ako ostavite automatsko formatiranje,biti će izračunato na osnovu " +"hijerarhije financijskih izvještaja ('nivo' automatski izračunatih polja)." #. module: account #: field:account.config.settings,group_multi_currency:0 msgid "Allow multi currencies" -msgstr "" +msgstr "Dozvoli mult-valutni sistem" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" -msgstr "" +msgstr "Morate definisati analitički dnevnik tipa '%s'!" #. module: account #: selection:account.entries.report,month:0 @@ -343,18 +382,18 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "June" -msgstr "" +msgstr "Jun" #. module: account #: code:addons/account/wizard/account_automatic_reconcile.py:148 #, python-format msgid "You must select accounts to reconcile." -msgstr "" +msgstr "Morate selektovati konta da izravnate." #. module: account #: help:account.config.settings,group_analytic_accounting:0 msgid "Allows you to use the analytic accounting." -msgstr "" +msgstr "Dozvoljava Vam korištenje analitičkog računovodstva." #. module: account #: view:account.invoice:0 @@ -362,13 +401,13 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Prodavač(ica)" #. module: account #: view:account.bank.statement:0 #: view:account.invoice:0 msgid "Responsible" -msgstr "" +msgstr "Odgovoran" #. module: account #: model:ir.model,name:account.model_account_bank_accounts_wizard @@ -384,12 +423,12 @@ msgstr "Datum kreiranja" #. module: account #: selection:account.journal,type:0 msgid "Purchase Refund" -msgstr "" +msgstr "Knjižna obavjest dobavljača" #. module: account #: selection:account.journal,type:0 msgid "Opening/Closing Situation" -msgstr "" +msgstr "Situacija Otvaranja/Zatvaranja" #. module: account #: help:account.journal,currency:0 @@ -399,7 +438,7 @@ msgstr "Valuta koja se koristi pri unosu stavke" #. module: account #: field:account.journal,default_debit_account_id:0 msgid "Default Debit Account" -msgstr "Zadano konto za dugovanje" +msgstr "Zadani dugovni konto" #. module: account #: view:account.move:0 @@ -652,7 +691,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -663,13 +702,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -722,7 +761,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Potražni računi" @@ -760,7 +801,7 @@ msgid "Are you sure you want to create entries?" msgstr "Jeste sigurni da želite stvortiti stavke?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -829,7 +870,7 @@ msgid "Type" msgstr "Tip" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -852,7 +893,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -924,7 +965,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1008,7 +1049,7 @@ msgid "Liability" msgstr "Obveza" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1079,10 +1120,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1206,7 +1247,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1511,15 +1552,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Sa saldom različit od 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1742,8 +1785,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Faktura" @@ -1818,7 +1863,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1970,36 +2015,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2013,8 +2058,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2056,7 +2101,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2128,7 +2173,7 @@ msgid "Analytic account" msgstr "Analitički konto" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2228,7 +2273,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Dugovni računi" @@ -2533,7 +2580,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2554,7 +2601,7 @@ msgid "Main Sequence" msgstr "Glavna Sekvenca" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2578,7 +2625,7 @@ msgid "Fiscal Positions" msgstr "Fiskalne pozicije" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2686,7 +2733,7 @@ msgid "Account Model Entries" msgstr "Stavke računa modela" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2803,21 +2850,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3005,7 +3051,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3018,7 +3064,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3034,8 +3080,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3194,7 +3240,7 @@ msgid "Fiscal Position" msgstr "Fiskalna pozicija" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3292,7 +3338,7 @@ msgstr "" "transakcije uvijek koriste dnevni kurs." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3355,8 +3401,8 @@ msgid "View" msgstr "Prikaz" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3612,7 +3658,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3627,7 +3673,7 @@ msgid "Starting Balance" msgstr "Početni saldo" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3679,7 +3725,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3827,7 +3873,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3896,9 +3942,13 @@ msgid "VAT :" msgstr "PDV:" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3988,7 +4038,7 @@ msgid "Chart of Accounts Template" msgstr "Predložak kontnog plana" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3997,8 +4047,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4154,7 +4206,7 @@ msgid "Name" msgstr "Naziv" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4225,8 +4277,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4256,7 +4308,7 @@ msgid "Consolidated Children" msgstr "Konsolidirani potomci" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4458,7 +4510,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4523,8 +4575,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4587,7 +4639,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4653,7 +4705,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4707,7 +4759,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4797,7 +4849,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4812,7 +4864,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4878,7 +4930,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4952,7 +5004,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5121,7 +5173,7 @@ msgid "Tax Application" msgstr "Porezna prijava" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5295,7 +5347,7 @@ msgid "Target Moves" msgstr "Cilj prijenosa" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5376,7 +5428,7 @@ msgid "Internal Name" msgstr "Interni naziv" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5448,7 +5500,7 @@ msgid "Compute Code (if type=code)" msgstr "Kod za izračunavanje (ako je tip=Python kod)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5576,7 +5628,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5606,7 +5658,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5901,7 +5953,7 @@ msgid "Fixed Amount" msgstr "Fiksni iznos" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5952,14 +6004,14 @@ msgid "Child Accounts" msgstr "Podkonta" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Otpis" @@ -5985,7 +6037,7 @@ msgstr "Prihod" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Dobavljač" @@ -6005,7 +6057,7 @@ msgid "Account n°" msgstr "Broj računa" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -6015,7 +6067,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Konta potraživanja i dugovanja" @@ -6119,7 +6173,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6167,7 +6221,7 @@ msgid "Number of Days" msgstr "Broj dana" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6313,7 +6367,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6486,7 +6540,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6507,7 +6561,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6534,7 +6588,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6560,7 +6614,7 @@ msgid "Power" msgstr "Eksponent" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6634,12 +6688,12 @@ msgstr "" "slućaju, redosljed evaluacije je bitan." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6717,7 +6771,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Povrat dobavljaču" @@ -6862,7 +6918,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6973,7 +7029,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7194,7 +7250,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7265,7 +7321,7 @@ msgid "Done" msgstr "Završeno" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7555,7 +7611,7 @@ msgstr "Izvještavanje" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7618,7 +7674,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7669,7 +7725,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7736,7 +7792,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7747,7 +7803,7 @@ msgid "Invoice Tax" msgstr "Porez fakture" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7786,7 +7842,7 @@ msgid "Sales Properties" msgstr "Svojstva prodaje" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7811,7 +7867,7 @@ msgstr "Do" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7843,7 +7899,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7884,7 +7940,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Kupac" @@ -7900,7 +7956,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Gotovina" @@ -8070,6 +8126,7 @@ msgstr "Fiksno" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8137,7 +8194,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8160,7 +8217,7 @@ msgid "Tax Use In" msgstr "Upotreba poreza u" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8168,7 +8225,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8212,7 +8269,7 @@ msgid "Associated Partner" msgstr "Vezani partner" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8293,13 +8350,13 @@ msgstr "" "narednih poreza." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8542,7 +8599,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8643,7 +8700,7 @@ msgid "The partner account used for this invoice." msgstr "Račun partnera korišten za ovu fakturu" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8661,7 +8718,7 @@ msgid "Payment Term Line" msgstr "Redak uvjeta plaćanja" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8830,7 +8887,7 @@ msgid "Journal Name" msgstr "Naziv naloga za knjiženje" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8879,7 +8936,7 @@ msgid "" msgstr "Iznos izražen u opcionalnoj drugoj valuti ako je viševalutni unos." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8940,7 +8997,7 @@ msgid "Reconciled entries" msgstr "Usklađene stavke" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8962,7 +9019,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8996,7 +9053,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Nalog za knjiženje otvarajućih stavaka" @@ -9093,7 +9150,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9159,13 +9216,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9178,7 +9235,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9337,8 +9394,8 @@ msgid "Receivable Account" msgstr "Konto Potraživanja" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9439,7 +9496,7 @@ msgid "Move" msgstr "Prijenos" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9533,7 +9590,7 @@ msgid "Balance :" msgstr "Saldo" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9624,7 +9681,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9713,7 +9770,7 @@ msgid "Unreconciled" msgstr "Neusklađen" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9798,7 +9855,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9887,7 +9944,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10186,6 +10243,7 @@ msgstr "Otvoren za bankovno usklađivanje" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10201,7 +10259,9 @@ msgstr "Otvoren za bankovno usklađivanje" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10210,6 +10270,7 @@ msgstr "Otvoren za bankovno usklađivanje" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10301,7 +10362,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10370,8 +10431,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Ulazna faktura" @@ -10457,8 +10520,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Sa kretanjima" @@ -10553,7 +10618,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10634,6 +10699,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Povrat" @@ -10704,7 +10771,7 @@ msgid "Manual Invoice Taxes" msgstr "Ručni porezi fakture" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/ca.po b/addons/account/i18n/ca.po index 27c9ab33600..8765668a240 100644 --- a/addons/account/i18n/ca.po +++ b/addons/account/i18n/ca.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-16 05:13+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:05+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -61,7 +61,7 @@ msgid "Residual" msgstr "Pendent" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "L'element del diari \"%s\" no és vàlid." @@ -77,9 +77,9 @@ msgid "Import from invoice or payment" msgstr "Importa des de factura o pagament" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "Compte erroni!" @@ -135,15 +135,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -155,7 +155,7 @@ msgid "Warning!" msgstr "Avís!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Diari de diversos" @@ -345,7 +345,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -666,7 +666,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -677,13 +677,13 @@ msgid "Report of the Sales by Account Type" msgstr "Informe de les vendes per tipus de compte" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "VENDA" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -736,7 +736,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Comptes a cobrar" @@ -774,7 +776,7 @@ msgid "Are you sure you want to create entries?" msgstr "Esteu segurs que voleu crear els assentaments?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -843,7 +845,7 @@ msgid "Type" msgstr "Tipus" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -866,7 +868,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -938,7 +940,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1022,7 +1024,7 @@ msgid "Liability" msgstr "Passiu" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1096,10 +1098,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1226,7 +1228,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Banc" @@ -1531,15 +1533,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Amb balanç si no és igual a 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1762,8 +1766,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Factura" @@ -1838,7 +1844,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1992,36 +1998,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2035,8 +2041,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2078,7 +2084,7 @@ msgid "period close" msgstr "tancament del període" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2150,7 +2156,7 @@ msgid "Analytic account" msgstr "Compte analític" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Comproveu que s'ha definit un compte en el diari." @@ -2252,7 +2258,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Comptes a pagar" @@ -2563,7 +2571,7 @@ msgid "Create an Account Based on this Template" msgstr "Crea un compte basat en aquesta plantilla" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2584,7 +2592,7 @@ msgid "Main Sequence" msgstr "Seqüència principal" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2608,7 +2616,7 @@ msgid "Fiscal Positions" msgstr "Posicions fiscals" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2717,7 +2725,7 @@ msgid "Account Model Entries" msgstr "Líniees de model d'assentament" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "DESPESA" @@ -2834,21 +2842,20 @@ msgid "Accounts" msgstr "Comptes" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Error de configuració!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3043,7 +3050,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3056,7 +3063,7 @@ msgid "Sales by Account" msgstr "Vendes per compte" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3072,8 +3079,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3241,7 +3248,7 @@ msgid "Fiscal Position" msgstr "Posició fiscal" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3339,7 +3346,7 @@ msgstr "" "transaccions d'entrada sempre utilitzen el tipus a una data." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3402,8 +3409,8 @@ msgid "View" msgstr "Vista" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BANC" @@ -3675,7 +3682,7 @@ msgstr "" "les mateixes referències que el propi extracte" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3690,7 +3697,7 @@ msgid "Starting Balance" msgstr "Saldo inicial" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "No s'ha definit empresa!" @@ -3744,7 +3751,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3894,7 +3901,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3963,9 +3970,13 @@ msgid "VAT :" msgstr "CIF/NIF:" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4057,7 +4068,7 @@ msgid "Chart of Accounts Template" msgstr "Plantilla del pla comptable" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4069,8 +4080,10 @@ msgstr "" "definiu l'empresa en ell!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4230,7 +4243,7 @@ msgid "Name" msgstr "Nom" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4301,8 +4314,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4332,7 +4345,7 @@ msgid "Consolidated Children" msgstr "Fills consolidats" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4539,7 +4552,7 @@ msgid "Cancel the Selected Invoices" msgstr "Cancel·la les factures seleccionades" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4607,8 +4620,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4671,7 +4684,7 @@ msgid "Account Base Code" msgstr "Codi base del compte" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4737,7 +4750,7 @@ msgid "Statement from invoice or payment" msgstr "Extracte des de factura o pagament" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4791,7 +4804,7 @@ msgid "Bank statements are entered in the system." msgstr "S'han introduït els extractes bancaris en el sistema." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Desfés conciliació" @@ -4881,7 +4894,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4896,7 +4909,7 @@ msgid "Based On" msgstr "Basat en" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -4962,7 +4975,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -5036,7 +5049,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5205,7 +5218,7 @@ msgid "Tax Application" msgstr "Aplicació impost" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5379,7 +5392,7 @@ msgid "Target Moves" msgstr "Moviments destí" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5460,7 +5473,7 @@ msgid "Internal Name" msgstr "Nom intern" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5532,7 +5545,7 @@ msgid "Compute Code (if type=code)" msgstr "Codi per calcular (si tipus=codi)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5663,7 +5676,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5693,7 +5706,7 @@ msgid "Amount Computation" msgstr "Càlcul del import" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5993,7 +6006,7 @@ msgid "Fixed Amount" msgstr "Import fix" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6044,14 +6057,14 @@ msgid "Child Accounts" msgstr "Comptes fills" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Desajust" @@ -6077,7 +6090,7 @@ msgstr "Ingrés" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Proveïdor" @@ -6097,7 +6110,7 @@ msgid "Account n°" msgstr "Compte n°" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Referència lliure" @@ -6107,7 +6120,9 @@ msgstr "Referència lliure" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Comptes a cobrar i pagar" @@ -6216,7 +6231,7 @@ msgid "Filter by" msgstr "Filtra per" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6264,7 +6279,7 @@ msgid "Number of Days" msgstr "Número de dies" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6412,7 +6427,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6584,7 +6599,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6605,7 +6620,7 @@ msgid "The related account currency if not equal to the company one." msgstr "La moneda comptable relacionada si no és igual a la de la companyia." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6632,7 +6647,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6658,7 +6673,7 @@ msgid "Power" msgstr "Força" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6734,12 +6749,12 @@ msgstr "" "impostos fills. En aquest cas, l'ordre d'avaluació és important." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6825,7 +6840,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Factura rectificativa (abonament) de proveïdor" @@ -6970,7 +6987,7 @@ msgstr "Estadístiques d'assentaments analítics" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Assentaments: " @@ -7083,7 +7100,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Error!" @@ -7312,7 +7329,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7390,7 +7407,7 @@ msgid "Done" msgstr "Realitzat" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7689,7 +7706,7 @@ msgstr "Informe" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7755,7 +7772,7 @@ msgid "Use model" msgstr "Utilitza el model" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7806,7 +7823,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7875,7 +7892,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Diari de vendes" @@ -7886,7 +7903,7 @@ msgid "Invoice Tax" msgstr "Impost de factura" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Cap tros de número!" @@ -7925,7 +7942,7 @@ msgid "Sales Properties" msgstr "Propietats de venda" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7950,7 +7967,7 @@ msgstr "Fins" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7982,7 +7999,7 @@ msgid "May" msgstr "Maig" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -8023,7 +8040,7 @@ msgstr "Assentar assentaments" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Client" @@ -8039,7 +8056,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Caixa" @@ -8209,6 +8226,7 @@ msgstr "Fix" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Atenció!" @@ -8276,7 +8294,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Seleccioneu una moneda per aplicar en la factura." #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "No hi ha línies de factura!" @@ -8301,7 +8319,7 @@ msgid "Tax Use In" msgstr "Impost utilitzat en" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8311,7 +8329,7 @@ msgstr "" "El balanç del que s'esperava (%.2f) és diferent a la calculada un. (%.2f)" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Les línies dels assentaments comptables no estan en estat vàlid." @@ -8355,7 +8373,7 @@ msgid "Associated Partner" msgstr "Empresa associada" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Primer heu de seleccionar una empresa!" @@ -8436,13 +8454,13 @@ msgstr "" "calcular els següents impostos." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Diari d'abonament de compres" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8688,7 +8706,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8789,7 +8807,7 @@ msgid "The partner account used for this invoice." msgstr "El compte de l'empresa utilitzat per aquesta factura." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8807,7 +8825,7 @@ msgid "Payment Term Line" msgstr "Línia de termini de pagament" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Diari de compres" @@ -8978,7 +8996,7 @@ msgid "Journal Name" msgstr "Nom diari" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "L'assentament \"%s\" no és vàlid!" @@ -9029,7 +9047,7 @@ msgstr "" "multi-divisa." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -9093,7 +9111,7 @@ msgid "Reconciled entries" msgstr "Assentaments conciliats" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -9115,7 +9133,7 @@ msgid "Print Account Partner Balance" msgstr "Imprimeix balanç comptable de l'empresa" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9149,7 +9167,7 @@ msgstr "Desconegut" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Diari assentaments d'obertura" @@ -9246,7 +9264,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Diari d'abonament de vendes" @@ -9312,13 +9330,13 @@ msgid "Purchase Tax(%)" msgstr "Impost de la compra (%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Creeu algunes línies de factura" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9331,7 +9349,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "SCNJ" @@ -9493,8 +9511,8 @@ msgid "Receivable Account" msgstr "Compte a cobrar" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9596,7 +9614,7 @@ msgid "Move" msgstr "Assent." #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9693,7 +9711,7 @@ msgid "Balance :" msgstr "Saldo :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9784,7 +9802,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9873,7 +9891,7 @@ msgid "Unreconciled" msgstr "No conciliat" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Total erroni!" @@ -9967,7 +9985,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10056,7 +10074,7 @@ msgid "Journal Entry Model" msgstr "Model d'assentament" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10358,6 +10376,7 @@ msgstr "Obre per la conciliació bancària" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10373,7 +10392,9 @@ msgstr "Obre per la conciliació bancària" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10382,6 +10403,7 @@ msgstr "Obre per la conciliació bancària" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10478,7 +10500,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10547,8 +10569,10 @@ msgstr "Comptes de posició fiscal" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Factura de proveïdor" @@ -10634,8 +10658,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Amb moviments" @@ -10732,7 +10758,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10814,6 +10840,8 @@ msgstr "Cerca factura" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Factura rectificativa (abonament)" @@ -10884,7 +10912,7 @@ msgid "Manual Invoice Taxes" msgstr "Impostos factura manual" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/cs.po b/addons/account/i18n/cs.po index 9b99eb9b425..f170d26014a 100644 --- a/addons/account/i18n/cs.po +++ b/addons/account/i18n/cs.po @@ -13,14 +13,14 @@ msgstr "" "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 05:13+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:05+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 msgid "System payment" -msgstr "Systém plateb" +msgstr "Systémová platba" #. module: account #: sql_constraint:account.fiscal.position.account:0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "Zbytek" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "Importovat z faktury nebo platby" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -103,7 +103,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:30 #, python-format msgid "Reconcile" -msgstr "Likvidace" +msgstr "Vyrovnat" #. module: account #: field:account.bank.statement,name:0 @@ -115,7 +115,7 @@ msgstr "Likvidace" #: xsl:account.transfer:0 #: field:cash.box.in,ref:0 msgid "Reference" -msgstr "Odkaz" +msgstr "Variabilní symbol" #. module: account #: help:account.payment.term,active:0 @@ -130,15 +130,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -150,7 +150,7 @@ msgid "Warning!" msgstr "Varování!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Různý" @@ -240,7 +240,7 @@ msgstr "Belgické výkazy" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "" +msgstr "Ověřeno" #. module: account #: model:account.account.type,name:account.account_type_income_view1 @@ -298,6 +298,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikněte pro vytvoření dobropisu zákazníkovi.\n" +"

\n" +" Dobropis je dokument, který čátečně nebo úplně vrací\n" +" úhradu faktury.\n" +"

\n" +" Místo ručního vytváření dobropisu zákazníkovi\n" +" jej můžete vytvořit přímo z příslušné faktury.\n" +"

\n" +" " #. module: account #: help:account.installer,charts:0 @@ -316,7 +326,7 @@ msgstr "Zrušit likvidaci" #. module: account #: field:account.config.settings,module_account_budget:0 msgid "Budget management" -msgstr "" +msgstr "Správa rozpočtu" #. module: account #: view:product.template:0 @@ -334,10 +344,10 @@ msgstr "" #. module: account #: field:account.config.settings,group_multi_currency:0 msgid "Allow multi currencies" -msgstr "" +msgstr "Umožnit více měn" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -360,7 +370,7 @@ msgstr "" #. module: account #: help:account.config.settings,group_analytic_accounting:0 msgid "Allows you to use the analytic accounting." -msgstr "" +msgstr "Umožňuje vám využívat analytické účetnictví." #. module: account #: view:account.invoice:0 @@ -368,13 +378,13 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Obchodník" #. module: account #: view:account.bank.statement:0 #: view:account.invoice:0 msgid "Responsible" -msgstr "Odopovědné" +msgstr "Zodpovídá" #. module: account #: model:ir.model,name:account.model_account_bank_accounts_wizard @@ -447,7 +457,7 @@ msgstr "Šablona grafu" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Modify: create refund, reconcile and create a new draft invoice" -msgstr "" +msgstr "Upravit: vytvořit dobropis, vyrovnat a vytvořit nový koncept faktury" #. module: account #: help:account.config.settings,tax_calculation_rounding_method:0 @@ -566,7 +576,7 @@ msgstr "" #. module: account #: field:account.automatic.reconcile,unreconciled:0 msgid "Not reconciled transactions" -msgstr "Nezlikvidované transakce" +msgstr "Nevyrovnané transakce" #. module: account #: report:account.general.ledger:0 @@ -602,7 +612,7 @@ msgstr "" #. module: account #: field:account.config.settings,decimal_precision:0 msgid "Decimal precision on journal entries" -msgstr "" +msgstr "Desetinná přesnost u zápisů v deníku" #. module: account #: selection:account.config.settings,period:0 @@ -658,7 +668,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -669,13 +679,13 @@ msgid "Report of the Sales by Account Type" msgstr "Výkaz prodejů podle typu účtu" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "KFV" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -728,7 +738,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Pohledávky" @@ -736,12 +748,12 @@ msgstr "Pohledávky" #. module: account #: view:account.config.settings:0 msgid "Configure your company bank accounts" -msgstr "" +msgstr "Nastavit bankovní účty vaší společnosti" #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "" +msgstr "Vytvořit dobropis" #. module: account #: constraint:account.move.line:0 @@ -766,7 +778,7 @@ msgid "Are you sure you want to create entries?" msgstr "Opravdu chcete vytvořit záznamy?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -835,7 +847,7 @@ msgid "Type" msgstr "Typ" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -855,13 +867,13 @@ msgstr "Odkaz na partnera pro tuto fakturu." #. module: account #: view:account.invoice.report:0 msgid "Supplier Invoices And Refunds" -msgstr "Faktury dodavatele a dobropisy" +msgstr "Přijaté faktury a dobropisy" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." -msgstr "" +msgstr "Záznam je již vyrovnán." #. module: account #: view:account.move.line.unreconcile.select:0 @@ -931,7 +943,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1015,7 +1027,7 @@ msgid "Liability" msgstr "Pasiva" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1086,10 +1098,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1164,7 +1176,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Refund " -msgstr "" +msgstr "Dobropis " #. module: account #: code:addons/account/account_analytic_line.py:90 @@ -1192,7 +1204,7 @@ msgstr "Registrační pokladny" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "" +msgstr "Deník dobropisů prodeje" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1215,7 +1227,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Banka" @@ -1228,7 +1240,7 @@ msgstr "Začátek období" #. module: account #: view:account.tax:0 msgid "Refunds" -msgstr "" +msgstr "Dobropisy" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 @@ -1377,7 +1389,7 @@ msgstr "Účet" #. module: account #: field:account.tax,include_base_amount:0 msgid "Included in base amount" -msgstr "Včetně základní částky" +msgstr "Včetně základu" #. module: account #: view:account.entries.report:0 @@ -1410,7 +1422,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_tax_report #: model:ir.ui.menu,name:account.next_id_27 msgid "Taxes" -msgstr "Daně" +msgstr "DPH" #. module: account #: code:addons/account/wizard/account_financial_report.py:70 @@ -1520,15 +1532,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Se zůstatkem nerovným nule" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1596,7 +1610,7 @@ msgstr "" #. module: account #: view:account.config.settings:0 msgid "eInvoicing & Payments" -msgstr "" +msgstr "Elektronická fakturace a platby" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -1624,7 +1638,7 @@ msgstr "Dočasná tabulka použitá pro zobrazení nástěnky" #: model:ir.actions.act_window,name:account.action_invoice_tree4 #: model:ir.ui.menu,name:account.menu_action_invoice_tree4 msgid "Supplier Refunds" -msgstr "Dobropisy dodavatelů" +msgstr "Dobropisy přijaté" #. module: account #: field:account.tax.code,code:0 @@ -1635,7 +1649,7 @@ msgstr "Kód případu" #. module: account #: field:account.config.settings,company_footer:0 msgid "Bank accounts footer preview" -msgstr "" +msgstr "Náhled patičky bankovních účtů" #. module: account #: selection:account.account,type:0 @@ -1671,7 +1685,7 @@ msgstr "Skupiny" #. module: account #: field:report.invoice.created,amount_untaxed:0 msgid "Untaxed" -msgstr "Nezdaněné" +msgstr "Bez DPH" #. module: account #: view:account.journal:0 @@ -1698,7 +1712,7 @@ msgstr "Účet závazků" #: field:account.tax,account_paid_id:0 #: field:account.tax.template,account_paid_id:0 msgid "Refund Tax Account" -msgstr "Účet dobropisu daně" +msgstr "Daňový účet dobropisů" #. module: account #: model:ir.model,name:account.model_ir_sequence @@ -1751,8 +1765,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Faktura" @@ -1775,12 +1791,12 @@ msgstr "Posloupnost finančního roku" #. module: account #: field:account.config.settings,group_analytic_accounting:0 msgid "Analytic accounting" -msgstr "" +msgstr "Analytické účtenictví" #. module: account #: report:account.overdue:0 msgid "Sub-Total :" -msgstr "Mezivýsledek :" +msgstr "Mezisoučet" #. module: account #: help:res.company,tax_calculation_rounding_method:0 @@ -1805,7 +1821,7 @@ msgstr "Prodeje dle typu účtu" #: model:account.payment.term,name:account.account_payment_term_15days #: model:account.payment.term,note:account.account_payment_term_15days msgid "15 Days" -msgstr "" +msgstr "15 dnů" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing @@ -1827,10 +1843,10 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." -msgstr "" +msgstr "Některé položky jsou již vyrovnány." #. module: account #: field:account.tax.code,sum:0 @@ -1863,7 +1879,7 @@ msgstr "" #: report:account.journal.period.print.sale.purchase:0 #: view:account.tax.template:0 msgid "Tax Declaration" -msgstr "Přiznání daně" +msgstr "Přiznání k dani" #. module: account #: help:account.journal.period,active:0 @@ -1918,7 +1934,7 @@ msgstr "Grafy analytických účtů" #. module: account #: report:account.overdue:0 msgid "Customer Ref:" -msgstr "Odkaz zákazníka:" +msgstr "Značka zákazníka:" #. module: account #: help:account.tax,base_code_id:0 @@ -1945,12 +1961,12 @@ msgstr "Rozpracovaný výpis" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_validated msgid "Invoice validated" -msgstr "" +msgstr "Fakutra ověřena" #. module: account #: field:account.config.settings,module_account_check_writing:0 msgid "Pay your suppliers by check" -msgstr "" +msgstr "Platit dodavatelům šekem" #. module: account #: field:account.move.line.reconcile,credit:0 @@ -1981,36 +1997,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2024,8 +2040,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Chyba!" @@ -2054,7 +2070,7 @@ msgstr "Chybná hodnota Má dáti nebo dal v účetním záznamu !" #: model:ir.actions.act_window,name:account.action_account_invoice_report_all #: model:ir.ui.menu,name:account.menu_action_account_invoice_report_all msgid "Invoices Analysis" -msgstr "Analýza faktůr" +msgstr "Analýza faktur" #. module: account #: model:ir.model,name:account.model_mail_compose_message @@ -2067,7 +2083,7 @@ msgid "period close" msgstr "ukončení období" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2105,7 +2121,7 @@ msgstr "" #. module: account #: field:account.config.settings,currency_id:0 msgid "Default company currency" -msgstr "" +msgstr "Výchozí měna společnosti" #. module: account #: field:account.invoice,move_id:0 @@ -2139,7 +2155,7 @@ msgid "Analytic account" msgstr "Analytický účet" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Prosíme ověřte, že je účet definován v deníku." @@ -2232,7 +2248,7 @@ msgstr "" #. module: account #: field:account.config.settings,module_account_asset:0 msgid "Assets management" -msgstr "" +msgstr "Správa majetku" #. module: account #: view:account.account:0 @@ -2241,7 +2257,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Účty závazků" @@ -2258,7 +2276,7 @@ msgstr "" #: view:account.invoice:0 #: view:report.invoice.created:0 msgid "Untaxed Amount" -msgstr "Nezdaněná částka" +msgstr "Částka bez DPH" #. module: account #: help:account.tax,active:0 @@ -2365,7 +2383,7 @@ msgstr "Daňový účtový rozvrh" #: model:account.payment.term,name:account.account_payment_term_net #: model:account.payment.term,note:account.account_payment_term_net msgid "30 Net Days" -msgstr "" +msgstr "30 pracovních dnů" #. module: account #: code:addons/account/account_cash_statement.py:256 @@ -2384,7 +2402,7 @@ msgstr "" #: selection:account.invoice.report,state:0 #: selection:report.invoice.created,state:0 msgid "Pro-forma" -msgstr "Pro-forma" +msgstr "Proforma" #. module: account #: help:account.account.template,type:0 @@ -2548,7 +2566,7 @@ msgid "Create an Account Based on this Template" msgstr "Vytvořit účet založený na šabloně" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2569,7 +2587,7 @@ msgid "Main Sequence" msgstr "Hlavní číselná řada" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2593,7 +2611,7 @@ msgid "Fiscal Positions" msgstr "Finanční pozice" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2612,7 +2630,7 @@ msgstr "Filtry" #: model:process.node,note:account.process_node_draftinvoices0 #: model:process.node,note:account.process_node_supplierdraftinvoices0 msgid "Draft state of an invoice" -msgstr "Návrhový stav faktury" +msgstr "Faktura ve stavu konceptu" #. module: account #: view:product.category:0 @@ -2622,7 +2640,7 @@ msgstr "" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Create a draft refund" -msgstr "" +msgstr "Vytvořit koncept dobropisu" #. module: account #: view:account.partner.reconcile.process:0 @@ -2649,7 +2667,7 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "Unreconciled entries" -msgstr "Nesmířené částky" +msgstr "Nevyrovnané položky" #. module: account #: field:account.invoice.tax,base_code_id:0 @@ -2660,7 +2678,7 @@ msgstr "Základní kód" #. module: account #: help:account.invoice.tax,sequence:0 msgid "Gives the sequence order when displaying a list of invoice tax." -msgstr "Dává pořadí posloupnosti, když zobrazuje seznam daní faktury." +msgstr "Udává pořadí poslupnosti při zobrazení seznamu daní faktury." #. module: account #: field:account.tax,base_sign:0 @@ -2701,7 +2719,7 @@ msgid "Account Model Entries" msgstr "Položky modelu účtu" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "EXJ" @@ -2748,7 +2766,7 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_sequence_next:0 msgid "Next supplier invoice number" -msgstr "" +msgstr "Následující číslo přijaté faktury" #. module: account #: view:account.analytic.cost.ledger.journal.report:0 @@ -2779,7 +2797,7 @@ msgstr "" #: view:account.tax:0 #: model:ir.model,name:account.model_account_tax msgid "Tax" -msgstr "Daň" +msgstr "DPH" #. module: account #: view:account.analytic.account:0 @@ -2797,7 +2815,7 @@ msgstr "Analytický účet" #: field:account.config.settings,default_purchase_tax:0 #: field:account.config.settings,purchase_tax:0 msgid "Default purchase tax" -msgstr "" +msgstr "Výchozí DPH na vstupu" #. module: account #: view:account.account:0 @@ -2813,21 +2831,20 @@ msgid "Accounts" msgstr "Účty" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Konfigurační chyba!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2869,7 +2886,7 @@ msgstr "Bankovní vyrovnání" #. module: account #: report:account.invoice:0 msgid "Disc.(%)" -msgstr "Slev.(%)" +msgstr "Sleva (%)" #. module: account #: report:account.general.ledger:0 @@ -3013,9 +3030,11 @@ msgid "" "Selected invoice(s) cannot be confirmed as they are not in 'Draft' or 'Pro-" "Forma' state." msgstr "" +"Zvolené faktury nemohou být potvrzeny jelikož nejsou ve stavu 'Koncept' nebo " +"'Proforma'." #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3028,7 +3047,7 @@ msgid "Sales by Account" msgstr "Prodeje dle účtu" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3044,8 +3063,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3125,7 +3144,7 @@ msgstr "" #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile Transactions" -msgstr "" +msgstr "Nevyrovnané transakce" #. module: account #: field:wizard.multi.charts.accounts,only_one_chart_template:0 @@ -3169,7 +3188,7 @@ msgstr "Částka základního kódu" #. module: account #: field:wizard.multi.charts.accounts,sale_tax:0 msgid "Default Sale Tax" -msgstr "Výchozí prodejní daň" +msgstr "Výchozí DPH" #. module: account #: help:account.model.line,date_maturity:0 @@ -3204,7 +3223,7 @@ msgid "Fiscal Position" msgstr "Finanční pozice" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3242,7 +3261,7 @@ msgstr "" #: model:process.process,name:account.process_process_invoiceprocess0 #: selection:report.invoice.created,type:0 msgid "Customer Invoice" -msgstr "Faktura zákazníka" +msgstr "Faktura vydaná" #. module: account #: model:ir.model,name:account.model_account_open_closed_fiscalyear @@ -3297,7 +3316,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3327,7 +3346,7 @@ msgstr "Vždy" #: field:account.config.settings,module_account_accountant:0 msgid "" "Full accounting features: journals, legal statements, chart of accounts, etc." -msgstr "" +msgstr "Plnohodnotné účetní funkce: deníky, prohlášení, účtová osnova, atd." #. module: account #: view:account.analytic.line:0 @@ -3360,8 +3379,8 @@ msgid "View" msgstr "Pohled" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3384,7 +3403,7 @@ msgstr "Elektronický soubor" #. module: account #: field:account.move.line,reconcile:0 msgid "Reconcile Ref" -msgstr "" +msgstr "Značka vyrovnání" #. module: account #: field:account.config.settings,has_chart_of_accounts:0 @@ -3621,7 +3640,7 @@ msgstr "" "účetní záznamy." #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3636,7 +3655,7 @@ msgid "Starting Balance" msgstr "Počáteční zůstatek" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Nebyl definován partner !" @@ -3688,7 +3707,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3714,7 +3733,7 @@ msgstr "Netisknutelné ve faktuře" #: report:account.vat.declaration:0 #: field:account.vat.declaration,chart_tax_id:0 msgid "Chart of Tax" -msgstr "Graf daně" +msgstr "Účet daní" #. module: account #: view:account.journal:0 @@ -3788,7 +3807,7 @@ msgstr "" #. module: account #: report:account.vat.declaration:0 msgid "Tax Amount" -msgstr "Částka daně" +msgstr "DPH" #. module: account #: view:account.move:0 @@ -3825,12 +3844,12 @@ msgstr "Jméno daňového případu" #: view:account.invoice:0 #: model:process.node,name:account.process_node_draftinvoices0 msgid "Draft Invoice" -msgstr "Návrh faktury" +msgstr "Koncept faktury" #. module: account #: view:account.config.settings:0 msgid "Options" -msgstr "Možnosti(Options)" +msgstr "Možnosti" #. module: account #: field:account.aged.trial.balance,period_length:0 @@ -3838,7 +3857,7 @@ msgid "Period Length (days)" msgstr "Délka období (dny)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3889,7 +3908,7 @@ msgstr "Částka kódu daně" #. module: account #: view:account.move.line:0 msgid "Unreconciled Journal Items" -msgstr "" +msgstr "Nevyrovnané položky deníku" #. module: account #: selection:account.account.type,close_method:0 @@ -3907,9 +3926,13 @@ msgid "VAT :" msgstr "DPH :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3999,7 +4022,7 @@ msgid "Chart of Accounts Template" msgstr "Šablona Účetní osnovy" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4008,8 +4031,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4044,7 +4069,7 @@ msgstr "Bez filtrů" #: view:account.invoice.report:0 #: model:res.groups,name:account.group_proforma_invoices msgid "Pro-forma Invoices" -msgstr "Pro-forma faktury" +msgstr "Proforma faktury" #. module: account #: view:res.partner:0 @@ -4062,7 +4087,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_check_supplier_invoice_total:0 msgid "Check the total of supplier invoices" -msgstr "" +msgstr "Kontrolovat celkovou částku na přijatých fakturách" #. module: account #: view:account.tax:0 @@ -4127,7 +4152,7 @@ msgstr "" #: report:account.invoice:0 #: field:account.invoice.line,price_unit:0 msgid "Unit Price" -msgstr "Cena za kus" +msgstr "Jednotková cena" #. module: account #: model:ir.actions.act_window,name:account.action_account_tree1 @@ -4167,7 +4192,7 @@ msgid "Name" msgstr "Jméno" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4180,7 +4205,7 @@ msgstr "" #. module: account #: field:account.move.line,date:0 msgid "Effective date" -msgstr "Efektivní datum" +msgstr "Datum účinnosti" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:100 @@ -4238,8 +4263,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4269,7 +4294,7 @@ msgid "Consolidated Children" msgstr "Konsolidovaný potomek" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4325,12 +4350,12 @@ msgstr "Ověřit" #. module: account #: model:account.financial.report,name:account.account_financial_report_assets0 msgid "Assets" -msgstr "Majetky" +msgstr "Majetek" #. module: account #: view:account.config.settings:0 msgid "Accounting & Finance" -msgstr "" +msgstr "Účetnictví a finance" #. module: account #: view:account.invoice.confirm:0 @@ -4369,7 +4394,7 @@ msgstr "Počáteční perioda" #: field:account.tax.template,name:0 #: report:account.vat.declaration:0 msgid "Tax Name" -msgstr "Jméno daně" +msgstr "Název daně" #. module: account #: view:account.config.settings:0 @@ -4472,7 +4497,7 @@ msgid "Cancel the Selected Invoices" msgstr "Zrušit vybrané faktury" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4537,8 +4562,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4601,7 +4626,7 @@ msgid "Account Base Code" msgstr "Základní kód účtu" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4667,7 +4692,7 @@ msgid "Statement from invoice or payment" msgstr "Výpis z faktury nebo platby" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4721,10 +4746,10 @@ msgid "Bank statements are entered in the system." msgstr "Bankovní výpisy jsou zadány do systému." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" -msgstr "" +msgstr "Vyrovnat odpis" #. module: account #: view:account.account.template:0 @@ -4756,7 +4781,7 @@ msgstr "Poznámky Dal" #: view:account.move.line:0 #: model:ir.actions.act_window,name:account.action_account_manual_reconcile msgid "Journal Items to Reconcile" -msgstr "" +msgstr "Položky deníku k vyrovnání" #. module: account #: model:ir.model,name:account.model_account_tax_template @@ -4811,7 +4836,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4826,7 +4851,7 @@ msgid "Based On" msgstr "Založeno na" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -4876,7 +4901,7 @@ msgstr "Zrušeno" #. module: account #: help:account.config.settings,group_proforma_invoices:0 msgid "Allows you to put invoices in pro-forma state." -msgstr "" +msgstr "Umožňuje vám nastavit faktury do stavu proforma." #. module: account #: view:account.journal:0 @@ -4892,7 +4917,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4924,7 +4949,7 @@ msgstr "Potvrzeno" #. module: account #: report:account.invoice:0 msgid "Cancelled Invoice" -msgstr "Zrušené faktury" +msgstr "Stornovaná faktura" #. module: account #: view:account.invoice:0 @@ -4966,7 +4991,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "Různé" @@ -5062,16 +5087,19 @@ msgid "" "account if this is a Customer Invoice or Supplier Refund, otherwise a " "Partner bank account number." msgstr "" +"Číslo bankovního účtu, na nějž bude faktura uhrazena. Bankovní účet " +"společnosti pokud jde o vydanou fakturu nebo přijatý dobropis, jinak " +"bankovní účet partnera." #. module: account #: field:account.partner.reconcile.process,today_reconciled:0 msgid "Partners Reconciled Today" -msgstr "Dnes likvidovaní partneři" +msgstr "Dnes vyrovnaní partneři" #. module: account #: help:account.invoice.tax,tax_code_id:0 msgid "The tax basis of the tax declaration." -msgstr "Daňový základ pro deklaraci daně" +msgstr "Základ pro přizání k dani." #. module: account #: view:account.addtmpl.wizard:0 @@ -5098,7 +5126,7 @@ msgstr "Bankovní výpis použitý pro likvidaci banky" #. module: account #: model:process.transition,note:account.process_transition_suppliercustomerinvoice0 msgid "Draft invoices are validated. " -msgstr "Koncepty faktůr jsou ověřeny. " +msgstr "Koncepty faktur jsou oveřeny. " #. module: account #: help:account.tax,account_collected_id:0 @@ -5121,7 +5149,7 @@ msgstr "" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round Globally" -msgstr "" +msgstr "Zaokrouhlit celek" #. module: account #: view:account.bank.statement:0 @@ -5132,10 +5160,10 @@ msgstr "Spočítat" #. module: account #: field:account.tax,type_tax_use:0 msgid "Tax Application" -msgstr "Daňová aplikace" +msgstr "Daňová žádost" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5170,7 +5198,7 @@ msgstr "Konec období" #. module: account #: model:process.node,note:account.process_node_supplierpaymentorder0 msgid "Payment of invoices" -msgstr "Placení faktůr" +msgstr "Platby za faktury" #. module: account #: sql_constraint:account.invoice:0 @@ -5208,7 +5236,7 @@ msgstr "" #. module: account #: field:account.journal,group_invoice_lines:0 msgid "Group Invoice Lines" -msgstr "Skupinové řádky faktury" +msgstr "Seskupit řádky faktury" #. module: account #: view:account.automatic.reconcile:0 @@ -5309,7 +5337,7 @@ msgid "Target Moves" msgstr "Cílové pohyby" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5390,7 +5418,7 @@ msgid "Internal Name" msgstr "Vnitřní jméno" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5462,7 +5490,7 @@ msgid "Compute Code (if type=code)" msgstr "Vypočítat kód (pokud typ = kód)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5590,7 +5618,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5603,7 +5631,7 @@ msgstr "Zahrnout v základní částce" #. module: account #: field:account.invoice,supplier_invoice_number:0 msgid "Supplier Invoice Number" -msgstr "" +msgstr "Číslo faktury dodavatele" #. module: account #: help:account.payment.term.line,days:0 @@ -5620,7 +5648,7 @@ msgid "Amount Computation" msgstr "Výpočet částky" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5648,7 +5676,7 @@ msgstr "Začátek období" #. module: account #: model:account.account.type,name:account.account_type_asset_view1 msgid "Asset View" -msgstr "" +msgstr "Zobrazení majetku" #. module: account #: model:ir.model,name:account.model_account_common_account_report @@ -5666,7 +5694,7 @@ msgstr "Obecný výkaz účtu" #: selection:account.period,state:0 #: selection:report.invoice.created,state:0 msgid "Open" -msgstr "Otevřít" +msgstr "Otevřeno" #. module: account #: view:account.config.settings:0 @@ -5698,7 +5726,7 @@ msgstr "Daňové kódy" #: selection:account.invoice.report,type:0 #: selection:report.invoice.created,type:0 msgid "Customer Refund" -msgstr "Dobropis vystavený" +msgstr "Vydaný dobropis" #. module: account #: field:account.tax,ref_tax_sign:0 @@ -5721,7 +5749,7 @@ msgstr "Záznamy knihy konce roku" #. module: account #: view:account.invoice:0 msgid "Draft Refund " -msgstr "" +msgstr "Koncept dobropisu " #. module: account #: view:cash.box.in:0 @@ -5777,7 +5805,7 @@ msgstr "Účetní položky." #. module: account #: view:account.invoice:0 msgid "Payment Date" -msgstr "Datum zaplacení" +msgstr "Datum úhrady" #. module: account #: view:account.bank.statement:0 @@ -5808,7 +5836,7 @@ msgstr "Měna množství" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 msgid "Round per Line" -msgstr "" +msgstr "Zaukrouhlit každý řádek" #. module: account #: report:account.analytic.account.balance:0 @@ -5871,7 +5899,7 @@ msgstr "Šablon finanční pozice" #. module: account #: view:account.invoice:0 msgid "Draft Refund" -msgstr "" +msgstr "Koncept dobropisu" #. module: account #: view:account.analytic.chart:0 @@ -5893,7 +5921,7 @@ msgstr "S měnou" #. module: account #: view:account.bank.statement:0 msgid "Open CashBox" -msgstr "Otevřít CashBox" +msgstr "Otevřít pokladnu" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -5903,7 +5931,7 @@ msgstr "" #. module: account #: view:account.move.line.reconcile:0 msgid "Reconcile With Write-Off" -msgstr "" +msgstr "Vyrovnání s odpisem" #. module: account #: constraint:account.move.line:0 @@ -5917,7 +5945,7 @@ msgid "Fixed Amount" msgstr "Pevná částka" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5968,14 +5996,14 @@ msgid "Child Accounts" msgstr "Dětské účty" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Odpis" @@ -6001,7 +6029,7 @@ msgstr "Příjem" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Dodavatel" @@ -6021,7 +6049,7 @@ msgid "Account n°" msgstr "Účet n°" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -6031,7 +6059,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Účty závazků a pohledávek" @@ -6061,7 +6091,7 @@ msgstr "Max. množ.:" #: view:account.invoice:0 #: model:ir.actions.act_window,name:account.action_account_invoice_refund msgid "Refund Invoice" -msgstr "Úhradová faktura" +msgstr "Dobropis" #. module: account #: model:ir.actions.act_window,help:account.action_account_entries_report_all @@ -6138,7 +6168,7 @@ msgid "Filter by" msgstr "Filtrovat podle" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "Máte nesprávný výraz \"%(...)s\" ve vašem modelu !" @@ -6162,7 +6192,7 @@ msgstr "" #: field:account.tax,account_collected_id:0 #: field:account.tax.template,account_collected_id:0 msgid "Invoice Tax Account" -msgstr "Účet daní faktůr" +msgstr "Daňový účet faktur" #. module: account #: model:ir.actions.act_window,name:account.action_account_general_journal @@ -6186,7 +6216,7 @@ msgid "Number of Days" msgstr "Počet dní" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6225,7 +6255,7 @@ msgstr "Žádný" #: model:ir.actions.act_window,name:account.action_invoice_tree3 #: model:ir.ui.menu,name:account.menu_action_invoice_tree3 msgid "Customer Refunds" -msgstr "Úhrada zákazníkovi" +msgstr "Dobropisy vydané" #. module: account #: field:account.account,foreign_balance:0 @@ -6332,12 +6362,14 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " "unreconcile related payment entries first." msgstr "" +"Nemůžete zrušit fakturu, které je částečně uhrazena. Musíte nejdříve zrušit " +"vyrovnání souvisejících plateb." #. module: account #: field:product.template,taxes_id:0 @@ -6352,7 +6384,7 @@ msgstr "Toto je model pro opakující se účetní položky" #. module: account #: field:wizard.multi.charts.accounts,sale_tax_rate:0 msgid "Sales Tax(%)" -msgstr "Prodejní daň(%)" +msgstr "DPH (%)" #. module: account #: view:account.tax.code:0 @@ -6372,6 +6404,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klikněte pro zaznamenání dobropisu, který jste dostali od " +"dodavatele.\n" +"

\n" +" Místo vytváření dobropisu ručně jej můžete vytvořit a " +"vyrovnat\n" +" přímo z příslušné přijaté faktury.\n" +"

\n" +" " #. module: account #: field:account.tax,type:0 @@ -6418,7 +6459,7 @@ msgstr "" #. module: account #: view:account.config.settings:0 msgid "Bank & Cash" -msgstr "" +msgstr "Banka a hotovost" #. module: account #: help:account.fiscalyear.close.state,fy_id:0 @@ -6504,7 +6545,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6512,7 +6553,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Other Info" -msgstr "Jiné info" +msgstr "Další informace" #. module: account #: field:account.journal,default_credit_account_id:0 @@ -6525,7 +6566,7 @@ msgid "The related account currency if not equal to the company one." msgstr "Vztažená měna účtu, pokud neodpovídá té společnosti." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6552,7 +6593,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6565,7 +6606,7 @@ msgstr "Procenta" #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 msgid "Round globally" -msgstr "" +msgstr "Zaokrouhlit celek" #. module: account #: selection:account.report.general.ledger,sortby:0 @@ -6578,7 +6619,7 @@ msgid "Power" msgstr "Síla" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6652,12 +6693,12 @@ msgstr "" "daňových potomků. V tomto případě je vyhodnocení pořadí důležité." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6689,7 +6730,7 @@ msgstr "Analytické položky deníku" #. module: account #: field:account.config.settings,has_default_company:0 msgid "Has default company" -msgstr "" +msgstr "Má výchozí společnost" #. module: account #: view:account.fiscalyear.close:0 @@ -6735,9 +6776,11 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" -msgstr "Dobropis dodavatele" +msgstr "Přijatý dobropis" #. module: account #: field:account.bank.statement,move_line_ids:0 @@ -6785,7 +6828,7 @@ msgstr "" #: field:account.invoice.line,uos_id:0 #: field:account.move.line,product_uom_id:0 msgid "Unit of Measure" -msgstr "Jednotky měření" +msgstr "Měrná jednotka" #. module: account #: help:account.journal,group_invoice_lines:0 @@ -6793,8 +6836,8 @@ msgid "" "If this box is checked, the system will try to group the accounting lines " "when generating them from invoices." msgstr "" -"Pokud je políčko zaškrtnuto, systém se pokusí seskupit účetní řádky, když je " -"generuje z faktůr." +"Pokud je pole zaškrtnuto, systém se pokusí seskupit účetní řádky když je " +"generuje z faktur." #. module: account #: field:account.installer,has_default_company:0 @@ -6834,7 +6877,7 @@ msgstr "" #: report:account.invoice:0 #: field:account.invoice.tax,base:0 msgid "Base" -msgstr "Základní" +msgstr "Základ" #. module: account #: field:account.model,name:0 @@ -6862,6 +6905,8 @@ msgid "" "If you unreconcile transactions, you must also verify all the actions that " "are linked to those transactions because they will not be disabled" msgstr "" +"Pokud zrušíte vyrovnání transakcí, musíte se přesvědčit, že na tyto " +"transakce odkazují všechny akce protože ty nebudou vypnuty" #. module: account #: view:account.account.template:0 @@ -6880,7 +6925,7 @@ msgstr "Statistika analytických účtů" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Položky: " @@ -6922,7 +6967,7 @@ msgstr "Celkový dluh" #. module: account #: view:account.move.line:0 msgid "Next Partner Entries to reconcile" -msgstr "Další zápisy partnera k likvidaci" +msgstr "Další položky partnera k vyrovnání" #. module: account #: report:account.invoice:0 @@ -6993,7 +7038,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Chyba !" @@ -7033,7 +7078,7 @@ msgstr "Ruční" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Cancel: create refund and reconcile" -msgstr "" +msgstr "Zrušit: vytvořit dobropis a vyrovnat" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 @@ -7124,7 +7169,7 @@ msgstr "Všechny položky" #. module: account #: constraint:account.move.reconcile:0 msgid "You can only reconcile journal items with the same partner." -msgstr "" +msgstr "Můžete vyrovnat pouze položky deníku u stejného partnera." #. module: account #: view:account.journal.select:0 @@ -7204,7 +7249,7 @@ msgstr "Daňový rozvrh účtu" #: report:account.journal.period.print.sale.purchase:0 #: report:account.partner.balance:0 msgid "Total:" -msgstr "Celkem:" +msgstr "Celkem k úhradě:" #. module: account #: constraint:account.journal:0 @@ -7214,7 +7259,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7235,12 +7280,12 @@ msgstr "" #. module: account #: field:account.config.settings,module_account_voucher:0 msgid "Manage customer payments" -msgstr "" +msgstr "Spravovat platby zákazníků" #. module: account #: help:report.invoice.created,origin:0 msgid "Reference of the document that generated this invoice report." -msgstr "Odkaz na dokumenty, které generovaly tento výkaz faktury." +msgstr "Značka dokumentu, který vytvořil tento výkaz faktury." #. module: account #: field:account.tax.code,child_ids:0 @@ -7264,7 +7309,7 @@ msgstr "Daně použité při prodeji" #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 msgid "Customer Invoices" -msgstr "Faktury zákazníků" +msgstr "Faktury vydané" #. module: account #: view:account.tax:0 @@ -7285,7 +7330,7 @@ msgid "Done" msgstr "Dokončeno" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7342,7 +7387,7 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Taxes:" -msgstr "Daně:" +msgstr "DPH:" #. module: account #: code:addons/account/account_invoice.py:458 @@ -7402,7 +7447,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "" +msgstr "Značka zákazníka" #. module: account #: field:account.account.template,parent_id:0 @@ -7449,7 +7494,7 @@ msgstr "Pro procenta zadejte násobek mezi 0-1." #: field:account.invoice,date_invoice:0 #: field:report.invoice.created,date_invoice:0 msgid "Invoice Date" -msgstr "Datum faktury" +msgstr "Datum vystavení" #. module: account #: view:account.invoice.report:0 @@ -7512,7 +7557,7 @@ msgstr "Řádek bankovního výpisu" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax:0 msgid "Default Purchase Tax" -msgstr "Výchozí nákupní daň" +msgstr "Výchozí DPH na vstupu" #. module: account #: field:account.chart.template,property_account_income_opening:0 @@ -7522,7 +7567,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_proforma_invoices:0 msgid "Allow pro-forma invoices" -msgstr "" +msgstr "Umožnit proforma faktury" #. module: account #: view:account.bank.statement:0 @@ -7541,7 +7586,7 @@ msgstr "" #: field:account.invoice,reference:0 #: field:account.invoice.line,invoice_id:0 msgid "Invoice Reference" -msgstr "Reference faktury" +msgstr "Značka faktury" #. module: account #: field:account.fiscalyear.close,report_name:0 @@ -7570,7 +7615,7 @@ msgstr "Vykazování" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7590,7 +7635,7 @@ msgstr "Účetní deník" #. module: account #: field:account.config.settings,tax_calculation_rounding_method:0 msgid "Tax calculation rounding method" -msgstr "" +msgstr "Způsob zaokrouhlování při výpočtu DPH" #. module: account #: model:process.node,name:account.process_node_paidinvoice0 @@ -7616,8 +7661,8 @@ msgid "" "it have been reconciled." msgstr "" "Pole ukazuje dalšího partnera, který bude automaticky vybrán systémem pro " -"průchod procesem likvidace, založeném na posledních dnech, kdy byl " -"likvidován." +"průchod procesem vyrovnání, založeném na posledních dnech, kdy byl " +"vyrovnáván." #. module: account #: field:account.move.line.reconcile.writeoff,comment:0 @@ -7636,7 +7681,7 @@ msgid "Use model" msgstr "Použít model" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7687,7 +7732,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7696,7 +7741,7 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 msgid "PRO-FORMA" -msgstr "PRO-FORMA" +msgstr "PROFORMA" #. module: account #: selection:account.entries.report,move_line_state:0 @@ -7754,7 +7799,7 @@ msgid "Maturity Date" msgstr "Datum splatnosti" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Deník tržeb" @@ -7762,10 +7807,10 @@ msgstr "Deník tržeb" #. module: account #: model:ir.model,name:account.model_account_invoice_tax msgid "Invoice Tax" -msgstr "Daň faktury" +msgstr "DPH faktury" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Žádné číslo kusu !" @@ -7804,7 +7849,7 @@ msgid "Sales Properties" msgstr "Vlastnosti obchodu" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7829,7 +7874,7 @@ msgstr "Do" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Úprava měny" @@ -7861,7 +7906,7 @@ msgid "May" msgstr "Květen" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7903,7 +7948,7 @@ msgstr "Zaúčtovat položky deníku" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Zákazník" @@ -7919,7 +7964,7 @@ msgstr "Jméno výkazu" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Hotovost" @@ -7936,6 +7981,8 @@ msgid "" "Refund base on this type. You can not Modify and Cancel if the invoice is " "already reconciled" msgstr "" +"Dobropis založený na tomto druhu: Nemůžete provést akci Upravit nebo Zrušit " +"pokud byla faktura již vyrovnána" #. module: account #: field:account.bank.statement.line,sequence:0 @@ -7953,7 +8000,7 @@ msgstr "Posloupnost" #. module: account #: field:account.config.settings,paypal_account:0 msgid "Paypal account" -msgstr "" +msgstr "Účet PayPal" #. module: account #: selection:account.print.journal,sort_selection:0 @@ -7997,7 +8044,7 @@ msgstr "Měsíčně" #. module: account #: model:account.account.type,name:account.data_account_type_asset msgid "Asset" -msgstr "Aktiva" +msgstr "Majetek" #. module: account #: field:account.bank.statement,balance_end:0 @@ -8086,6 +8133,7 @@ msgstr "Pevné" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Varování !" @@ -8099,7 +8147,7 @@ msgstr "" #. module: account #: field:res.company,tax_calculation_rounding_method:0 msgid "Tax Calculation Rounding Method" -msgstr "" +msgstr "Způsob zaokrouhlování při výpočtu DPH" #. module: account #: field:account.entries.report,move_line_state:0 @@ -8109,7 +8157,7 @@ msgstr "Stav poybového řádku" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile msgid "Account move line reconcile" -msgstr "Likvidace řádky pohybu účtu" +msgstr "Vyrovnání řádku pohybu účtu" #. module: account #: view:account.subscription.generate:0 @@ -8120,7 +8168,7 @@ msgstr "Vypočítat předpaltné" #. module: account #: view:account.move.line.unreconcile.select:0 msgid "Open for Unreconciliation" -msgstr "Otevřít pro zrušení likvidace" +msgstr "Otevřít pro zrušení vyrovnání" #. module: account #: field:account.bank.statement.line,partner_id:0 @@ -8153,7 +8201,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Vyberte měnu pro použití na faktuře" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Žádné řádky faktury !" @@ -8176,7 +8224,7 @@ msgid "Tax Use In" msgstr "Daň v použití" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8186,7 +8234,7 @@ msgstr "" "Zůstatek útrat (%.2f) je jiný než vypočtený. (%.2f)" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Poliožky řádků účtu nejsou v platném stavu." @@ -8230,7 +8278,7 @@ msgid "Associated Partner" msgstr "Přidruženého partnera" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Musíte nejdříve vybrat partnera !" @@ -8309,13 +8357,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Deník nákupních dobropisů" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8383,7 +8431,7 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Net Total:" -msgstr "Čistého celkem:" +msgstr "Cena celkem:" #. module: account #: code:addons/account/wizard/account_report_common.py:158 @@ -8394,7 +8442,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_sequence_next:0 msgid "Next invoice number" -msgstr "" +msgstr "Následující číslo faktury" #. module: account #: model:ir.ui.menu,name:account.menu_finance_generic_reporting @@ -8430,7 +8478,7 @@ msgstr "Vnitř.typ" #. module: account #: field:account.move.line,tax_amount:0 msgid "Tax/Base Amount" -msgstr "Daňová/základní částka" +msgstr "Daň/základ daně" #. module: account #: view:account.open.closed.fiscalyear:0 @@ -8501,7 +8549,7 @@ msgstr "" #: field:account.move.line,reconcile_partial_id:0 #: view:account.move.line.reconcile:0 msgid "Partial Reconcile" -msgstr "Částečná likvidace" +msgstr "Částečné vyrovnání" #. module: account #: model:ir.model,name:account.model_account_analytic_inverted_balance @@ -8543,7 +8591,7 @@ msgstr "" #. module: account #: view:account.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Použít" #. module: account #: field:account.financial.report,account_type_ids:0 @@ -8558,7 +8606,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8661,7 +8709,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8679,7 +8727,7 @@ msgid "Payment Term Line" msgstr "Řádek platebního období" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Deník nákupů" @@ -8687,7 +8735,7 @@ msgstr "Deník nákupů" #. module: account #: field:account.invoice,amount_untaxed:0 msgid "Subtotal" -msgstr "Mezivýsledek" +msgstr "Mezisoučet" #. module: account #: view:account.vat.declaration:0 @@ -8706,7 +8754,7 @@ msgstr "" #: field:account.invoice.report,date_due:0 #: field:report.invoice.created,date_due:0 msgid "Due Date" -msgstr "Do data" +msgstr "Splatnost" #. module: account #: model:ir.ui.menu,name:account.menu_account_supplier @@ -8850,7 +8898,7 @@ msgid "Journal Name" msgstr "Název deníku" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Položka \"%s\" není platná !" @@ -8900,7 +8948,7 @@ msgstr "" "Částka vyjádřena ve volitelné jiné měně, pokud je položka více-měnová." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8958,10 +9006,10 @@ msgstr "Učetní ověří účetní položky přicházející z faktury" #: view:account.entries.report:0 #: model:ir.actions.act_window,name:account.act_account_acount_move_line_reconcile_open msgid "Reconciled entries" -msgstr "Položky vyrovnání" +msgstr "Vyrovnané položky" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "Nesprávný model !" @@ -8983,7 +9031,7 @@ msgid "Print Account Partner Balance" msgstr "Vytisknout zůstatek účtu partnera" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9017,7 +9065,7 @@ msgstr "neznámé" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Počáteční položky deníku" @@ -9112,7 +9160,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Kniha dobropisů prodeje" @@ -9136,7 +9184,7 @@ msgstr "" #. module: account #: model:process.node,note:account.process_node_bankstatement0 msgid "Registered payment" -msgstr "Registrované platby" +msgstr "Zaznamenané platby" #. module: account #: view:account.fiscalyear.close.state:0 @@ -9175,16 +9223,16 @@ msgstr "" #. module: account #: field:wizard.multi.charts.accounts,purchase_tax_rate:0 msgid "Purchase Tax(%)" -msgstr "Daň nákupu(%)" +msgstr "DPH na vstupu (%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Prosíme vytvořete nějaké řádky faktury." #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9197,7 +9245,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "SCNJ" @@ -9295,7 +9343,7 @@ msgstr "Společnosti, které odkazují na partnera" #. module: account #: view:account.invoice:0 msgid "Ask Refund" -msgstr "" +msgstr "Vyžádat si dobropis" #. module: account #: view:account.move.line:0 @@ -9331,7 +9379,7 @@ msgstr "" #: code:addons/account/wizard/account_state_open.py:37 #, python-format msgid "Invoice is already reconciled." -msgstr "" +msgstr "Faktura je již vyrovnána." #. module: account #: help:account.config.settings,module_account_payment:0 @@ -9356,11 +9404,11 @@ msgid "Receivable Account" msgstr "Účet pohledávek" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." -msgstr "" +msgstr "Pro vyrovnání musí být společnost u všech položek stejná." #. module: account #: field:account.account,balance:0 @@ -9458,7 +9506,7 @@ msgid "Move" msgstr "Pohyb" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9508,7 +9556,7 @@ msgstr "Vytváří účet s vybranou šablonou pod tímto existujícím rodičem #. module: account #: report:account.invoice:0 msgid "Source" -msgstr "" +msgstr "Zdroj" #. module: account #: selection:account.model.line,date_maturity:0 @@ -9546,7 +9594,7 @@ msgstr "Běžný výkaz" #: field:account.config.settings,default_sale_tax:0 #: field:account.config.settings,sale_tax:0 msgid "Default sale tax" -msgstr "" +msgstr "Výchozí DPH" #. module: account #: report:account.overdue:0 @@ -9554,7 +9602,7 @@ msgid "Balance :" msgstr "Zůstatek :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9567,7 +9615,7 @@ msgstr "" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Invoices" -msgstr "Faktury zákazníků a dodavatelů" +msgstr "Faktury přijaté a vydané" #. module: account #: model:process.node,note:account.process_node_paymententries0 @@ -9636,16 +9684,16 @@ msgstr "" #. module: account #: field:account.move.line,date_maturity:0 msgid "Due date" -msgstr "Do data" +msgstr "Splatnost" #. module: account #: 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 "Okamžitá platba" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9718,7 +9766,7 @@ msgstr "" #: view:account.invoice.report:0 #: model:process.node,name:account.process_node_supplierdraftinvoices0 msgid "Draft Invoices" -msgstr "Návrhy faktůr" +msgstr "Koncepty faktur" #. module: account #: view:cash.box.in:0 @@ -9734,7 +9782,7 @@ msgid "Unreconciled" msgstr "Nevyrovnaný" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Špatný součet !" @@ -9819,7 +9867,7 @@ msgid "Comparison" msgstr "Porovnání" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9908,7 +9956,7 @@ msgid "Journal Entry Model" msgstr "Model položek deníku" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -9932,7 +9980,7 @@ msgstr "Obecný" #: field:account.invoice.report,price_total:0 #: field:account.invoice.report,user_currency_price_total:0 msgid "Total Without Tax" -msgstr "Celkem bez daně" +msgstr "Celkem bez DPH" #. module: account #: selection:account.aged.trial.balance,filter:0 @@ -10017,7 +10065,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_invoice_tree2 #: model:ir.ui.menu,name:account.menu_action_invoice_tree2 msgid "Supplier Invoices" -msgstr "Faktury dodavatele" +msgstr "Faktury přijaté" #. module: account #: view:account.analytic.line:0 @@ -10198,7 +10246,7 @@ msgstr "" #. module: account #: field:account.tax,account_analytic_paid_id:0 msgid "Refund Tax Analytic Account" -msgstr "" +msgstr "Analytický účet daní dobropisů" #. module: account #: view:account.move.bank.reconcile:0 @@ -10207,6 +10255,7 @@ msgstr "Otevřeno pro bankovní vyrovnání" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10222,7 +10271,9 @@ msgstr "Otevřeno pro bankovní vyrovnání" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10231,6 +10282,7 @@ msgstr "Otevřeno pro bankovní vyrovnání" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10322,7 +10374,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10391,8 +10443,10 @@ msgstr "Finanční pozice účtu" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Faktura dodavatele" @@ -10439,7 +10493,7 @@ msgstr "Volitelné množství u položek." #. module: account #: field:account.automatic.reconcile,reconciled:0 msgid "Reconciled transactions" -msgstr "Vyrovnávací transakce" +msgstr "Vyrovnané transakce" #. module: account #: model:ir.model,name:account.model_report_account_receivable @@ -10478,8 +10532,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "S pohyby" @@ -10512,7 +10568,7 @@ msgstr "Prosinec" #. module: account #: view:account.invoice.report:0 msgid "Group by month of Invoice Date" -msgstr "Skupina podle měsíce data faktury" +msgstr "Seskupit podle měsíce data vystavení faktury" #. module: account #: code:addons/account/account_analytic_line.py:99 @@ -10574,7 +10630,7 @@ msgid "Entries Sorted by" msgstr "Položky řazené dle" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10655,6 +10711,8 @@ msgstr "Hlead fakturu" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Dobropis" @@ -10725,7 +10783,7 @@ msgid "Manual Invoice Taxes" msgstr "Ruční daně faktury" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" @@ -10877,7 +10935,7 @@ msgstr "" #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 msgid "Round per line" -msgstr "" +msgstr "Zaukrouhlit každý řádek" #. module: account #: help:account.move.line,amount_residual_currency:0 @@ -11041,9 +11099,6 @@ msgstr "" #~ msgid "Print Journal" #~ msgstr "Tisk věstníku" -#~ msgid "Cancel Invoice" -#~ msgstr "Zrušit účet" - #~ msgid "Entries by Statements" #~ msgstr "Příspěvky výroky" @@ -12700,3 +12755,6 @@ msgstr "" #~ msgid "Error ! You can not create recursive categories." #~ msgstr "Chyba ! Nemůžete vytvořit rekurzivní kategorie." + +#~ msgid "Cancel Invoice" +#~ msgstr "Zrušit fakturu" diff --git a/addons/account/i18n/da.po b/addons/account/i18n/da.po index 3f07c836673..f6b42acc6b7 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-16 05:13+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:05+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "Resterende" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "Importér fra faktura eller betaling" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "Advarsel!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -332,7 +332,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -653,7 +653,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -664,13 +664,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -723,7 +723,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -761,7 +763,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -830,7 +832,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -853,7 +855,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -925,7 +927,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1009,7 +1011,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1080,10 +1082,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1207,7 +1209,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1512,15 +1514,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1743,8 +1747,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1819,7 +1825,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1971,36 +1977,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2014,8 +2020,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2057,7 +2063,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2129,7 +2135,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2229,7 +2235,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2534,7 +2542,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2555,7 +2563,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2579,7 +2587,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2687,7 +2695,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2804,21 +2812,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3006,7 +3013,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3019,7 +3026,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3035,8 +3042,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3195,7 +3202,7 @@ msgid "Fiscal Position" msgstr "Nuværende position" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3294,7 +3301,7 @@ msgstr "" "altid altuelle sats for dagen." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3357,8 +3364,8 @@ msgid "View" msgstr "Vis" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3614,7 +3621,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3629,7 +3636,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3681,7 +3688,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3829,7 +3836,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3898,9 +3905,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3989,7 +4000,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3998,8 +4009,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4152,7 +4165,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4223,8 +4236,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4254,7 +4267,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4456,7 +4469,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4521,8 +4534,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4585,7 +4598,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4651,7 +4664,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4705,7 +4718,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4795,7 +4808,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4810,7 +4823,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4876,7 +4889,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4950,7 +4963,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5119,7 +5132,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5291,7 +5304,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5372,7 +5385,7 @@ msgid "Internal Name" msgstr "Internt navn" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5444,7 +5457,7 @@ msgid "Compute Code (if type=code)" msgstr "Beregn kode (når type = kode)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5572,7 +5585,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5600,7 +5613,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5895,7 +5908,7 @@ msgid "Fixed Amount" msgstr "Fast beløb" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5946,14 +5959,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5979,7 +5992,7 @@ msgstr "Indtægt" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Leverandør" @@ -5999,7 +6012,7 @@ msgid "Account n°" msgstr "Konto no." #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Fri Reference" @@ -6009,7 +6022,9 @@ msgstr "Fri Reference" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6113,7 +6128,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6161,7 +6176,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6307,7 +6322,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6479,7 +6494,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6500,7 +6515,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6527,7 +6542,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6553,7 +6568,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6624,12 +6639,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6707,7 +6722,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6850,7 +6867,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6959,7 +6976,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7180,7 +7197,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7251,7 +7268,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7536,7 +7553,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7599,7 +7616,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7650,7 +7667,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7717,7 +7734,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7728,7 +7745,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7767,7 +7784,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7792,7 +7809,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7824,7 +7841,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7865,7 +7882,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7881,7 +7898,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8048,6 +8065,7 @@ msgstr "Fast" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Advarsel !" @@ -8115,7 +8133,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8138,7 +8156,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8146,7 +8164,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8190,7 +8208,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Du må først vælge en partner" @@ -8271,13 +8289,13 @@ msgstr "" "af de følgende afgifter" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8520,7 +8538,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8621,7 +8639,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8639,7 +8657,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8808,7 +8826,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8856,7 +8874,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8917,7 +8935,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8939,7 +8957,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8973,7 +8991,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9068,7 +9086,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9134,13 +9152,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9153,7 +9171,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9312,8 +9330,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9414,7 +9432,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9508,7 +9526,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9599,7 +9617,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9688,7 +9706,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9773,7 +9791,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9860,7 +9878,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10159,6 +10177,7 @@ msgstr "Åben bank afstemning" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10174,7 +10193,9 @@ msgstr "Åben bank afstemning" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10183,6 +10204,7 @@ msgstr "Åben bank afstemning" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10274,7 +10296,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10343,8 +10365,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10430,8 +10454,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10526,7 +10552,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10607,6 +10633,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10677,7 +10705,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/de.po b/addons/account/i18n/de.po index 3a66f35a4ab..4fa9de4d649 100644 --- a/addons/account/i18n/de.po +++ b/addons/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-16 05:14+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:06+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -60,7 +60,7 @@ msgid "Residual" msgstr "Verbleibend" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "Buchung \"%s\" ist ungültig" @@ -76,9 +76,9 @@ msgid "Import from invoice or payment" msgstr "Importiere Rechnungen oder Zahlungen" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "Falsches Konto!" @@ -134,15 +134,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -154,7 +154,7 @@ msgid "Warning!" msgstr "Achtung!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "\"verschiedenes\" Journal" @@ -376,7 +376,7 @@ msgid "Allow multi currencies" msgstr "Multiwährungsfunktion aktivieren" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "Sie müssen ein Kostenstellen Journal vom Typ '%s' definieren!" @@ -717,7 +717,7 @@ msgid "Profit Account" msgstr "Erlöskonto" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "Keine oder meherere Perioden für dieses Datum gefunden." @@ -728,13 +728,13 @@ msgid "Report of the Sales by Account Type" msgstr "Auswertung Verkauf nach Kontentyp" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "VK" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "Es kann nicht gebucht werden in anderer Währung als .." @@ -793,7 +793,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Debitorenkonten" @@ -833,7 +835,7 @@ msgid "Are you sure you want to create entries?" msgstr "Möchten Sie diese Buchungen erzeugen?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "Rechnungsteilzahlung: %s%s über %s%s (%s%s Restbetrag)." @@ -905,7 +907,7 @@ msgid "Type" msgstr "Typ" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -930,7 +932,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Lieferantenrechnungen und -gutschriften" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "Der Posten wurde bereits ausgeglichen." @@ -1009,7 +1011,7 @@ msgstr "" " " #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1095,7 +1097,7 @@ msgid "Liability" msgstr "Verbindlichkeit" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1171,10 +1173,10 @@ msgid "Features" msgstr "Funktionen" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1328,7 +1330,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Bank" @@ -1642,15 +1644,17 @@ msgid "%s (copy)" msgstr "%s (Kopie)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Mit Saldo ungleich 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1893,8 +1897,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Rechnung" @@ -1979,7 +1985,7 @@ msgstr "" "Entwurf bei manuellen Buchungen\" deaktiviert sein." #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "Einige Positionen wurden bereits ausgeglichen." @@ -2142,36 +2148,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2185,8 +2191,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Fehler!" @@ -2239,7 +2245,7 @@ msgid "period close" msgstr "beende Periode" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2329,7 +2335,7 @@ msgid "Analytic account" msgstr "Kostenstelle" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2436,7 +2442,9 @@ msgstr "Anlagenbuchhaltung" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Kreditorenkonten" @@ -2756,7 +2764,7 @@ msgid "Create an Account Based on this Template" msgstr "Erstelle ein Konto auf Basis der Vorlage" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2782,7 +2790,7 @@ msgid "Main Sequence" msgstr "Haupt Sequenz" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2808,7 +2816,7 @@ msgid "Fiscal Positions" msgstr "Steuerzuordnung" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "Sie können das abgeschlossene Konto %s %s nicht mehr buchen." @@ -2917,7 +2925,7 @@ msgid "Account Model Entries" msgstr "Buchungsvorlage" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "EK" @@ -3047,21 +3055,20 @@ msgid "Accounts" msgstr "Finanzkonten" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Konfigurationsfehler!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "Der Bankauszug %s wurde bestätigt und gebucht." @@ -3274,7 +3281,7 @@ msgstr "" "Forma' validiert werden." #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3289,7 +3296,7 @@ msgid "Sales by Account" msgstr "Verkäufe nach Konten" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "Sie können die gebuchte Position \"%s\" nicht einfach löschen." @@ -3305,8 +3312,8 @@ msgid "Sale journal" msgstr "Verkauf Journal" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3478,7 +3485,7 @@ msgid "Fiscal Position" msgstr "Steuerzuordnung" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3578,7 +3585,7 @@ msgstr "" "jedenfalls den Tageskurs." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "Es existiert kein Stammkonto für diese Kontovorlage" @@ -3643,8 +3650,8 @@ msgid "View" msgstr "Ansicht" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -4000,7 +4007,7 @@ msgstr "" "selbst. Dieses ermöglicht dann dieselbe Belegnummern wie beim Auszug selbst." #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -4018,7 +4025,7 @@ msgid "Starting Balance" msgstr "Anfangssaldo" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Kein Partner festgelegt!" @@ -4078,7 +4085,7 @@ msgstr "" "Konto einsehen und begleichen." #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4257,7 +4264,7 @@ msgid "Period Length (days)" msgstr "Periodendauer (Tage)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -4332,9 +4339,13 @@ msgid "VAT :" msgstr "USt-IdNr." #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4426,7 +4437,7 @@ msgid "Chart of Accounts Template" msgstr "Vorlage Kontenplan" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4438,8 +4449,10 @@ msgstr "" "Bitte ordnen Sie dem Partner eine Zahlungsbedingung zu." #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4603,7 +4616,7 @@ msgid "Name" msgstr "Bezeichnung" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "Kein nicht konfiguriertes Unternehmen!" @@ -4680,8 +4693,8 @@ msgstr "" "Rechnung angezeigt werden soll." #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "Es sollte kein inaktives Konto benutzt werden." @@ -4711,7 +4724,7 @@ msgid "Consolidated Children" msgstr "Konsolidierte Konten" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4931,7 +4944,7 @@ msgid "Cancel the Selected Invoices" msgstr "Storniere die ausgewählten Rechnungen" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -5018,8 +5031,8 @@ msgid "Supplier invoice sequence" msgstr "Eingangsrechnungen Nummernfolge" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -5084,7 +5097,7 @@ msgid "Account Base Code" msgstr "Bemessungsgrundlage" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -5156,7 +5169,7 @@ msgid "Statement from invoice or payment" msgstr "Import von Rechnung oder Zahlungsvorschlag" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -5212,7 +5225,7 @@ msgid "Bank statements are entered in the system." msgstr "Bankauszüge werden erfasst" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Storniere Abschreibung" @@ -5309,7 +5322,7 @@ msgstr "" "Unternehmen gehört." #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -5328,7 +5341,7 @@ msgid "Based On" msgstr "Basierend auf" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "GSE" @@ -5396,7 +5409,7 @@ msgstr "" "vom Standard abweicht." #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "Vorsteuer %.2f%%" @@ -5472,7 +5485,7 @@ msgstr "" "dadurch der Status." #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "DIV" @@ -5647,7 +5660,7 @@ msgid "Tax Application" msgstr "Steuer Anwendung" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5827,7 +5840,7 @@ msgid "Target Moves" msgstr "Filter Buchungen" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5913,7 +5926,7 @@ msgid "Internal Name" msgstr "Interne Bezeichnung" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5988,7 +6001,7 @@ msgid "Compute Code (if type=code)" msgstr "Berechne Quellcode (if type=code)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -6129,7 +6142,7 @@ msgid "Recompute taxes and total" msgstr "Steuern und Gesamtbeträge neu berechnen" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -6164,7 +6177,7 @@ msgid "Amount Computation" msgstr "Betragsberechnung" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -6474,7 +6487,7 @@ msgid "Fixed Amount" msgstr "Fester Betrag" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6527,14 +6540,14 @@ msgid "Child Accounts" msgstr "untergeordnete Konten" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Buchung Bezeichnung (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Abschreibung" @@ -6560,7 +6573,7 @@ msgstr "Erlöse" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Lieferant" @@ -6580,7 +6593,7 @@ msgid "Account n°" msgstr "Kontonummer" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Freie Referenz" @@ -6590,7 +6603,9 @@ msgstr "Freie Referenz" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Debitoren und Kreditoren" @@ -6716,7 +6731,7 @@ msgid "Filter by" msgstr "Filter durch" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "Sie haben einen falschen Ausdruck \"%(...)s\" in Ihrem Modell!" @@ -6769,7 +6784,7 @@ msgid "Number of Days" msgstr "Anzahl Tage" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6920,7 +6935,7 @@ msgid "Models" msgstr "Modelle" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -7108,7 +7123,7 @@ msgid "You cannot create journal items on closed account." msgstr "Sie können keine bereits abgeschlossene Konten buchen." #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -7131,7 +7146,7 @@ msgid "The related account currency if not equal to the company one." msgstr "Diese Währung entspricht nicht der Unternehmenswährung." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "Benutzerdefiniert" @@ -7158,7 +7173,7 @@ msgid "Internal Transfers Account" msgstr "Durchlaufende Posten" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "Bitte prüfen Sie, ob im Bankauszug das Journal eingetragen wurde" @@ -7184,7 +7199,7 @@ msgid "Power" msgstr "Maximum Ausgleichspositionen" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "Kann keinen nicht verwendeten Journal Code erzeugen." @@ -7269,12 +7284,12 @@ msgstr "" "vorliegen." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -7362,7 +7377,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Lieferantengutschrift" @@ -7512,7 +7529,7 @@ msgstr "Statistik Kostenstellen Buchungen" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Buchungen: " @@ -7628,7 +7645,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Fehler!" @@ -7864,7 +7881,7 @@ msgstr "" "zugelassen werden." #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7946,7 +7963,7 @@ msgid "Done" msgstr "Erledigt" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -8256,7 +8273,7 @@ msgstr "Berichtswesen" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -8326,7 +8343,7 @@ msgid "Use model" msgstr "Benutze Buchungsvorlage" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -8399,7 +8416,7 @@ msgid "Root/View" msgstr "Stamm/Sicht" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "EB" @@ -8469,7 +8486,7 @@ msgid "Maturity Date" msgstr "Fälligkeitsdatum" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Verkauf Journal" @@ -8480,7 +8497,7 @@ msgid "Invoice Tax" msgstr "Umsatzsteuer" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Keine Stückzahl!" @@ -8526,7 +8543,7 @@ msgid "Sales Properties" msgstr "Verkaufseinstellungen" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -8553,7 +8570,7 @@ msgstr "Bis" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Währungsanpassung" @@ -8587,7 +8604,7 @@ msgid "May" msgstr "Mai" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -8630,7 +8647,7 @@ msgstr "Quittiere Buchungen" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Kunde" @@ -8646,7 +8663,7 @@ msgstr "Berichtsbezeichnung" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Barkasse" @@ -8822,6 +8839,7 @@ msgstr "Fix" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Warnung!" @@ -8889,7 +8907,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Wähle eine Währung für diese Rechnung" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Keine Rechnungspositionen!" @@ -8914,7 +8932,7 @@ msgid "Tax Use In" msgstr "Steuer verwendet in" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8924,7 +8942,7 @@ msgstr "" "Der erwartete Saldo (%.2f) weicht vom errechneten ab. (%.2f)" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Die Buchungspositionen sind nicht im Stadium \"Bestätigt\" (Valid)" @@ -8968,7 +8986,7 @@ msgid "Associated Partner" msgstr "Zugehöriger Partner" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Sie müssen zuerst einen Partner wählen!" @@ -9049,13 +9067,13 @@ msgstr "" "sein muss" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Journal zu Gutschriften aus Eingangsrechnungen" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "Bitte definieren Sie eine Nummernfolge für das Journal." @@ -9315,7 +9333,7 @@ msgstr "" "${object.company_id.name} Rechnungsnummer ( ${object.number or 'n/a'})" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -9437,7 +9455,7 @@ msgid "The partner account used for this invoice." msgstr "Partner Finanzkonto dieser Rechnung." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Steuer %.2f%%" @@ -9455,7 +9473,7 @@ msgid "Payment Term Line" msgstr "Zahlungsbedingungen" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Journal Einkauf" @@ -9643,7 +9661,7 @@ msgid "Journal Name" msgstr "Journal Bezeichnung" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Buchung \"%s\" ist ungültig !" @@ -9697,7 +9715,7 @@ msgstr "" "handelt" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -9762,7 +9780,7 @@ msgid "Reconciled entries" msgstr "Auszugleichende Buchungen" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "Falsches Modell!" @@ -9784,7 +9802,7 @@ msgid "Print Account Partner Balance" msgstr "Drucke Partner-Saldenliste" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9824,7 +9842,7 @@ msgstr "unbekannt" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Start Buchungsjournal" @@ -9924,7 +9942,7 @@ msgid "Unit of Currency" msgstr "Währungseinheit" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Gutschriften Journal" @@ -9994,13 +10012,13 @@ msgid "Purchase Tax(%)" msgstr "Steuer Einkauf (%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Bitte erstellen Sie Rechnungspositionen" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -10015,7 +10033,7 @@ msgid "Display Detail" msgstr "Zeige Detail" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "GSV" @@ -10193,8 +10211,8 @@ msgid "Receivable Account" msgstr "Debitorenkonto" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -10298,7 +10316,7 @@ msgid "Move" msgstr "Buchung" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -10404,7 +10422,7 @@ msgid "Balance :" msgstr "Saldo:" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -10496,7 +10514,7 @@ msgid "Immediate Payment" msgstr "Sofortige Zahlung" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr " Zusammenfassung" @@ -10593,7 +10611,7 @@ msgid "Unreconciled" msgstr "Offene Posten" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Falsche Summe!" @@ -10689,7 +10707,7 @@ msgid "Comparison" msgstr "Vergleich" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10791,7 +10809,7 @@ msgid "Journal Entry Model" msgstr "Wiederkehrende Buchungen Journal" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "Start Periode die auf die Ende Periode folgen soll." @@ -11094,6 +11112,7 @@ msgstr "Öffne Buchen Bankauszug" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -11109,7 +11128,9 @@ msgstr "Öffne Buchen Bankauszug" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -11118,6 +11139,7 @@ msgstr "Öffne Buchen Bankauszug" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -11216,7 +11238,7 @@ msgstr "" "Transaktionen prüfen, weil diese nicht nicht automatisch deaktiviert sind." #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "Eine Änderung der Steuer ist nicht möglich" @@ -11291,8 +11313,10 @@ msgstr "Konten des Haushaltsberichts" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Eingangsrechnungen" @@ -11384,8 +11408,10 @@ msgstr "" "geschlossen für nicht mehr verwendete" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Konten mit Buchungen" @@ -11483,7 +11509,7 @@ msgid "Entries Sorted by" msgstr "Buchungen sortiert nach" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -11590,6 +11616,8 @@ msgstr "Suche Rechnungen" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Gutschrift" @@ -11665,7 +11693,7 @@ msgid "Manual Invoice Taxes" msgstr "Manuelle Berechnung Steuer" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/el.po b/addons/account/i18n/el.po index c309fb16724..868a0fdef1d 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-16 05:14+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:06+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -60,7 +60,7 @@ msgid "Residual" msgstr "Υπόλοιπο" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "Το αντικείμενο \"%s\" στο ημερολόγιο δεν είναι έγκυρο." @@ -76,9 +76,9 @@ msgid "Import from invoice or payment" msgstr "Εισαγωγή από τιμολόγιο ή πληρωμή" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -132,15 +132,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -152,7 +152,7 @@ msgid "Warning!" msgstr "Προειδοποίηση" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Ημερολόγιο διαφόρων συμβάντων" @@ -342,7 +342,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -663,7 +663,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -674,13 +674,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "SAJ" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -733,7 +733,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Λογαριασμοί Εισπρακτέοι" @@ -771,7 +773,7 @@ msgid "Are you sure you want to create entries?" msgstr "Είστε σίγουροι ότι θέλετε να δημιουργήσετε εγγραφές;" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -840,7 +842,7 @@ msgid "Type" msgstr "Τύπος" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -863,7 +865,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -937,7 +939,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1021,7 +1023,7 @@ msgid "Liability" msgstr "Παθητικό" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1092,10 +1094,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1219,7 +1221,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Τράπεζα" @@ -1524,15 +1526,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: 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" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1755,8 +1759,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Παραστατικό" @@ -1831,7 +1837,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1983,36 +1989,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2026,8 +2032,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2069,7 +2075,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2141,7 +2147,7 @@ msgid "Analytic account" msgstr "Αναλυτικός Λογαριασμός" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Παρακαλώ ελέγξτε αν έχει οριστεί λογαριασμός στο ημερολόγιο." @@ -2241,7 +2247,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Λογαριασμοί Πληρωτέοι" @@ -2546,7 +2554,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2567,7 +2575,7 @@ msgid "Main Sequence" msgstr "Κύρια Ιεράρχηση" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2591,7 +2599,7 @@ msgid "Fiscal Positions" msgstr "Φορολογικές Θέσεις" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2699,7 +2707,7 @@ msgid "Account Model Entries" msgstr "Εγγραφές Μοντέλου Λογαριασμού" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "EXJ" @@ -2816,21 +2824,20 @@ msgid "Accounts" msgstr "Λογαριασμοί" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3018,7 +3025,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3031,7 +3038,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3047,8 +3054,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3208,7 +3215,7 @@ msgid "Fiscal Position" msgstr "Φορολογική Θέση" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3307,7 +3314,7 @@ msgstr "" "ισοτιμίες." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3370,8 +3377,8 @@ msgid "View" msgstr "Όψη" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3627,7 +3634,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3642,7 +3649,7 @@ msgid "Starting Balance" msgstr "Ισοζύγιο Έναρξης" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Δεν ορίστηκε Συνεργάτης!" @@ -3694,7 +3701,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3842,7 +3849,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3911,9 +3918,13 @@ msgid "VAT :" msgstr "ΦΠΑ :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4004,7 +4015,7 @@ msgid "Chart of Accounts Template" msgstr "Πρότυπα Λογιστικών Σχεδίων" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4013,8 +4024,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4171,7 +4184,7 @@ msgid "Name" msgstr "Όνομα" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4242,8 +4255,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4273,7 +4286,7 @@ msgid "Consolidated Children" msgstr "Ενοποιημένες Υποκατηγορίες" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4476,7 +4489,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4541,8 +4554,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4605,7 +4618,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4671,7 +4684,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4725,7 +4738,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4815,7 +4828,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4830,7 +4843,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4896,7 +4909,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4970,7 +4983,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5141,7 +5154,7 @@ msgid "Tax Application" msgstr "Εφαρμογή Φόρου" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5313,7 +5326,7 @@ msgid "Target Moves" msgstr "Επιλεγμένες Κινήσεις" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5394,7 +5407,7 @@ msgid "Internal Name" msgstr "Εσωτερικό Όνομα" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5466,7 +5479,7 @@ msgid "Compute Code (if type=code)" msgstr "Υπολογισμός Κώδικα (αν τύπος=κώδικας)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5594,7 +5607,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5625,7 +5638,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5920,7 +5933,7 @@ msgid "Fixed Amount" msgstr "Σταθερό Ποσό" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5971,14 +5984,14 @@ msgid "Child Accounts" msgstr "Ελαχιστοβάθμιοι Λογαριασμοί" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Παραγραφή" @@ -6004,7 +6017,7 @@ msgstr "Έσοδα" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Προμηθευτής" @@ -6024,7 +6037,7 @@ msgid "Account n°" msgstr "Αρ. Λογαριασμού" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Ελεύθερη Παραπομπή" @@ -6034,7 +6047,9 @@ msgstr "Ελεύθερη Παραπομπή" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Εισπρακτέοι και Πληρωτέοι Λογαριασμοί" @@ -6138,7 +6153,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6186,7 +6201,7 @@ msgid "Number of Days" msgstr "Αριθμός Ημερών" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6332,7 +6347,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6504,7 +6519,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6525,7 +6540,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6552,7 +6567,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6578,7 +6593,7 @@ msgid "Power" msgstr "Δύναμη" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6652,12 +6667,12 @@ msgstr "" "έχετε φόρους που περιέχεουν άλλους φόρους σαν υποκατηγορίες." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6735,7 +6750,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Επιστροφή Χρημάτων από Προμηθευτή" @@ -6880,7 +6897,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Εγγραφές: " @@ -6991,7 +7008,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Σφάλμα !" @@ -7212,7 +7229,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7283,7 +7300,7 @@ msgid "Done" msgstr "Ολοκληρώθηκε" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7574,7 +7591,7 @@ msgstr "Αναφορές" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7637,7 +7654,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7688,7 +7705,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7755,7 +7772,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Ημερολόγιο Πωλήσεων" @@ -7766,7 +7783,7 @@ msgid "Invoice Tax" msgstr "Φόρος Τιμολογίου" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "No piece number !" @@ -7805,7 +7822,7 @@ msgid "Sales Properties" msgstr "Χαρακτηριστικά Πωλήσεων" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7830,7 +7847,7 @@ msgstr "Σε" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7862,7 +7879,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7903,7 +7920,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Πελάτης" @@ -7919,7 +7936,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Μετρητά" @@ -8089,6 +8106,7 @@ msgstr "Σταθερό" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Προσοχή!" @@ -8156,7 +8174,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8179,7 +8197,7 @@ msgid "Tax Use In" msgstr "Χρησιμοποίηση Φόρου στο" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8187,7 +8205,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8232,7 +8250,7 @@ msgid "Associated Partner" msgstr "Συσχετιζόμενος Συνεργάτης" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Θα πρέπει πρώτα να επιλέξετε συνεργάτη!" @@ -8313,13 +8331,13 @@ msgstr "" "πριν υπολογιστούν οι επόμενοι φόροι." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8562,7 +8580,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8663,7 +8681,7 @@ msgid "The partner account used for this invoice." msgstr "Ο λογαριασμός συνεργάτη που χρησιμοποιήθηκε στο τιμολόγιο αυτό." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8681,7 +8699,7 @@ msgid "Payment Term Line" msgstr "Γραμμή Όρων Πληρωμής" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Ημερολόγιο Αγορών" @@ -8851,7 +8869,7 @@ msgid "Journal Name" msgstr "Όνομα Ημερολογίου" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Η εγγραφή \"%s\" δεν είναι έγκυρη!" @@ -8903,7 +8921,7 @@ msgstr "" "για εγγαρφή πολλαπλών νομισμάτων." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8964,7 +8982,7 @@ msgid "Reconciled entries" msgstr "Συμφωνημένες εγγραφές" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8986,7 +9004,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9020,7 +9038,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Ημερολόγιο Εγγραφών Ανοίγματος" @@ -9117,7 +9135,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9183,13 +9201,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9202,7 +9220,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9361,8 +9379,8 @@ msgid "Receivable Account" msgstr "Εισπρακτέος Λογαριασμός" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9463,7 +9481,7 @@ msgid "Move" msgstr "Μετακίνηση" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9559,7 +9577,7 @@ msgid "Balance :" msgstr "Υπόλοιπο:" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9650,7 +9668,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9739,7 +9757,7 @@ msgid "Unreconciled" msgstr "Μη συμφωνημένα" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Λάθος Σύνολο!" @@ -9824,7 +9842,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9913,7 +9931,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10212,6 +10230,7 @@ msgstr "Ανοιχτό για συμφωνία τράπεζας" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10227,7 +10246,9 @@ msgstr "Ανοιχτό για συμφωνία τράπεζας" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10236,6 +10257,7 @@ msgstr "Ανοιχτό για συμφωνία τράπεζας" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10327,7 +10349,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10396,8 +10418,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Τιμολόγιο Προμηθευτή" @@ -10483,8 +10507,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Με κινήσεις" @@ -10580,7 +10606,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10662,6 +10688,8 @@ msgstr "Αναζήτηση Τιμολογίου" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Επιστροφή" @@ -10732,7 +10760,7 @@ msgid "Manual Invoice Taxes" msgstr "Μη Αυτόματοι Φόροι Τιμολόγησης" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/en_GB.po b/addons/account/i18n/en_GB.po index ef3df04f0bb..61836ed5c2c 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-16 05:20+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:12+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -61,7 +61,7 @@ msgid "Residual" msgstr "Residual" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "Journal item \"%s\" is not valid." @@ -77,9 +77,9 @@ msgid "Import from invoice or payment" msgstr "Import from invoice or payment" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "Bad Account!" @@ -135,15 +135,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -155,7 +155,7 @@ msgid "Warning!" msgstr "Warning!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Miscellaneous Journal" @@ -375,7 +375,7 @@ msgid "Allow multi currencies" msgstr "Allow multi currencies" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "You must define an analytic journal of type '%s'!" @@ -712,7 +712,7 @@ msgid "Profit Account" msgstr "Profit Account" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "No period found or more than one period found for the given date." @@ -723,13 +723,13 @@ msgid "Report of the Sales by Account Type" msgstr "Report of the Sales by Account Type" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "SAJ" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "Cannot create move with currency different from .." @@ -788,7 +788,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Accounts Receivable" @@ -828,7 +830,7 @@ msgid "Are you sure you want to create entries?" msgstr "Are you sure you want to create entries?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "Invoice partially paid: %s%s of %s%s (%s%s remaining)." @@ -899,7 +901,7 @@ msgid "Type" msgstr "Type" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -924,7 +926,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Supplier Invoices And Refunds" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "Entry is already reconciled." @@ -1003,7 +1005,7 @@ msgstr "" " " #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1090,7 +1092,7 @@ msgid "Liability" msgstr "Liability" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "Please define sequence on the journal related to this invoice." @@ -1164,10 +1166,10 @@ msgid "Features" msgstr "Features" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1321,7 +1323,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Bank" @@ -1633,15 +1635,17 @@ msgid "%s (copy)" msgstr "%s (copy)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "With balance is not equal to 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1883,8 +1887,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Invoice" @@ -1969,7 +1975,7 @@ msgstr "" "state option checked." #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "Some entries are already reconciled." @@ -2131,36 +2137,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2174,8 +2180,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Error!" @@ -2226,7 +2232,7 @@ msgid "period close" msgstr "period close" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2313,7 +2319,7 @@ msgid "Analytic account" msgstr "Analytic account" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Please verify that an account is defined in the journal." @@ -2417,7 +2423,9 @@ msgstr "Assets management" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Payable Accounts" @@ -2736,7 +2744,7 @@ msgid "Create an Account Based on this Template" msgstr "Create an Account Based on this Template" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2761,7 +2769,7 @@ msgid "Main Sequence" msgstr "Main Sequence" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2787,7 +2795,7 @@ msgid "Fiscal Positions" msgstr "Fiscal Positions" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "You cannot create journal items on a closed account %s %s." @@ -2895,7 +2903,7 @@ msgid "Account Model Entries" msgstr "Account Model Entries" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "EXJ" @@ -3026,21 +3034,20 @@ msgid "Accounts" msgstr "Accounts" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Configuration Error!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "Statement %s confirmed, journal items were created." @@ -3250,7 +3257,7 @@ msgstr "" "Forma' state." #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "You should choose the periods that belong to the same company." @@ -3263,7 +3270,7 @@ msgid "Sales by Account" msgstr "Sales by Account" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "You cannot delete a posted journal entry \"%s\"." @@ -3279,8 +3286,8 @@ msgid "Sale journal" msgstr "Sale journal" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3449,7 +3456,7 @@ msgid "Fiscal Position" msgstr "Fiscal Position" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3549,7 +3556,7 @@ msgstr "" "always use the rate at date." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "There is no parent code for the template account." @@ -3613,8 +3620,8 @@ msgid "View" msgstr "View" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3964,7 +3971,7 @@ msgstr "" "have the same references than the statement itself" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3982,7 +3989,7 @@ msgid "Starting Balance" msgstr "Starting Balance" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "No Partner Defined !" @@ -4042,7 +4049,7 @@ msgstr "" "the OpenERP portal." #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4217,7 +4224,7 @@ msgid "Period Length (days)" msgstr "Period Length (days)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -4290,9 +4297,13 @@ msgid "VAT :" msgstr "VAT :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4382,7 +4393,7 @@ msgid "Chart of Accounts Template" msgstr "Chart of Accounts Template" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4394,8 +4405,10 @@ msgstr "" "Please define partner on it!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4556,7 +4569,7 @@ msgid "Name" msgstr "Name" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "No unconfigured company !" @@ -4631,8 +4644,8 @@ msgstr "" "on invoices." #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "You cannot use an inactive account." @@ -4662,7 +4675,7 @@ msgid "Consolidated Children" msgstr "Consolidated Children" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4879,7 +4892,7 @@ msgid "Cancel the Selected Invoices" msgstr "Cancel the Selected Invoices" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "You have to assign an analytic journal on the '%s' journal!" @@ -4961,8 +4974,8 @@ msgid "Supplier invoice sequence" msgstr "Supplier invoice sequence" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -5027,7 +5040,7 @@ msgid "Account Base Code" msgstr "Account Base Code" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -5094,7 +5107,7 @@ msgid "Statement from invoice or payment" msgstr "Statement from invoice or payment" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -5150,7 +5163,7 @@ msgid "Bank statements are entered in the system." msgstr "Bank statements are entered in the system." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Reconcile Writeoff" @@ -5246,7 +5259,7 @@ msgstr "" "You cannot create an account which has parent account of different company." #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -5265,7 +5278,7 @@ msgid "Based On" msgstr "Based On" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -5333,7 +5346,7 @@ msgstr "" "company currency." #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "Purchase Tax %.2f%%" @@ -5410,7 +5423,7 @@ msgstr "" "comes in 'Done' status." #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "MISC" @@ -5584,7 +5597,7 @@ msgid "Tax Application" msgstr "Tax Application" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5764,7 +5777,7 @@ msgid "Target Moves" msgstr "Target Moves" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5849,7 +5862,7 @@ msgid "Internal Name" msgstr "Internal Name" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5924,7 +5937,7 @@ msgid "Compute Code (if type=code)" msgstr "Compute Code (if type=code)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -6064,7 +6077,7 @@ msgid "Recompute taxes and total" msgstr "Recompute taxes and total" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "You cannot modify/delete a journal with entries for this period." @@ -6094,7 +6107,7 @@ msgid "Amount Computation" msgstr "Amount Computation" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "You can not add/modify entries in a closed period %s of journal %s." @@ -6399,7 +6412,7 @@ msgid "Fixed Amount" msgstr "Fixed Amount" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "You cannot change the tax, you should remove and recreate lines." @@ -6450,14 +6463,14 @@ msgid "Child Accounts" msgstr "Child Accounts" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Move name (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Write-Off" @@ -6483,7 +6496,7 @@ msgstr "Income" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Supplier" @@ -6503,7 +6516,7 @@ msgid "Account n°" msgstr "Account n°" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Free Reference" @@ -6513,7 +6526,9 @@ msgstr "Free Reference" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Receivable and Payable Accounts" @@ -6635,7 +6650,7 @@ msgid "Filter by" msgstr "Filter by" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "You have a wrong expression \"%(...)s\" in your model !" @@ -6689,7 +6704,7 @@ msgid "Number of Days" msgstr "Number of Days" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6841,7 +6856,7 @@ msgid "Models" msgstr "Models" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -7028,7 +7043,7 @@ msgid "You cannot create journal items on closed account." msgstr "You cannot create journal items on closed account." #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "Invoice line account's company and invoice's company does not match." @@ -7049,7 +7064,7 @@ msgid "The related account currency if not equal to the company one." msgstr "The related account currency if not equal to the company one." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "Custom" @@ -7076,7 +7091,7 @@ msgid "Internal Transfers Account" msgstr "Internal Transfers Account" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "Please check that the field 'Journal' is set on the Bank Statement" @@ -7102,7 +7117,7 @@ msgid "Power" msgstr "Power" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "Cannot generate an unused journal code." @@ -7185,12 +7200,12 @@ msgstr "" "children. In this case, the evaluation order is important." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -7277,7 +7292,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Supplier Refund" @@ -7428,7 +7445,7 @@ msgstr "Analytic Entries Statistics" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Entries: " @@ -7543,7 +7560,7 @@ msgstr "You cannot remove an account that contains journal items." #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Error !" @@ -7777,7 +7794,7 @@ msgstr "" "The currency chosen should be shared by the default accounts too." #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7858,7 +7875,7 @@ msgid "Done" msgstr "Done" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -8162,7 +8179,7 @@ msgstr "Reporting" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -8233,7 +8250,7 @@ msgid "Use model" msgstr "Use model" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -8302,7 +8319,7 @@ msgid "Root/View" msgstr "Root/View" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "OPEJ" @@ -8371,7 +8388,7 @@ msgid "Maturity Date" msgstr "Maturity Date" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Sales Journal" @@ -8382,7 +8399,7 @@ msgid "Invoice Tax" msgstr "Invoice Tax" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "No piece number !" @@ -8428,7 +8445,7 @@ msgid "Sales Properties" msgstr "Sales Properties" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -8455,7 +8472,7 @@ msgstr "To" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Currency Adjustment" @@ -8488,7 +8505,7 @@ msgid "May" msgstr "May" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "Global taxes defined, but they are not in invoice lines !" @@ -8531,7 +8548,7 @@ msgstr "Post Journal Entries" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Customer" @@ -8547,7 +8564,7 @@ msgstr "Report Name" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Cash" @@ -8721,6 +8738,7 @@ msgstr "Fixed" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Warning !" @@ -8788,7 +8806,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Select a currency to apply on the invoice" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "No Invoice Lines !" @@ -8813,7 +8831,7 @@ msgid "Tax Use In" msgstr "Tax Use In" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8823,7 +8841,7 @@ msgstr "" "The expected balance (%.2f) is different than the computed one. (%.2f)" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "The account entries lines are not in valid state." @@ -8869,7 +8887,7 @@ msgid "Associated Partner" msgstr "Associated Partner" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "You must first select a partner !" @@ -8950,13 +8968,13 @@ msgstr "" "computing the next taxes." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Purchase Refund Journal" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "Please define a sequence on the journal." @@ -9214,7 +9232,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -9338,7 +9356,7 @@ msgid "The partner account used for this invoice." msgstr "The partner account used for this invoice." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Tax %.2f%%" @@ -9356,7 +9374,7 @@ msgid "Payment Term Line" msgstr "Payment Term Line" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Purchase Journal" @@ -9542,7 +9560,7 @@ msgid "Journal Name" msgstr "Journal Name" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Entry \"%s\" is not valid !" @@ -9596,7 +9614,7 @@ msgstr "" "entry." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "The account move (%s) for centralisation has been confirmed." @@ -9661,7 +9679,7 @@ msgid "Reconciled entries" msgstr "Reconciled entries" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "Wrong model !" @@ -9683,7 +9701,7 @@ msgid "Print Account Partner Balance" msgstr "Print Account Partner Balance" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9725,7 +9743,7 @@ msgstr "unknown" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Opening Entries Journal" @@ -9825,7 +9843,7 @@ msgid "Unit of Currency" msgstr "Unit of Currency" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Sales Refund Journal" @@ -9896,13 +9914,13 @@ msgid "Purchase Tax(%)" msgstr "Purchase Tax(%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Please create some invoice lines." #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9917,7 +9935,7 @@ msgid "Display Detail" msgstr "Display Detail" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "SCNJ" @@ -10094,8 +10112,8 @@ msgid "Receivable Account" msgstr "Receivable Account" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "To reconcile the entries company should be the same for all entries." @@ -10196,7 +10214,7 @@ msgid "Move" msgstr "Move" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -10300,7 +10318,7 @@ msgid "Balance :" msgstr "Balance :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "Cannot create moves for different companies." @@ -10391,7 +10409,7 @@ msgid "Immediate Payment" msgstr "Immediate Payment" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr " Centralisation" @@ -10487,7 +10505,7 @@ msgid "Unreconciled" msgstr "Unreconciled" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Bad total !" @@ -10581,7 +10599,7 @@ msgid "Comparison" msgstr "Comparison" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10678,7 +10696,7 @@ msgid "Journal Entry Model" msgstr "Journal Entry Model" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "Start period should precede then end period." @@ -10980,6 +10998,7 @@ msgstr "Open for Bank Reconciliation" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10995,7 +11014,9 @@ msgstr "Open for Bank Reconciliation" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -11004,6 +11025,7 @@ msgstr "Open for Bank Reconciliation" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -11101,7 +11123,7 @@ msgstr "" "are linked to those transactions because they will not be disable" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "Unable to change tax!" @@ -11173,8 +11195,10 @@ msgstr "Accounts Fiscal Position" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Supplier Invoice" @@ -11265,8 +11289,10 @@ msgstr "" "computations), closed for depreciated accounts." #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "With movements" @@ -11363,7 +11389,7 @@ msgid "Entries Sorted by" msgstr "Entries Sorted by" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -11470,6 +11496,8 @@ msgstr "Search Invoice" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Refund" @@ -11543,7 +11571,7 @@ msgid "Manual Invoice Taxes" msgstr "Manual Invoice Taxes" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "The payment term of supplier does not have a payment term line." diff --git a/addons/account/i18n/en_US.po b/addons/account/i18n/en_US.po index 79fca3338ef..08f9bd3d8f9 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-16 05:19+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:11+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8049,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/es.po b/addons/account/i18n/es.po index 4c17573d1e1..336ee4c07aa 100644 --- a/addons/account/i18n/es.po +++ b/addons/account/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-16 05:18+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:10+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -60,7 +60,7 @@ msgid "Residual" msgstr "Pendiente" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "El asiento \"%s\" no es válido" @@ -76,9 +76,9 @@ msgid "Import from invoice or payment" msgstr "Importar desde factura o pago" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "Cuenta erronea." @@ -134,15 +134,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -154,7 +154,7 @@ msgid "Warning!" msgstr "¡Aviso!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Diario varios" @@ -374,7 +374,7 @@ msgid "Allow multi currencies" msgstr "Permitir multi divisa" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "Usted debe definir un diario analítico de tipo '%s'!" @@ -713,7 +713,7 @@ msgid "Profit Account" msgstr "Cuenta de ganancias" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -725,13 +725,13 @@ msgid "Report of the Sales by Account Type" msgstr "Informe de las ventas por tipo de cuenta" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "VEN" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "No se puede crear un movimiento con divisa distinta de .." @@ -790,7 +790,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Cuentas a cobrar" @@ -830,7 +832,7 @@ msgid "Are you sure you want to create entries?" msgstr "¿Está seguro que desea crear los asientos?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "Factura parcialmente pagada: %s %s de %s %s (%s %s restante)." @@ -901,7 +903,7 @@ msgid "Type" msgstr "Tipo" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -926,7 +928,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Facturas y abonos de proveedor" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "El apunte ya está conciliado" @@ -1003,7 +1005,7 @@ msgstr "" " " #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1089,7 +1091,7 @@ msgid "Liability" msgstr "Pasivo" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1164,10 +1166,10 @@ msgid "Features" msgstr "Características" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1316,7 +1318,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Banco" @@ -1627,15 +1629,17 @@ msgid "%s (copy)" msgstr "%s (copiar)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Con balance si no es igual a 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1872,8 +1876,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Factura" @@ -1959,7 +1965,7 @@ msgstr "" "estado borrador" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "Algunos apuntes ya han sido conciliados" @@ -2122,36 +2128,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2165,8 +2171,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "¡Error!" @@ -2216,7 +2222,7 @@ msgid "period close" msgstr "cierre periodo" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2301,7 +2307,7 @@ msgid "Analytic account" msgstr "Cuenta analítica" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Compruebe que se ha definido una cuenta en el diario." @@ -2404,7 +2410,9 @@ msgstr "Gestión de activos" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Cuentas a pagar" @@ -2724,7 +2732,7 @@ msgid "Create an Account Based on this Template" msgstr "Crear una cuenta basada en esta plantilla" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2750,7 +2758,7 @@ msgid "Main Sequence" msgstr "Secuencia principal" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2776,7 +2784,7 @@ msgid "Fiscal Positions" msgstr "Posiciones fiscales" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "No puede crear asientos contables en una cuenta cerrada %s %s" @@ -2886,7 +2894,7 @@ msgid "Account Model Entries" msgstr "Contabilidad. Líneas de modelo" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "COMPRA" @@ -3015,21 +3023,20 @@ msgid "Accounts" msgstr "Cuentas" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "¡Error de configuración!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "Extracto %s confirmado, los asientos han sido creados." @@ -3237,7 +3244,7 @@ msgstr "" "'Borrador' o 'Pro-forma'" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "Debería escoger los periodos que pertenezcan a la misma compañía" @@ -3250,7 +3257,7 @@ msgid "Sales by Account" msgstr "Ventas por cuenta" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "No pude borrar un asiento asentado \"%s\"." @@ -3266,8 +3273,8 @@ msgid "Sale journal" msgstr "Diario de venta" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3439,7 +3446,7 @@ msgid "Fiscal Position" msgstr "Posición fiscal" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3538,7 +3545,7 @@ msgstr "" "transacciones de entrada siempre utilizan la tasa \"En fecha\"." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "No hay código padre para la plantilla de cuentas" @@ -3603,11 +3610,11 @@ msgid "View" msgstr "Vista" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" -msgstr "BANCO" +msgstr "BAN" #. module: account #: field:account.move.line,analytic_lines:0 @@ -3955,7 +3962,7 @@ msgstr "" "mismas referencias que el extracto en sí" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3973,7 +3980,7 @@ msgid "Starting Balance" msgstr "Saldo inicial" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "¡No se ha definido empresa!" @@ -4033,7 +4040,7 @@ msgstr "" "automáticos o a través del portal OpenERP ." #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4203,7 +4210,7 @@ msgid "Period Length (days)" msgstr "Longitud del periodo (días)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -4278,9 +4285,13 @@ msgid "VAT :" msgstr "CIF/NIF:" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4357,7 +4368,7 @@ msgstr "Fecha" #. module: account #: view:account.move:0 msgid "Post" -msgstr "Enviar" +msgstr "Asentado" #. module: account #: view:account.unreconcile:0 @@ -4371,7 +4382,7 @@ msgid "Chart of Accounts Template" msgstr "Plantilla del plan contable" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4383,8 +4394,10 @@ msgstr "" "¡Por favor, defina la empresa en él!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4546,7 +4559,7 @@ msgid "Name" msgstr "Nombre" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "¡No hay compañías sin configurar!" @@ -4621,8 +4634,8 @@ msgstr "" "código de impuesto aparezca en las facturas." #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "No puede usar una cuenta inactiva." @@ -4652,7 +4665,7 @@ msgid "Consolidated Children" msgstr "Hijos consolidados" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4866,7 +4879,7 @@ msgid "Cancel the Selected Invoices" msgstr "Cancelar las facturas seleccionadas" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "¡Debes asignar un diario analítico en el último '%s' diario!" @@ -4948,8 +4961,8 @@ msgid "Supplier invoice sequence" msgstr "Secuencia de factura de proveedor" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -5014,7 +5027,7 @@ msgid "Account Base Code" msgstr "Código base cuenta" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -5080,7 +5093,7 @@ msgid "Statement from invoice or payment" msgstr "Extracto desde factura o pago" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -5136,7 +5149,7 @@ msgid "Bank statements are entered in the system." msgstr "Han sido introducidos los extractos bancarios en el sistema." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Desfase conciliación" @@ -5232,7 +5245,7 @@ msgstr "" "No puede crear una cuenta cuya cuenta padre es de otra compañía." #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -5250,7 +5263,7 @@ msgid "Based On" msgstr "Basado en" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ACOMPRA" @@ -5318,7 +5331,7 @@ msgstr "" "de la compañía." #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "Impuesto de compra %2f%%" @@ -5395,7 +5408,7 @@ msgstr "" "hecho, cambia a 'Realizado'." #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "Varios" @@ -5569,7 +5582,7 @@ msgid "Tax Application" msgstr "Aplicación impuesto" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5750,7 +5763,7 @@ msgid "Target Moves" msgstr "Movimientos destino" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5837,7 +5850,7 @@ msgid "Internal Name" msgstr "Nombre interno" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5912,7 +5925,7 @@ msgid "Compute Code (if type=code)" msgstr "Código para calcular (si tipo=código)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -6053,7 +6066,7 @@ msgid "Recompute taxes and total" msgstr "Recalcular total e impuestos" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -6084,7 +6097,7 @@ msgid "Amount Computation" msgstr "Calculo importe" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -6390,7 +6403,7 @@ msgid "Fixed Amount" msgstr "Importe fijo" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "No puede cambiar el impuesto. Debería eliminar y recrear las líneas." @@ -6441,14 +6454,14 @@ msgid "Child Accounts" msgstr "Cuentas hijas" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Nombre del movimiento (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Desajuste" @@ -6474,7 +6487,7 @@ msgstr "Ingreso" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Proveedor" @@ -6494,7 +6507,7 @@ msgid "Account n°" msgstr "Cuenta n°" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Referencia libre / Nº Fact. Proveedor" @@ -6504,7 +6517,9 @@ msgstr "Referencia libre / Nº Fact. Proveedor" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Cuentas a cobrar y a pagar" @@ -6623,7 +6638,7 @@ msgid "Filter by" msgstr "Filtrar por" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "¡Tiene una expressión errónea \"%(...)s\" en su modelo!" @@ -6677,7 +6692,7 @@ msgid "Number of Days" msgstr "Número de días" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6829,7 +6844,7 @@ msgid "Models" msgstr "Modelos" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -7016,7 +7031,7 @@ msgid "You cannot create journal items on closed account." msgstr "No puede crear asiento en una cuenta cerrada." #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -7039,7 +7054,7 @@ msgid "The related account currency if not equal to the company one." msgstr "La moneda contable relacionada si no es igual a la de la compañía." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "Personalizado" @@ -7066,7 +7081,7 @@ msgid "Internal Transfers Account" msgstr "Cuentas de transferencias internas" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -7094,7 +7109,7 @@ msgid "Power" msgstr "Fuerza" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "No puede generar un código de diario que no ha sido usado" @@ -7178,12 +7193,12 @@ msgstr "" "varios impuesto hijos. En este caso, el orden de evaluación es importante." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -7271,7 +7286,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Factura rectificativa de proveedor" @@ -7422,7 +7439,7 @@ msgstr "Estadísticas asientos analíticos" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Asientos: " @@ -7536,7 +7553,7 @@ msgstr "No puede eliminar una cuenta que contiene asientos." #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "¡Error!" @@ -7771,7 +7788,7 @@ msgstr "" "defecto." #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7851,7 +7868,7 @@ msgid "Done" msgstr "Realizado" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -8157,7 +8174,7 @@ msgstr "Informe" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -8226,7 +8243,7 @@ msgid "Use model" msgstr "Usar modelo" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -8290,7 +8307,7 @@ msgid "Root/View" msgstr "Raiz/vista" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "OPEJ" @@ -8359,7 +8376,7 @@ msgid "Maturity Date" msgstr "Fecha vencimiento" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Diario de ventas" @@ -8370,7 +8387,7 @@ msgid "Invoice Tax" msgstr "Impuesto de factura" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "¡Ningún trozo de número!" @@ -8416,7 +8433,7 @@ msgid "Sales Properties" msgstr "Propiedades de venta" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -8443,7 +8460,7 @@ msgstr "Hasta" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Ajustes de moneda" @@ -8477,7 +8494,7 @@ msgid "May" msgstr "Mayo" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -8521,7 +8538,7 @@ msgstr "Asentar asientos" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Cliente" @@ -8537,7 +8554,7 @@ msgstr "Nombre del informe" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Efectivo" @@ -8711,6 +8728,7 @@ msgstr "Fijo" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "¡Atención!" @@ -8778,7 +8796,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Seleccione una moneda a aplicar en la factura." #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "¡No hay líneas de factura!" @@ -8803,7 +8821,7 @@ msgid "Tax Use In" msgstr "Impuesto usado en" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8813,7 +8831,7 @@ msgstr "" "El balance esperado (%.2f) es diferente al calculado. (%.2f)" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Las líneas de los asientos contables no están en estado válido." @@ -8860,7 +8878,7 @@ msgid "Associated Partner" msgstr "Empresa asociada" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "¡Primero debe seleccionar una empresa!" @@ -8941,13 +8959,13 @@ msgstr "" "de calcular los siguientes impuestos." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Diario de abono de compras" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "Defina por favor una secuencia en el diario." @@ -9203,7 +9221,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "${object.company_id.name} Factura (Ref. ${object.number or 'n/a'})" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -9324,7 +9342,7 @@ msgid "The partner account used for this invoice." msgstr "La cuenta de la empresa utilizada para esta factura." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Impuestox %.2f%%" @@ -9342,7 +9360,7 @@ msgid "Payment Term Line" msgstr "Línea de plazo de pago" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Diario de compras" @@ -9526,7 +9544,7 @@ msgid "Journal Name" msgstr "Nombre del diario" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "¡El asiento \"%s\" no es válido!" @@ -9580,7 +9598,7 @@ msgstr "" "multi-divisa." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "El apunte contable (%s) para centralización ha sido confirmado." @@ -9647,7 +9665,7 @@ msgid "Reconciled entries" msgstr "Asientos conciliados" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "¡Modelo erroneo!" @@ -9669,7 +9687,7 @@ msgid "Print Account Partner Balance" msgstr "Imprimir balance contable de empresa" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9710,7 +9728,7 @@ msgstr "desconocido" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Diario asientos de apertura" @@ -9810,7 +9828,7 @@ msgid "Unit of Currency" msgstr "Unidad de moneda" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Diario de abono de ventas" @@ -9879,13 +9897,13 @@ msgid "Purchase Tax(%)" msgstr "Impuesto compra (%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Cree algunas líneas de factura" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9900,7 +9918,7 @@ msgid "Display Detail" msgstr "Mostrar detalles" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "AVENTA" @@ -10077,8 +10095,8 @@ msgid "Receivable Account" msgstr "Cuenta a cobrar" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -10181,7 +10199,7 @@ msgid "Move" msgstr "Asiento" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -10285,7 +10303,7 @@ msgid "Balance :" msgstr "Saldo :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "No se pueden crear apuntes de compañías diferentes." @@ -10376,7 +10394,7 @@ msgid "Immediate Payment" msgstr "Pago inmediato" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr " Centralización" @@ -10473,7 +10491,7 @@ msgid "Unreconciled" msgstr "No conciliado" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "¡Total erróneo!" @@ -10569,7 +10587,7 @@ msgid "Comparison" msgstr "Comparación" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10665,7 +10683,7 @@ msgid "Journal Entry Model" msgstr "Modelo de asiento" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "El periodo de inicio debe preceder al periodo final." @@ -10968,6 +10986,7 @@ msgstr "Abrir para la conciliación bancaria" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10983,7 +11002,9 @@ msgstr "Abrir para la conciliación bancaria" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10992,6 +11013,7 @@ msgstr "Abrir para la conciliación bancaria" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -11089,7 +11111,7 @@ msgstr "" "las acciones enlazadas, ya que no serán deshabilitadas" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "¡No se ha podido cambiar el impuesto!" @@ -11163,8 +11185,10 @@ msgstr "Contabilidad. Posición fiscal" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Factura de proveedor" @@ -11255,8 +11279,10 @@ msgstr "" "débito/crédito), cerradas para cuentas depreciadas." #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Con movimientos" @@ -11356,7 +11382,7 @@ msgid "Entries Sorted by" msgstr "Entradas ordenadas por" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -11459,6 +11485,8 @@ msgstr "Buscar factura" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Factura rectificativa" @@ -11533,7 +11561,7 @@ msgid "Manual Invoice Taxes" msgstr "Impuestos factura manual" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "El plazo de pago del proveedor no tiene ninguna línea de plazo." diff --git a/addons/account/i18n/es_AR.po b/addons/account/i18n/es_AR.po index 30214489f84..975f45d67c9 100644 --- a/addons/account/i18n/es_AR.po +++ b/addons/account/i18n/es_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-16 05:19+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:12+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -57,7 +57,7 @@ msgid "Residual" msgstr "Valor residual" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -73,9 +73,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -127,15 +127,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -147,7 +147,7 @@ msgid "Warning!" msgstr "¡Advertencia!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -329,7 +329,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -650,7 +650,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -661,13 +661,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "VENTA" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -720,7 +720,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Cuentas a cobrar" @@ -758,7 +760,7 @@ msgid "Are you sure you want to create entries?" msgstr "¿Está seguro que desea crear los asientos?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -827,7 +829,7 @@ msgid "Type" msgstr "Tipo" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -850,7 +852,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -922,7 +924,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1006,7 +1008,7 @@ msgid "Liability" msgstr "Pasivo" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1077,10 +1079,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1204,7 +1206,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1509,15 +1511,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Con balance distinto a 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1740,8 +1744,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Factura" @@ -1816,7 +1822,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1968,36 +1974,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2011,8 +2017,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2054,7 +2060,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2126,7 +2132,7 @@ msgid "Analytic account" msgstr "Cuenta analítica" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "POr favor verifique que se haya definido una cuenta en el diario." @@ -2226,7 +2232,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Cuentas a pagar" @@ -2531,7 +2539,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2552,7 +2560,7 @@ msgid "Main Sequence" msgstr "Secuencia principal" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2576,7 +2584,7 @@ msgid "Fiscal Positions" msgstr "Posiciones fiscales" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2684,7 +2692,7 @@ msgid "Account Model Entries" msgstr "Asientos Modelo de Cuenta" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "GASTO" @@ -2801,21 +2809,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "¡Error de configuración!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3003,7 +3010,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3016,7 +3023,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3032,8 +3039,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3193,7 +3200,7 @@ msgid "Fiscal Position" msgstr "Posición fiscal" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3292,7 +3299,7 @@ msgstr "" "Las transacciones entrantes siempre utilizan el tipo de cambio a la fecha." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3355,8 +3362,8 @@ msgid "View" msgstr "Vista" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNC" @@ -3612,7 +3619,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3627,7 +3634,7 @@ msgid "Starting Balance" msgstr "Saldo inicial" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "No hay partner definido !" @@ -3679,7 +3686,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3827,7 +3834,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3896,9 +3903,13 @@ msgid "VAT :" msgstr "CUIT:" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3989,7 +4000,7 @@ msgid "Chart of Accounts Template" msgstr "Plantilla del plan de cuentas" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3998,8 +4009,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4156,7 +4169,7 @@ msgid "Name" msgstr "Nombre" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4227,8 +4240,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4258,7 +4271,7 @@ msgid "Consolidated Children" msgstr "Hijos consolidados" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4460,7 +4473,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4525,8 +4538,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4589,7 +4602,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4655,7 +4668,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4709,7 +4722,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4799,7 +4812,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4814,7 +4827,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4880,7 +4893,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4954,7 +4967,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5123,7 +5136,7 @@ msgid "Tax Application" msgstr "Aplicación de impuesto" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5297,7 +5310,7 @@ msgid "Target Moves" msgstr "Movimientos destino" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5378,7 +5391,7 @@ msgid "Internal Name" msgstr "Nombre interno" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5450,7 +5463,7 @@ msgid "Compute Code (if type=code)" msgstr "Código de Cálculo (si tipo=código)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5578,7 +5591,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5609,7 +5622,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5904,7 +5917,7 @@ msgid "Fixed Amount" msgstr "Monto fijo" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5955,14 +5968,14 @@ msgid "Child Accounts" msgstr "Cuentas hijas" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Cancelación" @@ -5988,7 +6001,7 @@ msgstr "Ingresos" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Proveedor" @@ -6008,7 +6021,7 @@ msgid "Account n°" msgstr "Cuenta n°" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Referencia libre" @@ -6018,7 +6031,9 @@ msgstr "Referencia libre" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Cuentas a cobrar y pagar" @@ -6122,7 +6137,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6170,7 +6185,7 @@ msgid "Number of Days" msgstr "Cantidad de días" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6316,7 +6331,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6488,7 +6503,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6509,7 +6524,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6536,7 +6551,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6562,7 +6577,7 @@ msgid "Power" msgstr "Potencia" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6636,12 +6651,12 @@ msgstr "" "varios impuesto hijos. En este caso, el orden de evaluación es importante." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6719,7 +6734,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Reembolso de proveedor" @@ -6864,7 +6881,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Asientos: " @@ -6975,7 +6992,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Error !" @@ -7196,7 +7213,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7267,7 +7284,7 @@ msgid "Done" msgstr "Finalizado" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7557,7 +7574,7 @@ msgstr "Reporte" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7620,7 +7637,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7671,7 +7688,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7738,7 +7755,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Diario de ventas" @@ -7749,7 +7766,7 @@ msgid "Invoice Tax" msgstr "Impuestos sobre Factura" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "No hay número de pieza !" @@ -7788,7 +7805,7 @@ msgid "Sales Properties" msgstr "Propiedades de venta" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7813,7 +7830,7 @@ msgstr "Hasta" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7845,7 +7862,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7886,7 +7903,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Cliente" @@ -7902,7 +7919,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Efectivo" @@ -8072,6 +8089,7 @@ msgstr "Fijo" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "¡Atención!" @@ -8139,7 +8157,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8162,7 +8180,7 @@ msgid "Tax Use In" msgstr "Impuesto usado en" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8170,7 +8188,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Las líneas de los asientos contables no están en estado válido." @@ -8214,7 +8232,7 @@ msgid "Associated Partner" msgstr "Partner asociado" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Primero debe seleccionar un partner !" @@ -8295,13 +8313,13 @@ msgstr "" "antes de calcular los siguientes impuestos." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8544,7 +8562,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8645,7 +8663,7 @@ msgid "The partner account used for this invoice." msgstr "La cuenta del partner utilizada para esta factura." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8663,7 +8681,7 @@ msgid "Payment Term Line" msgstr "Línea de término de pago" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Diario de compras" @@ -8832,7 +8850,7 @@ msgid "Journal Name" msgstr "Nombre del diario" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "El asiento \"%s\" no es válido !" @@ -8884,7 +8902,7 @@ msgstr "" "moneda." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8945,7 +8963,7 @@ msgid "Reconciled entries" msgstr "Asientos conciliados" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8967,7 +8985,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9001,7 +9019,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Diario asientos de apertura" @@ -9098,7 +9116,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9164,13 +9182,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9183,7 +9201,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9342,8 +9360,8 @@ msgid "Receivable Account" msgstr "Cuenta a cobrar" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9444,7 +9462,7 @@ msgid "Move" msgstr "Movimiento" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9540,7 +9558,7 @@ msgid "Balance :" msgstr "Saldo :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9631,7 +9649,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9720,7 +9738,7 @@ msgid "Unreconciled" msgstr "Desconciliada" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Total erróneo !" @@ -9805,7 +9823,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9894,7 +9912,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10193,6 +10211,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10208,7 +10227,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10217,6 +10238,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10308,7 +10330,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10377,8 +10399,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Factura de proveedor" @@ -10464,8 +10488,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Con movimientos" @@ -10560,7 +10586,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10642,6 +10668,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Reembolso" @@ -10712,7 +10740,7 @@ msgid "Manual Invoice Taxes" msgstr "Impuestos de factura manual" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/es_CL.po b/addons/account/i18n/es_CL.po index 748a57f6821..b8357b42e02 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-16 05:20+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:12+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -60,7 +60,7 @@ msgid "Residual" msgstr "Pendiente" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "El asiento \"%s\" no es válido" @@ -76,9 +76,9 @@ msgid "Import from invoice or payment" msgstr "Importar desde factura o pago" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -132,15 +132,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -152,7 +152,7 @@ msgid "Warning!" msgstr "¡Atención!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Diario varios" @@ -340,7 +340,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -661,7 +661,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -672,13 +672,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -731,7 +731,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -769,7 +771,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -838,7 +840,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -861,7 +863,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -933,7 +935,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1017,7 +1019,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1088,10 +1090,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1215,7 +1217,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1520,15 +1522,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1751,8 +1755,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1827,7 +1833,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1979,36 +1985,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2022,8 +2028,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2065,7 +2071,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2137,7 +2143,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2237,7 +2243,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2542,7 +2550,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2563,7 +2571,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2587,7 +2595,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2695,7 +2703,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2807,21 +2815,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3009,7 +3016,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3022,7 +3029,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3038,8 +3045,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3198,7 +3205,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3291,7 +3298,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3354,8 +3361,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3611,7 +3618,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3626,7 +3633,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3678,7 +3685,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3826,7 +3833,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3895,9 +3902,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3986,7 +3997,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3995,8 +4006,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4149,7 +4162,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4220,8 +4233,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4251,7 +4264,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4453,7 +4466,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4518,8 +4531,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4582,7 +4595,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4648,7 +4661,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4702,7 +4715,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4792,7 +4805,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4807,7 +4820,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4873,7 +4886,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4947,7 +4960,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5116,7 +5129,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5288,7 +5301,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5369,7 +5382,7 @@ msgid "Internal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5441,7 +5454,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5569,7 +5582,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5597,7 +5610,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5892,7 +5905,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5943,14 +5956,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5976,7 +5989,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5996,7 +6009,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -6006,7 +6019,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6110,7 +6125,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6158,7 +6173,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6304,7 +6319,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6477,7 +6492,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6498,7 +6513,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6525,7 +6540,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6551,7 +6566,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6624,12 +6639,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6707,7 +6722,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6850,7 +6867,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6959,7 +6976,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7180,7 +7197,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7251,7 +7268,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7536,7 +7553,7 @@ msgstr "Informes" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7599,7 +7616,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7650,7 +7667,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7717,7 +7734,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7728,7 +7745,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7767,7 +7784,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7792,7 +7809,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7824,7 +7841,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7865,7 +7882,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7881,7 +7898,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8045,6 +8062,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8112,7 +8130,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8135,7 +8153,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8143,7 +8161,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8187,7 +8205,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8268,13 +8286,13 @@ msgstr "" "de calcular los siguientes impuestos." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8517,7 +8535,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8625,7 +8643,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8643,7 +8661,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8812,7 +8830,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8860,7 +8878,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8921,7 +8939,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8943,7 +8961,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8977,7 +8995,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9072,7 +9090,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9138,13 +9156,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9157,7 +9175,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9316,8 +9334,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9418,7 +9436,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9512,7 +9530,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9603,7 +9621,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9692,7 +9710,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9777,7 +9795,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9864,7 +9882,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10163,6 +10181,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10178,7 +10197,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10187,6 +10208,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10278,7 +10300,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10347,8 +10369,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10434,8 +10458,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10530,7 +10556,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10611,6 +10637,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10681,7 +10709,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/es_CR.po b/addons/account/i18n/es_CR.po index 1d24501c814..45d21bf3359 100644 --- a/addons/account/i18n/es_CR.po +++ b/addons/account/i18n/es_CR.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-16 05:20+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:13+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: account @@ -60,7 +60,7 @@ msgid "Residual" msgstr "Pendiente" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "El asiento \"%s\" no es válido" @@ -76,9 +76,9 @@ msgid "Import from invoice or payment" msgstr "Importar desde factura o pago" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -132,15 +132,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -152,7 +152,7 @@ msgid "Warning!" msgstr "¡Aviso!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Diario varios" @@ -345,7 +345,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "Usted debe definir un diario analítico de tipo '%s'!" @@ -666,7 +666,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -678,13 +678,13 @@ msgid "Report of the Sales by Account Type" msgstr "Informe de las ventas por tipo de cuenta" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "VEN" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -737,7 +737,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Cuentas por Cobrar" @@ -777,7 +779,7 @@ msgid "Are you sure you want to create entries?" msgstr "¿Está seguro que desea crear los asientos?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -846,7 +848,7 @@ msgid "Type" msgstr "Tipo" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -869,7 +871,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Facturas y abonos de proveedor" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -941,7 +943,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1025,7 +1027,7 @@ msgid "Liability" msgstr "Pasivo" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1100,10 +1102,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1229,7 +1231,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Banco" @@ -1536,15 +1538,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Con balance si no es igual a 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1768,8 +1772,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Factura" @@ -1844,7 +1850,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1998,36 +2004,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2041,8 +2047,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "¡Error!" @@ -2084,7 +2090,7 @@ msgid "period close" msgstr "cierre periodo" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2156,7 +2162,7 @@ msgid "Analytic account" msgstr "Cuenta analítica" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Compruebe que se ha definido una cuenta en el diario." @@ -2258,7 +2264,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Cuentas por Pagar" @@ -2573,7 +2581,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2594,7 +2602,7 @@ msgid "Main Sequence" msgstr "Secuencia principal" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2620,7 +2628,7 @@ msgid "Fiscal Positions" msgstr "Posiciones fiscales" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2730,7 +2738,7 @@ msgid "Account Model Entries" msgstr "Contabilidad. Líneas de modelo" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "COMPRA" @@ -2847,21 +2855,20 @@ msgid "Accounts" msgstr "Cuentas" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "¡Error de configuración!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3056,7 +3063,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3069,7 +3076,7 @@ msgid "Sales by Account" msgstr "Ventas por cuenta" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3085,8 +3092,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3254,7 +3261,7 @@ msgid "Fiscal Position" msgstr "Posición fiscal" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3353,7 +3360,7 @@ msgstr "" "transacciones de entrada siempre utilizan la tasa \"En fecha\"." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3416,8 +3423,8 @@ msgid "View" msgstr "Vista" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BANCO" @@ -3688,7 +3695,7 @@ msgstr "" "mismas referencias que el extracto en sí" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3703,7 +3710,7 @@ msgid "Starting Balance" msgstr "Saldo inicial" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "¡No se ha definido empresa!" @@ -3757,7 +3764,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3907,7 +3914,7 @@ msgid "Period Length (days)" msgstr "Longitud del periodo (días)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3976,9 +3983,13 @@ msgid "VAT :" msgstr "CIF/NIF:" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4069,7 +4080,7 @@ msgid "Chart of Accounts Template" msgstr "Plantilla del plan contable" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4081,8 +4092,10 @@ msgstr "" "¡Por favor, defina la empresa en él!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4241,7 +4254,7 @@ msgid "Name" msgstr "Nombre" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4314,8 +4327,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4345,7 +4358,7 @@ msgid "Consolidated Children" msgstr "Hijos consolidados" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4554,7 +4567,7 @@ msgid "Cancel the Selected Invoices" msgstr "Cancelar las facturas seleccionadas" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "¡Debes asignar un diario analítico en el último '%s' diario!" @@ -4622,8 +4635,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4686,7 +4699,7 @@ msgid "Account Base Code" msgstr "Código base cuenta" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4752,7 +4765,7 @@ msgid "Statement from invoice or payment" msgstr "Extracto desde factura o pago" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4806,7 +4819,7 @@ msgid "Bank statements are entered in the system." msgstr "Han sido introducidos los extractos bancarios en el sistema." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Desfase conciliación" @@ -4900,7 +4913,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4915,7 +4928,7 @@ msgid "Based On" msgstr "Basado en" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ACOMPRA" @@ -4981,7 +4994,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "Impuesto de compra %2f%%" @@ -5055,7 +5068,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "Varios" @@ -5227,7 +5240,7 @@ msgid "Tax Application" msgstr "Aplicación impuesto" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5404,7 +5417,7 @@ msgid "Target Moves" msgstr "Movimientos destino" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5489,7 +5502,7 @@ msgid "Internal Name" msgstr "Nombre interno" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5561,7 +5574,7 @@ msgid "Compute Code (if type=code)" msgstr "Código para calcular (si tipo=código)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5692,7 +5705,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5722,7 +5735,7 @@ msgid "Amount Computation" msgstr "Calculo importe" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -6022,7 +6035,7 @@ msgid "Fixed Amount" msgstr "Importe fijo" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6073,14 +6086,14 @@ msgid "Child Accounts" msgstr "Cuentas hijas" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Nombre del movimiento (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Desajuste" @@ -6106,7 +6119,7 @@ msgstr "Ingreso" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Proveedor" @@ -6126,7 +6139,7 @@ msgid "Account n°" msgstr "Cuenta n°" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Referencia libre" @@ -6136,7 +6149,9 @@ msgstr "Referencia libre" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Cuentas por Cobrar y por Pagar" @@ -6245,7 +6260,7 @@ msgid "Filter by" msgstr "Filtrar por" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "¡Tiene una expressión errónea \"%(...)s\" en su modelo!" @@ -6294,7 +6309,7 @@ msgid "Number of Days" msgstr "Número de días" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6444,7 +6459,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6621,7 +6636,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6642,7 +6657,7 @@ msgid "The related account currency if not equal to the company one." msgstr "La moneda contable relacionada si no es igual a la de la compañía." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6669,7 +6684,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6695,7 +6710,7 @@ msgid "Power" msgstr "Fuerza" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "No puede generar un código de diario que no ha sido usado" @@ -6771,12 +6786,12 @@ msgstr "" "varios impuesto hijos. En este caso, el orden de evaluación es importante." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6864,7 +6879,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Factura rectificativa de proveedor" @@ -7009,7 +7026,7 @@ msgstr "Estadísticas asientos analíticos" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Asientos: " @@ -7122,7 +7139,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "¡Error!" @@ -7353,7 +7370,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7431,7 +7448,7 @@ msgid "Done" msgstr "Realizado" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7729,7 +7746,7 @@ msgstr "Informe" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7795,7 +7812,7 @@ msgid "Use model" msgstr "Usar modelo" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7846,7 +7863,7 @@ msgid "Root/View" msgstr "Raíz/Vista" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "OPEJ" @@ -7915,7 +7932,7 @@ msgid "Maturity Date" msgstr "Fecha vencimiento" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Diario de ventas" @@ -7926,7 +7943,7 @@ msgid "Invoice Tax" msgstr "Impuesto de factura" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "¡Ningún trozo de número!" @@ -7970,7 +7987,7 @@ msgid "Sales Properties" msgstr "Propiedades de venta" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7995,7 +8012,7 @@ msgstr "Hasta" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Ajustes de moneda" @@ -8029,7 +8046,7 @@ msgid "May" msgstr "Mayo" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -8073,7 +8090,7 @@ msgstr "Asentar asientos" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Cliente" @@ -8089,7 +8106,7 @@ msgstr "Nombre del informe" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Efectivo" @@ -8259,6 +8276,7 @@ msgstr "Fijo" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "¡Atención!" @@ -8326,7 +8344,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Seleccione una moneda a aplicar en la factura." #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "¡No hay líneas de factura!" @@ -8351,7 +8369,7 @@ msgid "Tax Use In" msgstr "Impuesto usado en" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8361,7 +8379,7 @@ msgstr "" "El balance de lo esperado (0,2%f) es diferente que el calculado. (0,2%f)" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Las líneas de los asientos contables no están en estado válido." @@ -8406,7 +8424,7 @@ msgid "Associated Partner" msgstr "Empresa asociada" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "¡Primero debe seleccionar una empresa!" @@ -8487,13 +8505,13 @@ msgstr "" "de calcular los siguientes impuestos." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Diario de abono de compras" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8740,7 +8758,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8848,7 +8866,7 @@ msgid "The partner account used for this invoice." msgstr "La cuenta de la empresa utilizada para esta factura." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Tax %.2f%%" @@ -8866,7 +8884,7 @@ msgid "Payment Term Line" msgstr "Línea de plazo de pago" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Diario de compras" @@ -9037,7 +9055,7 @@ msgid "Journal Name" msgstr "Nombre del diario" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "¡El asiento \"%s\" no es válido!" @@ -9089,7 +9107,7 @@ msgstr "" "multi-divisa." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -9153,7 +9171,7 @@ msgid "Reconciled entries" msgstr "Asientos conciliados" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "¡Modelo erroneo!" @@ -9175,7 +9193,7 @@ msgid "Print Account Partner Balance" msgstr "Imprimir balance contable de empresa" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9214,7 +9232,7 @@ msgstr "desconocido" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Diario asientos de apertura" @@ -9311,7 +9329,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Diario de abono de ventas" @@ -9377,13 +9395,13 @@ msgid "Purchase Tax(%)" msgstr "Impuesto compra (%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Cree algunas líneas de factura" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9396,7 +9414,7 @@ msgid "Display Detail" msgstr "Mostrar detalles" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "AVENTA" @@ -9558,8 +9576,8 @@ msgid "Receivable Account" msgstr "Cuenta por Cobrar" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9660,7 +9678,7 @@ msgid "Move" msgstr "Asiento" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9757,7 +9775,7 @@ msgid "Balance :" msgstr "Saldo :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9848,7 +9866,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9945,7 +9963,7 @@ msgid "Unreconciled" msgstr "No conciliado" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "¡Total erróneo!" @@ -10039,7 +10057,7 @@ msgid "Comparison" msgstr "Comparación" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10128,7 +10146,7 @@ msgid "Journal Entry Model" msgstr "Modelo de asiento" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10429,6 +10447,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10444,7 +10463,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10453,6 +10474,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10548,7 +10570,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10618,8 +10640,10 @@ msgstr "Contabilidad. Posición fiscal" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Factura de proveedor" @@ -10710,8 +10734,10 @@ msgstr "" "débito/crédito), cerradas para cuentas depreciadas." #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Con movimientos" @@ -10808,7 +10834,7 @@ msgid "Entries Sorted by" msgstr "Entradas ordenadas por" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10890,6 +10916,8 @@ msgstr "Buscar factura" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Factura rectificativa" @@ -10961,7 +10989,7 @@ msgid "Manual Invoice Taxes" msgstr "Impuestos factura manual" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/es_DO.po b/addons/account/i18n/es_DO.po index cbdb6b31ac7..eba93dd1630 100644 --- a/addons/account/i18n/es_DO.po +++ b/addons/account/i18n/es_DO.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-11-29 20:54+0000\n" -"Last-Translator: Jose Ernesto Mendez \n" +"Last-Translator: Open Business Solutions, SRL. \n" "Language-Team: Spanish (Dominican Republic) \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-16 05:20+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:12+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -60,7 +60,7 @@ msgid "Residual" msgstr "Pendiente" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "El asiento \"%s\" no es válido" @@ -76,9 +76,9 @@ msgid "Import from invoice or payment" msgstr "Importar desde factura o pago" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -132,15 +132,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -152,7 +152,7 @@ msgid "Warning!" msgstr "¡Aviso!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Diario varios" @@ -334,7 +334,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -655,7 +655,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -666,13 +666,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -725,7 +725,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -763,7 +765,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -832,7 +834,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -855,7 +857,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -927,7 +929,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1011,7 +1013,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1082,10 +1084,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1209,7 +1211,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1514,15 +1516,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1745,8 +1749,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1821,7 +1827,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1973,36 +1979,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2016,8 +2022,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2059,7 +2065,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2131,7 +2137,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2231,7 +2237,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2536,7 +2544,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2557,7 +2565,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2581,7 +2589,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2689,7 +2697,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2801,21 +2809,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3003,7 +3010,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3016,7 +3023,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3032,8 +3039,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3192,7 +3199,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3285,7 +3292,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3348,8 +3355,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3605,7 +3612,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3620,7 +3627,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3672,7 +3679,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3820,7 +3827,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3889,9 +3896,13 @@ msgid "VAT :" msgstr "ITBIS:" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3980,7 +3991,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3989,8 +4000,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4143,7 +4156,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4214,8 +4227,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4245,7 +4258,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4447,7 +4460,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4512,8 +4525,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4576,7 +4589,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4642,7 +4655,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4696,7 +4709,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4786,7 +4799,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4801,7 +4814,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4867,7 +4880,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4941,7 +4954,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5110,7 +5123,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5282,7 +5295,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5363,7 +5376,7 @@ msgid "Internal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5435,7 +5448,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5563,7 +5576,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5591,7 +5604,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5886,7 +5899,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5937,14 +5950,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5970,7 +5983,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5990,7 +6003,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -6000,7 +6013,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6104,7 +6119,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6152,7 +6167,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6298,7 +6313,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6470,7 +6485,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6491,7 +6506,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6518,7 +6533,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6544,7 +6559,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6615,12 +6630,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6698,7 +6713,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6841,7 +6858,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6950,7 +6967,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7171,7 +7188,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7242,7 +7259,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7527,7 +7544,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7590,7 +7607,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7641,7 +7658,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7708,7 +7725,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7719,7 +7736,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7758,7 +7775,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7783,7 +7800,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7815,7 +7832,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7856,7 +7873,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7872,7 +7889,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8036,6 +8053,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8103,7 +8121,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8126,7 +8144,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8134,7 +8152,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8178,7 +8196,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8257,13 +8275,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8506,7 +8524,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8607,7 +8625,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8625,7 +8643,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8794,7 +8812,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8842,7 +8860,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8903,7 +8921,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8925,7 +8943,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8959,7 +8977,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9054,7 +9072,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9120,13 +9138,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9139,7 +9157,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9298,8 +9316,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9400,7 +9418,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9494,7 +9512,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9585,7 +9603,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9674,7 +9692,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9759,7 +9777,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9846,7 +9864,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10145,6 +10163,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10160,7 +10179,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10169,6 +10190,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10260,7 +10282,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10329,8 +10351,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10416,8 +10440,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10512,7 +10538,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10593,6 +10619,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10663,7 +10691,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/es_EC.po b/addons/account/i18n/es_EC.po index ceb7060fef7..1287e203704 100644 --- a/addons/account/i18n/es_EC.po +++ b/addons/account/i18n/es_EC.po @@ -17,8 +17,8 @@ msgstr "" "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 05:21+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:13+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -64,7 +64,7 @@ msgid "Residual" msgstr "Pendiente" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "El asiento \"%s\" no es válido" @@ -80,9 +80,9 @@ msgid "Import from invoice or payment" msgstr "Importar desde factura o pago" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "Cuenta erronea." @@ -138,15 +138,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -158,7 +158,7 @@ msgid "Warning!" msgstr "Aviso!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Diario General" @@ -368,7 +368,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "Usted debe definir un diario analítico de tipo '%s'!" @@ -689,7 +689,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -701,13 +701,13 @@ msgid "Report of the Sales by Account Type" msgstr "Reporte de ventas por tipo de cuentas" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "DV" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -760,7 +760,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Cuentas por Cobrar" @@ -800,7 +802,7 @@ msgid "Are you sure you want to create entries?" msgstr "Seguro que quiere crear estos asientos?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -869,7 +871,7 @@ msgid "Type" msgstr "Tipo" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -892,7 +894,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Factura de Proveedor y Facturas Rectificativas" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -965,7 +967,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1049,7 +1051,7 @@ msgid "Liability" msgstr "Pasivo" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "Por favor defina la secuencia de diario relacionado ." @@ -1123,10 +1125,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1252,7 +1254,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Banco" @@ -1559,15 +1561,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Con saldo diferente de 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1792,8 +1796,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Factura" @@ -1868,7 +1874,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -2022,36 +2028,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2065,8 +2071,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Error!" @@ -2108,7 +2114,7 @@ msgid "period close" msgstr "Período de Cierre" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2180,7 +2186,7 @@ msgid "Analytic account" msgstr "Cuenta Analitica" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Please verify that an account is defined in the journal." @@ -2282,7 +2288,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Cuentas por pagar" @@ -2597,7 +2605,7 @@ msgid "Create an Account Based on this Template" msgstr "Crear una cuenta basada en esta plantilla" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2618,7 +2626,7 @@ msgid "Main Sequence" msgstr "Secuencia principal" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2644,7 +2652,7 @@ msgid "Fiscal Positions" msgstr "Tipos de Contribuyentes" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2752,7 +2760,7 @@ msgid "Account Model Entries" msgstr "Línea de modelo de asiento" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "VENTA" @@ -2869,21 +2877,20 @@ msgid "Accounts" msgstr "Cuentas contables" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Error de Configuración !" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3076,7 +3083,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3089,7 +3096,7 @@ msgid "Sales by Account" msgstr "Ventas por Cuenta" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3105,8 +3112,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3272,7 +3279,7 @@ msgid "Fiscal Position" msgstr "Tipos de Contribuyentes" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3371,7 +3378,7 @@ msgstr "" "Transacciones de entrada siempre utilizan la tasa a una fecha." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3434,8 +3441,8 @@ msgid "View" msgstr "Vista" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BANCO" @@ -3705,7 +3712,7 @@ msgstr "" "have the same references than the statement itself" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3720,7 +3727,7 @@ msgid "Starting Balance" msgstr "Saldo inicial" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "No hay Empresa Definida !" @@ -3774,7 +3781,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3924,7 +3931,7 @@ msgid "Period Length (days)" msgstr "Longitud del período (días)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3993,9 +4000,13 @@ msgid "VAT :" msgstr "IVA:" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4085,7 +4096,7 @@ msgid "Chart of Accounts Template" msgstr "Plantilla del plan contable" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4097,8 +4108,10 @@ msgstr "" "Please define partner on it!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4257,7 +4270,7 @@ msgid "Name" msgstr "Nombre" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4330,8 +4343,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4361,7 +4374,7 @@ msgid "Consolidated Children" msgstr "Hijos Consolidados" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4570,7 +4583,7 @@ msgid "Cancel the Selected Invoices" msgstr "Cancel the Selected Invoices" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "¡Debes asignar un diario analítico en el último '%s' diario!" @@ -4637,8 +4650,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4701,7 +4714,7 @@ msgid "Account Base Code" msgstr "Account Base Code" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4767,7 +4780,7 @@ msgid "Statement from invoice or payment" msgstr "Extractos desde Facturas o pagos" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4821,7 +4834,7 @@ msgid "Bank statements are entered in the system." msgstr "Bank statements are entered in the system." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Reconcile Writeoff" @@ -4915,7 +4928,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4930,7 +4943,7 @@ msgid "Based On" msgstr "Based On" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -4996,7 +5009,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "Impuesto de compra %2f%%" @@ -5070,7 +5083,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "Varios" @@ -5242,7 +5255,7 @@ msgid "Tax Application" msgstr "Aplicacion de impuesto" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5417,7 +5430,7 @@ msgid "Target Moves" msgstr "Seleccionar Asientos" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5502,7 +5515,7 @@ msgid "Internal Name" msgstr "Nombre interno" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5574,7 +5587,7 @@ msgid "Compute Code (if type=code)" msgstr "Código para calcular (si tipo=código)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5705,7 +5718,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5735,7 +5748,7 @@ msgid "Amount Computation" msgstr "Amount Computation" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -6035,7 +6048,7 @@ msgid "Fixed Amount" msgstr "Importe fijo" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6086,14 +6099,14 @@ msgid "Child Accounts" msgstr "Cuentas hijas" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Movimiento (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Ajuste" @@ -6119,7 +6132,7 @@ msgstr "Ingreso" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Proveedor" @@ -6139,7 +6152,7 @@ msgid "Account n°" msgstr "Cuenta n°" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Free Reference" @@ -6149,7 +6162,9 @@ msgstr "Free Reference" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Receivable and Payable Accounts" @@ -6258,7 +6273,7 @@ msgid "Filter by" msgstr "Filter by" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "¡Tiene una expressión errónea \"%(...)s\" en su modelo!" @@ -6307,7 +6322,7 @@ msgid "Number of Days" msgstr "Número de días" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6457,7 +6472,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6634,7 +6649,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6655,7 +6670,7 @@ msgid "The related account currency if not equal to the company one." msgstr "The related account currency if not equal to the company one." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6682,7 +6697,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6708,7 +6723,7 @@ msgid "Power" msgstr "Power" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "No puede generar un código de diario que no ha sido usado" @@ -6784,12 +6799,12 @@ msgstr "" "varios impuesto hijos. En este caso, el orden de evaluación es importante." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6876,7 +6891,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Nota de Credito" @@ -7021,7 +7038,7 @@ msgstr "Analytic Entries Statistics" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Entries: " @@ -7134,7 +7151,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Error !" @@ -7365,7 +7382,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7444,7 +7461,7 @@ msgid "Done" msgstr "Realizado" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7741,7 +7758,7 @@ msgstr "Informes" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7807,7 +7824,7 @@ msgid "Use model" msgstr "Usar modelo" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7858,7 +7875,7 @@ msgid "Root/View" msgstr "Raíz/Vista" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "OPEJ" @@ -7927,7 +7944,7 @@ msgid "Maturity Date" msgstr "Fecha vencimiento" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Diario de Ventas" @@ -7938,7 +7955,7 @@ msgid "Invoice Tax" msgstr "Impuestos de factura" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "No piece number !" @@ -7982,7 +7999,7 @@ msgid "Sales Properties" msgstr "Propiedades de Venta" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -8007,7 +8024,7 @@ msgstr "Para" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Ajustes de moneda" @@ -8041,7 +8058,7 @@ msgid "May" msgstr "Mayo" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -8085,7 +8102,7 @@ msgstr "Validar Asientos Contables" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Cliente" @@ -8101,7 +8118,7 @@ msgstr "Nombre del informe" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Efectivo" @@ -8271,6 +8288,7 @@ msgstr "Fijo" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Aviso !" @@ -8338,7 +8356,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Seleccione una moneda para aplicar a la factura" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "No hay detalle de Factura !" @@ -8363,7 +8381,7 @@ msgid "Tax Use In" msgstr "Impuesto usado en" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8373,7 +8391,7 @@ msgstr "" "El balance esperado (%.2f) es diferente al calculado. (%.2f)" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "The account entries lines are not in valid state." @@ -8418,7 +8436,7 @@ msgid "Associated Partner" msgstr "Empresa Asociada" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Primero debe seleccionar una empresa !" @@ -8499,13 +8517,13 @@ msgstr "" "de calcular los siguientes impuestos." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Diario de Reembolso de Compras" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8752,7 +8770,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8861,7 +8879,7 @@ msgid "The partner account used for this invoice." msgstr "La cuenta de la empresa utilizada para esta factura." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Impuestox %.2f%%" @@ -8879,7 +8897,7 @@ msgid "Payment Term Line" msgstr "Línea de plazo de pago" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Diario de Compra" @@ -9050,7 +9068,7 @@ msgid "Journal Name" msgstr "Nombre de Diario" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Entry \"%s\" is not valid !" @@ -9101,7 +9119,7 @@ msgstr "" "multi-divisa." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -9163,7 +9181,7 @@ msgid "Reconciled entries" msgstr "Asientos conciliados" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "¡Modelo erróneo!" @@ -9185,7 +9203,7 @@ msgid "Print Account Partner Balance" msgstr "Imprimir Balance de Empresa" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9224,7 +9242,7 @@ msgstr "Desconocido" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Diario de Asiento de Apertura" @@ -9321,7 +9339,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Sales Refund Journal" @@ -9387,13 +9405,13 @@ msgid "Purchase Tax(%)" msgstr "Imp. de Compra (%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Por favor crear algun detalle." #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9406,7 +9424,7 @@ msgid "Display Detail" msgstr "Mostrar detalles" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "SCNJ" @@ -9568,8 +9586,8 @@ msgid "Receivable Account" msgstr "Cuenta por Cobrar" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9670,7 +9688,7 @@ msgid "Move" msgstr "Movimiento" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9767,7 +9785,7 @@ msgid "Balance :" msgstr "saldo :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9858,7 +9876,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9955,7 +9973,7 @@ msgid "Unreconciled" msgstr "No conciliado" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Total erróneo !" @@ -10047,7 +10065,7 @@ msgid "Comparison" msgstr "Comparación" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10136,7 +10154,7 @@ msgid "Journal Entry Model" msgstr "Modelo de Asiento Contable" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10438,6 +10456,7 @@ msgstr "Abrir para conciliación bancaria" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10453,7 +10472,9 @@ msgstr "Abrir para conciliación bancaria" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10462,6 +10483,7 @@ msgstr "Abrir para conciliación bancaria" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10557,7 +10579,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10627,8 +10649,10 @@ msgstr "Cuentas para Tipos de Contribuyentes" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Factura de Proveedor" @@ -10719,8 +10743,10 @@ msgstr "" "débito/crédito), cerradas para cuentas depreciadas." #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Con movimientos" @@ -10816,7 +10842,7 @@ msgid "Entries Sorted by" msgstr "Entradas ordenadas por" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10897,6 +10923,8 @@ msgstr "Buscar Factura" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Devolución" @@ -10967,7 +10995,7 @@ msgid "Manual Invoice Taxes" msgstr "Impuestos Manuales" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/es_MX.po b/addons/account/i18n/es_MX.po index 8b53920536a..33a41733041 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-16 05:21+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:13+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -293,6 +293,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para crear una Nota de Credito. \n" +"

\n" +"Una Nota de Credito es un documento que abona una factura total o " +"parcialmente.\n" +"

\n" +"En lugar de crear una Nota de Credito manualmente, puede generarla " +"directamente desde la misma factura origen.\n" +"

\n" +" " #. module: account #: help:account.installer,charts:0 @@ -330,7 +340,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -383,7 +393,7 @@ msgstr "" #. module: account #: selection:account.journal,type:0 msgid "Purchase Refund" -msgstr "" +msgstr "Nota de Credito de Proveedor" #. module: account #: selection:account.journal,type:0 @@ -441,6 +451,7 @@ msgstr "" #: selection:account.invoice.refund,filter_refund:0 msgid "Modify: create refund, reconcile and create a new draft invoice" msgstr "" +"Modificar: crea Nota de Credito, concilia y crea una nueva factura borrador" #. module: account #: help:account.config.settings,tax_calculation_rounding_method:0 @@ -549,7 +560,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_invoice_refund msgid "Invoice Refund" -msgstr "" +msgstr "Nota de Credito" #. module: account #: report:account.overdue:0 @@ -651,7 +662,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +673,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -714,6 +725,9 @@ msgid "" "lines for refunds. Leave empty if you don't want to use an analytic account " "on the invoice tax lines by default." msgstr "" +"Establezca la cuenta analítica que se usará por defecto en las líneas de " +"impuestos de la Nota de Credito. Déjelo vacío si no quiere usar una cuenta " +"analítica por defecto en las líneas de impuestos de la factura." #. module: account #: view:account.account:0 @@ -721,7 +735,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -734,7 +750,7 @@ msgstr "" #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "" +msgstr "Crear Nota de Credito" #. module: account #: constraint:account.move.line:0 @@ -759,7 +775,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -776,6 +792,8 @@ msgid "" "Cannot %s invoice which is already reconciled, invoice should be " "unreconciled first. You can only refund this invoice." msgstr "" +"No puede %s factura que está ya conciliada, primero debería romper la " +"conciliación. Solo puede realizar una Nota de Credito de esta factura." #. module: account #: selection:account.financial.report,display_detail:0 @@ -828,7 +846,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -848,10 +866,10 @@ msgstr "" #. module: account #: view:account.invoice.report:0 msgid "Supplier Invoices And Refunds" -msgstr "" +msgstr "Facturas y Notas de Credito de proveedor" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +941,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1025,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1096,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1154,7 +1172,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Refund " -msgstr "" +msgstr "Nota de Credito " #. module: account #: code:addons/account/account_analytic_line.py:90 @@ -1182,7 +1200,7 @@ msgstr "" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "" +msgstr "Diario de Notas de Credito de Venta" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1205,7 +1223,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1218,7 +1236,7 @@ msgstr "" #. module: account #: view:account.tax:0 msgid "Refunds" -msgstr "" +msgstr "Nota de Credito" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 @@ -1510,15 +1528,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1614,7 +1634,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_invoice_tree4 #: model:ir.ui.menu,name:account.menu_action_invoice_tree4 msgid "Supplier Refunds" -msgstr "" +msgstr "Notas de Creditos de Proveedores" #. module: account #: field:account.tax.code,code:0 @@ -1688,7 +1708,7 @@ msgstr "" #: field:account.tax,account_paid_id:0 #: field:account.tax.template,account_paid_id:0 msgid "Refund Tax Account" -msgstr "" +msgstr "Cuenta de Impuesto de Nota de Credito" #. module: account #: model:ir.model,name:account.model_ir_sequence @@ -1741,8 +1761,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1839,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1991,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2034,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2077,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2149,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2249,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2556,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2577,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2601,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2606,7 +2630,7 @@ msgstr "" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Create a draft refund" -msgstr "" +msgstr "Crear una Nota de Credito en Borrador" #. module: account #: view:account.partner.reconcile.process:0 @@ -2685,7 +2709,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2719,6 +2743,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para crear un asiento.\n" +"

\n" +"Un asiento consiste en varios apuntes, cada cual es una transacción de debe " +"o haber.\n" +"

\n" +"OpenERP crea automáticamente un asiento por cada documento contable: " +"factura, Nota de Credito, pago a proveedor, extractos bancarios, etc. Por " +"eso, sólo debería necesitar registrar manualmente asientos para operaciones " +"misceláneas.\n" +"

\n" +" " #. module: account #: help:account.invoice,payment_term:0 @@ -2797,21 +2833,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3034,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3047,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3063,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3223,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3316,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3379,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3636,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3651,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3703,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3851,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3920,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +4015,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +4024,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4180,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4251,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4282,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4484,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4549,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4613,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4679,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4733,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4838,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4904,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4916,7 +4957,7 @@ msgstr "" #: field:account.tax,ref_tax_code_id:0 #: field:account.tax.template,ref_tax_code_id:0 msgid "Refund Tax Code" -msgstr "" +msgstr "Codigo de Impuesto de Nota de Credito" #. module: account #: view:account.invoice:0 @@ -4937,7 +4978,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -4969,7 +5010,7 @@ msgstr "" #: model:account.account.type,name:account.conf_account_type_chk #: selection:account.bank.accounts.wizard,account_type:0 msgid "Check" -msgstr "" +msgstr "Cheque" #. module: account #: view:account.aged.trial.balance:0 @@ -5106,7 +5147,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5319,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5400,7 @@ msgid "Internal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5472,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5600,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5628,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5665,7 +5706,7 @@ msgstr "" #: selection:account.invoice.report,type:0 #: selection:report.invoice.created,type:0 msgid "Customer Refund" -msgstr "Nota de crédito" +msgstr "Nota de Credito de cliente" #. module: account #: field:account.tax,ref_tax_sign:0 @@ -5688,7 +5729,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Draft Refund " -msgstr "" +msgstr "Nota de Credito en Borrador " #. module: account #: view:cash.box.in:0 @@ -5762,7 +5803,7 @@ msgstr "" #. module: account #: view:account.invoice.report:0 msgid "Customer Invoices And Refunds" -msgstr "" +msgstr "Facturas y Notas de Creditos de Clientes" #. module: account #: field:account.analytic.line,amount_currency:0 @@ -5836,7 +5877,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Draft Refund" -msgstr "" +msgstr "Nota de Credito en Borrador" #. module: account #: view:account.analytic.chart:0 @@ -5882,7 +5923,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5974,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +6007,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +6027,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6037,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6143,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6191,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6337,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6334,6 +6377,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Pulse para registrar una factura rectificativa de proveedor.\n" +"

\n" +"En lugar de crear la Nota de Credito de proveedor manualmente, puede " +"generarla y conciliarla directamente desde la factura de proveedor " +"relacionada.\n" +"

\n" +" " #. module: account #: field:account.tax,type:0 @@ -6466,7 +6517,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6538,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6565,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6591,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6662,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,9 +6745,11 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" -msgstr "" +msgstr "Nota de Credito de Proveedor" #. module: account #: field:account.bank.statement,move_line_ids:0 @@ -6837,7 +6890,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6999,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -6986,7 +7039,7 @@ msgstr "" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Cancel: create refund and reconcile" -msgstr "" +msgstr "Saldar: crea la Nota de Credito y concilia" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 @@ -7026,7 +7079,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 @@ -7167,7 +7220,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7291,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7576,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7639,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7603,7 +7656,7 @@ msgstr "" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Refunds" -msgstr "" +msgstr "Notas de Creditos de Clientes y Proveedores" #. module: account #: field:account.financial.report,sign:0 @@ -7637,7 +7690,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7757,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7768,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7807,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7832,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7864,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7905,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7921,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8085,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8099,7 +8153,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8176,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8228,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8307,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8556,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8657,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8675,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8844,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8892,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8953,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8975,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +9009,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9104,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9170,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9189,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9348,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9450,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9544,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9635,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9724,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9809,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9896,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10195,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10211,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10222,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10314,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10383,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10472,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10570,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,8 +10651,10 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" -msgstr "" +msgstr "Nota de credito" #. module: account #: model:ir.model,name:account.model_res_partner_bank @@ -10659,7 +10723,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/es_PY.po b/addons/account/i18n/es_PY.po index 77cf0e1ed1d..a610c8445aa 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-16 05:21+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:13+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "Valor residual" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "Importar desde factura o pago" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -130,15 +130,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -150,7 +150,7 @@ msgid "Warning!" msgstr "¡Cuidado!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -337,7 +337,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -658,7 +658,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -669,13 +669,13 @@ msgid "Report of the Sales by Account Type" msgstr "Informe de las ventas por tipo de cuenta" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "VENTA" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -728,7 +728,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Cuentas por cobrar" @@ -766,7 +768,7 @@ msgid "Are you sure you want to create entries?" msgstr "¿Está seguro que desea crear los asientos?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -835,7 +837,7 @@ msgid "Type" msgstr "Tipo" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -858,7 +860,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -930,7 +932,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1014,7 +1016,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1088,10 +1090,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1217,7 +1219,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Banco" @@ -1522,15 +1524,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Con saldo distinto a 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1753,8 +1757,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Factura" @@ -1829,7 +1835,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1983,36 +1989,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2026,8 +2032,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2069,7 +2075,7 @@ msgid "period close" msgstr "cierre periodo" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2141,7 +2147,7 @@ msgid "Analytic account" msgstr "Cuenta analítica" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Compruebe que se ha definido una cuenta en el diario." @@ -2243,7 +2249,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Cuentas por pagar" @@ -2555,7 +2563,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2576,7 +2584,7 @@ msgid "Main Sequence" msgstr "Secuencia principal" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2600,7 +2608,7 @@ msgid "Fiscal Positions" msgstr "Posiciones fiscales" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2710,7 +2718,7 @@ msgid "Account Model Entries" msgstr "Contabilidad. Líneas de modelo" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "COMPRA" @@ -2827,21 +2835,20 @@ msgid "Accounts" msgstr "Cuentas" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "¡Error de configuración!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3036,7 +3043,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3049,7 +3056,7 @@ msgid "Sales by Account" msgstr "Ventas por cuenta" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3065,8 +3072,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3234,7 +3241,7 @@ msgid "Fiscal Position" msgstr "Posición fiscal" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3333,7 +3340,7 @@ msgstr "" "transacciones de entrada siempre utilizan la tasa \"En fecha\"." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3396,8 +3403,8 @@ msgid "View" msgstr "Vista" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BANCO" @@ -3668,7 +3675,7 @@ msgstr "" "mismas referencias que el extracto en sí" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3683,7 +3690,7 @@ msgid "Starting Balance" msgstr "Saldo inicial" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "¡No se ha definido empresa!" @@ -3737,7 +3744,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3887,7 +3894,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3956,9 +3963,13 @@ msgid "VAT :" msgstr "IVA" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4049,7 +4060,7 @@ msgid "Chart of Accounts Template" msgstr "Plantilla del plan contable" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4061,8 +4072,10 @@ msgstr "" "¡Por favor, defina la empresa en él!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4221,7 +4234,7 @@ msgid "Name" msgstr "Nombre" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4292,8 +4305,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4323,7 +4336,7 @@ msgid "Consolidated Children" msgstr "Hijos consolidados" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4530,7 +4543,7 @@ msgid "Cancel the Selected Invoices" msgstr "Cancelar las facturas seleccionadas" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4598,8 +4611,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4662,7 +4675,7 @@ msgid "Account Base Code" msgstr "Código base cuenta" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4728,7 +4741,7 @@ msgid "Statement from invoice or payment" msgstr "Extracto desde factura o pago" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4782,7 +4795,7 @@ msgid "Bank statements are entered in the system." msgstr "Han sido introducidos los extractos bancarios en el sistema." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Desfase conciliación" @@ -4872,7 +4885,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4887,7 +4900,7 @@ msgid "Based On" msgstr "Basado en" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ACOMPRA" @@ -4953,7 +4966,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -5027,7 +5040,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5196,7 +5209,7 @@ msgid "Tax Application" msgstr "Aplicación impuesto" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5370,7 +5383,7 @@ msgid "Target Moves" msgstr "Movimientos destino" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5451,7 +5464,7 @@ msgid "Internal Name" msgstr "Nombre interno" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5523,7 +5536,7 @@ msgid "Compute Code (if type=code)" msgstr "Código para calcular (si tipo=código)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5654,7 +5667,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5685,7 +5698,7 @@ msgid "Amount Computation" msgstr "Calculo importe" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5985,7 +5998,7 @@ msgid "Fixed Amount" msgstr "Importe fijo" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6036,14 +6049,14 @@ msgid "Child Accounts" msgstr "Cuentas hijas" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Cancelar Dividas" @@ -6069,7 +6082,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Proveedor" @@ -6089,7 +6102,7 @@ msgid "Account n°" msgstr "Cuenta n°" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Referencia libre" @@ -6099,7 +6112,9 @@ msgstr "Referencia libre" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Cuentas por cobrar y pagar" @@ -6208,7 +6223,7 @@ msgid "Filter by" msgstr "Filtrar por" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6256,7 +6271,7 @@ msgid "Number of Days" msgstr "Número de Días" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6404,7 +6419,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6577,7 +6592,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6598,7 +6613,7 @@ msgid "The related account currency if not equal to the company one." msgstr "La moneda contable relacionada si no es igual a la de la compañía." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6625,7 +6640,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6651,7 +6666,7 @@ msgid "Power" msgstr "Fuerza" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6727,12 +6742,12 @@ msgstr "" "varios impuesto hijos. En este caso, el orden de evaluación es importante." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6818,7 +6833,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Reembolso del Proveedor:" @@ -6963,7 +6980,7 @@ msgstr "Estadísticas asientos analíticos" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Asientos: " @@ -7076,7 +7093,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "¡Error!" @@ -7304,7 +7321,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7382,7 +7399,7 @@ msgid "Done" msgstr "Hecho" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7680,7 +7697,7 @@ msgstr "Informe" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7746,7 +7763,7 @@ msgid "Use model" msgstr "Usar modelo" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7797,7 +7814,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7866,7 +7883,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Diario de ventas" @@ -7877,7 +7894,7 @@ msgid "Invoice Tax" msgstr "Impuesto de factura" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "¡Ningún trozo de número!" @@ -7916,7 +7933,7 @@ msgid "Sales Properties" msgstr "Propiedades de venta" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7941,7 +7958,7 @@ msgstr "Hasta" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7973,7 +7990,7 @@ msgid "May" msgstr "Mayo" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -8014,7 +8031,7 @@ msgstr "Asentar apuntes" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Cliente" @@ -8030,7 +8047,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Dinero en efectivo" @@ -8200,6 +8217,7 @@ msgstr "Fijo" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "¡Atención!" @@ -8267,7 +8285,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Seleccione una moneda a aplicar en la factura." #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "¡No hay líneas de factura!" @@ -8292,7 +8310,7 @@ msgid "Tax Use In" msgstr "Impuesto usado en" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8300,7 +8318,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Las líneas de los asientos contables no están en estado válido." @@ -8344,7 +8362,7 @@ msgid "Associated Partner" msgstr "Empresa asociada" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "¡Primero debe seleccionar una empresa!" @@ -8425,13 +8443,13 @@ msgstr "" "de calcular los siguientes impuestos." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Diario de abono de compras" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8676,7 +8694,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8777,7 +8795,7 @@ msgid "The partner account used for this invoice." msgstr "La cuenta de la empresa utilizada para esta factura." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8795,7 +8813,7 @@ msgid "Payment Term Line" msgstr "Línea de plazo de pago" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Diario de compras" @@ -8966,7 +8984,7 @@ msgid "Journal Name" msgstr "Nombre del diario" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "¡El asiento \"%s\" no es válido!" @@ -9018,7 +9036,7 @@ msgstr "" "multi-divisa." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -9082,7 +9100,7 @@ msgid "Reconciled entries" msgstr "Asientos conciliados" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -9104,7 +9122,7 @@ msgid "Print Account Partner Balance" msgstr "Imprimir balance contable de empresa" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9138,7 +9156,7 @@ msgstr "desconocido" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Diario asientos de apertura" @@ -9235,7 +9253,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Diario de abono de ventas" @@ -9301,13 +9319,13 @@ msgid "Purchase Tax(%)" msgstr "Impuesto compra (%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Cree algunas líneas de factura" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9320,7 +9338,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "AVENTA" @@ -9482,8 +9500,8 @@ msgid "Receivable Account" msgstr "Cuenta por cobrar" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9584,7 +9602,7 @@ msgid "Move" msgstr "Asiento" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9681,7 +9699,7 @@ msgid "Balance :" msgstr "Saldo :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9772,7 +9790,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9861,7 +9879,7 @@ msgid "Unreconciled" msgstr "No conciliado" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "¡Total erróneo!" @@ -9955,7 +9973,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10044,7 +10062,7 @@ msgid "Journal Entry Model" msgstr "Modelo de asiento" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10345,6 +10363,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10360,7 +10379,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10369,6 +10390,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10464,7 +10486,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10533,8 +10555,10 @@ msgstr "Contabilidad. Posición fiscal" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Factura de Proveedor" @@ -10620,8 +10644,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Con movimientos" @@ -10718,7 +10744,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10800,6 +10826,8 @@ msgstr "Buscar factura" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Factura de Credito" @@ -10871,7 +10899,7 @@ msgid "Manual Invoice Taxes" msgstr "Impuestos factura manual" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/es_UY.po b/addons/account/i18n/es_UY.po index 212d698649c..3e67bda1fe0 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-16 05:20+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:13+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -60,7 +60,7 @@ msgid "Residual" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "El asiento \"%s\" no es válido" @@ -76,9 +76,9 @@ msgid "Import from invoice or payment" msgstr "Importar desde factura o pago" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -132,15 +132,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -152,7 +152,7 @@ msgid "Warning!" msgstr "¡Cuidado!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Diario varios" @@ -345,7 +345,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -666,7 +666,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -677,13 +677,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -736,7 +736,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -774,7 +776,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -843,7 +845,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -866,7 +868,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Facturas y reembolsos de proveedor" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -938,7 +940,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1022,7 +1024,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1093,10 +1095,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1220,7 +1222,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1525,15 +1527,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1756,8 +1760,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1832,7 +1838,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1984,36 +1990,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2027,8 +2033,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2070,7 +2076,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2142,7 +2148,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2242,7 +2248,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2547,7 +2555,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2568,7 +2576,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2592,7 +2600,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2700,7 +2708,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2812,21 +2820,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3014,7 +3021,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3027,7 +3034,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3043,8 +3050,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3203,7 +3210,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3302,7 +3309,7 @@ msgstr "" "transacciones de entrada siempre utilizan la tasa \"En fecha\"." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3365,8 +3372,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3622,7 +3629,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3637,7 +3644,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3689,7 +3696,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3837,7 +3844,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3906,9 +3913,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3997,7 +4008,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4006,8 +4017,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4160,7 +4173,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4231,8 +4244,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4262,7 +4275,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4464,7 +4477,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4529,8 +4542,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4593,7 +4606,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4659,7 +4672,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4713,7 +4726,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4803,7 +4816,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4818,7 +4831,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4884,7 +4897,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4958,7 +4971,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5130,7 +5143,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5302,7 +5315,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5383,7 +5396,7 @@ msgid "Internal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5455,7 +5468,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5583,7 +5596,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5611,7 +5624,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5906,7 +5919,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5957,14 +5970,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5990,7 +6003,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -6010,7 +6023,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -6020,7 +6033,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6124,7 +6139,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6172,7 +6187,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6318,7 +6333,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6490,7 +6505,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6511,7 +6526,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6538,7 +6553,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6564,7 +6579,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6635,12 +6650,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6718,7 +6733,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Nota de Crédito de proveedor" @@ -6861,7 +6878,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6970,7 +6987,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7191,7 +7208,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7262,7 +7279,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7547,7 +7564,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7610,7 +7627,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7661,7 +7678,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7728,7 +7745,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7739,7 +7756,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7778,7 +7795,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7803,7 +7820,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7835,7 +7852,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7876,7 +7893,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7892,7 +7909,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8056,6 +8073,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8123,7 +8141,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8146,7 +8164,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8154,7 +8172,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8198,7 +8216,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8277,13 +8295,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Diario de reembolso de compras" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8526,7 +8544,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8627,7 +8645,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8645,7 +8663,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8814,7 +8832,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8862,7 +8880,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8923,7 +8941,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8945,7 +8963,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8979,7 +8997,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9074,7 +9092,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Diario de reembolso de ventas" @@ -9140,13 +9158,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9159,7 +9177,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9318,8 +9336,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9420,7 +9438,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9514,7 +9532,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9605,7 +9623,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9694,7 +9712,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9779,7 +9797,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9866,7 +9884,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10165,6 +10183,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10180,7 +10199,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10189,6 +10210,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10280,7 +10302,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10349,8 +10371,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10436,8 +10460,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10532,7 +10558,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10613,6 +10639,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Nota de Crédito" @@ -10683,7 +10711,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/es_VE.po b/addons/account/i18n/es_VE.po index ad8322763b6..0822e40014d 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-16 05:19+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:12+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "Pendiente" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "Importar desde factura o pago" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "RIF" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8049,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/et.po b/addons/account/i18n/et.po index edf30046b52..465c2ded626 100644 --- a/addons/account/i18n/et.po +++ b/addons/account/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-16 05:13+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:06+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -57,7 +57,7 @@ msgid "Residual" msgstr "Jääk" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -73,12 +73,12 @@ msgid "Import from invoice or payment" msgstr "Impordi arvetest või maksetest" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" -msgstr "" +msgstr "Vigane konto!" #. module: account #: view:account.move:0 @@ -102,7 +102,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:30 #, python-format msgid "Reconcile" -msgstr "Võrdlus" +msgstr "Võrdle" #. module: account #: field:account.bank.statement,name:0 @@ -122,22 +122,22 @@ msgid "" "If the active field is set to False, it will allow you to hide the payment " "term without removing it." msgstr "" -"Kui aktiivne ala on väärne ( False ), siis see võimaldab teil peita/varjata " -"maksetähtaeg seda kustutamata." +"Kui aktiivne ala on väär, siis see võimaldab teil peita maksetähtaega seda " +"kustutamata." #. module: account #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -149,7 +149,7 @@ msgid "Warning!" msgstr "Hoiatus!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -331,7 +331,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -652,7 +652,7 @@ msgid "Profit Account" msgstr "Kasumi konto" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -663,13 +663,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -722,7 +722,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Nõuete kontod" @@ -760,7 +762,7 @@ msgid "Are you sure you want to create entries?" msgstr "Kas olete kindel, et soovite kirjed luua?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -829,7 +831,7 @@ msgid "Type" msgstr "Tüüp" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -852,7 +854,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -924,7 +926,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1008,7 +1010,7 @@ msgid "Liability" msgstr "Kohustus" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1079,10 +1081,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1206,7 +1208,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Pank" @@ -1511,15 +1513,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Bilanss pole 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1742,8 +1746,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Arve" @@ -1818,7 +1824,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1972,36 +1978,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2015,8 +2021,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2058,7 +2064,7 @@ msgid "period close" msgstr "Periood suletud" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2130,7 +2136,7 @@ msgid "Analytic account" msgstr "Analüütiline konto" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2230,7 +2236,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Võlgade kontod" @@ -2535,7 +2543,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2556,7 +2564,7 @@ msgid "Main Sequence" msgstr "Peajärjestus" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2580,7 +2588,7 @@ msgid "Fiscal Positions" msgstr "Finantspositsioonid" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2688,7 +2696,7 @@ msgid "Account Model Entries" msgstr "Konto mudeli kirjed" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2800,21 +2808,20 @@ msgid "Accounts" msgstr "Kontod" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3002,7 +3009,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3015,7 +3022,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3031,8 +3038,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3191,7 +3198,7 @@ msgid "Fiscal Position" msgstr "Finantspositsioon" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3284,7 +3291,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3347,8 +3354,8 @@ msgid "View" msgstr "Vaade" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3604,7 +3611,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3619,7 +3626,7 @@ msgid "Starting Balance" msgstr "Algbilanss" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Partner ei ole määratud !" @@ -3671,7 +3678,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3819,7 +3826,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3888,9 +3895,13 @@ msgid "VAT :" msgstr "KM :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3979,7 +3990,7 @@ msgid "Chart of Accounts Template" msgstr "Kontoplaani mall" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3988,8 +3999,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4142,7 +4155,7 @@ msgid "Name" msgstr "Nimi" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4213,8 +4226,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4244,7 +4257,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4446,7 +4459,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4511,8 +4524,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4575,7 +4588,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4641,7 +4654,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4695,7 +4708,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4785,7 +4798,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4800,7 +4813,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4866,7 +4879,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4940,7 +4953,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5109,7 +5122,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5282,7 +5295,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5363,7 +5376,7 @@ msgid "Internal Name" msgstr "Sisemine nimi" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5435,7 +5448,7 @@ msgid "Compute Code (if type=code)" msgstr "Arvuta kood (kui tüüp=kood)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5563,7 +5576,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5591,7 +5604,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5886,7 +5899,7 @@ msgid "Fixed Amount" msgstr "Kindel summa" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5937,14 +5950,14 @@ msgid "Child Accounts" msgstr "Alamkontod" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Mahakandmine" @@ -5970,7 +5983,7 @@ msgstr "Tulu" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Tarnija" @@ -5990,7 +6003,7 @@ msgid "Account n°" msgstr "Konto nr." #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Vaba viide" @@ -6000,7 +6013,9 @@ msgstr "Vaba viide" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Nõuete ja võlgade kontod" @@ -6104,7 +6119,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6152,7 +6167,7 @@ msgid "Number of Days" msgstr "Päevade arv" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6298,7 +6313,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6470,7 +6485,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6491,7 +6506,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "Kohandatud" @@ -6518,7 +6533,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6544,7 +6559,7 @@ msgid "Power" msgstr "Aste" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6615,12 +6630,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6698,7 +6713,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Tarnija hüvitis" @@ -6841,7 +6858,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6950,7 +6967,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7171,7 +7188,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7242,7 +7259,7 @@ msgid "Done" msgstr "Valmis" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7527,7 +7544,7 @@ msgstr "Aruandlus" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7590,7 +7607,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7641,7 +7658,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7708,7 +7725,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Müügipäevik" @@ -7719,7 +7736,7 @@ msgid "Invoice Tax" msgstr "Arve Maks" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7758,7 +7775,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7783,7 +7800,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7815,7 +7832,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7856,7 +7873,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Klient" @@ -7872,7 +7889,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Kassa" @@ -8039,6 +8056,7 @@ msgstr "Fikseeritud" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Ettevaatust !" @@ -8106,7 +8124,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8129,7 +8147,7 @@ msgid "Tax Use In" msgstr "Maksu kasutusala" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8137,7 +8155,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Konto kirjete read ei ole õiges olekus." @@ -8181,7 +8199,7 @@ msgid "Associated Partner" msgstr "Seotud partner" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Sa pead esmalt valima partneri !" @@ -8260,13 +8278,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8509,7 +8527,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8610,7 +8628,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8628,7 +8646,7 @@ msgid "Payment Term Line" msgstr "Maksetingimuste Rida" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Ostupäevik" @@ -8797,7 +8815,7 @@ msgid "Journal Name" msgstr "Päeviku nimi" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8845,7 +8863,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8906,7 +8924,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8928,7 +8946,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8962,7 +8980,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9057,7 +9075,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9123,13 +9141,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9142,7 +9160,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9301,8 +9319,8 @@ msgid "Receivable Account" msgstr "Nõuete konto" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9403,7 +9421,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9497,7 +9515,7 @@ msgid "Balance :" msgstr "Bilanss :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9588,7 +9606,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9677,7 +9695,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9762,7 +9780,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9849,7 +9867,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10148,6 +10166,7 @@ msgstr "Avatud panga võrdlevaks kooskõlastamiseks" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10163,7 +10182,9 @@ msgstr "Avatud panga võrdlevaks kooskõlastamiseks" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10172,6 +10193,7 @@ msgstr "Avatud panga võrdlevaks kooskõlastamiseks" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10263,7 +10285,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10332,8 +10354,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Ostuarve" @@ -10419,8 +10443,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Liikumistega" @@ -10515,7 +10541,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10596,6 +10622,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Hüvitis" @@ -10666,7 +10694,7 @@ msgid "Manual Invoice Taxes" msgstr "Käsitsi Arve Maksud" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/eu.po b/addons/account/i18n/eu.po index e6504332dd4..34673d9d684 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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:05+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "Barne Izena" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8049,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/fa.po b/addons/account/i18n/fa.po index 6f888cee456..631a2773a15 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-16 05:16+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:09+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "باقيمانده" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8049,7 @@ msgstr "ثابت" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "هشدار!" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/fa_AF.po b/addons/account/i18n/fa_AF.po index 55719fdd89d..7610242126d 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-16 05:21+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:14+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8049,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/fi.po b/addons/account/i18n/fi.po index 708a87960db..a3aa47a8325 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-16 05:13+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:06+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "Jäännös" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "Päiväkirjamerkintä \"%s\" ei ole validi" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "Tuo laskulta tai maksulta" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -130,15 +130,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -150,7 +150,7 @@ msgid "Warning!" msgstr "Varoitus!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -335,7 +335,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -656,7 +656,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -667,13 +667,13 @@ msgid "Report of the Sales by Account Type" msgstr "Myyntiraportti tilityypeittäin" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "SAJ" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -726,7 +726,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Saatavat tilit" @@ -764,7 +766,7 @@ msgid "Are you sure you want to create entries?" msgstr "Oletko varma että haluat luoda merkinnät?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -833,7 +835,7 @@ msgid "Type" msgstr "Tyyppi" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -856,7 +858,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -928,7 +930,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1012,7 +1014,7 @@ msgid "Liability" msgstr "Vastuu" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1083,10 +1085,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1210,7 +1212,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Pankki" @@ -1515,15 +1517,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Saldo ei ole tasan 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1746,8 +1750,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Lasku" @@ -1822,7 +1828,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1974,36 +1980,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2017,8 +2023,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Virhe!" @@ -2060,7 +2066,7 @@ msgid "period close" msgstr "Sulje jakso" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2132,7 +2138,7 @@ msgid "Analytic account" msgstr "Analyyttinen kirjanpito" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Vahvista että päiväkirjassa on määriteltynä tili." @@ -2234,7 +2240,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Maksettavat tilit" @@ -2541,7 +2549,7 @@ msgid "Create an Account Based on this Template" msgstr "Luo tili tämän mallin pohjalta" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2562,7 +2570,7 @@ msgid "Main Sequence" msgstr "Pääjakso" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2586,7 +2594,7 @@ msgid "Fiscal Positions" msgstr "Talouskannat" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2694,7 +2702,7 @@ msgid "Account Model Entries" msgstr "Tilimallin merkinnät" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "EXJ" @@ -2810,21 +2818,20 @@ msgid "Accounts" msgstr "Tilit" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Konfiguraatio virhe!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3012,7 +3019,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3025,7 +3032,7 @@ msgid "Sales by Account" msgstr "Myynnit tileittäin" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3041,8 +3048,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3201,7 +3208,7 @@ msgid "Fiscal Position" msgstr "Talouskanta" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3299,7 +3306,7 @@ msgstr "" "rahasiirrot käyttävät aina päivän kurssia." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3362,8 +3369,8 @@ msgid "View" msgstr "Näkymä" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3621,7 +3628,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3636,7 +3643,7 @@ msgid "Starting Balance" msgstr "Aloitus balanssi" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Ei kumppania määriteltynä!" @@ -3688,7 +3695,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3836,7 +3843,7 @@ msgid "Period Length (days)" msgstr "Jakson pituus (päivää)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3905,9 +3912,13 @@ msgid "VAT :" msgstr "ALV:" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3996,7 +4007,7 @@ msgid "Chart of Accounts Template" msgstr "Tilikarttamalli" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4005,8 +4016,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4161,7 +4174,7 @@ msgid "Name" msgstr "Nimi" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4232,8 +4245,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4263,7 +4276,7 @@ msgid "Consolidated Children" msgstr "Yhdistetyt alatilit" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4465,7 +4478,7 @@ msgid "Cancel the Selected Invoices" msgstr "Peruuta valitut laskut" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4530,8 +4543,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4594,7 +4607,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4660,7 +4673,7 @@ msgid "Statement from invoice or payment" msgstr "Tiliote laskulta tai maksulta" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4714,7 +4727,7 @@ msgid "Bank statements are entered in the system." msgstr "Pankin tiliotteet syötetään järjestelmään." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4804,7 +4817,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4819,7 +4832,7 @@ msgid "Based On" msgstr "Perustuen" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4885,7 +4898,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4959,7 +4972,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5128,7 +5141,7 @@ msgid "Tax Application" msgstr "Verosovellus" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5300,7 +5313,7 @@ msgid "Target Moves" msgstr "Kohteen liikkeet" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5381,7 +5394,7 @@ msgid "Internal Name" msgstr "Sisäinen nimi" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5453,7 +5466,7 @@ msgid "Compute Code (if type=code)" msgstr "Suorita koodi (jos tyyppi=koodi)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5581,7 +5594,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5612,7 +5625,7 @@ msgid "Amount Computation" msgstr "Määrän laskenta" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5907,7 +5920,7 @@ msgid "Fixed Amount" msgstr "Korjattu määrä" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5958,14 +5971,14 @@ msgid "Child Accounts" msgstr "Alemmat tilit" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Arvonalennus" @@ -5991,7 +6004,7 @@ msgstr "Tulo" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Toimittaja" @@ -6011,7 +6024,7 @@ msgid "Account n°" msgstr "Tilinro." #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Avoin viite" @@ -6021,7 +6034,9 @@ msgstr "Avoin viite" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Saatavat ja maksettavat tilit" @@ -6125,7 +6140,7 @@ msgid "Filter by" msgstr "Suodata" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6173,7 +6188,7 @@ msgid "Number of Days" msgstr "Päivien lukumäärä" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6319,7 +6334,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6491,7 +6506,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6512,7 +6527,7 @@ msgid "The related account currency if not equal to the company one." msgstr "Liittyvän tilin valuutta jos ei sama kun yrityksen valuutta." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6539,7 +6554,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6565,7 +6580,7 @@ msgid "Power" msgstr "Voima" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6639,12 +6654,12 @@ msgstr "" "tapauksessa hankkimisen arviointi on tärkeää." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6722,7 +6737,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Toimittajan hyvitys" @@ -6867,7 +6884,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Merkinnät: " @@ -6976,7 +6993,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Virhe!" @@ -7197,7 +7214,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7268,7 +7285,7 @@ msgid "Done" msgstr "Valmis" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7558,7 +7575,7 @@ msgstr "Raportointi" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7621,7 +7638,7 @@ msgid "Use model" msgstr "Käytä mallia" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7672,7 +7689,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7739,7 +7756,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Myyntipäiväkirja" @@ -7750,7 +7767,7 @@ msgid "Invoice Tax" msgstr "Laskuta vero" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Ei osan numeroa!" @@ -7789,7 +7806,7 @@ msgid "Sales Properties" msgstr "Myynnin ominaisuudet" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7814,7 +7831,7 @@ msgstr "päättyen" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7846,7 +7863,7 @@ msgid "May" msgstr "Toukokuu" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7887,7 +7904,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Asiakas" @@ -7903,7 +7920,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Käteinen" @@ -8073,6 +8090,7 @@ msgstr "Kiinteä" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Varoitus!" @@ -8140,7 +8158,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Valitse laskun valuutta" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Ei laskurivejä !" @@ -8163,7 +8181,7 @@ msgid "Tax Use In" msgstr "Käytettävä vero" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8171,7 +8189,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Tilin merkintärivit eivät ole hyväksytyssä tilassa." @@ -8215,7 +8233,7 @@ msgid "Associated Partner" msgstr "Yhteistyökumppani" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Sinun täytyy ensiksi valita yhteistyökumppani!" @@ -8296,13 +8314,13 @@ msgstr "" "verojen laskemista." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8545,7 +8563,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8646,7 +8664,7 @@ msgid "The partner account used for this invoice." msgstr "Kumppanitiliä käytetään tälle laskulle." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8664,7 +8682,7 @@ msgid "Payment Term Line" msgstr "Maksuehtorivi" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Ostopäiväkirja" @@ -8833,7 +8851,7 @@ msgid "Journal Name" msgstr "Päiväkirjan nimi" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Merkintä \"%s\" ei ole kelvollinen!" @@ -8883,7 +8901,7 @@ msgstr "" "monivaluuttainen merkintä." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8944,7 +8962,7 @@ msgid "Reconciled entries" msgstr "Suoritetut merkinnät" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8966,7 +8984,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9000,7 +9018,7 @@ msgstr "Tuntematon" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Avauspäiväkirja" @@ -9096,7 +9114,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9162,13 +9180,13 @@ msgid "Purchase Tax(%)" msgstr "Oston vero (%9" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Ole hyvä ja luo laskurivejä" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9181,7 +9199,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9340,8 +9358,8 @@ msgid "Receivable Account" msgstr "Saatavat tili" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9442,7 +9460,7 @@ msgid "Move" msgstr "Siirto" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9538,7 +9556,7 @@ msgid "Balance :" msgstr "Saldo :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9629,7 +9647,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9718,7 +9736,7 @@ msgid "Unreconciled" msgstr "Suorittamaton" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Epäkelpo loppusumma!" @@ -9803,7 +9821,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9891,7 +9909,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10190,6 +10208,7 @@ msgstr "Avoin pankkisuoritukselle" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10205,7 +10224,9 @@ msgstr "Avoin pankkisuoritukselle" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10214,6 +10235,7 @@ msgstr "Avoin pankkisuoritukselle" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10305,7 +10327,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10374,8 +10396,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Toimittajan lasku" @@ -10461,8 +10485,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Siirtojen kanssa" @@ -10557,7 +10583,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10638,6 +10664,8 @@ msgstr "Hae laskua" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Hyvitys" @@ -10708,7 +10736,7 @@ msgid "Manual Invoice Taxes" msgstr "Laskuta verot manuaalisesti" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/fr.po b/addons/account/i18n/fr.po index 2661431274a..1a63d539ce0 100644 --- a/addons/account/i18n/fr.po +++ b/addons/account/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-16 05:14+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:06+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:41 @@ -125,7 +125,7 @@ msgid "Residual" msgstr "Solde dû" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "L'élément \"%s\" du journal n'est pas valide" @@ -141,9 +141,9 @@ msgid "Import from invoice or payment" msgstr "Importer depuis une facture ou un règlement" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "Compte incorrect !" @@ -199,15 +199,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -219,7 +219,7 @@ msgid "Warning!" msgstr "Attention !" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Journal des opérations diverses" @@ -354,6 +354,10 @@ msgid "" "sales, purchase, expense, contra, etc.\n" " This installs the module account_voucher." msgstr "" +"Ceci inclut toutes les fonctionnalités nécessaires aux justificatifs " +"comptables de banque, d'espèce, de vente, d'achat, de dépenses, de contrat, " +"etc.\n" +" Ceci installe le module account_voucher." #. module: account #: model:ir.actions.act_window,name:account.action_account_use_model_create_entry @@ -439,7 +443,7 @@ msgid "Allow multi currencies" msgstr "Autoriser devises multiples" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "Vous devez définir un journal analytique de type \"%s\"!" @@ -537,7 +541,7 @@ msgstr "" #. module: account #: help:account.bank.statement.line,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Informations de l'initiateur au bénéficiaire" #. module: account #. openerp-web @@ -778,7 +782,7 @@ msgid "Profit Account" msgstr "Compte de résultat" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -790,13 +794,13 @@ msgid "Report of the Sales by Account Type" msgstr "État des ventes par type de compte" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "SAJ" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "Impossible de créer l’opération si devise différente de.." @@ -856,7 +860,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Comptes clients" @@ -896,7 +902,7 @@ msgid "Are you sure you want to create entries?" msgstr "Etes vous sûr de vouloir saisir des écritures ?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "Facture réglée partiellement: %s%s de %s%s (%s%s restant(s))." @@ -942,7 +948,7 @@ msgstr "Écritures analytiques par ligne" #. module: account #: field:account.invoice.refund,filter_refund:0 msgid "Refund Method" -msgstr "Méthode de remboursement" +msgstr "Méthode d'avoir" #. module: account #: model:ir.ui.menu,name:account.menu_account_report @@ -967,7 +973,7 @@ msgid "Type" msgstr "Type" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -992,7 +998,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Factures et avoirs fournisseurs" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "Cette entrée a déjà fait l'objet d'un rapprochement de compte." @@ -1066,9 +1072,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pas d'écritures comptables.\n" +"

\n" +" " #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1154,7 +1164,7 @@ msgid "Liability" msgstr "Passif" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1229,10 +1239,10 @@ msgid "Features" msgstr "Fonctionnalités" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1262,6 +1272,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquer pour ajouter un compte\n" +"

\n" +" Lors de transactions impliquant plusieurs devises, vous " +"pouvez perdre ou gagner\n" +" une certaine somme d'argent due au taux de change. Ce menu " +"vous donne\n" +" une prévision des gains et de pertes que vous réaliseriez si " +"ces\n" +" transactions étaient passées aujourd'hui. Concerne seulement " +"les comptes\n" +" ayant une deuxième devise.\n" +" " #. module: account #: field:account.bank.accounts.wizard,acc_name:0 @@ -1279,6 +1302,8 @@ msgid "" "Check this box if you don't want any tax related to this tax code to appear " "on invoices" msgstr "" +"Cocher cette case si vous ne voulez par voir apparaître de taxe quelconque " +"liée à ce numéro de taxe sur les factures." #. module: account #: field:report.account.receivable,name:0 @@ -1355,11 +1380,25 @@ msgid "" "

\n" " " msgstr "" +"< class=\"oe_view_nocontent_create\">\n" +" Cliquer pour créer un nouvel historique de trésorerie\n" +"

\n" +" Un registre de trésorerie vous permet de gérer les entrées " +"de trésorerie dans votre journal de \n" +" trésorerie. Cette fonctionnalité vous permet de suivre " +"facilement les paiements\n" +" en espèce de façon journalière. Vous pouvez y enregistrer " +"les pièces \n" +" qui sont dans votre caisse, et ensuite écrire les entrées " +"lorsque l'argent rentre ou\n" +" sort de votre caisse.\n" +"

\n" +" " #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Banque" @@ -1416,6 +1455,9 @@ msgid "" "The amount expressed in the secondary currency must be positif when journal " "item are debit and negatif when journal item are credit." msgstr "" +"Le montant précisé dans la deuxième devise doit être positif lorsque " +"l'écriture comptable est un débit et négatif quand l'écriture comptable est " +"un crédit." #. module: account #: view:account.invoice.cancel:0 @@ -1638,6 +1680,9 @@ msgid "" "And after getting confirmation from the bank it will be in 'Confirmed' " "status." msgstr "" +"Quand un relevé est créé son statut sera de type \"brouillon\".\n" +"Et après avoir reçu une confirmation de la banque son statut passera à " +"\"confirmé\"." #. module: account #: field:account.invoice.report,state:0 @@ -1667,20 +1712,24 @@ msgid "%s (copy)" msgstr "%s (copie)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Avec la balance qui n'est pas égale à 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" "on journal \"%s\"." msgstr "" +"Aucun compte de débit par défaut n'a été défini\n" +"sur le journal \"%s\"" #. module: account #: view:account.tax:0 @@ -1715,6 +1764,9 @@ msgid "" "There is nothing to reconcile. All invoices and payments\n" " have been reconciled, your partner balance is clean." msgstr "" +"Il n'y a rien à lettrer. Toutes les factures et paiements\n" +" ont été lettré, le solde de votre partenaire est " +"équilibré." #. module: account #: field:account.chart.template,code_digits:0 @@ -1894,14 +1946,29 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquer pour définir un nouveau type de compte.\n" +"

\n" +" Le type de compte est utilisé pour déterminer comment un " +"compte est utilisé dans\n" +" chaque journal. La méthode d'ajournement du type de compte " +"détermine\n" +" la façon dont l'année sera clôturée. Les rapports tels que " +"le bilan\n" +" et le rapport du compte de résultat utilisent la catégorie\n" +" (produit/charge ou bilan)\n" +"

\n" +" " #. module: account #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Facture" @@ -1982,9 +2049,11 @@ msgid "" "The journal must have centralized counterpart without the Skipping draft " "state option checked." msgstr "" +"Le journal doit avoir ses contreparties centralisées dans le cas où l'option " +"pas de brouillon est cochée." #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "Plusieurs entrées sont déjà réconciliées" @@ -2147,36 +2216,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2190,8 +2259,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Erreur !" @@ -2209,6 +2278,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquer pour enregistrer une nouvelle facture fournisseur.\n" +"

\n" +" Vous pouvez contrôler la facture de votre fournisseur " +"selon\n" +" ce que vous avez acheté ou reçu. OpenERP peut également " +"automatiquement générer\n" +" des factures brouillon à partir des ordres d'achats ou des " +"reçus.\n" +"

\n" +" " #. module: account #: sql_constraint:account.move.line:0 @@ -2233,7 +2313,7 @@ msgid "period close" msgstr "Fermeture de période" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2269,6 +2349,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquer pour enregistrer un relevé de compte.\n" +"

\n" +" Un relevé de compte est un résumé de toutes vos " +"transactions financières\n" +" passées pour une période de temps donnée sur votre compte " +"en banque. Vous\n" +" pouvez le recevoir de façon périodique de votre banque.\n" +"

\n" +" OpenERP vous permet de pointer une ligne de relevé en " +"fonction\n" +" de la facture de vente ou d'achat qui lui est directement " +"liée.\n" +"

\n" +" " #. module: account #: field:account.config.settings,currency_id:0 @@ -2307,7 +2402,7 @@ msgid "Analytic account" msgstr "Compte analytique" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Merci de vérifier le compte défini dans le journal" @@ -2341,6 +2436,8 @@ msgid "" "You cannot change the type of account to '%s' type as it contains journal " "items!" msgstr "" +"Vous ne pouvez pas changer le type de compte pour un type '%s' car il " +"contient des écritures comptables." #. module: account #: model:ir.model,name:account.model_account_aged_trial_balance @@ -2411,7 +2508,9 @@ msgstr "Gestion des immobilisation" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Comptes fournisseurs" @@ -2730,7 +2829,7 @@ msgid "Create an Account Based on this Template" msgstr "Créer un compte à partir de ce modèle" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2738,6 +2837,11 @@ msgid "" "amount greater than the total invoiced amount. In order to avoid rounding " "issues, the latest line of your payment term must be of type 'balance'." msgstr "" +"La facture ne peut pas être créée.\n" +"Ses modalités de paiements sont probablement mal configurées car il donne un " +"montant calculé plus grand que le montant total facturé. Afin d'éviter des " +"problèmes d'arrondis, la dernière ligne de vos modalités de paiement doit " +"être du type 'équilibre'." #. module: account #: view:account.move:0 @@ -2751,7 +2855,7 @@ msgid "Main Sequence" msgstr "Séquence principale" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2777,7 +2881,7 @@ msgid "Fiscal Positions" msgstr "Positions fiscales" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "Impossible de créer des écritures sur un compte fermé %s %s." @@ -2806,7 +2910,7 @@ msgstr "Propriétés du compte" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Create a draft refund" -msgstr "" +msgstr "Créer un avoir en brouillon" #. module: account #: view:account.partner.reconcile.process:0 @@ -2816,7 +2920,7 @@ msgstr "Lettrage par partenaire" #. module: account #: view:account.analytic.line:0 msgid "Fin. Account" -msgstr "" +msgstr "Compte financier" #. module: account #: field:account.tax,tax_code_id:0 @@ -2887,7 +2991,7 @@ msgid "Account Model Entries" msgstr "Modèle d'écriture comptable" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "EXJ" @@ -3005,24 +3109,23 @@ msgid "Accounts" msgstr "Comptes" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Erreur de paramétrage !" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." -msgstr "" +msgstr "Relevé %s confirmé, écritures comptables créées" #. module: account #: field:account.invoice.report,price_average:0 @@ -3218,10 +3321,10 @@ msgstr "" "pas en état \"brouillon\" ou \"proforma\"." #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." -msgstr "" +msgstr "Veuillez choisir des périodes qui appartiennent à la même société" #. module: account #: model:ir.actions.act_window,name:account.action_report_account_sales_tree_all @@ -3231,7 +3334,7 @@ msgid "Sales by Account" msgstr "Ventes par compte" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3248,8 +3351,8 @@ msgid "Sale journal" msgstr "Journal des ventes" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3272,6 +3375,8 @@ msgid "" "You need an Opening journal with centralisation checked to set the initial " "balance." msgstr "" +"Vous avez besoin d'un journal d'ouverture avec \"centralisation\" coché pour " +"définir la balance initiale." #. module: account #: model:ir.actions.act_window,name:account.action_tax_code_list @@ -3418,7 +3523,7 @@ msgid "Fiscal Position" msgstr "Position fiscale" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3519,7 +3624,7 @@ msgstr "" "utilisent toujours le taux à la date courante." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "Il n'y a pas de code parent pour le modèle de compte." @@ -3584,8 +3689,8 @@ msgid "View" msgstr "Vue" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3856,7 +3961,7 @@ msgstr "" "Nom." #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3874,7 +3979,7 @@ msgid "Starting Balance" msgstr "Solde initial" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Pas de partenaire défini !" @@ -3935,7 +4040,7 @@ msgstr "" "emails automatiques ou via le portail OpenERP ." #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4107,7 +4212,7 @@ msgid "Period Length (days)" msgstr "Durée de la période (jours)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -4182,9 +4287,13 @@ msgid "VAT :" msgstr "TVA" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4277,7 +4386,7 @@ msgid "Chart of Accounts Template" msgstr "Modèle de plan comptable" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4289,8 +4398,10 @@ msgstr "" "Veuillez y indiquer un partenaire !" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4393,7 +4504,7 @@ msgstr "Compte fournisseur" #: code:addons/account/wizard/account_fiscalyear_close.py:88 #, python-format msgid "The periods to generate opening entries cannot be found." -msgstr "" +msgstr "Aucune période d'ouverture n'a été trouvée" #. module: account #: model:process.node,name:account.process_node_supplierpaymentorder0 @@ -4452,7 +4563,7 @@ msgid "Name" msgstr "Decription" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "Pas de société non configurée !" @@ -4523,10 +4634,12 @@ msgid "" "Check this box if you don't want any tax related to this tax Code to appear " "on invoices." msgstr "" +"Cochez cette case si vous ne voulez pas que la taxe relative à ce code de " +"taxe apparaisse dans les factures." #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "Vous ne pouvez pas utiliser un compte inactif" @@ -4556,7 +4669,7 @@ msgid "Consolidated Children" msgstr "Enfants consolidés" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4771,7 +4884,7 @@ msgid "Cancel the Selected Invoices" msgstr "Annuler les factures sélectionnées" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "Vous devez spécifier un compte analytique sur le journal '%s'!" @@ -4843,8 +4956,8 @@ msgid "Supplier invoice sequence" msgstr "Séquence de facture fournisseur" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4907,7 +5020,7 @@ msgid "Account Base Code" msgstr "Code de base de compte" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4957,7 +5070,7 @@ msgstr "" #. module: account #: field:account.move.reconcile,opening_reconciliation:0 msgid "Opening Entries Reconciliation" -msgstr "" +msgstr "Lettrage des entrées d'ouverture" #. module: account #. openerp-web @@ -4977,7 +5090,7 @@ msgid "Statement from invoice or payment" msgstr "Relevé à partir d'une facture ou d'un règlement" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -5033,7 +5146,7 @@ msgid "Bank statements are entered in the system." msgstr "Les relevés bancaires sont saisis dans le système." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Écart de lettrage" @@ -5129,7 +5242,7 @@ msgstr "" "société." #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -5137,6 +5250,10 @@ msgid "" "You can create one in the menu: \n" "Configuration\\Journals\\Journals." msgstr "" +"Impossible de trouver un journal de type %s pour cette société.\n" +"\n" +"Vous pouvez en créer un dans le menu:\n" +"Configuration/Journaux/Journaux" #. module: account #: report:account.vat.declaration:0 @@ -5144,7 +5261,7 @@ msgid "Based On" msgstr "Basé sur" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -5212,7 +5329,7 @@ msgstr "" "devise de la société." #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "Taxe sur les achats %.2f%%" @@ -5284,9 +5401,12 @@ msgid "" "printed it comes to 'Printed' status. When all transactions are done, it " "comes in 'Done' status." msgstr "" +"Quand la période du journal est créée, le statut est \"Brouillon\". Si un " +"rapport est imprimé, le statut devient \"Imprimée\". Quand toutes les " +"transactions sont terminées, le statut devient \"Terminée\"." #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "OD" @@ -5429,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 "" +"Définir le compte utilisé par défaut sur les lignes de taxe des factures. " +"Laisser vide pour utiliser le compte de dépense." #. module: account #: code:addons/account/account.py:890 @@ -5458,12 +5580,14 @@ msgid "Tax Application" msgstr "Application de la Taxe" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" "The encoded total does not match the computed total." msgstr "" +"Merci de vérifier le prix de la facture !\n" +"Le total enregistré ne correspond pas au total calculé." #. module: account #: field:account.account,active:0 @@ -5563,6 +5687,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 "" +"Si vous ne cochez pas cette case, vous pourrez facturer et effectuer les " +"paiements, mais pas de comptabilité (écritures comptables, charte de " +"comptes, ...)" #. module: account #: view:account.period:0 @@ -5635,11 +5762,13 @@ msgid "Target Moves" msgstr "Mouvements Cibles" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" msgstr "" +"Les mouvements ne peuvent pas être supprimés s'ils sont liés à une facture. " +"(Facture : %s - Id du mouvement : %s)" #. module: account #: view:account.bank.statement:0 @@ -5720,13 +5849,16 @@ msgid "Internal Name" msgstr "Nom interne" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" "Put a sequence in the journal definition for automatic numbering or create a " "sequence manually for this piece." msgstr "" +"Impossible de créer une séquence automatique pour cet objet.\n" +"Indiquez une séquence dans la définition du journal pour une numérotation " +"automatique, ou créez une séquence manuellement pour cet objet." #. module: account #: view:account.invoice:0 @@ -5792,7 +5924,7 @@ msgid "Compute Code (if type=code)" msgstr "Mode de Calcul (si type=code)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5852,6 +5984,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 "" +"Contient le résumé de la discussion (nombre de messages, ...). Ce résumé est " +"au format HTML pour permettre son utilisation dans les vues kanban." #. module: account #: field:account.tax,child_depend:0 @@ -5915,10 +6049,10 @@ msgstr "account.installer" #. module: account #: view:account.invoice:0 msgid "Recompute taxes and total" -msgstr "" +msgstr "Recalculer les taxes et le total" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5951,7 +6085,7 @@ msgid "Amount Computation" msgstr "Calcul du montant" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5967,7 +6101,7 @@ msgstr "Contrôle des ecritures" #: view:account.analytic.chart:0 #: view:project.account.analytic.line:0 msgid "(Keep empty to open the current situation)" -msgstr "(Laisser vide pour consulter la situation courrante)" +msgstr "(Laisser vide pour consulter la situation courante)" #. module: account #: field:account.analytic.balance,date1:0 @@ -5981,7 +6115,7 @@ msgstr "Début de la période" #. module: account #: model:account.account.type,name:account.account_type_asset_view1 msgid "Asset View" -msgstr "" +msgstr "Vue des actifs" #. module: account #: model:ir.model,name:account.model_account_common_account_report @@ -6014,6 +6148,9 @@ msgid "" "that you should have your last line with the type 'Balance' to ensure that " "the whole amount will be treated." msgstr "" +"Sélectionnez ici le type de valorisation relative à cette ligne de condition " +"de paiement. Notez que vous devriez avoir votre dernière ligne de type " +"\"Balance\" pour vous assurer que l'ensemble des montants seront traités." #. module: account #: field:account.partner.ledger,initial_balance:0 @@ -6054,12 +6191,12 @@ msgstr "Journal des opérations de fin d'année" #. module: account #: view:account.invoice:0 msgid "Draft Refund " -msgstr "" +msgstr "Avoir brouillon " #. module: account #: view:cash.box.in:0 msgid "Fill in this form if you put money in the cash register:" -msgstr "" +msgstr "Remplissez ce formulaire si vous ajoutez de l'argent en caisse :" #. module: account #: view:account.payment.term.line:0 @@ -6119,7 +6256,7 @@ msgstr "Date de règlement" #: view:account.bank.statement:0 #: field:account.bank.statement,opening_details_ids:0 msgid "Opening Cashbox Lines" -msgstr "" +msgstr "Lignes d'ouverture de caisse" #. module: account #: view:account.analytic.account:0 @@ -6208,7 +6345,7 @@ msgstr "Modèles des positions fiscales" #. module: account #: view:account.invoice:0 msgid "Draft Refund" -msgstr "" +msgstr "Avoir brouillon" #. module: account #: view:account.analytic.chart:0 @@ -6255,7 +6392,7 @@ msgid "Fixed Amount" msgstr "Montant fixe" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6308,14 +6445,14 @@ msgid "Child Accounts" msgstr "Comptes fils" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Description de l'écriture (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Ajustement" @@ -6341,7 +6478,7 @@ msgstr "Produits" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Fournisseur" @@ -6361,7 +6498,7 @@ msgid "Account n°" msgstr "Compte n°" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Référence libre" @@ -6371,7 +6508,9 @@ msgstr "Référence libre" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Comptes de tiers" @@ -6481,7 +6620,7 @@ msgid "Filter by" msgstr "Filtrer par" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "Vous avez une expression incorrecte \"%(...)s\" dans votre modèle !" @@ -6529,7 +6668,7 @@ msgid "Number of Days" msgstr "Nombre de jours" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6679,7 +6818,7 @@ msgid "Models" msgstr "Modèles" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6855,7 +6994,7 @@ msgid "You cannot create journal items on closed account." msgstr "Vous ne pouvez pas créer d'écriture sur un compte fermé." #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6877,7 +7016,7 @@ msgstr "" "La devise du compte correspondant si ce n'est pas celle de la société" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "Personnalisé" @@ -6904,7 +7043,7 @@ msgid "Internal Transfers Account" msgstr "Compte de transferts internes" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6930,7 +7069,7 @@ msgid "Power" msgstr "Puissance" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "Impossible de générer un code de journal inutilisé." @@ -7007,12 +7146,12 @@ msgstr "" "important." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -7099,7 +7238,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Avoir fournisseur" @@ -7246,7 +7387,7 @@ msgstr "Statistiques sur les écritures analytiques" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Écritures : " @@ -7357,7 +7498,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Erreur !" @@ -7397,7 +7538,7 @@ msgstr "Manuel" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Cancel: create refund and reconcile" -msgstr "" +msgstr "Annuler : créer l'avoir et lettrer" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 @@ -7590,7 +7731,7 @@ msgstr "" "La devise choisie doit être également partagée par les comptes par défaut." #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7670,7 +7811,7 @@ msgid "Done" msgstr "Clôturé" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7712,6 +7853,8 @@ msgstr "Document d'origine" #: help:account.config.settings,company_footer:0 msgid "Bank accounts as printed in the footer of each printed document" msgstr "" +"Comptes en banque comme imprimé dans le pied de page de chaque document " +"imprimé" #. module: account #: constraint:account.account:0 @@ -7969,7 +8112,7 @@ msgstr "Rapports" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -8035,7 +8178,7 @@ msgid "Use model" msgstr "Utiliser le modèle" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -8086,7 +8229,7 @@ msgid "Root/View" msgstr "Racine/vue" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "AN" @@ -8155,7 +8298,7 @@ msgid "Maturity Date" msgstr "Date d'échéance" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Journal des ventes" @@ -8166,7 +8309,7 @@ msgid "Invoice Tax" msgstr "Taxe" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Pas de numéro de pièce !" @@ -8210,7 +8353,7 @@ msgid "Sales Properties" msgstr "Propriétés des Ventes" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -8235,7 +8378,7 @@ msgstr "au" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Écarts de change" @@ -8269,7 +8412,7 @@ msgid "May" msgstr "Mai" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -8313,7 +8456,7 @@ msgstr "Valider les écritures" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Client" @@ -8329,7 +8472,7 @@ msgstr "Nom du rapport" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Liquidités" @@ -8346,6 +8489,8 @@ msgid "" "Refund base on this type. You can not Modify and Cancel if the invoice is " "already reconciled" msgstr "" +"Crée l'avoir selon ce type. Il n'est pas possible de \"Modifier\" ni " +"d'\"annuler\" une facture déjà lettrée." #. module: account #: field:account.bank.statement.line,sequence:0 @@ -8503,6 +8648,7 @@ msgstr "Fixe" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Avertissement !" @@ -8570,7 +8716,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Choisissez une devise à appliquer à la facture" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Aucune ligne de facture !" @@ -8595,7 +8741,7 @@ msgid "Tax Use In" msgstr "Usage de la Taxe" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8605,7 +8751,7 @@ msgstr "" "Le solde attendu (%.2f) est différent du solde calculé (%.2f)." #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Les lignes d'écritures ne sont pas dans un état validé." @@ -8650,7 +8796,7 @@ msgid "Associated Partner" msgstr "Partenaire Associé" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Vous devez d'abord sélectionner un partenaire !" @@ -8731,13 +8877,13 @@ msgstr "" "avant le calcul des autres taxes." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Journal des avoirs d'achats" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "Veuillez définir une séquence sur ce journal." @@ -8987,7 +9133,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -9096,7 +9242,7 @@ msgid "The partner account used for this invoice." msgstr "Le compte partenaire utilisé pour cette facture" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Taxe %.2f%%" @@ -9114,7 +9260,7 @@ msgid "Payment Term Line" msgstr "Détail des conditions de règlement" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Journal des achats" @@ -9285,7 +9431,7 @@ msgid "Journal Name" msgstr "Nom du journal" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "L'écriture \"%s\" n'est pas valide !" @@ -9337,7 +9483,7 @@ msgstr "" "multi devise." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -9400,7 +9546,7 @@ msgid "Reconciled entries" msgstr "Écritures rapprochées" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "Modèle non cohérent !" @@ -9422,7 +9568,7 @@ msgid "Print Account Partner Balance" msgstr "Imprimer le solde du partenaire" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9462,7 +9608,7 @@ msgstr "inconnu" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Journal d'ouverture" @@ -9559,7 +9705,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Journal des avoirs de ventes" @@ -9593,7 +9739,7 @@ msgstr "Fermer des exercices et des périodes" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 msgid "Purchase refund journal" -msgstr "" +msgstr "Journal d'avoir d'achat" #. module: account #: view:account.analytic.line:0 @@ -9625,13 +9771,13 @@ msgid "Purchase Tax(%)" msgstr "Taxe à l'achat (%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Créer quelques lignes de facture SVP." #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9644,7 +9790,7 @@ msgid "Display Detail" msgstr "Afficher le détail" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "SCNJ" @@ -9744,7 +9890,7 @@ msgstr "Sociétés qui font réference au partenaire" #. module: account #: view:account.invoice:0 msgid "Ask Refund" -msgstr "" +msgstr "Demander un avoir" #. module: account #: view:account.move.line:0 @@ -9806,8 +9952,8 @@ msgid "Receivable Account" msgstr "Compte client" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9909,7 +10055,7 @@ msgid "Move" msgstr "N° d'écriture" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9952,6 +10098,8 @@ msgid "" "Set the account that will be set by default on invoice tax lines for " "refunds. Leave empty to use the expense account." msgstr "" +"Indiquez le compte qui sera indiqué par défaut sur les lignes de facturation " +"des taxes pour les avoirs. Laissez vide pour utiliser le compte de dépense." #. module: account #: help:account.addtmpl.wizard,cparent_id:0 @@ -10000,7 +10148,7 @@ msgid "Balance :" msgstr "Balance :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -10091,7 +10239,7 @@ msgid "Immediate Payment" msgstr "Paiement immédiat" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr " Centralisation" @@ -10188,7 +10336,7 @@ msgid "Unreconciled" msgstr "Non lettré" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Total incorrect !" @@ -10284,7 +10432,7 @@ msgid "Comparison" msgstr "Comparaison" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10309,7 +10457,7 @@ msgstr "" #. module: account #: field:account.bank.statement.line,name:0 msgid "OBI" -msgstr "" +msgstr "Libellé" #. module: account #: help:res.partner,property_account_payable:0 @@ -10375,7 +10523,7 @@ msgid "Journal Entry Model" msgstr "Modèle de pièce comptable" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "La période de début doit précéder la période de fin." @@ -10668,7 +10816,7 @@ msgstr "Impossible de %s une facture brouillon/proforma/annulée" #. module: account #: field:account.tax,account_analytic_paid_id:0 msgid "Refund Tax Analytic Account" -msgstr "" +msgstr "Compte analytique des taxes d'avoirs" #. module: account #: view:account.move.bank.reconcile:0 @@ -10677,6 +10825,7 @@ msgstr "Ouvrir la banque pour rapprochement bancaire" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10692,7 +10841,9 @@ msgstr "Ouvrir la banque pour rapprochement bancaire" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10701,6 +10852,7 @@ msgstr "Ouvrir la banque pour rapprochement bancaire" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10797,7 +10949,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "Impossible de changer la taxe!" @@ -10869,8 +11021,10 @@ msgstr "Comptes de régime de taxes" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Facture fournisseur" @@ -10962,8 +11116,10 @@ msgstr "" "comptes obsolètes." #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Avec mouvements" @@ -11062,7 +11218,7 @@ msgid "Entries Sorted by" msgstr "Écritures triées par" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -11145,6 +11301,8 @@ msgstr "Rechercher une facture" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Avoir" @@ -11219,7 +11377,7 @@ msgid "Manual Invoice Taxes" msgstr "Taxes manuelle" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/fr_BE.po b/addons/account/i18n/fr_BE.po index d260aae5bf6..beeb3182cf4 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-16 05:19+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:12+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Note de Crédit Fournisseur" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8049,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Journal Remboursements Achats" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Rembourser" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/gl.po b/addons/account/i18n/gl.po index dd800f06230..a6782e99a59 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-16 05:14+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:06+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "Residual" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "Importar da factura ou do pagamento" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -130,15 +130,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -150,7 +150,7 @@ msgid "Warning!" msgstr "¡Atención!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -337,7 +337,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -658,7 +658,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -669,13 +669,13 @@ msgid "Report of the Sales by Account Type" msgstr "Informe das vendas por tipo de conta" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "SAJ" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -728,7 +728,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Contas de Ventas" @@ -766,7 +768,7 @@ msgid "Are you sure you want to create entries?" msgstr "¿Seguro que queres crear os asentos?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -835,7 +837,7 @@ msgid "Type" msgstr "Tipo" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -858,7 +860,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -930,7 +932,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1014,7 +1016,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1088,10 +1090,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1217,7 +1219,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Banco" @@ -1522,15 +1524,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Con saldo non é igual a 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1753,8 +1757,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Factura" @@ -1829,7 +1835,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1983,36 +1989,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2026,8 +2032,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2069,7 +2075,7 @@ msgid "period close" msgstr "Peche de período" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2141,7 +2147,7 @@ msgid "Analytic account" msgstr "Conta analítica" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Por favor comprobe que se definiu unha conta no diario." @@ -2243,7 +2249,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2555,7 +2563,7 @@ msgid "Create an Account Based on this Template" msgstr "Crear unha conta baseada en esta plantilla" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2576,7 +2584,7 @@ msgid "Main Sequence" msgstr "Secuencia Principal" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2600,7 +2608,7 @@ msgid "Fiscal Positions" msgstr "Posicións Fiscais" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2709,7 +2717,7 @@ msgid "Account Model Entries" msgstr "Modelos de Apuntes Contables" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "EXJ" @@ -2825,21 +2833,20 @@ msgid "Accounts" msgstr "Contas" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "¡Erro de Configuración!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3033,7 +3040,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3046,7 +3053,7 @@ msgid "Sales by Account" msgstr "Ventas por Conta" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3062,8 +3069,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3229,7 +3236,7 @@ msgid "Fiscal Position" msgstr "Posición Fiscal" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3328,7 +3335,7 @@ msgstr "" "empregan a tasa \"En data\"." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3391,8 +3398,8 @@ msgid "View" msgstr "Vista" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3663,7 +3670,7 @@ msgstr "" "as mesmas referencias cas do propio extracto." #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3678,7 +3685,7 @@ msgid "Starting Balance" msgstr "Saldo inicial" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "¡Non hai empresa definida!" @@ -3731,7 +3738,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3882,7 +3889,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3951,9 +3958,13 @@ msgid "VAT :" msgstr "IVE:" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4043,7 +4054,7 @@ msgid "Chart of Accounts Template" msgstr "Plantilla de Plan de contas" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4055,8 +4066,10 @@ msgstr "" "¡Por favor, defina a empresa nel!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4212,7 +4225,7 @@ msgid "Name" msgstr "Nome" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4283,8 +4296,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4314,7 +4327,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4521,7 +4534,7 @@ msgid "Cancel the Selected Invoices" msgstr "Cancelar as facturas selecciondas" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4588,8 +4601,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4652,7 +4665,7 @@ msgid "Account Base Code" msgstr "Código base conta" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4718,7 +4731,7 @@ msgid "Statement from invoice or payment" msgstr "Extracto dende factura ou pago" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4772,7 +4785,7 @@ msgid "Bank statements are entered in the system." msgstr "Foron introducidos os extractos bancarios no sistema." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Desfase conciliación" @@ -4862,7 +4875,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4877,7 +4890,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -4943,7 +4956,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -5017,7 +5030,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5186,7 +5199,7 @@ msgid "Tax Application" msgstr "Aplicación de impostos" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5358,7 +5371,7 @@ msgid "Target Moves" msgstr "Movementos destino" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5439,7 +5452,7 @@ msgid "Internal Name" msgstr "Nome interno" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5511,7 +5524,7 @@ msgid "Compute Code (if type=code)" msgstr "Código para calcular (se tipo=código)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5639,7 +5652,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5669,7 +5682,7 @@ msgid "Amount Computation" msgstr "Cálculo importe" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5968,7 +5981,7 @@ msgid "Fixed Amount" msgstr "Cantidade fixa" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6019,14 +6032,14 @@ msgid "Child Accounts" msgstr "Contas Fillas" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Desaxuste" @@ -6052,7 +6065,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Proveedor" @@ -6072,7 +6085,7 @@ msgid "Account n°" msgstr "Conta nº" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Referencia libre" @@ -6082,7 +6095,9 @@ msgstr "Referencia libre" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Contas a cobrar e pagar" @@ -6191,7 +6206,7 @@ msgid "Filter by" msgstr "Filtrar por" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6239,7 +6254,7 @@ msgid "Number of Days" msgstr "Número de Días" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6385,7 +6400,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6557,7 +6572,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6578,7 +6593,7 @@ msgid "The related account currency if not equal to the company one." msgstr "A moeda contable relacionada se non é igual a da compañía." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6605,7 +6620,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6631,7 +6646,7 @@ msgid "Power" msgstr "Enerxía" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6704,12 +6719,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6787,7 +6802,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6930,7 +6947,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -7039,7 +7056,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7260,7 +7277,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7331,7 +7348,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7616,7 +7633,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7679,7 +7696,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7730,7 +7747,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7797,7 +7814,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7808,7 +7825,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7847,7 +7864,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7872,7 +7889,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7904,7 +7921,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7945,7 +7962,7 @@ msgstr "Asertar asentos" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Cliente" @@ -7961,7 +7978,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Efectivo" @@ -8125,6 +8142,7 @@ msgstr "Fixo" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Aviso !" @@ -8192,7 +8210,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8215,7 +8233,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8223,7 +8241,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8267,7 +8285,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8348,13 +8366,13 @@ msgstr "" "calcular os seguintes impostos." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8597,7 +8615,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8698,7 +8716,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8716,7 +8734,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8885,7 +8903,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8933,7 +8951,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8994,7 +9012,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -9016,7 +9034,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9050,7 +9068,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9145,7 +9163,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9211,13 +9229,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9230,7 +9248,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9389,8 +9407,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9491,7 +9509,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9585,7 +9603,7 @@ msgid "Balance :" msgstr "Saldo:" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9676,7 +9694,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9765,7 +9783,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9850,7 +9868,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9937,7 +9955,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10236,6 +10254,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10251,7 +10270,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10260,6 +10281,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10351,7 +10373,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10420,8 +10442,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10507,8 +10531,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Con movementos" @@ -10603,7 +10629,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10684,6 +10710,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10754,7 +10782,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/gu.po b/addons/account/i18n/gu.po index 9549d855ce8..af5f3959c4b 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-16 05:14+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:07+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "ચેતવણી!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "પ્રકાર" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "ઈનવોઈસ" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "ખાતાઓ" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "રેખાંકન ભૂલ" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "જુઓ" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "નામ" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "આંતરિક નામ" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "ઘાતાંક" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "પુર્ણ થયુ" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "પ્રતિ" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8049,7 @@ msgstr "ચોક્કસ" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "ચેતવણી" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "ખસેડો" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/he.po b/addons/account/i18n/he.po index 51d47bc6007..38b2d42ad60 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-16 05:14+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:07+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -26,7 +26,7 @@ msgstr "מערכת תשלומים" #: sql_constraint:account.fiscal.position.account:0 msgid "" "An account fiscal position could be defined only once time on same accounts." -msgstr "" +msgstr "מצב הפיסקלי של החשבון יכול להיות מוגדר רק פעם אחת באותם חשבונות." #. module: account #: help:account.tax.code,sequence:0 @@ -38,54 +38,54 @@ msgstr "" #. module: account #: view:account.move.reconcile:0 msgid "Journal Entry Reconcile" -msgstr "" +msgstr "השלמת רישום ביומן" #. module: account #: view:account.account:0 #: view:account.bank.statement:0 #: view:account.move.line:0 msgid "Account Statistics" -msgstr "" +msgstr "סטטיסטיקות של החשבון" #. module: account #: view:account.invoice:0 msgid "Proforma/Open/Paid Invoices" -msgstr "" +msgstr "פְּרוֹ-פוֹרְמָה/פתוח/חשבוניות ששולמו" #. module: account #: field:report.invoice.created,residual:0 msgid "Residual" -msgstr "" +msgstr "שארית" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." -msgstr "" +msgstr "פריט היומן \"%s\" לא תקין." #. module: account #: model:ir.model,name:account.model_report_aged_receivable msgid "Aged Receivable Till Today" -msgstr "" +msgstr "גיול חייבים עד היום" #. module: account #: model:process.transition,name:account.process_transition_invoiceimport0 msgid "Import from invoice or payment" -msgstr "" +msgstr "ייבוא מחשבונית או תשלום" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" -msgstr "" +msgstr "חשבון שגוי!" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "Total Debit" -msgstr "" +msgstr "סה\"כ חיוב" #. module: account #: constraint:account.account.template:0 @@ -93,6 +93,8 @@ msgid "" "Error!\n" "You cannot create recursive account templates." msgstr "" +"שגיאה!\n" +"לא ניתן לייצר תבניות חשבון רקורסיביות." #. module: account #. openerp-web @@ -103,7 +105,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:30 #, python-format msgid "Reconcile" -msgstr "סטטוס אישור" +msgstr "מכנה משותף" #. module: account #: field:account.bank.statement,name:0 @@ -115,7 +117,7 @@ msgstr "סטטוס אישור" #: xsl:account.transfer:0 #: field:cash.box.in,ref:0 msgid "Reference" -msgstr "ייחוס" +msgstr "הפניה" #. module: account #: help:account.payment.term,active:0 @@ -123,20 +125,21 @@ msgid "" "If the active field is set to False, it will allow you to hide the payment " "term without removing it." msgstr "" +"אם השדה הפעיל מוגדר כשלילי, יתאפשר לך להסתיר את תקופת התשלום בלי להסירה." #. module: account #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -145,13 +148,13 @@ msgstr "" #: code:addons/account/wizard/account_validate_account_move.py:61 #, python-format msgid "Warning!" -msgstr "" +msgstr "אזהרה!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" -msgstr "" +msgstr "יומן מעורב" #. module: account #: code:addons/account/wizard/account_open_closed_fiscalyear.py:39 @@ -161,12 +164,14 @@ msgid "" "which is set after generating opening entries from 'Generate Opening " "Entries'." msgstr "" +"עליך להגדיר את 'רישומי יומן לסוף השנה' לשנה הפיסקלית הזו, המוגדר אחרי יצירת " +"רישומים פתוחים מ'צור רישומים פתוחים'" #. module: account #: field:account.fiscal.position.account,account_src_id:0 #: field:account.fiscal.position.account.template,account_src_id:0 msgid "Account Source" -msgstr "" +msgstr "מקור החשבון" #. module: account #: model:ir.actions.act_window,help:account.action_account_period @@ -183,17 +188,17 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_view_created_invoice_dashboard msgid "Invoices Created Within Past 15 Days" -msgstr "" +msgstr "חשבוניות שנוצרו במהלך 15 הימים האחרונים" #. module: account #: field:accounting.report,label_filter:0 msgid "Column Label" -msgstr "" +msgstr "תוית עמודה" #. module: account #: help:account.config.settings,code_digits:0 msgid "No. of digits to use for account code" -msgstr "" +msgstr "מספר ספרות לשימוש בקוד החשבון" #. module: account #: help:account.analytic.journal,type:0 @@ -215,12 +220,12 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_tax_template_form #: model:ir.ui.menu,name:account.menu_action_account_tax_template_form msgid "Tax Templates" -msgstr "" +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 @@ -230,17 +235,17 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_management_belgian_reports msgid "Belgian Reports" -msgstr "" +msgstr "דוחות בלגיים" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "" +msgstr "בתוקף" #. module: account #: model:account.account.type,name:account.account_type_income_view1 msgid "Income View" -msgstr "" +msgstr "צפיה בהכנסות" #. module: account #: help:account.account,user_type:0 @@ -249,11 +254,13 @@ msgid "" "legal reports, and set the rules to close a fiscal year and generate opening " "entries." 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 @@ -262,21 +269,24 @@ msgid "" "sales, purchase, expense, contra, etc.\n" " This installs the module account_voucher." msgstr "" +"זה כולל את כל הדרישות הבסיסיות של ערכים שובר לבנק, מזומן, מכירות, רכש, " +"הוצאה, קונטרה, וכו '\n" +"                 זה מתקין account_voucher מודול." #. module: account #: model:ir.actions.act_window,name:account.action_account_use_model_create_entry msgid "Manual Recurring" -msgstr "" +msgstr "החזרה ידינית" #. module: account #: field:account.automatic.reconcile,allow_write_off:0 msgid "Allow write off" -msgstr "" +msgstr "אפשר מחיקה" #. module: account #: view:account.analytic.chart:0 msgid "Select the Period for Analysis" -msgstr "" +msgstr "בחירת תקופה לניתוח" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree3 @@ -293,6 +303,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" לחץ כדי ליצור החזר ללקוח.\n" +" \n" +" החזר הוא מסמך המזכה את החשבונית באופן מלא או\n" +" באופן חלקי.\n" +" \n" +" במקום ליצור החזר ללקוח באופן ידני, אתה\n" +" יכול לייצר אותו ישירות מחשבונית ללקוח בנושא.\n" +" \n" +" " #. module: account #: help:account.installer,charts:0 @@ -300,21 +320,23 @@ msgid "" "Installs localized accounting charts to match as closely as possible the " "accounting needs of your company based on your country." msgstr "" +"התקנה של טבלאות חשבונאות הדומות ככל האפשר לצרכי החשבונאות במדינה בה החברה " +"מבוססת" #. module: account #: model:ir.model,name:account.model_account_unreconcile msgid "Account Unreconcile" -msgstr "" +msgstr "חשבון שלא שולם" #. module: account #: field:account.config.settings,module_account_budget:0 msgid "Budget management" -msgstr "" +msgstr "ניהול תקציבים" #. module: account #: view:product.template:0 msgid "Purchase Properties" -msgstr "" +msgstr "הגרות רכישה" #. module: account #: help:account.financial.report,style_overwrite:0 @@ -323,17 +345,19 @@ msgid "" "leave the automatic formatting, it will be computed based on the financial " "reports hierarchy (auto-computed field 'level')." msgstr "" +"באפרשותך להגדיר פורמט הצגת רישום. במידה ותשאיר פירמוט אוטומטי החישוב יהיה " +"מבוסס על דוחות כספים ועל היררכיית ברירת מחדל." #. module: account #: field:account.config.settings,group_multi_currency:0 msgid "Allow multi currencies" -msgstr "" +msgstr "אפשר ריבוי מטבעות" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" -msgstr "" +msgstr "הינך חייב להגדיר יומן אנליטי עבור סוג '%s'!" #. module: account #: selection:account.entries.report,month:0 @@ -342,18 +366,18 @@ msgstr "" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "June" -msgstr "" +msgstr "יוני" #. module: account #: code:addons/account/wizard/account_automatic_reconcile.py:148 #, python-format msgid "You must select accounts to reconcile." -msgstr "" +msgstr "עליך לבחור חשבונות לתשלום." #. module: account #: help:account.config.settings,group_analytic_accounting:0 msgid "Allows you to use the analytic accounting." -msgstr "" +msgstr "מאפשר לך להשתמש חשבונות אנליטיים." #. module: account #: view:account.invoice:0 @@ -361,13 +385,13 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "איש מכירות" #. module: account #: view:account.bank.statement:0 #: view:account.invoice:0 msgid "Responsible" -msgstr "" +msgstr "אחראי" #. module: account #: model:ir.model,name:account.model_account_bank_accounts_wizard @@ -378,33 +402,33 @@ msgstr "" #: field:account.move.line,date_created:0 #: field:account.move.reconcile,create_date:0 msgid "Creation date" -msgstr "" +msgstr "תאריך היצירה" #. module: account #: selection:account.journal,type:0 msgid "Purchase Refund" -msgstr "" +msgstr "זיכוי רכישה" #. module: account #: selection:account.journal,type:0 msgid "Opening/Closing Situation" -msgstr "" +msgstr "מצב פתיחה\\סגירה" #. module: account #: help:account.journal,currency:0 msgid "The currency used to enter statement" -msgstr "" +msgstr "מטבע לשימוש בחשבוניות" #. module: account #: field:account.journal,default_debit_account_id:0 msgid "Default Debit Account" -msgstr "" +msgstr "חשבון הפקדה ברירת מחדל" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "Total Credit" -msgstr "" +msgstr "סה\"כ אשראי" #. module: account #: help:account.config.settings,module_account_asset:0 @@ -651,7 +675,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +686,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +745,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +785,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +854,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +877,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +949,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1033,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1104,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1231,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1536,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1769,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1847,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1999,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2042,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2085,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2157,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2257,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2564,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2585,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2609,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2717,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2829,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3030,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3043,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3059,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3219,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3312,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3375,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3632,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3647,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3699,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3847,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3916,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +4011,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +4020,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4176,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4247,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4278,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4480,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4545,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4609,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4675,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4729,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4819,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4834,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4900,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4974,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5143,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5315,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5396,7 @@ msgid "Internal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5468,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5596,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5624,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5919,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5970,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +6003,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +6023,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6033,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6139,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6187,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6333,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6505,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6526,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6553,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6579,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6650,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6733,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6878,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6987,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7208,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7279,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7564,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7627,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7678,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7745,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7756,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7795,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7820,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7852,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7893,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7909,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8073,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8099,7 +8141,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8164,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8172,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8216,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8295,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8544,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8645,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8663,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8832,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8880,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8941,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8963,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8997,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9092,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9158,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9177,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9336,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9438,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9532,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9623,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9712,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9797,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9884,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10183,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10199,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10210,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10302,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10371,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10460,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10558,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10639,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10711,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" @@ -10828,3 +10880,6 @@ msgstr "" #~ msgid "Other Configuration" #~ msgstr "תצורה אחרת" + +#~ msgid "Cancel Invoice" +#~ msgstr "בטל חשבונית" diff --git a/addons/account/i18n/hi.po b/addons/account/i18n/hi.po index 166c65b4ed8..496075e0d6b 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-16 05:14+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:07+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "अवशिष्ट" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "चेतावनी!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "विविध जर्नल" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8049,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/hr.po b/addons/account/i18n/hr.po index 96b8b0b4ba6..20dd14e9e59 100644 --- a/addons/account/i18n/hr.po +++ b/addons/account/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-16 05:17+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:10+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -61,7 +61,7 @@ msgid "Residual" msgstr "Ostatak" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "Stavka dnevnika \"%s\" nije ispravna." @@ -77,9 +77,9 @@ msgid "Import from invoice or payment" msgstr "Uvezi iz računa ili plaćanja" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "Nepostojeći račun!" @@ -133,15 +133,15 @@ msgstr "Omogućuje skrivanje neaktivnih uvjeta plaćanja." #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -153,7 +153,7 @@ msgid "Warning!" msgstr "Upozorenje!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Ostali dokumenti" @@ -243,7 +243,7 @@ msgstr "Odabir stavke zatvaranja" #. module: account #: model:process.transition,note:account.process_transition_supplierentriesreconcile0 msgid "Accounting entries are an input of the reconciliation." -msgstr "Accounting entries are an input of the reconciliation." +msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_management_belgian_reports @@ -371,7 +371,7 @@ msgid "Allow multi currencies" msgstr "Dozvoli višestruke valute" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "Morate definirati analitički dnevnik tipa '%s'" @@ -708,7 +708,7 @@ msgid "Profit Account" msgstr "Konto dobiti" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -721,13 +721,13 @@ msgid "Report of the Sales by Account Type" msgstr "Izvještaj o prodaji po vrsti konta" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "IRA" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "Nemože se knjižiti sa valutom različitom od ..." @@ -782,7 +782,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Potražna konta" @@ -822,7 +824,7 @@ msgid "Are you sure you want to create entries?" msgstr "Sigurno želite kreirati stavke?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "Račun djelomično plaćen : %s%s od %s%s (%s%s preostaje)" @@ -893,7 +895,7 @@ msgid "Type" msgstr "Vrsta" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -918,7 +920,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Ulazni računi i povrati" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "Unos je već zatvoren" @@ -996,7 +998,7 @@ msgstr "" " " #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1082,7 +1084,7 @@ msgid "Liability" msgstr "Obveza" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "Molimo definirajte brojevni krug dnevnika povezanog sa ovim računom." @@ -1153,10 +1155,10 @@ msgid "Features" msgstr "Mogućnosti" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1298,7 +1300,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Banka" @@ -1607,15 +1609,17 @@ msgid "%s (copy)" msgstr "%s (kopija)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Sa saldom različitim od 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1843,8 +1847,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Račun" @@ -1929,7 +1935,7 @@ msgstr "" "stanje Nacrt" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "Iste stavke su već zatvorene" @@ -2091,36 +2097,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2134,8 +2140,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Greška!" @@ -2177,7 +2183,7 @@ msgid "period close" msgstr "zatvori period" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2249,7 +2255,7 @@ msgid "Analytic account" msgstr "Analitički konto" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Molimo provjerite da je konto definiran u dnevniku" @@ -2351,7 +2357,9 @@ msgstr "Upravljanje imovinom" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Konta obveza" @@ -2662,7 +2670,7 @@ msgid "Create an Account Based on this Template" msgstr "Kreiraj konto prema ovom predlošku" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2687,7 +2695,7 @@ msgid "Main Sequence" msgstr "Glavna br. serija" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2713,7 +2721,7 @@ msgid "Fiscal Positions" msgstr "Fiskalne pozicije" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "Nije moguće knjiženje stavaka na zatvorenom kontu %s %s." @@ -2821,7 +2829,7 @@ msgid "Account Model Entries" msgstr "Stavke modela" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "URA" @@ -2937,21 +2945,20 @@ msgid "Accounts" msgstr "Konta" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Greška u konfiguraciji!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "Dokument %s potvrđen, proknjižene su sve stavke dnevnika." @@ -3147,7 +3154,7 @@ msgstr "" "'ProForma'" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "Trebali bi odabrati periode koji pripadaju istoj Tvrtci" @@ -3160,7 +3167,7 @@ msgid "Sales by Account" msgstr "Prodaje po kontu" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3176,8 +3183,8 @@ msgid "Sale journal" msgstr "Dokument prodaje" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3341,7 +3348,7 @@ msgid "Fiscal Position" msgstr "Fiskalna pozicija" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3441,7 +3448,7 @@ msgstr "" "always use the rate at date." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3504,8 +3511,8 @@ msgid "View" msgstr "Pogled" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3773,7 +3780,7 @@ msgstr "" "have the same references than the statement itself" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3788,7 +3795,7 @@ msgid "Starting Balance" msgstr "Početni saldo" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Nije definiran partner !" @@ -3845,7 +3852,7 @@ msgstr "" "automatski poslanim mailovima sa OpenERP portala." #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3995,7 +4002,7 @@ msgid "Period Length (days)" msgstr "Trajanje perioda (dana)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -4067,9 +4074,13 @@ msgid "VAT :" msgstr "PDV :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4158,7 +4169,7 @@ msgid "Chart of Accounts Template" msgstr "Predložak kontnog plana" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4170,8 +4181,10 @@ msgstr "" "Please define partner on it!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4331,7 +4344,7 @@ msgid "Name" msgstr "Naziv" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "Nema nepodešenih organizacija!" @@ -4406,8 +4419,8 @@ msgstr "" "pojavljuju na računima." #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "Nije moguće koristiti neaktivni konto" @@ -4437,7 +4450,7 @@ msgid "Consolidated Children" msgstr "Konsolidirana konta" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4649,7 +4662,7 @@ msgid "Cancel the Selected Invoices" msgstr "Otkaži odabrane račune" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4720,8 +4733,8 @@ msgid "Supplier invoice sequence" msgstr "Brojevni krug ulaznih računa" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4784,7 +4797,7 @@ msgid "Account Base Code" msgstr "Porezna grupa osnovice" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4851,7 +4864,7 @@ msgid "Statement from invoice or payment" msgstr "Izvod iz računa ili plaćanja" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4905,7 +4918,7 @@ msgid "Bank statements are entered in the system." msgstr "Bank statements are entered in the system." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Otpis" @@ -4995,7 +5008,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -5010,7 +5023,7 @@ msgid "Based On" msgstr "Na osnovu" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -5078,7 +5091,7 @@ msgstr "" "valute organizacije." #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "Porezi nabave %.2f%%" @@ -5152,7 +5165,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "RAZNO" @@ -5324,7 +5337,7 @@ msgid "Tax Application" msgstr "Porez se primjenjuje" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5500,7 +5513,7 @@ msgid "Target Moves" msgstr "Ciljna knjiženja" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5581,7 +5594,7 @@ msgid "Internal Name" msgstr "Interni naziv" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5653,7 +5666,7 @@ msgid "Compute Code (if type=code)" msgstr "Programski kod (ako je tip=Python kod)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5787,7 +5800,7 @@ msgid "Recompute taxes and total" msgstr "Ponovo izračunaj poreze i ukupni iznos" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5817,7 +5830,7 @@ msgid "Amount Computation" msgstr "Izračun iznosa" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -6117,7 +6130,7 @@ msgid "Fixed Amount" msgstr "Fiksni iznos" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6169,14 +6182,14 @@ msgid "Child Accounts" msgstr "Podređena konta" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Naziv knjiženja (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Otpis" @@ -6202,7 +6215,7 @@ msgstr "Prihod" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Dobavljač" @@ -6222,7 +6235,7 @@ msgid "Account n°" msgstr "Konto br." #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Slobodna vezna oznaka" @@ -6232,7 +6245,9 @@ msgstr "Slobodna vezna oznaka" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Konta potraživanja i dugovanja partnera" @@ -6341,7 +6356,7 @@ msgid "Filter by" msgstr "Filtriraj po" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6389,7 +6404,7 @@ msgid "Number of Days" msgstr "Broj dana" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6536,7 +6551,7 @@ msgid "Models" msgstr "Modeli" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6708,7 +6723,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6729,7 +6744,7 @@ msgid "The related account currency if not equal to the company one." msgstr "The related account currency if not equal to the company one." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "Prilagođen" @@ -6756,7 +6771,7 @@ msgid "Internal Transfers Account" msgstr "Konto internog prijenosa" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6782,7 +6797,7 @@ msgid "Power" msgstr "Eksponent" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6860,12 +6875,12 @@ msgstr "" "je vazan." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6949,7 +6964,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Odobrenje dobavljača" @@ -7094,7 +7111,7 @@ msgstr "Statistike analitike" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Stavke: " @@ -7207,7 +7224,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Greška !" @@ -7434,7 +7451,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7514,7 +7531,7 @@ msgid "Done" msgstr "Izvršeno" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7812,7 +7829,7 @@ msgstr "Izvještavanje" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7877,7 +7894,7 @@ msgid "Use model" msgstr "Koristi model" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7928,7 +7945,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7996,7 +8013,7 @@ msgid "Maturity Date" msgstr "Datum dospijeća" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Dnevnik prodaje" @@ -8007,7 +8024,7 @@ msgid "Invoice Tax" msgstr "Porezi računa" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Ne postoji broj dijela !" @@ -8046,7 +8063,7 @@ msgid "Sales Properties" msgstr "Svojstva prodaje" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -8071,7 +8088,7 @@ msgstr "Do" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Podešavanje valuta" @@ -8103,7 +8120,7 @@ msgid "May" msgstr "Svibanj" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "Globalno su definirani porezi ali se ne nalaze na stavkama računa!" @@ -8144,7 +8161,7 @@ msgstr "Knjiži temeljnicu" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Kupac" @@ -8160,7 +8177,7 @@ msgstr "Naziv izvještaja" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Gotovina" @@ -8330,6 +8347,7 @@ msgstr "Fiksno" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Upozorenje!" @@ -8397,7 +8415,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Odaberite valutu računa" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Nema stavaka računa !" @@ -8422,7 +8440,7 @@ msgid "Tax Use In" msgstr "Primjena poreza za" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8432,7 +8450,7 @@ msgstr "" "Očekivani saldo (%.2f) je različit od izračunatog. (%.2f)" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "The account entries lines are not in valid state." @@ -8476,7 +8494,7 @@ msgid "Associated Partner" msgstr "Povezani partner" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Morate prvo odabrati partnera !" @@ -8555,13 +8573,13 @@ msgid "" msgstr "Iznos ovog poreza dodati osnovici prije izračuna slijedećeg poreza." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Knjiga odobrenja dobavljača" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8809,7 +8827,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8910,7 +8928,7 @@ msgid "The partner account used for this invoice." msgstr "Konto partnera za ovaj račun" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Porez %.2f%%" @@ -8928,7 +8946,7 @@ msgid "Payment Term Line" msgstr "Redak uvjeta plaćanja" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Dnevnik URA" @@ -9097,7 +9115,7 @@ msgid "Journal Name" msgstr "Naziv dnevnika" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Stavka \"%s\" nije ispravna !" @@ -9146,7 +9164,7 @@ msgid "" msgstr "Iznos u drugoj valuti ." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -9208,7 +9226,7 @@ msgid "Reconciled entries" msgstr "Zatvorene stavke" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "Pogrešan model!" @@ -9230,7 +9248,7 @@ msgid "Print Account Partner Balance" msgstr "Print Account Partner Balance" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9264,7 +9282,7 @@ msgstr "nepoznato" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Dnevnik početnog stanja" @@ -9361,7 +9379,7 @@ msgid "Unit of Currency" msgstr "Jedinica Valute" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Dnevnik odobrenja kupcima" @@ -9427,13 +9445,13 @@ msgid "Purchase Tax(%)" msgstr "Porez nabave(%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Molim upišite stavke računa." #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9446,7 +9464,7 @@ msgid "Display Detail" msgstr "Prikaži pojedinosti" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "SCNJ" @@ -9607,8 +9625,8 @@ msgid "Receivable Account" msgstr "Konto potraživanja" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9709,7 +9727,7 @@ msgid "Move" msgstr "Temeljnica" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9809,7 +9827,7 @@ msgid "Balance :" msgstr "Saldo" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9900,7 +9918,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9989,7 +10007,7 @@ msgid "Unreconciled" msgstr "Otvoren" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Pogrešan ukupni iznos !" @@ -10081,7 +10099,7 @@ msgid "Comparison" msgstr "Usporedba" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10170,7 +10188,7 @@ msgid "Journal Entry Model" msgstr "Model temeljnice" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10472,6 +10490,7 @@ msgstr "Otvoreno za zatvaranje banke" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10487,7 +10506,9 @@ msgstr "Otvoreno za zatvaranje banke" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10496,6 +10517,7 @@ msgstr "Otvoreno za zatvaranje banke" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10590,7 +10612,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "Nije moguće izmjeniti porez!" @@ -10659,8 +10681,10 @@ msgstr "Fiskalna pozicija" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Ulazni račun" @@ -10746,8 +10770,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Sa stavkama" @@ -10842,7 +10868,7 @@ msgid "Entries Sorted by" msgstr "Sortirano po" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10923,6 +10949,8 @@ msgstr "Traži račun" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Odobrenje" @@ -10993,7 +11021,7 @@ msgid "Manual Invoice Taxes" msgstr "Ručni porezi računa" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/hu.po b/addons/account/i18n/hu.po index b31d83f9966..eae3e1bc7cc 100644 --- a/addons/account/i18n/hu.po +++ b/addons/account/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-16 05:15+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:07+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -57,7 +57,7 @@ msgid "Residual" msgstr "Rendezetlen összeg" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -73,9 +73,9 @@ msgid "Import from invoice or payment" msgstr "Importálás számlából vagy pénzügyi rendezésből" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,10 +148,10 @@ msgid "Warning!" msgstr "Figyelem!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" -msgstr "" +msgstr "Vegyes napló" #. module: account #: code:addons/account/wizard/account_open_closed_fiscalyear.py:39 @@ -238,12 +238,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 @@ -314,7 +314,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 @@ -335,7 +335,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -432,7 +432,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 @@ -595,7 +595,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 @@ -617,7 +617,7 @@ msgstr "Sorszámok" #: field:account.financial.report,account_report_id:0 #: selection:account.financial.report,type:0 msgid "Report Value" -msgstr "" +msgstr "Érték beszámoló" #. module: account #: code:addons/account/wizard/account_validate_account_move.py:39 @@ -653,10 +653,10 @@ 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 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -669,13 +669,13 @@ msgid "Report of the Sales by Account Type" msgstr "Számlatípusonkénti értékesítési kimutatás" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "SAJ" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -728,7 +728,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Vevő számlák" @@ -736,7 +738,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 @@ -768,7 +770,7 @@ msgid "Are you sure you want to create entries?" msgstr "Biztos benne, hogy létre akarja hozni a tételeket?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -789,7 +791,7 @@ msgstr "" #. module: account #: selection:account.financial.report,display_detail:0 msgid "Display children with hierarchy" -msgstr "" +msgstr "Az alcsoportok mutatása rangsorral" #. module: account #: selection:account.payment.term.line,value:0 @@ -837,7 +839,7 @@ msgid "Type" msgstr "Típus" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -862,7 +864,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Szállítói számlák és jóváírások" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -902,7 +904,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 @@ -935,7 +937,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -979,12 +981,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 @@ -1019,7 +1021,7 @@ msgid "Liability" msgstr "Kötelezettség" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1092,10 +1094,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1134,7 +1136,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 @@ -1221,7 +1223,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Bank" @@ -1310,7 +1312,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 @@ -1428,7 +1430,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 @@ -1478,7 +1480,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 @@ -1501,7 +1503,7 @@ msgstr "" #. module: account #: field:account.invoice.report,state:0 msgid "Invoice Status" -msgstr "" +msgstr "Számla állapota" #. module: account #: view:account.bank.statement:0 @@ -1523,18 +1525,20 @@ msgstr "Vevő számla" #: code:addons/account/account.py:768 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (másolat)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Nem 0 egyenlegűek" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1597,12 +1601,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 @@ -1682,7 +1686,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 @@ -1757,15 +1761,17 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" 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 @@ -1833,7 +1839,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1882,7 +1888,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 @@ -1897,13 +1903,13 @@ msgstr "" #. module: account #: view:account.period:0 msgid "Duration" -msgstr "" +msgstr "Időtartam" #. module: account #: view:account.bank.statement:0 #: field:account.bank.statement,last_closing_balance:0 msgid "Last Closing Balance" -msgstr "" +msgstr "Előző záróegyenleg" #. module: account #: model:ir.model,name:account.model_account_common_journal_report @@ -1966,7 +1972,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 @@ -1986,36 +1992,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2029,8 +2035,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2072,7 +2078,7 @@ msgid "period close" msgstr "Időszak zárása" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2144,7 +2150,7 @@ msgid "Analytic account" msgstr "Gyűjtőkód" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2247,7 +2253,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Szállító számlák" @@ -2557,7 +2565,7 @@ msgid "Create an Account Based on this Template" msgstr "A sablon alapján főkönyvi számla létrehozása" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2578,7 +2586,7 @@ msgid "Main Sequence" msgstr "Fő sorszám" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2602,7 +2610,7 @@ msgid "Fiscal Positions" msgstr "ÁFA pozíciók" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2710,7 +2718,7 @@ msgid "Account Model Entries" msgstr "Modelltételek" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "EXJ" @@ -2827,21 +2835,20 @@ msgid "Accounts" msgstr "Főkönyvi számlák" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Beállítási hiba!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3034,7 +3041,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3047,7 +3054,7 @@ msgid "Sales by Account" msgstr "Főkönyvi számlánkénti értékesítés" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3063,8 +3070,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3229,7 +3236,7 @@ msgid "Fiscal Position" msgstr "ÁFA pozíció" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3326,7 +3333,7 @@ msgstr "" "csökkenéseit. A növekedéseknél mindig a napi árfolyamot használja a rendszer." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3389,8 +3396,8 @@ msgid "View" msgstr "Gyűjtő" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3658,7 +3665,7 @@ msgstr "" "lesz a bizonylatszáma, mint a kivonatnak." #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3673,7 +3680,7 @@ msgid "Starting Balance" msgstr "Nyitó egyenleg" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Nem adott meg partnert!" @@ -3689,7 +3696,7 @@ msgstr "Időszak zárása" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_opening:0 msgid "Opening Subtotal" -msgstr "" +msgstr "Nyitás összesen" #. module: account #: constraint:account.move.line:0 @@ -3725,7 +3732,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3875,7 +3882,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3944,9 +3951,13 @@ msgid "VAT :" msgstr "ÁFA :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4036,7 +4047,7 @@ msgid "Chart of Accounts Template" msgstr "Számlatükör sablon" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4048,8 +4059,10 @@ msgstr "" "Kérem, adja meg a partnert!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4207,7 +4220,7 @@ msgid "Name" msgstr "Megnevezés" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4278,8 +4291,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4309,7 +4322,7 @@ msgid "Consolidated Children" msgstr "Konszolidált számlák" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4515,7 +4528,7 @@ msgid "Cancel the Selected Invoices" msgstr "A kiválasztott számlák érvénytelenítése" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4582,8 +4595,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4638,7 +4651,7 @@ msgstr "Hagyja üresen, hogy az aktuális dátumot használja." #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_closing:0 msgid "Closing Subtotal" -msgstr "" +msgstr "Zárás összesen" #. module: account #: field:account.tax,base_code_id:0 @@ -4646,7 +4659,7 @@ msgid "Account Base Code" msgstr "Adóalapgyűjtő kód" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4712,7 +4725,7 @@ msgid "Statement from invoice or payment" msgstr "Kivonat számlából vagy pénzügyi rendezésből" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4766,7 +4779,7 @@ msgid "Bank statements are entered in the system." msgstr "Bankkivonatok berögzítésre kerültek a rendszerbe." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Párosítási különbözet leírása" @@ -4856,7 +4869,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4871,7 +4884,7 @@ msgid "Based On" msgstr "Alapján" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4979,7 +4992,7 @@ msgstr "" #. module: account #: selection:account.bank.statement,state:0 msgid "New" -msgstr "" +msgstr "Új" #. module: account #: view:wizard.multi.charts.accounts:0 @@ -5011,7 +5024,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5180,7 +5193,7 @@ msgid "Tax Application" msgstr "Alkalmazási terület" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5201,7 +5214,7 @@ msgstr "Aktív" #: view:account.bank.statement:0 #: field:account.journal,cash_control:0 msgid "Cash Control" -msgstr "" +msgstr "Készpénz ellenőrzés" #. module: account #: field:account.analytic.balance,date2:0 @@ -5352,7 +5365,7 @@ msgid "Target Moves" msgstr "Figyelembe vett tételek" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5362,7 +5375,7 @@ msgstr "" #: view:account.bank.statement:0 #: help:account.cashbox.line,number_opening:0 msgid "Opening Unit Numbers" -msgstr "" +msgstr "Nyitó darabszám" #. module: account #: field:account.subscription,period_type:0 @@ -5433,7 +5446,7 @@ msgid "Internal Name" msgstr "Belső név" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5505,7 +5518,7 @@ msgid "Compute Code (if type=code)" msgstr "Számítási kód (ha a típus = Python kód)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5636,7 +5649,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5667,7 +5680,7 @@ msgid "Amount Computation" msgstr "Összeg kiszámítása" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5964,7 +5977,7 @@ msgid "Fixed Amount" msgstr "Fix összeg" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6015,14 +6028,14 @@ msgid "Child Accounts" msgstr "Alárendelt számlák" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Különbözet leírása" @@ -6048,7 +6061,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Szállító" @@ -6068,7 +6081,7 @@ msgid "Account n°" msgstr "Számla száma" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Szabad hivatkozás" @@ -6078,7 +6091,9 @@ msgstr "Szabad hivatkozás" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Vevő és szállító számlák" @@ -6188,7 +6203,7 @@ msgid "Filter by" msgstr "Szűrés" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6236,7 +6251,7 @@ msgid "Number of Days" msgstr "Napok száma" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6384,7 +6399,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6556,7 +6571,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6577,7 +6592,7 @@ msgid "The related account currency if not equal to the company one." msgstr "Pénznem, ha nem egyezik a vállalat pénznemével." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6604,7 +6619,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6630,7 +6645,7 @@ msgid "Power" msgstr "Max. tételszám" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6706,12 +6721,12 @@ msgstr "" "rendelkező adók esetében. Ebben az esetben az értékelési sorrend lényeges." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6794,7 +6809,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Bejövő jóváíró számla" @@ -6939,7 +6956,7 @@ msgstr "Gyűjtőkód tétel statisztika" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Tételek: " @@ -7042,7 +7059,7 @@ msgstr "" #. module: account #: field:account.bank.statement,total_entry_encoding:0 msgid "Total Transactions" -msgstr "" +msgstr "Összesített forgalom" #. module: account #: code:addons/account/account.py:636 @@ -7052,7 +7069,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Hiba!" @@ -7279,7 +7296,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7358,7 +7375,7 @@ msgid "Done" msgstr "Kész" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7656,7 +7673,7 @@ msgstr "Kimutatások" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7721,7 +7738,7 @@ msgid "Use model" msgstr "Modell használata" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7772,7 +7789,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7841,7 +7858,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Kimenő számla napló" @@ -7852,7 +7869,7 @@ msgid "Invoice Tax" msgstr "Adó" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Nem adott meg darabszámot!" @@ -7891,7 +7908,7 @@ msgid "Sales Properties" msgstr "Értékesítés könyvelési beállítások" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7916,7 +7933,7 @@ msgstr "Záró dátum" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7948,7 +7965,7 @@ msgid "May" msgstr "Május" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7990,7 +8007,7 @@ msgstr "Tételek könyvelése" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Vevő" @@ -8006,7 +8023,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Pénztár" @@ -8089,7 +8106,7 @@ msgstr "Eszköz" #. module: account #: field:account.bank.statement,balance_end:0 msgid "Computed Balance" -msgstr "" +msgstr "Számított egyenleg" #. module: account #. openerp-web @@ -8176,6 +8193,7 @@ msgstr "Fix összeg" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Figyelem!" @@ -8243,7 +8261,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Válassza ki az alkalmazandó új pénznemet" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Nincsenek számlasorok!" @@ -8266,7 +8284,7 @@ msgid "Tax Use In" msgstr "Alkalmazási terület" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8276,7 +8294,7 @@ msgstr "" "A várt egyenleg (%.2f) eltér a számított egyenlegtől (%.2f)." #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "A könyvelési tételsorok nincsenek érvényes állapotban." @@ -8320,7 +8338,7 @@ msgid "Associated Partner" msgstr "Társult partner" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Először partnert kell választani!" @@ -8339,7 +8357,7 @@ msgstr "Pénzügyileg rendezetlen összesen" #. module: account #: view:account.bank.statement:0 msgid "Opening Cash Control" -msgstr "" +msgstr "Nyitó készpénzállomány" #. module: account #: model:process.node,note:account.process_node_invoiceinvoice0 @@ -8401,13 +8419,13 @@ msgstr "" "adó kiszámításánál." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Bejövő jóváíró számla napló" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8650,7 +8668,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8751,7 +8769,7 @@ msgid "The partner account used for this invoice." msgstr "Vevő/szállító főkönyvi számla" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8769,7 +8787,7 @@ msgid "Payment Term Line" msgstr "Fizetési feltétel sor" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Bejövő számla napló" @@ -8940,7 +8958,7 @@ msgid "Journal Name" msgstr "Napló neve" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "A(z) \"%s\" tétel nem érvényes!" @@ -8991,7 +9009,7 @@ msgstr "" "Szabadon választott más pénznemben kifejezett összeg, ha a tétel devizás." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -9052,7 +9070,7 @@ msgid "Reconciled entries" msgstr "Párosított tételek" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -9074,7 +9092,7 @@ msgid "Print Account Partner Balance" msgstr "Folyószámla kivonat nyomtatása" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9108,7 +9126,7 @@ msgstr "Ismeretlen" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Nyitó tételek naplója" @@ -9202,10 +9220,10 @@ msgstr "Kezdő időszak" #. module: account #: field:account.cashbox.line,pieces:0 msgid "Unit of Currency" -msgstr "" +msgstr "Címlet" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Kimenő jóváíró számla napló" @@ -9271,13 +9289,13 @@ msgid "Purchase Tax(%)" msgstr "Előzetesen felszámított ÁFA(%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Kérem, hozzon létre számlasorokat!" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9290,7 +9308,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "SCNJ" @@ -9390,7 +9408,7 @@ msgstr "A partnerre hivatkozó vállalatok" #. module: account #: view:account.invoice:0 msgid "Ask Refund" -msgstr "" +msgstr "Jóváírás igénylése" #. module: account #: view:account.move.line:0 @@ -9451,8 +9469,8 @@ msgid "Receivable Account" msgstr "Vevő főkönyvi számla" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9553,7 +9571,7 @@ msgid "Move" msgstr "Bizonylat száma" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9562,7 +9580,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 @@ -9651,7 +9669,7 @@ msgid "Balance :" msgstr "Egyenleg :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9659,7 +9677,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing msgid "Periodic Processing" -msgstr "" +msgstr "Időszakos feldolgozás" #. module: account #: view:account.invoice.report:0 @@ -9742,7 +9760,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9831,7 +9849,7 @@ msgid "Unreconciled" msgstr "Rendezetlen" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Hibás összesen!" @@ -9922,7 +9940,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10011,7 +10029,7 @@ msgid "Journal Entry Model" msgstr "Kontírozási modell" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10312,6 +10330,7 @@ msgstr "Megnyitás a bank egyeztetéshez" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10327,7 +10346,9 @@ msgstr "Megnyitás a bank egyeztetéshez" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10336,6 +10357,7 @@ msgstr "Megnyitás a bank egyeztetéshez" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10430,7 +10452,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10499,8 +10521,10 @@ msgstr "ÁFA pozíció" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Bejövő számla" @@ -10586,8 +10610,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Amelyeken van mozgás" @@ -10682,7 +10708,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10764,6 +10790,8 @@ msgstr "Számla keresése" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Jóváíró számla" @@ -10834,7 +10862,7 @@ msgid "Manual Invoice Taxes" msgstr "Adók" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" @@ -10917,7 +10945,7 @@ msgstr "Február" #: view:account.bank.statement:0 #: help:account.cashbox.line,number_closing:0 msgid "Closing Unit Numbers" -msgstr "" +msgstr "Záró darabszám" #. module: account #: field:account.bank.accounts.wizard,bank_account_id:0 @@ -11055,9 +11083,6 @@ msgstr "" #~ msgid "Printing Date" #~ msgstr "Nyomtatás dátuma" -#~ msgid "Cancel Invoice" -#~ msgstr "Számla sztornó" - #~ msgid "Bank Reconciliation" #~ msgstr "Bank egyeztetés" @@ -13450,3 +13475,9 @@ msgstr "" #~ msgid "The company name must be unique !" #~ msgstr "A vállalkozás nevének egyedinek kell lennie !" + +#~ msgid "Cancel Invoice" +#~ msgstr "Érvénytelenítés" + +#~ msgid "Sale journal in this year" +#~ msgstr "Erre az évre vonatkozó értékesítési jelentés" diff --git a/addons/account/i18n/id.po b/addons/account/i18n/id.po index ab9998d9d1f..a562c1db7f9 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-16 05:15+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:07+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -60,7 +60,7 @@ msgid "Residual" msgstr "Sisa" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "Jurnal item \"%s\" tidak valid" @@ -76,9 +76,9 @@ msgid "Import from invoice or payment" msgstr "Impor dari tagihan atau pembayaran" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -134,15 +134,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -154,7 +154,7 @@ msgid "Warning!" msgstr "Perhatian!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Jurnal Lain-lain" @@ -347,7 +347,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -668,7 +668,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -681,13 +681,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "SAJ" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -740,7 +740,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Akun Piutang" @@ -780,7 +782,7 @@ msgid "Are you sure you want to create entries?" msgstr "Apakah anda yakin untuk membuat catatan baru?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -849,7 +851,7 @@ msgid "Type" msgstr "Jenis" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -874,7 +876,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Faktur Pemasok dan Faktur Pengembalian Uang" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -948,7 +950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1032,7 +1034,7 @@ msgid "Liability" msgstr "Hutang" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1106,10 +1108,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1235,7 +1237,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Bank" @@ -1542,15 +1544,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Dengan saldo tidak sama dengan 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1775,8 +1779,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Tagihan" @@ -1851,7 +1857,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -2005,36 +2011,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2048,8 +2054,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2091,7 +2097,7 @@ msgid "period close" msgstr "periode dekat" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2163,7 +2169,7 @@ msgid "Analytic account" msgstr "Akun Analitik" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Harap memverifikasi bahwa account didefinisikan di dalam jurnal." @@ -2265,7 +2271,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2577,7 +2585,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2598,7 +2606,7 @@ msgid "Main Sequence" msgstr "Urutan Utama" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2622,7 +2630,7 @@ msgid "Fiscal Positions" msgstr "Posisi Fiskal" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2731,7 +2739,7 @@ msgid "Account Model Entries" msgstr "Catatan Contoh Akun" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2848,21 +2856,20 @@ msgid "Accounts" msgstr "Akun" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Konfigurasi error !" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3055,7 +3062,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3068,7 +3075,7 @@ msgid "Sales by Account" msgstr "Penjualan menurut Akun" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3084,8 +3091,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3250,7 +3257,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3343,7 +3350,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3406,8 +3413,8 @@ msgid "View" msgstr "Tampilan" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3666,7 +3673,7 @@ msgstr "" "untuk memiliki referensi yang sama dari pernyataan itu sendiri" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3681,7 +3688,7 @@ msgid "Starting Balance" msgstr "Saldo Awal" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3733,7 +3740,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3881,7 +3888,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3950,9 +3957,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4041,7 +4052,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4053,8 +4064,10 @@ msgstr "" "Mohon tetapkan mitra !" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4207,7 +4220,7 @@ msgid "Name" msgstr "Nama" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4278,8 +4291,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4309,7 +4322,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4511,7 +4524,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4576,8 +4589,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4640,7 +4653,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4706,7 +4719,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4760,7 +4773,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4850,7 +4863,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4865,7 +4878,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4931,7 +4944,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -5005,7 +5018,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5174,7 +5187,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5346,7 +5359,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5427,7 +5440,7 @@ msgid "Internal Name" msgstr "Nama Internal" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5499,7 +5512,7 @@ msgid "Compute Code (if type=code)" msgstr "Kode Program (if type=code)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5630,7 +5643,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5658,7 +5671,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5953,7 +5966,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6004,14 +6017,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Menghapus" @@ -6037,7 +6050,7 @@ msgstr "Pendapatan" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Pemasok" @@ -6057,7 +6070,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -6067,7 +6080,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6171,7 +6186,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6219,7 +6234,7 @@ msgid "Number of Days" msgstr "Jumlah Hari" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6365,7 +6380,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6537,7 +6552,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6558,7 +6573,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6585,7 +6600,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6611,7 +6626,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6682,12 +6697,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6765,7 +6780,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6908,7 +6925,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -7017,7 +7034,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7240,7 +7257,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7311,7 +7328,7 @@ msgid "Done" msgstr "Selesai" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7601,7 +7618,7 @@ msgstr "Pelaporan" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7664,7 +7681,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7715,7 +7732,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7782,7 +7799,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Jurnal Penjualan" @@ -7793,7 +7810,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7832,7 +7849,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7857,7 +7874,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7889,7 +7906,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7930,7 +7947,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7946,7 +7963,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8110,6 +8127,7 @@ msgstr "Baku" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8177,7 +8195,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8200,7 +8218,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8208,7 +8226,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8252,7 +8270,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8331,13 +8349,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8580,7 +8598,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8681,7 +8699,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8699,7 +8717,7 @@ msgid "Payment Term Line" msgstr "Detail Termin Pembayaran" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8870,7 +8888,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Catatan \"%s\" tidak sah !" @@ -8920,7 +8938,7 @@ msgstr "" "catatan dengan beberapa mata uang." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8981,7 +8999,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -9003,7 +9021,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9037,7 +9055,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9132,7 +9150,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9198,13 +9216,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9217,7 +9235,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9376,8 +9394,8 @@ msgid "Receivable Account" msgstr "Akun Piutang" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9478,7 +9496,7 @@ msgid "Move" msgstr "memindahkan" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9572,7 +9590,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9663,7 +9681,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9752,7 +9770,7 @@ msgid "Unreconciled" msgstr "Belum direkonsoliasi" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9837,7 +9855,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9924,7 +9942,7 @@ msgid "Journal Entry Model" msgstr "Contoh Ayat Jurnal" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10226,6 +10244,7 @@ msgstr "Buka untuk rekonsiliasi bank" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10241,7 +10260,9 @@ msgstr "Buka untuk rekonsiliasi bank" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10250,6 +10271,7 @@ msgstr "Buka untuk rekonsiliasi bank" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10341,7 +10363,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10410,8 +10432,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Faktur Pembelian" @@ -10497,8 +10521,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10595,7 +10621,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10676,6 +10702,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10746,7 +10774,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/is.po b/addons/account/i18n/is.po index 850ced594cc..0d5506e577c 100644 --- a/addons/account/i18n/is.po +++ b/addons/account/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-07-11 05:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:07+0000\n" +"X-Generator: Launchpad (build 16753)\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 51278670f68..6a4593314e8 100644 --- a/addons/account/i18n/it.po +++ b/addons/account/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-16 05:15+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:07+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -60,7 +60,7 @@ msgid "Residual" msgstr "Residuo" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "L'elemento \"%s\" del sezionale non è valido." @@ -76,9 +76,9 @@ msgid "Import from invoice or payment" msgstr "Importa da fatture o pagamenti" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "Conto Errato!" @@ -134,15 +134,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -154,7 +154,7 @@ msgid "Warning!" msgstr "Attenzione!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Sezionali vari" @@ -376,7 +376,7 @@ msgid "Allow multi currencies" msgstr "Consenti valute multiple" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "Occorre definire un sezionale analitico di tipo '%s'!" @@ -719,7 +719,7 @@ msgid "Profit Account" msgstr "Conto Profitti" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -731,13 +731,13 @@ msgid "Report of the Sales by Account Type" msgstr "Report delle vendite per tipo di conto" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "SAJ" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "Non è possibile creare movimenti con valute differenti da .." @@ -797,7 +797,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Conti di Credito" @@ -837,7 +839,7 @@ msgid "Are you sure you want to create entries?" msgstr "Sei sicuro di voler creare la voce?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "Fattura parzialmente pagata: %s%s di %s%s (%s%s rimanente)." @@ -909,7 +911,7 @@ msgid "Type" msgstr "Tipo" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -934,7 +936,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Fatture e Note di Credito Fornitori" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "La registrazione è già riconciliata" @@ -1013,7 +1015,7 @@ msgstr "" " " #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1099,7 +1101,7 @@ msgid "Liability" msgstr "Passività" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1174,10 +1176,10 @@ msgid "Features" msgstr "Caratteristiche" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1334,7 +1336,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Banca" @@ -1646,15 +1648,17 @@ msgid "%s (copy)" msgstr "%s (copia)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Con chiusura diversa da zero" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1897,8 +1901,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Fattura" @@ -1986,7 +1992,7 @@ msgstr "" "stato bozza attivata." #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "Alcune registrazioni sono già riconciliate." @@ -2150,36 +2156,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2193,8 +2199,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Errore!" @@ -2245,7 +2251,7 @@ msgid "period close" msgstr "Chiusura periodo" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2333,7 +2339,7 @@ msgid "Analytic account" msgstr "Conto analitico" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Verificare che al Sezionale sia associato un conto." @@ -2439,7 +2445,9 @@ msgstr "Gestione immobilizzazioni" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Conti di Debito" @@ -2758,7 +2766,7 @@ msgid "Create an Account Based on this Template" msgstr "Creare un conto basandosi su questo template" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2784,7 +2792,7 @@ msgid "Main Sequence" msgstr "Sequenza principale" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2810,7 +2818,7 @@ msgid "Fiscal Positions" msgstr "Posizioni fiscali" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2919,7 +2927,7 @@ msgid "Account Model Entries" msgstr "Modello voci di bilancio" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "EXJ" @@ -3052,21 +3060,20 @@ msgid "Accounts" msgstr "Conti" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Errore di configurazione!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3277,7 +3284,7 @@ msgstr "" "stato 'Bozza' o 'Proforma'." #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "I periodi dovrebbero appartenere alla stessa azienda." @@ -3290,7 +3297,7 @@ msgid "Sales by Account" msgstr "Vendite per conto" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "Non è possibile cancellare una registrazione contabilizzata \"%s\"." @@ -3306,8 +3313,8 @@ msgid "Sale journal" msgstr "Sezionale Vendite" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3476,7 +3483,7 @@ msgid "Fiscal Position" msgstr "Posizione fiscale" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3576,7 +3583,7 @@ msgstr "" "transazioni in entrata usano sempre il tasso alla data." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "Manca il codice padre del template del conto." @@ -3641,8 +3648,8 @@ msgid "View" msgstr "Vista" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3993,7 +4000,7 @@ msgstr "" "contabili di avere lo stesso nome del movimento." #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -4011,7 +4018,7 @@ msgid "Starting Balance" msgstr "Bilancio di apertura" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Non è stato definito alcun Partner!" @@ -4070,7 +4077,7 @@ msgstr "" "OpenERP." #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4248,7 +4255,7 @@ msgid "Period Length (days)" msgstr "Lunghezza periodo (giorni)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -4325,9 +4332,13 @@ msgid "VAT :" msgstr "IVA" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4419,7 +4430,7 @@ msgid "Chart of Accounts Template" msgstr "Template di piano dei conti" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4430,8 +4441,10 @@ msgstr "" "'%s' è basata sui termini di pagamento del partner!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4558,7 +4571,7 @@ msgstr "Prezzo unitario" #. module: account #: model:ir.actions.act_window,name:account.action_account_tree1 msgid "Analytic Items" -msgstr "Movimenti Anal" +msgstr "Movimenti Analitici" #. module: account #: field:analytic.entries.report,nbr:0 @@ -4593,7 +4606,7 @@ msgid "Name" msgstr "Nome" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "Nessuna azienda non configurata !" @@ -4668,8 +4681,8 @@ msgstr "" "questo Codice imposta nelle fatture." #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "Non è possibile utilizzare un conto disattivo." @@ -4699,7 +4712,7 @@ msgid "Consolidated Children" msgstr "Sottoconti consolidati" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4916,7 +4929,7 @@ msgid "Cancel the Selected Invoices" msgstr "Annulla le fatture selezionate" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "Occorre definire un giornale analitico per il Sezionale: '%s'!" @@ -5001,8 +5014,8 @@ msgid "Supplier invoice sequence" msgstr "Sequenza delle fatture fornitori" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -5067,7 +5080,7 @@ msgid "Account Base Code" msgstr "Conto imponibile" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -5135,7 +5148,7 @@ msgid "Statement from invoice or payment" msgstr "Registrazioni da fatture o pagamenti" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -5191,7 +5204,7 @@ msgid "Bank statements are entered in the system." msgstr "Le transazioni bancarie sono state inserite" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Riconcilia Storno" @@ -5287,7 +5300,7 @@ msgstr "" "Non è possibile creare un conto con un conto-padre di un'altra azienda." #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -5306,7 +5319,7 @@ msgid "Based On" msgstr "Basato su" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -5374,7 +5387,7 @@ msgstr "" "aziendale." #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "Imposta su acquisti %.2f%%" @@ -5451,7 +5464,7 @@ msgstr "" "transazioni sono fatte, lo stato diventa 'Completato'." #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "MISC" @@ -5626,7 +5639,7 @@ msgid "Tax Application" msgstr "Applicazione imposta" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5807,7 +5820,7 @@ msgid "Target Moves" msgstr "Registrazioni:" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5894,7 +5907,7 @@ msgid "Internal Name" msgstr "Nome Interno" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5969,7 +5982,7 @@ msgid "Compute Code (if type=code)" msgstr "Codice calcolo (se tipo=codice)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -6111,7 +6124,7 @@ msgid "Recompute taxes and total" msgstr "Ricalcola imposte e totale" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -6144,7 +6157,7 @@ msgid "Amount Computation" msgstr "Calcolo ammontare" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -6453,7 +6466,7 @@ msgid "Fixed Amount" msgstr "Importo fissato" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6506,14 +6519,14 @@ msgid "Child Accounts" msgstr "Conto figlio" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Movimento nome (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Storno" @@ -6539,7 +6552,7 @@ msgstr "Ricavi" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Fornitore" @@ -6559,7 +6572,7 @@ msgid "Account n°" msgstr "Conto n°" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Riferimenti vari" @@ -6569,7 +6582,9 @@ msgstr "Riferimenti vari" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Conti di credito e debito" @@ -6692,7 +6707,7 @@ msgid "Filter by" msgstr "Filtra per" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "L'espressione \"%(...)s\" nel modello è errata!" @@ -6747,7 +6762,7 @@ msgid "Number of Days" msgstr "Numero di Giorni" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6899,7 +6914,7 @@ msgid "Models" msgstr "Modelli" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -7087,7 +7102,7 @@ msgid "You cannot create journal items on closed account." msgstr "Non è possibile creare registrazioni contabili su conti chiusi." #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -7110,7 +7125,7 @@ msgid "The related account currency if not equal to the company one." msgstr "La valuta del conto non e' eguale a quella dell'azienda." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "Personalizzazioni" @@ -7137,7 +7152,7 @@ msgid "Internal Transfers Account" msgstr "Conto Trasferimenti Interni" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -7164,7 +7179,7 @@ msgid "Power" msgstr "Power" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "Non è possibile generare un codice sezionale inutilizzato." @@ -7250,12 +7265,12 @@ msgstr "" "vendono valutate è importante." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -7343,7 +7358,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Note di Credito Fornitori" @@ -7494,7 +7511,7 @@ msgstr "Statistiche scritture analitiche" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Registrazioni: " @@ -7610,7 +7627,7 @@ msgstr "Non è possibile eliminare un conto con registrazioni contabili." #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Errore !" @@ -7848,7 +7865,7 @@ msgstr "" "La valuta scelta dovrebbe essere condivisa anche dai conti di default." #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7927,7 +7944,7 @@ msgid "Done" msgstr "Completato" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -8236,7 +8253,7 @@ msgstr "Reportistica" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -8307,7 +8324,7 @@ msgid "Use model" msgstr "Utilizza il Modello" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -8379,7 +8396,7 @@ msgid "Root/View" msgstr "Radice/Vista" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "OPEJ" @@ -8449,7 +8466,7 @@ msgid "Maturity Date" msgstr "Data di scadenza" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Sezionale Vendite" @@ -8460,7 +8477,7 @@ msgid "Invoice Tax" msgstr "Imposta della fattura" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Nessun numero pezzo!" @@ -8506,7 +8523,7 @@ msgid "Sales Properties" msgstr "Proprietà Vendite" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -8533,7 +8550,7 @@ msgstr "A" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Rettifica Valuta" @@ -8567,7 +8584,7 @@ msgid "May" msgstr "Maggio" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "Imposte globali definite ma non presenti nelle voci fattura!" @@ -8610,7 +8627,7 @@ msgstr "Conferma le scritture contabili" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Cliente" @@ -8626,7 +8643,7 @@ msgstr "Nome Report" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Contante" @@ -8801,6 +8818,7 @@ msgstr "Fisso" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Attenzione !" @@ -8868,7 +8886,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Scegliere una valuta da applicare alla fattura" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Mancano voci nella fattura !" @@ -8893,7 +8911,7 @@ msgid "Tax Use In" msgstr "Tassa usata per" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8903,7 +8921,7 @@ msgstr "" "Il saldo previsto (%.2f) differisce da quello calcolato. (%.2f)" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Queste registrazioni contabili non sono in uno stato valido." @@ -8950,7 +8968,7 @@ msgid "Associated Partner" msgstr "Partner associato" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Bisogna prima selezionare un partner!" @@ -9031,13 +9049,13 @@ msgstr "" "prima di calcolare le prossime imposte" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Sezionale Note di Credito Fornitori" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "E' necessario definire una sequenza per il sezionale." @@ -9295,7 +9313,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "${object.company_id.name} Fattura (Rif ${object.number or 'n/a'})" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -9422,7 +9440,7 @@ msgid "The partner account used for this invoice." msgstr "Il conto del partner utilizzato per questa fattura." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Imposta %.2f%%" @@ -9440,7 +9458,7 @@ msgid "Payment Term Line" msgstr "Riga termine di pagamento" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Sezionale Acquisti" @@ -9628,7 +9646,7 @@ msgid "Journal Name" msgstr "Nome sezionale" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "La voce \"%s\" non è valida !" @@ -9681,7 +9699,7 @@ msgstr "" "L'importo espresso in un'altra valuta opzionale, se c'è una voce multivaluta." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -9750,7 +9768,7 @@ msgid "Reconciled entries" msgstr "Entrate riconciliate" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "Modello errato !" @@ -9772,7 +9790,7 @@ msgid "Print Account Partner Balance" msgstr "Stampa Estratto Conto Partner" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9815,7 +9833,7 @@ msgstr "sconosciuto" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Sezionale delle voci di apertura" @@ -9917,7 +9935,7 @@ msgid "Unit of Currency" msgstr "Pezzatura Valuta" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Sezionale Note di Credito" @@ -9987,13 +10005,13 @@ msgid "Purchase Tax(%)" msgstr "Imposta acquisti (%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Creare voci della fattura" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -10008,7 +10026,7 @@ msgid "Display Detail" msgstr "Mostra dettagli" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "SCNJ" @@ -10186,8 +10204,8 @@ msgid "Receivable Account" msgstr "Conto di Credito" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -10290,7 +10308,7 @@ msgid "Move" msgstr "Rif." #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -10393,7 +10411,7 @@ msgid "Balance :" msgstr "Saldo:" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "Non è possibile creare movimenti per diverse aziende." @@ -10484,7 +10502,7 @@ msgid "Immediate Payment" msgstr "Pagamento immediato" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr " Centralizzazione" @@ -10581,7 +10599,7 @@ msgid "Unreconciled" msgstr "Non riconciliate" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Totale errato !" @@ -10677,7 +10695,7 @@ msgid "Comparison" msgstr "Confronto" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10775,7 +10793,7 @@ msgid "Journal Entry Model" msgstr "Modello di Registrazione" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "Il periodo di inizio deve essere antecedente a quello finale" @@ -11079,6 +11097,7 @@ msgstr "Apri per la riconciliazione bancaria" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -11094,7 +11113,9 @@ msgstr "Apri per la riconciliazione bancaria" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -11103,6 +11124,7 @@ msgstr "Apri per la riconciliazione bancaria" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -11201,7 +11223,7 @@ msgstr "" "saranno annullate" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "Impossibile cambiare l'imposta!" @@ -11274,8 +11296,10 @@ msgstr "Conti posizione fiscale" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Fattura fornitore" @@ -11367,8 +11391,10 @@ msgstr "" "ammortizzati." #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Con i movimenti" @@ -11470,7 +11496,7 @@ msgid "Entries Sorted by" msgstr "Voci ordinate per" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -11576,6 +11602,8 @@ msgstr "Ricerca fattura" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Nota di Credito" @@ -11650,7 +11678,7 @@ msgid "Manual Invoice Taxes" msgstr "Imposte fattura manuali" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" @@ -14662,9 +14690,6 @@ msgstr "" #~ "di pagamento. Si noti che occorre impostare l'ultima linea come di tipo " #~ "'Saldo' in modo che l'intero ammontare venga elaborato." -#~ msgid "Create a draft Refund" -#~ msgstr "Crea una bozza della Nota di Credito" - #~ msgid "" #~ "Here you can customize an existing journal view or create a new view. " #~ "Journal views determine the way you can record entries in your journal. " @@ -14775,9 +14800,6 @@ msgstr "" #~ msgid "At 14 net days 2 percent, remaining amount at 30 days end of month." #~ msgstr "2% dopo 14 giorni, saldo 30 giorni fine mese." -#~ msgid "Cancel: refund invoice and reconcile" -#~ msgstr "Annulla: Nota di Credito e riconciliazione" - #~ msgid "Bank Account Owner" #~ msgstr "Titolare Conto Bancario" @@ -15185,10 +15207,6 @@ msgstr "" #~ "fase di validazione documento (fatture, movimenti bancari...) è saranno " #~ "create con lo stato 'Confermato'." -#~ msgid "Modify: refund invoice, reconcile and create a new draft invoice" -#~ msgstr "" -#~ "Modifica: note di credito, riconcilia e crea una nuova bozza di fattura" - #~ msgid "" #~ "\n" #~ "Hello${object.address_invoice_id.name and ' ' or " @@ -15374,3 +15392,13 @@ msgstr "" #~ msgid "Avg. Delay To Pay" #~ msgstr "Dilazione media di pagamento" + +#~ msgid "Create a draft Refund" +#~ msgstr "Crea una bozza di Nota di Credito" + +#~ msgid "Modify: refund invoice, reconcile and create a new draft invoice" +#~ msgstr "" +#~ "Modifica: crea nota di credito, riconcilia e crea una nuova bozza di fattura" + +#~ msgid "Cancel: refund invoice and reconcile" +#~ msgstr "Annulla: crea un nota di credito e riconcilia" diff --git a/addons/account/i18n/ja.po b/addons/account/i18n/ja.po index abae3bb7f31..60244c678a6 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-16 05:15+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:07+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -26,7 +26,7 @@ msgstr "システム支払" #: sql_constraint:account.fiscal.position.account:0 msgid "" "An account fiscal position could be defined only once time on same accounts." -msgstr "" +msgstr "勘定財務ポジションは一つの勘定につき一回のみ定義できます。" #. module: account #: help:account.tax.code,sequence:0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "残余" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "仕訳項目 %s は有効ではありません。" @@ -74,12 +74,12 @@ msgid "Import from invoice or payment" msgstr "請求書や支払いからインポート" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" -msgstr "" +msgstr "勘定科目が不正です" #. module: account #: view:account.move:0 @@ -128,15 +128,15 @@ msgstr "アクティブ項目がFalseに設定されている場合、支払条 #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "警告" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "その他の仕訳帳" @@ -179,6 +179,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" クリックして会計期間を追加してください。\n" +"

\n" +" 会計期間は通常1ヶ月もしくは1四半期です。\n" +" 通常、税申告の期間に対応します。\n" +"

\n" +" " #. module: account #: model:ir.actions.act_window,name:account.action_view_created_invoice_dashboard @@ -237,7 +244,7 @@ msgstr "ベルギーのレポート" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "" +msgstr "検証済" #. module: account #: model:account.account.type,name:account.account_type_income_view1 @@ -313,7 +320,7 @@ msgstr "消し込みなしアカウント" #. module: account #: field:account.config.settings,module_account_budget:0 msgid "Budget management" -msgstr "" +msgstr "予算管理" #. module: account #: view:product.template:0 @@ -336,7 +343,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "分析仕訳帳のタイプ %s を定義しなければなりません。" @@ -657,7 +664,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "所定の日付のために期間が見つからないか、複数の期間が見つかりました。" @@ -668,13 +675,13 @@ msgid "Report of the Sales by Account Type" msgstr "アカウントタイプ別売上レポート" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -727,7 +734,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "売掛金" @@ -765,7 +774,7 @@ msgid "Are you sure you want to create entries?" msgstr "本当にエントリーを作成しますか?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -834,7 +843,7 @@ msgid "Type" msgstr "タイプ" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -859,7 +868,7 @@ msgid "Supplier Invoices And Refunds" msgstr "仕入先請求書と返金" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -931,7 +940,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1015,7 +1024,7 @@ msgid "Liability" msgstr "負債" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "この請求書と関連する仕訳帳上に順序を定義して下さい。" @@ -1088,10 +1097,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1215,7 +1224,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "銀行" @@ -1520,15 +1529,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: 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ではありません。" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1751,8 +1762,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "請求書" @@ -1827,7 +1840,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1979,36 +1992,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2022,8 +2035,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "エラー" @@ -2065,7 +2078,7 @@ msgid "period close" msgstr "期間終了" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2137,7 +2150,7 @@ msgid "Analytic account" msgstr "分析アカウント" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "アカウントが仕訳帳に定義されていることを確認して下さい。" @@ -2237,7 +2250,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "買掛金" @@ -2545,7 +2560,7 @@ msgid "Create an Account Based on this Template" msgstr "このテンプレートに基づくアカウントの作成" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2566,7 +2581,7 @@ msgid "Main Sequence" msgstr "主順序" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2590,7 +2605,7 @@ msgid "Fiscal Positions" msgstr "会計ポジション" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2698,7 +2713,7 @@ msgid "Account Model Entries" msgstr "アカウントモデルエントリー" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2812,21 +2827,20 @@ msgid "Accounts" msgstr "アカウント" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "設定エラー" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3016,7 +3030,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3029,7 +3043,7 @@ msgid "Sales by Account" msgstr "アカウント別売上" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3045,8 +3059,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3206,7 +3220,7 @@ msgid "Fiscal Position" msgstr "会計ポジション" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3303,7 +3317,7 @@ msgstr "" "ソフトウェアシステムからインポートした場合は、日付レートを使用しなければならないかも知れません。被仕向取引は常に日付レートを使用します。" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3366,8 +3380,8 @@ msgid "View" msgstr "ビュー" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "銀行" @@ -3632,7 +3646,7 @@ msgstr "" "じ参照を持つことができます。" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3647,7 +3661,7 @@ msgid "Starting Balance" msgstr "期首残高" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "パートナが定義されていません。" @@ -3699,7 +3713,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3847,7 +3861,7 @@ msgid "Period Length (days)" msgstr "期間の長さ(日数)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3916,9 +3930,13 @@ msgid "VAT :" msgstr "消費税:" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4007,7 +4025,7 @@ msgid "Chart of Accounts Template" msgstr "勘定科目表テンプレート" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4018,8 +4036,10 @@ msgstr "" "その上にパートナを定義して下さい。" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4173,7 +4193,7 @@ msgid "Name" msgstr "名前" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4244,8 +4264,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4275,7 +4295,7 @@ msgid "Consolidated Children" msgstr "統合された子" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4479,7 +4499,7 @@ msgid "Cancel the Selected Invoices" msgstr "選択した請求書のキャンセル" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "%s 仕訳帳に分析仕訳帳を割り当てる必要があります。" @@ -4544,8 +4564,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4608,7 +4628,7 @@ msgid "Account Base Code" msgstr "アカウント基本コード" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4674,7 +4694,7 @@ msgid "Statement from invoice or payment" msgstr "請求書または支払いからの取引明細書" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4728,7 +4748,7 @@ msgid "Bank statements are entered in the system." msgstr "銀行取引明細書はシステムに入力されます。" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "償却の消し込み" @@ -4820,7 +4840,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4835,7 +4855,7 @@ msgid "Based On" msgstr "基準" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4901,7 +4921,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "消費税(仕入) %.2f%%" @@ -4975,7 +4995,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "その他" @@ -5144,7 +5164,7 @@ msgid "Tax Application" msgstr "税金アプリケーション" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5316,7 +5336,7 @@ msgid "Target Moves" msgstr "ターゲットの移動" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5399,7 +5419,7 @@ msgid "Internal Name" msgstr "内部名称" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5471,7 +5491,7 @@ msgid "Compute Code (if type=code)" msgstr "計算コード(タイプがコードの場合)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5601,7 +5621,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5629,7 +5649,7 @@ msgid "Amount Computation" msgstr "金額計算" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5925,7 +5945,7 @@ msgid "Fixed Amount" msgstr "固定金額" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5976,14 +5996,14 @@ msgid "Child Accounts" msgstr "子アカウント" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "移動名(ID):%s(%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "償却" @@ -6009,7 +6029,7 @@ msgstr "収入" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "仕入先" @@ -6029,7 +6049,7 @@ msgid "Account n°" msgstr "アカウント番号" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "自由参照" @@ -6039,7 +6059,9 @@ msgstr "自由参照" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "売掛金と買掛金" @@ -6146,7 +6168,7 @@ msgid "Filter by" msgstr "フィルタ" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "モデルの中に誤った式があります:%(...)s" @@ -6194,7 +6216,7 @@ msgid "Number of Days" msgstr "日数" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6340,7 +6362,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6514,7 +6536,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6535,7 +6557,7 @@ msgid "The related account currency if not equal to the company one." msgstr "会社の通貨と等しくない場合は関連するアカウントの通貨" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6562,7 +6584,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6588,7 +6610,7 @@ msgid "Power" msgstr "電力" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6661,12 +6683,12 @@ msgstr "" "となります。" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6748,7 +6770,9 @@ msgstr "既に仕訳帳項目に含めれるアカウントの所有会社を変 #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "仕入先返金" @@ -6891,7 +6915,7 @@ msgstr "分析エントリーの統計情報" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "エントリー: " @@ -7000,7 +7024,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "エラー" @@ -7224,7 +7248,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7303,7 +7327,7 @@ msgid "Done" msgstr "完了" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7592,7 +7616,7 @@ msgstr "レポート" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7655,7 +7679,7 @@ msgid "Use model" msgstr "モデルの使用" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7706,7 +7730,7 @@ msgid "Root/View" msgstr "ルート / ビュー" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7773,7 +7797,7 @@ msgid "Maturity Date" msgstr "満期日" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "売上仕訳帳" @@ -7784,7 +7808,7 @@ msgid "Invoice Tax" msgstr "請求書税金" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "ピース番号がありません。" @@ -7826,7 +7850,7 @@ msgid "Sales Properties" msgstr "売上属性" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7851,7 +7875,7 @@ msgstr "まで" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "通貨調整" @@ -7883,7 +7907,7 @@ msgid "May" msgstr "5月" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "全体的な税金は定義されていますが、請求書行にそれらが存在しません。" @@ -7924,7 +7948,7 @@ msgstr "仕訳帳エントリーの記帳" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "顧客" @@ -7940,7 +7964,7 @@ msgstr "レポート名" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "現金" @@ -8107,6 +8131,7 @@ msgstr "固定" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "警告" @@ -8174,7 +8199,7 @@ msgid "Select a currency to apply on the invoice" msgstr "請求書に適用する通貨の選択" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "請求書行がありません。" @@ -8197,7 +8222,7 @@ msgid "Tax Use In" msgstr "税金の使用" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8207,7 +8232,7 @@ msgstr "" "予想される残高(%.2f)は計算されたもの(%.2f)と異なっています。" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "アカウントエントリー行は有効な状態ではありません。" @@ -8251,7 +8276,7 @@ msgid "Associated Partner" msgstr "関連パートナ" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "最初にパートナを選択して下さい。" @@ -8330,13 +8355,13 @@ msgid "" msgstr "次の税金を計算する前に、税金額が基準額に含まれていなければならない時に設定します。" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "仕入返金仕訳帳" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8579,7 +8604,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8683,7 +8708,7 @@ msgid "The partner account used for this invoice." msgstr "パートナアカウントはこの請求書に使用されています。" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "税金 %.2f%%" @@ -8701,7 +8726,7 @@ msgid "Payment Term Line" msgstr "支払条件行" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "仕入仕訳帳" @@ -8870,7 +8895,7 @@ msgid "Journal Name" msgstr "仕訳帳名" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "エントリー %s は有効ではありません。" @@ -8918,7 +8943,7 @@ msgid "" msgstr "多通貨エントリーの場合は金額はオプションである他の通貨により表わされます。" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8979,7 +9004,7 @@ msgid "Reconciled entries" msgstr "消し込み済エントリー" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "誤ったモデルです。" @@ -9001,7 +9026,7 @@ msgid "Print Account Partner Balance" msgstr "パートナ残高アカウントの印刷" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9037,7 +9062,7 @@ msgstr "不明" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "仕訳帳の開始エントリー" @@ -9132,7 +9157,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "売上返金仕訳帳" @@ -9198,13 +9223,13 @@ msgid "Purchase Tax(%)" msgstr "消費税(仕入)(%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "いくらかの請求書行を作成して下さい。" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9217,7 +9242,7 @@ msgid "Display Detail" msgstr "詳細情報の表示" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9376,8 +9401,8 @@ msgid "Receivable Account" msgstr "売掛金" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9478,7 +9503,7 @@ msgid "Move" msgstr "移動" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9574,7 +9599,7 @@ msgid "Balance :" msgstr "残高:" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9665,7 +9690,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9758,7 +9783,7 @@ msgid "Unreconciled" msgstr "未消し込み" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "合計が誤っています。" @@ -9846,7 +9871,7 @@ msgid "Comparison" msgstr "比較" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9933,7 +9958,7 @@ msgid "Journal Entry Model" msgstr "仕訳帳エントリーのモデル" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10232,6 +10257,7 @@ msgstr "銀行消し込みを開く" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10247,7 +10273,9 @@ msgstr "銀行消し込みを開く" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10256,6 +10284,7 @@ msgstr "銀行消し込みを開く" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10347,7 +10376,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10416,8 +10445,10 @@ msgstr "アカウント会計ポジション" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "仕入先請求書" @@ -10506,8 +10537,10 @@ msgstr "" "貸方計算のため)です。閉鎖は原価償却のためのアカウントです。" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "変動" @@ -10602,7 +10635,7 @@ msgid "Entries Sorted by" msgstr "エントリー並び順" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10683,6 +10716,8 @@ msgstr "請求書検索" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "返金" @@ -10753,7 +10788,7 @@ msgid "Manual Invoice Taxes" msgstr "手動請求書税金" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/kab.po b/addons/account/i18n/kab.po index 9b067e5b477..a75c7f67b7e 100644 --- a/addons/account/i18n/kab.po +++ b/addons/account/i18n/kab.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2010-09-29 10:25+0000\n" -"Last-Translator: yugurten \n" +"Last-Translator: yugurten \n" "Language-Team: Kabyle \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-16 05:15+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:07+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8049,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "Isem n uɣmis" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/kk.po b/addons/account/i18n/kk.po index e122aa4d542..b45bae2e932 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-16 05:15+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:08+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "Түрі" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Инвойс" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "Тіркелгілер" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8049,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/ko.po b/addons/account/i18n/ko.po index db5b5bd8a0e..d08b6faacd8 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-16 05:15+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:08+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "잔여" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "\"%s\" 기입 항목이 유효하지 않습니다." @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "청구서 또는 납부서로부터 가져오기" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -92,7 +92,7 @@ msgstr "총 차변" msgid "" "Error!\n" "You cannot create recursive account templates." -msgstr "" +msgstr "순환구조를 가진 계정과목은 생성할 수 없습니다." #. module: account #. openerp-web @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "경고!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "기타 장부" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "판매 분석 장부" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "채권 계정" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "기입을 생성하시겠습니까?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "유형" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -853,7 +855,7 @@ msgid "Supplier Invoices And Refunds" msgstr "공급업체 송장 및 환불" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -925,7 +927,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1009,7 +1011,7 @@ msgid "Liability" msgstr "부채" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1080,10 +1082,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1207,7 +1209,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "은행" @@ -1290,7 +1292,7 @@ msgstr "세금 코드" #. module: account #: field:account.account,currency_mode:0 msgid "Outgoing Currencies Rate" -msgstr "" +msgstr "외화매각 환율" #. module: account #: view:account.analytic.account:0 @@ -1512,15 +1514,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: 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이 아닌" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1743,8 +1747,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "송장" @@ -1819,7 +1825,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1971,36 +1977,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2014,8 +2020,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "오류!" @@ -2057,7 +2063,7 @@ msgid "period close" msgstr "기간 마감" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2129,7 +2135,7 @@ msgid "Analytic account" msgstr "분석 계정" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "장부 내에 계정이 정의되어 있는지 확인하세요." @@ -2229,7 +2235,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2414,7 +2422,7 @@ msgstr "설명" #: field:account.tax,price_include:0 #: field:account.tax.template,price_include:0 msgid "Tax Included in Price" -msgstr "" +msgstr "세금포함된 가격" #. module: account #: view:account.subscription:0 @@ -2534,7 +2542,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2555,7 +2563,7 @@ msgid "Main Sequence" msgstr "주요 순서" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2579,7 +2587,7 @@ msgid "Fiscal Positions" msgstr "재정 위상" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2687,7 +2695,7 @@ msgid "Account Model Entries" msgstr "계정 모델 기입" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2801,21 +2809,20 @@ msgid "Accounts" msgstr "계정" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "구성 오류!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3003,7 +3010,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3016,7 +3023,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3032,8 +3039,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3192,7 +3199,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3285,7 +3292,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3348,8 +3355,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3605,7 +3612,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3620,7 +3627,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3672,7 +3679,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3820,7 +3827,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3889,9 +3896,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3980,7 +3991,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3989,8 +4000,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4143,7 +4156,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "구성되지 않은 없체가 없음 !" @@ -4214,8 +4227,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4245,7 +4258,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4447,7 +4460,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "'%s' 장부에 분석 장부를 지정해야 합니다!" @@ -4512,8 +4525,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4576,7 +4589,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4642,7 +4655,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4696,7 +4709,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4786,7 +4799,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4801,7 +4814,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4867,7 +4880,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4941,7 +4954,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5110,7 +5123,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5282,7 +5295,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5363,7 +5376,7 @@ msgid "Internal Name" msgstr "내부 명칭" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5435,7 +5448,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5563,7 +5576,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5591,7 +5604,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5886,7 +5899,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5937,14 +5950,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5970,7 +5983,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5990,7 +6003,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -6000,7 +6013,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6104,7 +6119,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6152,7 +6167,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6298,7 +6313,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6470,7 +6485,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6491,7 +6506,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6518,7 +6533,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6544,7 +6559,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6615,12 +6630,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6698,7 +6713,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6841,7 +6858,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6950,7 +6967,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7171,7 +7188,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7242,7 +7259,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7527,7 +7544,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7590,7 +7607,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7641,7 +7658,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7708,7 +7725,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7719,7 +7736,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7758,7 +7775,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7783,7 +7800,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7815,7 +7832,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7856,7 +7873,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7872,7 +7889,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "현금" @@ -8036,6 +8053,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8103,7 +8121,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8126,7 +8144,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8134,7 +8152,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8178,7 +8196,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8257,13 +8275,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8506,7 +8524,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8607,7 +8625,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8625,7 +8643,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8794,7 +8812,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8842,7 +8860,7 @@ msgid "" msgstr "다중 통화 엔트리의 경우, 선택적인 다른 통화로 표현된 금액" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8903,7 +8921,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8925,7 +8943,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8959,7 +8977,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9054,7 +9072,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9120,13 +9138,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9139,7 +9157,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9298,8 +9316,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9400,7 +9418,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9494,7 +9512,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9585,7 +9603,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9674,7 +9692,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9759,7 +9777,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9846,7 +9864,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10145,6 +10163,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10160,7 +10179,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10169,6 +10190,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10260,7 +10282,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10329,8 +10351,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10416,8 +10440,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "무브먼트와 함께" @@ -10512,7 +10538,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10593,6 +10619,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10663,7 +10691,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/lo.po b/addons/account/i18n/lo.po index 31df85f8d17..740b171597e 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-16 05:15+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:08+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "ເສດເຫຼືອ" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "ລະວັງ !" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8049,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/lt.po b/addons/account/i18n/lt.po index 2d1ba7c2bb6..55f9bb75c54 100644 --- a/addons/account/i18n/lt.po +++ b/addons/account/i18n/lt.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-12 15:27+0000\n" -"Last-Translator: Andrius Preimantas \n" +"Last-Translator: Andrius Preimantas @ hbee \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-16 05:16+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:08+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -49,7 +49,7 @@ msgstr "Sąskaitos statistika" #. module: account #: view:account.invoice:0 msgid "Proforma/Open/Paid Invoices" -msgstr "" +msgstr "Išankstinės/Atidarytos/Apmokėtos sąskaitos" #. module: account #: field:report.invoice.created,residual:0 @@ -57,7 +57,7 @@ msgid "Residual" msgstr "Likutis" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -73,9 +73,9 @@ msgid "Import from invoice or payment" msgstr "Importuoti iš sąskaitos ar mokėjimo" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "Netinkama sąskaita" @@ -104,7 +104,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_reconciliation.xml:30 #, python-format msgid "Reconcile" -msgstr "Sugretinti" +msgstr "Sudengti" #. module: account #: field:account.bank.statement,name:0 @@ -116,7 +116,7 @@ msgstr "Sugretinti" #: xsl:account.transfer:0 #: field:cash.box.in,ref:0 msgid "Reference" -msgstr "Nuoroda" +msgstr "Numeris" #. module: account #: help:account.payment.term,active:0 @@ -124,22 +124,22 @@ msgid "" "If the active field is set to False, it will allow you to hide the payment " "term without removing it." msgstr "" -"Jeigu aktyvus laukelis nustatytas kaip \"ne\", leidžiame paslėpti apmokėjimo " -"terminą jo nepašalinus." +"Jeigu aktyvus laukelis nustatytas kaip \"ne\", leidžiame paslėpti mokėjimo " +"sąlygas, jų nepašalinus." #. module: account #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -151,7 +151,7 @@ msgid "Warning!" msgstr "Įspėjimas!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Įvairių įrašų žurnalas" @@ -169,7 +169,7 @@ msgstr "" #: field:account.fiscal.position.account,account_src_id:0 #: field:account.fiscal.position.account.template,account_src_id:0 msgid "Account Source" -msgstr "Sąskaitos šaltinis" +msgstr "Sąskaita" #. module: account #: model:ir.actions.act_window,help:account.action_account_period @@ -182,6 +182,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte apskaitos periodą.\n" +"

\n" +" Apskaitos periodas dažniausiai būna mėnesis arba ketvirtis.\n" +" Jis dažniausiai yra atitinkamas mokesčių deklaravimo " +"periodams.\n" +"

\n" +" " #. module: account #: model:ir.actions.act_window,name:account.action_view_created_invoice_dashboard @@ -205,6 +213,8 @@ msgid "" "invoice) to create analytic entries, OpenERP will look for a matching " "journal of the same type." msgstr "" +"Nurodo analitinio žurnalo tipą. OpenERP automatiškai, pagal tipą, parinks " +"žurnalus galimus įvedamam dokumentui (pvz. sąskaitai faktūrai)." #. module: account #: help:account.tax,account_analytic_collected_id:0 @@ -213,6 +223,9 @@ msgid "" "lines for invoices. Leave empty if you don't want to use an analytic account " "on the invoice tax lines by default." msgstr "" +"Pasirinkite analitinę sąskaita, kuri bus nustatoma ant sąskaitų faktūrų " +"mokesčių eilučių. Palikite tuščią, jeigu nenorite nustatyti numatytosios " +"analitinės sąskaitos ant mokesčių eilučių." #. module: account #: model:ir.actions.act_window,name:account.action_account_tax_template_form @@ -238,7 +251,7 @@ msgstr "" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "" +msgstr "Patvirtinti" #. module: account #: model:account.account.type,name:account.account_type_income_view1 @@ -252,6 +265,9 @@ msgid "" "legal reports, and set the rules to close a fiscal year and generate opening " "entries." msgstr "" +"Sąskaitų tipas naudojamas informaciniais tikslais, spausdinant įstatymines " +"ataskaitas ir nustatant uždarymo įrašų generavimo taisykles uždarant " +"finansinius metus." #. module: account #: field:account.config.settings,sale_refund_sequence_next:0 @@ -269,17 +285,17 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_use_model_create_entry msgid "Manual Recurring" -msgstr "Pasirinktinas pasikartojančių įrašų kūrimas" +msgstr "Pasirinktinas pasikartojančių operacijų generavimas" #. module: account #: field:account.automatic.reconcile,allow_write_off:0 msgid "Allow write off" -msgstr "" +msgstr "Leisti daryti nurašymus" #. module: account #: view:account.analytic.chart:0 msgid "Select the Period for Analysis" -msgstr "" +msgstr "Pasirinkite analizuojam periodą" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree3 @@ -296,6 +312,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Paspauskite, kad sukurtumėte kliento kreditinę sąskaitą " +"faktūrą. \n" +"

\n" +" Kreditinė sąskaita faktūra yra dokumentas, kuris kredituoja\n" +" turimą sąskaitą faktūrą, pilnai arba dalinai.\n" +"

\n" +" Vietoj to, kad patys suvedinėtumėte kreditinę\n" +" sąskaitą faktūrą, jūs galite ją sugeneruoti tiesiai iš\n" +" susijusios sąskaitos faktūros.\n" +"

\n" +" " #. module: account #: help:account.installer,charts:0 @@ -326,6 +354,9 @@ msgid "" "leave the automatic formatting, it will be computed based on the financial " "reports hierarchy (auto-computed field 'level')." msgstr "" +"Jūs galite pasirinkti formatą, kuriuo rodyti šią ataskaitą. Jeigu paliksite " +"automatinį formatavimą, jis bus parenkamas pagal finansinių ataskaitų " +"hierarchiją (automatiškai apskaičiuojamas laukas „lygis“)." #. module: account #: field:account.config.settings,group_multi_currency:0 @@ -333,7 +364,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -364,13 +395,13 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Pardavėjas" #. module: account #: view:account.bank.statement:0 #: view:account.invoice:0 msgid "Responsible" -msgstr "" +msgstr "Atsakingas asmuo" #. module: account #: model:ir.model,name:account.model_account_bank_accounts_wizard @@ -386,12 +417,12 @@ msgstr "Sukūrimo data" #. module: account #: selection:account.journal,type:0 msgid "Purchase Refund" -msgstr "Pirkimų grąžinimas" +msgstr "Pirktų prekių grąžinimas" #. module: account #: selection:account.journal,type:0 msgid "Opening/Closing Situation" -msgstr "" +msgstr "Atidarymo/Uždarymo situacija" #. module: account #: help:account.journal,currency:0 @@ -430,7 +461,7 @@ msgstr "" #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:8 #, python-format msgid "Period :" -msgstr "" +msgstr "Periodas:" #. module: account #: field:account.account.template,chart_template_id:0 @@ -444,6 +475,8 @@ msgstr "Sąskaitų plano šablonas" #: selection:account.invoice.refund,filter_refund:0 msgid "Modify: create refund, reconcile and create a new draft invoice" msgstr "" +"Keisti: sukurti kreditinę S/F, sudengti su šia S/F ir sukurti naują S/F " +"juodraštį" #. module: account #: help:account.config.settings,tax_calculation_rounding_method:0 @@ -476,7 +509,7 @@ msgstr "" #. module: account #: field:accounting.report,enable_filter:0 msgid "Enable Comparison" -msgstr "" +msgstr "Rodyti palyginimą" #. module: account #: view:account.analytic.line:0 @@ -562,13 +595,13 @@ msgstr "Gynč." #. module: account #: field:account.automatic.reconcile,unreconciled:0 msgid "Not reconciled transactions" -msgstr "Nesugretintos transakcijos" +msgstr "Nesudengtos transakcijos" #. module: account #: report:account.general.ledger:0 #: report:account.general.ledger_landscape:0 msgid "Counterpart" -msgstr "" +msgstr "Koresponduoja" #. module: account #: view:account.fiscal.position:0 @@ -581,7 +614,7 @@ msgstr "Mokesčių nustatymai" #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close_state #: model:ir.ui.menu,name:account.menu_wizard_fy_close_state msgid "Close a Fiscal Year" -msgstr "Fiskalinių metų pabaiga" +msgstr "Finansinių metų pabaiga" #. module: account #: model:process.transition,note:account.process_transition_confirmstatementfromdraft0 @@ -615,7 +648,7 @@ msgstr "Numerių serijos" #: field:account.financial.report,account_report_id:0 #: selection:account.financial.report,type:0 msgid "Report Value" -msgstr "" +msgstr "Ataskaitos reikšmė" #. module: account #: code:addons/account/wizard/account_validate_account_move.py:39 @@ -623,18 +656,18 @@ msgstr "" msgid "" "Specified journal does not have any account move entries in draft state for " "this period." -msgstr "" +msgstr "Pasirinktame žurnale nėra neužregistruotų įrašų šiam periodui." #. module: account #: view:account.fiscal.position:0 #: view:account.fiscal.position.template:0 msgid "Taxes Mapping" -msgstr "Mokesčių nustatymai" +msgstr "Mokesčių pakaitalai" #. module: account #: report:account.central.journal:0 msgid "Centralized Journal" -msgstr "Centralizuotas žurnalas" +msgstr "Bendrinis žurnalas" #. module: account #: sql_constraint:account.sequence.fiscalyear:0 @@ -651,10 +684,10 @@ msgstr "" #. module: account #: field:account.journal,profit_account_id:0 msgid "Profit Account" -msgstr "" +msgstr "Pajamų sąskaita" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -665,13 +698,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -717,6 +750,9 @@ msgid "" "lines for refunds. Leave empty if you don't want to use an analytic account " "on the invoice tax lines by default." msgstr "" +"Pasirinkite analitinę sąskaita, kuri bus nustatoma ant kreditinių sąskaitų " +"faktūrų mokesčių eilučių. Palikite tuščią, jeigu nenorite nustatyti " +"numatytosios analitinės sąskaitos ant mokesčių eilučių." #. module: account #: view:account.account:0 @@ -724,10 +760,12 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" -msgstr "Debetinės sąskaitos" +msgstr "Debitorių sąskaitos" #. module: account #: view:account.config.settings:0 @@ -737,7 +775,7 @@ msgstr "" #. module: account #: view:account.invoice.refund:0 msgid "Create Refund" -msgstr "" +msgstr "Kredituoti" #. module: account #: constraint:account.move.line:0 @@ -762,7 +800,7 @@ msgid "Are you sure you want to create entries?" msgstr "Ar Jūs tikrai norite sukurti įrašus?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -770,7 +808,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Print Invoice" -msgstr "" +msgstr "Spausdinti S/F" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:111 @@ -783,13 +821,13 @@ msgstr "" #. module: account #: selection:account.financial.report,display_detail:0 msgid "Display children with hierarchy" -msgstr "" +msgstr "Rodyti vaikines ataskaitas hierarchiškai" #. module: account #: selection:account.payment.term.line,value:0 #: selection:account.tax.template,type:0 msgid "Percent" -msgstr "Procentų" +msgstr "Procentai" #. module: account #: model:ir.ui.menu,name:account.menu_finance_charts @@ -806,12 +844,12 @@ msgstr "" #. module: account #: field:account.invoice.refund,filter_refund:0 msgid "Refund Method" -msgstr "" +msgstr "Kreditavimo būdas" #. module: account #: model:ir.ui.menu,name:account.menu_account_report msgid "Financial Report" -msgstr "" +msgstr "Finansinė ataskaita" #. module: account #: view:account.analytic.account:0 @@ -831,7 +869,7 @@ msgid "Type" msgstr "Tipas" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,10 +889,10 @@ msgstr "Partnerio nuoroda į šią sąskaitą faktūrą" #. module: account #: view:account.invoice.report:0 msgid "Supplier Invoices And Refunds" -msgstr "" +msgstr "Tiekėjo išrašytos S/F" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -864,7 +902,7 @@ msgstr "" #: view:account.unreconcile.reconcile:0 #: model:ir.model,name:account.model_account_move_line_unreconcile_select msgid "Unreconciliation" -msgstr "Išgretinimas" +msgstr "Sudengimo panaikinimas" #. module: account #: model:ir.model,name:account.model_account_analytic_journal_report @@ -874,7 +912,7 @@ msgstr "Sąskaitos analitinis žurnalas" #. module: account #: view:account.invoice:0 msgid "Send by Email" -msgstr "" +msgstr "Siųsti el. paštu" #. module: account #: help:account.central.journal,amount_currency:0 @@ -885,6 +923,8 @@ msgid "" "Print Report with the currency column if the currency differs from the " "company currency." msgstr "" +"Spausdinti ataskaita su valiutos stulpeliu, jeigu valiuta skiriasi nuo " +"pagrindinės įmonės valiutos." #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 @@ -894,7 +934,7 @@ msgstr "Analitinio įrašo pavadinimas" #. module: account #: view:account.account:0 msgid "Account Code and Name" -msgstr "" +msgstr "Sąskaitos kodas ir pavadinimas" #. module: account #: selection:account.entries.report,month:0 @@ -908,7 +948,7 @@ msgstr "Rugsėjis" #. module: account #: selection:account.subscription,period_type:0 msgid "days" -msgstr "dienų" +msgstr "dienos" #. module: account #: help:account.account.template,nocreate:0 @@ -924,9 +964,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Nerasta DK įrašų.\n" +"

\n" +" " #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -988,19 +1032,19 @@ msgstr "Patvirtinti" #: view:account.move:0 #: view:report.invoice.created:0 msgid "Total Amount" -msgstr "" +msgstr "Iš viso" #. module: account #: help:account.invoice,supplier_invoice_number:0 msgid "The reference of this invoice as provided by the supplier." -msgstr "" +msgstr "Iš tiekėjo gautos sąskaitos faktūros numeris." #. module: account #: selection:account.account,type:0 #: selection:account.account.template,type:0 #: selection:account.entries.report,type:0 msgid "Consolidation" -msgstr "Konsilidacija" +msgstr "Konsolidacija" #. module: account #: model:account.account.type,name:account.data_account_type_liability @@ -1010,7 +1054,7 @@ msgid "Liability" msgstr "Įsipareigojimai" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1018,27 +1062,27 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "Išplėstiniai filtrai..." #. module: account #: model:ir.ui.menu,name:account.menu_account_central_journal msgid "Centralizing Journal" -msgstr "Centralizavimo žurnalas" +msgstr "Bendrinis žurnalas" #. module: account #: selection:account.journal,type:0 msgid "Sale Refund" -msgstr "" +msgstr "Parduotų prekių grąžinimas" #. module: account #: model:process.node,note:account.process_node_accountingstatemententries0 msgid "Bank statement" -msgstr "" +msgstr "Banko išrašas" #. module: account #: field:account.analytic.line,move_id:0 msgid "Move Line" -msgstr "Didžiosios knygos įrašas" +msgstr "DK įrašas" #. module: account #: help:account.move.line,tax_amount:0 @@ -1047,11 +1091,14 @@ msgid "" "amount.If the tax account is base tax code, this field will contain the " "basic amount(without tax)." msgstr "" +"Jeigu mokesčio sąskaita yra mokesčių kodo sąskaita, tuomet šiame lauke bus " +"saugoma mokesčio suma. Jeigu mokesčio sąskaita yra mokesčių kodo bazė, " +"tuomet šiame lauke bus saugoma bazinė suma (be mokesčių)." #. module: account #: view:account.analytic.line:0 msgid "Purchases" -msgstr "" +msgstr "Pirkimai" #. module: account #: field:account.model,lines_id:0 @@ -1081,10 +1128,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1114,6 +1161,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad pridėtumėte sąskaitą.\n" +"

\n" +" Atliekant tranzakcijas su antrinėmis valiutomis, jūs galite " +"netekti arba gauti\n" +" sumas dėl valiutos kursų svyravimo. Šiame meniu galite\n" +" prognozuoti gaunamą pelną ar nuostolį, jeigu tos " +"tranzakcijos\n" +" būtų užbaigtos šiandien. Galioja tik sąskaitoms su " +"antrinėmis\n" +" valiutomis.\n" +"

\n" +" " #. module: account #: field:account.bank.accounts.wizard,acc_name:0 @@ -1123,7 +1183,7 @@ msgstr "" #. module: account #: field:account.journal,with_last_closing_balance:0 msgid "Opening With Last Closing Balance" -msgstr "" +msgstr "Atidaryti su paskutiniu uždarymo balansu" #. module: account #: help:account.tax.code,notprintable:0 @@ -1131,11 +1191,13 @@ msgid "" "Check this box if you don't want any tax related to this tax code to appear " "on invoices" msgstr "" +"Pažymėkite šį lauką, jeigu nenorite, kad mokesčiai susiję su šiuo mokesčių " +"kodu būtų rodomi sąskaitose faktūrose" #. module: account #: field:report.account.receivable,name:0 msgid "Week of Year" -msgstr "" +msgstr "Metų savaitė" #. module: account #: field:account.report.general.ledger,landscape:0 @@ -1145,7 +1207,7 @@ msgstr "Spausdinti horizontaliai" #. module: account #: help:account.fiscalyear.close,fy_id:0 msgid "Select a Fiscal year to close" -msgstr "" +msgstr "Pasirinkite finansinius metus, kuriuos uždarysite" #. module: account #: help:account.account.template,user_type:0 @@ -1153,6 +1215,9 @@ msgid "" "These types are defined according to your country. The type contains more " "information about the account and its specificities." msgstr "" +"Sąskaitų tipas naudojamas informaciniais tikslais, spausdinant įstatymines " +"ataskaitas ir nustatant uždarymo įrašų generavimo taisykles uždarant " +"finansinius metus." #. module: account #: view:account.invoice:0 @@ -1180,12 +1245,12 @@ msgstr "Ginčytinas" #: 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 "Kasos aparatai" +msgstr "Sąskaitų nustatymai" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "Pardavimo grąžinimų žurnalas" +msgstr "Parduotų prekių grąžinimo žurnalas" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1204,14 +1269,25 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte kasos išrašą.\n" +"

\n" +" Kasos išrašas skirtas registruoti kasos knygos operacijas.\n" +" Tai leidžia lengvai stebėti kasdienius grynųjų pinigų " +"mokėjimui.\n" +" Iš pradžių turite įvesti kupiūrų bei monetų kiekį kasoje, \n" +" o vėliau registruoti įrašus, kuomet yra gaunami ar išmokami\n" +" grynieji pinigai iš kasos.\n" +"

\n" +" " #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" -msgstr "" +msgstr "Bankas" #. module: account #: field:account.period,date_start:0 @@ -1221,7 +1297,7 @@ msgstr "Periodo pradžia" #. module: account #: view:account.tax:0 msgid "Refunds" -msgstr "" +msgstr "Gražinimai" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 @@ -1244,7 +1320,7 @@ msgstr "" #: field:account.fiscal.position.tax,tax_dest_id:0 #: field:account.fiscal.position.tax.template,tax_dest_id:0 msgid "Replacement Tax" -msgstr "Mokesčių pakeitimas" +msgstr "Mokesčio pakaitalas" #. module: account #: selection:account.move.line,centralisation:0 @@ -1267,17 +1343,17 @@ msgstr "" #. module: account #: view:account.invoice.cancel:0 msgid "Cancel Invoices" -msgstr "" +msgstr "Atšaukti sąskaitas" #. module: account #: help:account.journal,code:0 msgid "The code will be displayed on reports." -msgstr "" +msgstr "Kodas bus rodomas ataskaitose." #. module: account #: view:account.tax.template:0 msgid "Taxes used in Purchases" -msgstr "" +msgstr "Mokesčiai naudojami perkant" #. module: account #: field:account.invoice.tax,tax_code_id:0 @@ -1307,7 +1383,7 @@ msgstr "Situacija" #. module: account #: help:account.move.line,move_id:0 msgid "The move of this entry line." -msgstr "Šio įrašo eilutės perkėlimas" +msgstr "Žurnalo įrašas, kuriame užfiksuotas šis DK įrašas." #. module: account #: field:account.move.line.reconcile,trans_nbr:0 @@ -1326,7 +1402,7 @@ msgstr "Įrašo žymė" #: help:account.invoice,origin:0 #: help:account.invoice.line,origin:0 msgid "Reference of the document that produced this invoice." -msgstr "Dokumento, kuris sugeneravo šią sąskaitą faktūrą nuoroda." +msgstr "Dokumento numeris, pagal kurį sugeneruota ši sąskaita faktūra." #. module: account #: view:account.analytic.line:0 @@ -1337,7 +1413,7 @@ msgstr "Kita" #. module: account #: view:account.subscription:0 msgid "Draft Subscription" -msgstr "" +msgstr "Pasikartojančių operacijų juodraščiai" #. module: account #: view:account.account:0 @@ -1370,14 +1446,14 @@ msgstr "Sąskaita" #. module: account #: field:account.tax,include_base_amount:0 msgid "Included in base amount" -msgstr "" +msgstr "Įtraukti į bazinę sumą" #. module: account #: view:account.entries.report:0 #: 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 "Įrašų analizė" #. module: account #: field:account.account,level:0 @@ -1415,7 +1491,7 @@ msgstr "" #: 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 "Pelnas (nuostolis)" #. module: account #: model:ir.model,name:account.model_account_account_template @@ -1425,20 +1501,20 @@ msgstr "Sąskaitų šablonai" #. module: account #: view:account.tax.code.template:0 msgid "Search tax template" -msgstr "" +msgstr "Ieškoti Mokesčių šablono" #. module: account #: view:account.move.reconcile:0 #: 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 "Sugretinti įrašus" +msgstr "Sudengti įrašus" #. module: account #: model:ir.actions.report.xml,name:account.account_overdue #: view:res.company:0 msgid "Overdue Payments" -msgstr "Priminimo pažyma" +msgstr "Pradelsti mokėjimai" #. module: account #: report:account.third_party_ledger:0 @@ -1449,7 +1525,7 @@ msgstr "Pradinis balansas" #. module: account #: view:account.invoice:0 msgid "Reset to Draft" -msgstr "" +msgstr "Atkurti kaip juodraštį" #. module: account #: view:account.aged.trial.balance:0 @@ -1460,7 +1536,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close.state,fy_id:0 msgid "Fiscal Year to Close" -msgstr "" +msgstr "Uždaromi finansiniai metai" #. module: account #: field:account.config.settings,sale_sequence_prefix:0 @@ -1510,18 +1586,20 @@ msgstr "Debitorių sąskaita" #: code:addons/account/account.py:768 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (kopija)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Kurių balansas nelygus nuliui" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1546,7 +1624,7 @@ msgstr "Sukurti įrašus" #. module: account #: field:account.entries.report,nbr:0 msgid "# of Items" -msgstr "" +msgstr "# įrašų" #. module: account #: field:account.automatic.reconcile,max_amount:0 @@ -1572,7 +1650,7 @@ msgstr "# skaitmenų skaičius" #. module: account #: field:account.journal,entry_posted:0 msgid "Skip 'Draft' State for Manual Entries" -msgstr "" +msgstr "Automatinis įrašų patvirtinimas" #. module: account #: code:addons/account/report/common_report_header.py:92 @@ -1599,7 +1677,7 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "# of Entries " -msgstr "" +msgstr "Iš viso įrašų " #. module: account #: help:account.fiscal.position,active:0 @@ -1607,6 +1685,8 @@ msgid "" "By unchecking the active field, you may hide a fiscal position without " "deleting it." msgstr "" +"Nebenaudojamos mokestinės aplinkos gali būti paslėptos, vietoj to, kad " +"ištrinti." #. module: account #: model:ir.model,name:account.model_temp_range @@ -1617,7 +1697,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_invoice_tree4 #: model:ir.ui.menu,name:account.menu_action_invoice_tree4 msgid "Supplier Refunds" -msgstr "Tiekėjo grąžinimai" +msgstr "Grąžinimai tiekėjui" #. module: account #: field:account.tax.code,code:0 @@ -1644,7 +1724,7 @@ msgstr "Uždaryta" #. module: account #: model:ir.ui.menu,name:account.menu_finance_recurrent_entries msgid "Recurring Entries" -msgstr "Pasikartojantys įrašai" +msgstr "Pasikartojančios operacijos" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_template @@ -1664,12 +1744,12 @@ msgstr "Grupės" #. module: account #: field:report.invoice.created,amount_untaxed:0 msgid "Untaxed" -msgstr "Suma be mokesčių" +msgstr "Suma be PVM" #. module: account #: view:account.journal:0 msgid "Advanced Settings" -msgstr "" +msgstr "Papildomi nustatymai" #. module: account #: view:account.bank.statement:0 @@ -1679,7 +1759,7 @@ msgstr "Banko sąskaitos išrašų paieška" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "Nepatvirtintos žurnalo eilutės" +msgstr "Neužregistruoti DK įrašai" #. module: account #: view:account.chart.template:0 @@ -1691,7 +1771,7 @@ msgstr "Kreditorių sąskaita" #: field:account.tax,account_paid_id:0 #: field:account.tax.template,account_paid_id:0 msgid "Refund Tax Account" -msgstr "Grąžinimų mokesčio sąskaita" +msgstr "Grąžintino mokesčio sąskaita" #. module: account #: model:ir.model,name:account.model_ir_sequence @@ -1714,7 +1794,7 @@ msgstr "" #: view:analytic.entries.report:0 #: field:analytic.entries.report,general_account_id:0 msgid "General Account" -msgstr "Bendroji sąskaita" +msgstr "Finansinė sąskaita" #. module: account #: field:res.partner,debit_limit:0 @@ -1738,16 +1818,29 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte sąskaitos tipą.\n" +"

\n" +" Sąskaitos tipas nusako taisykles, kaip sąskaita naudojama " +"kiekviename\n" +" žurnale. Metų pabaigos veiksmas nusako finansinių metų\n" +" uždarymo veiksmus. Balanso bei pelno nuostolio ataskaitos\n" +" naudoja ataskaitos kategoriją\n" +" (pelnas/nuostolis arba balansas).\n" +"

\n" +" " #. module: account #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" -msgstr "Sąskaita faktūra" +msgstr "PVM SĄSKAITA-FAKTŪRA" #. module: account #: field:account.move,balance:0 @@ -1768,7 +1861,7 @@ msgstr "" #. module: account #: field:account.config.settings,group_analytic_accounting:0 msgid "Analytic accounting" -msgstr "" +msgstr "Analitinė apskaita" #. module: account #: report:account.overdue:0 @@ -1798,12 +1891,12 @@ msgstr "" #: model:account.payment.term,name:account.account_payment_term_15days #: model:account.payment.term,note:account.account_payment_term_15days msgid "15 Days" -msgstr "" +msgstr "15 dienų" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_invoicing msgid "Invoicing" -msgstr "" +msgstr "Apskaita" #. module: account #: code:addons/account/report/account_partner_balance.py:115 @@ -1820,7 +1913,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1856,7 +1949,7 @@ msgstr "" #: report:account.journal.period.print.sale.purchase:0 #: view:account.tax.template:0 msgid "Tax Declaration" -msgstr "Mokesčių deklaracija" +msgstr "Mokesčių deklaravimas" #. module: account #: help:account.journal.period,active:0 @@ -1864,11 +1957,13 @@ msgid "" "If the active field is set to False, it will allow you to hide the journal " "period without removing it." msgstr "" +"Jeigu aktyvus laukelis nustatytas kaip \"ne\", leidžiame paslėpti žurnalo " +"periodą, jo nepašalinus." #. module: account #: field:account.report.general.ledger,sortby:0 msgid "Sort by" -msgstr "" +msgstr "Rūšiuoti pagal" #. module: account #: model:ir.actions.act_window,name:account.act_account_partner_account_move_all @@ -1883,13 +1978,13 @@ msgstr "" #. module: account #: view:account.period:0 msgid "Duration" -msgstr "" +msgstr "Laikotarpis" #. module: account #: view:account.bank.statement:0 #: field:account.bank.statement,last_closing_balance:0 msgid "Last Closing Balance" -msgstr "" +msgstr "Paskutinis uždarymo balansas" #. module: account #: model:ir.model,name:account.model_account_common_journal_report @@ -1899,7 +1994,7 @@ msgstr "" #. module: account #: selection:account.partner.balance,display_partner:0 msgid "All Partners" -msgstr "Visi partneriai" +msgstr "Visus partnerius" #. module: account #: view:account.analytic.chart:0 @@ -1909,7 +2004,7 @@ msgstr "" #. module: account #: report:account.overdue:0 msgid "Customer Ref:" -msgstr "Kliento nuoroda" +msgstr "Pirkėjo ident.:" #. module: account #: help:account.tax,base_code_id:0 @@ -1921,7 +2016,7 @@ msgstr "Kliento nuoroda" #: help:account.tax.template,ref_tax_code_id:0 #: help:account.tax.template,tax_code_id:0 msgid "Use this code for the tax declaration." -msgstr "" +msgstr "Kodas naudojamas mokesčių ataskaitoje." #. module: account #: help:account.period,special:0 @@ -1952,7 +2047,7 @@ msgstr "Kredito suma" #: field:account.bank.statement,message_ids:0 #: field:account.invoice,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Pranešimai" #. module: account #: view:account.vat.declaration:0 @@ -1964,6 +2059,13 @@ msgid "" "useful because it enables you to preview at any time the tax that you owe at " "the start and end of the month or quarter." msgstr "" +"Mokesčių ataskaita spausdinama pagal sąskaitas faktūras arba mokėjimus. " +"Pasirinkite vieną ar keletą finansinių metų periodų. Informacija reikalinga " +"mokesčių ataskaitai yra automatiškai sukuriame OpenERP iš sąskaitų faktūrų " +"(arba, kai kuriose šalyse, iš mokėjimų). Šie duomenys atnaujinami realiu " +"laiku. Tai labai pravartu, kadangi bet kuriuo metu galite peržiūrėti " +"mokesčių sumas, kurias esate skolingas mėnesio ar ketvirčio pradžioje bei " +"pabaigoje." #. module: account #: code:addons/account/account.py:409 @@ -1972,36 +2074,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2015,11 +2117,11 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" -msgstr "" +msgstr "Klaida!" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree2 @@ -2045,7 +2147,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_invoice_report_all #: model:ir.ui.menu,name:account.menu_action_account_invoice_report_all msgid "Invoices Analysis" -msgstr "" +msgstr "Sąskaitų faktūrų analizė" #. module: account #: model:ir.model,name:account.model_mail_compose_message @@ -2058,7 +2160,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2073,7 +2175,7 @@ msgstr "" #. module: account #: field:account.vat.declaration,based_on:0 msgid "Based on" -msgstr "" +msgstr "Pagal" #. module: account #: model:ir.actions.act_window,help:account.action_bank_statement_tree @@ -2092,6 +2194,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad įvestumėte banko įšrašą.\n" +"

\n" +" Banko išrašas yra banko sąskaitos tranzakcijų suvestinė\n" +" pagal tam tikrą laikotarpį. Šiuos išrašus\n" +" turėtumėte periodiškai gauti iš savo banko.\n" +"

\n" +" OpenERP leidžia sudengti tranzakcijas su pardavimo\n" +" bei pirkimo sąskaitomis faktūromis.\n" +"

\n" +" " #. module: account #: field:account.config.settings,currency_id:0 @@ -2108,7 +2221,7 @@ msgstr "Žurnalo įrašas" #. module: account #: view:account.invoice:0 msgid "Unpaid" -msgstr "" +msgstr "Neapmokėta" #. module: account #: view:account.treasury.report:0 @@ -2116,12 +2229,12 @@ msgstr "" #: model:ir.model,name:account.model_account_treasury_report #: model:ir.ui.menu,name:account.menu_action_account_treasury_report_all msgid "Treasury Analysis" -msgstr "" +msgstr "Pinigų analizė" #. module: account #: model:ir.actions.report.xml,name:account.account_journal_sale_purchase msgid "Sale/Purchase Journal" -msgstr "" +msgstr "Pirkimų/pardavimų žurnalas" #. module: account #: view:account.analytic.account:0 @@ -2130,7 +2243,7 @@ msgid "Analytic account" msgstr "Analitinė sąskaita" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Prašome patikrinti ar šiam žurnalui nurodytos sąskaitos." @@ -2144,18 +2257,18 @@ msgstr "Patvirtinta" #: field:account.bank.statement,message_follower_ids:0 #: field:account.invoice,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Prenumeratoriai" #. module: account #: model:ir.actions.act_window,name:account.action_account_print_journal #: model:ir.model,name:account.model_account_print_journal msgid "Account Print Journal" -msgstr "" +msgstr "Spausdinti žurnalą" #. module: account #: model:ir.model,name:account.model_product_category msgid "Product Category" -msgstr "" +msgstr "Produkto kategorija" #. module: account #: code:addons/account/account.py:656 @@ -2173,14 +2286,14 @@ msgstr "" #. module: account #: view:account.fiscalyear.close.state:0 msgid "Close Fiscal Year" -msgstr "" +msgstr "Uždaryti finansinius metus" #. module: account #. openerp-web #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:14 #, python-format msgid "Journal :" -msgstr "Žurnalas :" +msgstr "Žurnalas:" #. module: account #: sql_constraint:account.fiscal.position.tax:0 @@ -2202,7 +2315,7 @@ msgstr "" #. module: account #: field:account.invoice.report,uom_name:0 msgid "Reference Unit of Measure" -msgstr "" +msgstr "Etaloninis matavimo vienetas" #. module: account #: help:account.journal,allow_date:0 @@ -2210,6 +2323,8 @@ msgid "" "If set to True then do not accept the entry if the entry date is not into " "the period dates" msgstr "" +"Pažymėjus šį lauką, nebus leidžia sukurti žurnalo įrašų, kurių periodas " +"neatitinka įrašo datos" #. module: account #. openerp-web @@ -2230,10 +2345,12 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" -msgstr "Kreditinės sąskaitos" +msgstr "Kreditorių sąskaitos" #. module: account #: constraint:account.move.line:0 @@ -2247,7 +2364,7 @@ msgstr "" #: view:account.invoice:0 #: view:report.invoice.created:0 msgid "Untaxed Amount" -msgstr "" +msgstr "Suma be mokesčių" #. module: account #: help:account.tax,active:0 @@ -2255,16 +2372,18 @@ msgid "" "If the active field is set to False, it will allow you to hide the tax " "without removing it." msgstr "" +"Jeigu aktyvus laukelis nustatytas kaip \"ne\", leidžiame paslėpti mokesčių " +"taisyklę, jos nepašalinus." #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a sale journal." -msgstr "" +msgstr "Analitinio žurnalo įrašai susiję su pardavimo žurnalu." #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Italic Text (smaller)" -msgstr "" +msgstr "Kursyvas tekstas (mažesnis)" #. module: account #: help:account.journal,cash_control:0 @@ -2295,7 +2414,7 @@ msgstr "Dalinės įrašų eilutės" #: view:account.fiscalyear:0 #: field:account.treasury.report,fiscalyear_id:0 msgid "Fiscalyear" -msgstr "Fiskaliniai metai" +msgstr "Finansiniai metai" #. module: account #: code:addons/account/wizard/account_move_bank_reconcile.py:53 @@ -2341,7 +2460,7 @@ msgstr "Sausis" #. module: account #: view:account.entries.report:0 msgid "This F.Year" -msgstr "" +msgstr "Einamieji finansiniai metai" #. module: account #: view:account.tax.chart:0 @@ -2352,7 +2471,7 @@ msgstr "" #: model:account.payment.term,name:account.account_payment_term_net #: model:account.payment.term,note:account.account_payment_term_net msgid "30 Net Days" -msgstr "" +msgstr "30 dienų" #. module: account #: code:addons/account/account_cash_statement.py:256 @@ -2397,7 +2516,7 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Customer Code" -msgstr "" +msgstr "Pirkėjo identifikatorius" #. module: account #: view:account.account.type:0 @@ -2455,12 +2574,12 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "# of Products Qty " -msgstr "" +msgstr "# produktų " #. module: account #: model:ir.model,name:account.model_product_template msgid "Product Template" -msgstr "" +msgstr "Produkto šablonas" #. module: account #: report:account.account.balance:0 @@ -2500,7 +2619,7 @@ msgstr "" #: field:accounting.report,fiscalyear_id_cmp:0 #: model:ir.model,name:account.model_account_fiscalyear msgid "Fiscal Year" -msgstr "Fiskaliniai metai" +msgstr "Finansiniai metai" #. module: account #: help:account.aged.trial.balance,fiscalyear_id:0 @@ -2519,7 +2638,7 @@ msgstr "Fiskaliniai metai" #: help:accounting.report,fiscalyear_id:0 #: help:accounting.report,fiscalyear_id_cmp:0 msgid "Keep empty for all open fiscal year" -msgstr "Palikite tuščią visiems atviriems fiskaliniams metams." +msgstr "Palikite tuščią visiems atviriems finansiniams metams." #. module: account #: code:addons/account/account.py:653 @@ -2540,7 +2659,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2561,7 +2680,7 @@ msgid "Main Sequence" msgstr "Pagrindinė seka" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2576,16 +2695,16 @@ msgstr "" #: field:account.payment.term.line,payment_id:0 #: model:ir.model,name:account.model_account_payment_term msgid "Payment Term" -msgstr "Mokėjimo terminas" +msgstr "Mokėjimo sąlygos" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscal_position_form #: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form msgid "Fiscal Positions" -msgstr "Fiskalinė pozicija" +msgstr "Mokestinės aplinkos" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2609,12 +2728,12 @@ msgstr "" #. module: account #: view:product.category:0 msgid "Account Properties" -msgstr "" +msgstr "Apskaitos savybės" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Create a draft refund" -msgstr "" +msgstr "Sukurti kreditinės S/F juodraštį" #. module: account #: view:account.partner.reconcile.process:0 @@ -2624,7 +2743,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Fin. Account" -msgstr "" +msgstr "Fin. sąskaita" #. module: account #: field:account.tax,tax_code_id:0 @@ -2641,7 +2760,7 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "Unreconciled entries" -msgstr "Nesugretinti įrašai" +msgstr "Nesudengti įrašai" #. module: account #: field:account.invoice.tax,base_code_id:0 @@ -2680,7 +2799,7 @@ msgstr "" #: view:analytic.entries.report:0 #: field:analytic.entries.report,day:0 msgid "Day" -msgstr "" +msgstr "Data" #. module: account #: model:ir.actions.act_window,name:account.act_account_renew_view @@ -2693,7 +2812,7 @@ msgid "Account Model Entries" msgstr "Sąskaitos modelio įrašai" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2727,6 +2846,22 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte žurnalo įrašą.\n" +"

\n" +" Žurnalo įrašas sudarytas iš keleto DK įrašų, kurių " +"kiekvienas\n" +" yra debitinė arba kreditinė tranzakcija.\n" +"

\n" +" OpenERP automatiškai sukuria žurnalų įrašus pagal " +"dokumentus:\n" +" sąskaita faktūra, kreditinė sąskaita faktūra, tiekėjo " +"mokėjimas, banko išrašas\n" +" ir t.t. Taigi, žurnalų įrašus rankiniu būdu kurkite " +"tik/pagrinde \n" +" išskirtinėms operacijoms.\n" +"

\n" +" " #. module: account #: help:account.invoice,payment_term:0 @@ -2736,6 +2871,10 @@ msgid "" "date empty, it means direct payment. The payment term may compute several " "due dates, for example 50% now, 50% in one month." msgstr "" +"Jeigu pasirinksite mokėjimo sąlygas, mokėjimo terminas bus paskaičiuotas " +"automatiškai sukuriant DK įrašus. Nepasirinkus mokėjimo sąlygų bei mokėjimo " +"termino, bus laikoma, kad apmokama iš karto. Mokėjimo sąlygos gali apibrėžti " +"keletą mokėjimo terminų, pavyzdžiui 50% dabar, 50% per vieną mėnesį." #. module: account #: field:account.config.settings,purchase_sequence_next:0 @@ -2771,7 +2910,7 @@ msgstr "" #: view:account.tax:0 #: model:ir.model,name:account.model_account_tax msgid "Tax" -msgstr "Mokestis" +msgstr "Mokesčiai" #. module: account #: view:account.analytic.account:0 @@ -2802,24 +2941,23 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_action_account_form #: model:ir.ui.menu,name:account.menu_analytic msgid "Accounts" -msgstr "" +msgstr "Sąskaitos" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Klaida nustatymuose!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2828,7 +2966,7 @@ msgstr "" #: field:account.invoice.report,price_average:0 #: field:account.invoice.report,user_currency_price_average:0 msgid "Average Price" -msgstr "" +msgstr "Vidutinė suma" #. module: account #: report:account.overdue:0 @@ -2839,12 +2977,12 @@ msgstr "Data:" #: report:account.journal.period.print:0 #: report:account.journal.period.print.sale.purchase:0 msgid "Label" -msgstr "Žyma" +msgstr "Pavadinimas" #. module: account #: view:res.partner.bank:0 msgid "Accounting Information" -msgstr "" +msgstr "Apskaitos informacija" #. module: account #: view:account.tax:0 @@ -2856,7 +2994,7 @@ msgstr "Specialus apskaičiavimas" #: view:account.move.bank.reconcile:0 #: model:ir.actions.act_window,name:account.action_account_bank_reconcile_tree msgid "Bank reconciliation" -msgstr "Banko sugretinimas" +msgstr "Banko sąskaitos sudengimas" #. module: account #: report:account.invoice:0 @@ -2870,7 +3008,7 @@ msgstr "Nuolaida (%)" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Ref" -msgstr "Nuoroda" +msgstr "Numeris" #. module: account #: view:wizard.multi.charts.accounts:0 @@ -2880,7 +3018,7 @@ msgstr "" #. module: account #: help:account.move.line,tax_code_id:0 msgid "The Account can either be a base tax code or a tax code account." -msgstr "" +msgstr "Sąskaita gali būti tiek mokesčio bazė, tiek mokesčio suma." #. module: account #: sql_constraint:account.model.line:0 @@ -2896,12 +3034,12 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_automatic_reconcile msgid "Automatic Reconciliation" -msgstr "" +msgstr "Automatizuotas sudengimas" #. module: account #: field:account.invoice,reconciled:0 msgid "Paid/Reconciled" -msgstr "Apmokėta/Sugretinta" +msgstr "Apmokėta/Sudengta" #. module: account #: field:account.tax,ref_base_code_id:0 @@ -2913,7 +3051,7 @@ msgstr "Grąžinimo bazės kodas" #: model:ir.actions.act_window,name:account.action_bank_statement_tree #: model:ir.ui.menu,name:account.menu_bank_statement_tree msgid "Bank Statements" -msgstr "Banko sąskaitos išrašai" +msgstr "Banko išrašai" #. module: account #: model:ir.actions.act_window,help:account.action_account_fiscalyear @@ -2934,6 +3072,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte finansinius metus.\n" +"

\n" +" Apibrėžkite finasinius metus pagal įmonės poreikius.\n" +" Finansiniai metai yra periodas, kuriam sudaroma įmonės " +"finansinė\n" +" atskaitomybė (dažniausiai 12 mėnesių). Finansiniai metai\n" +" dažniausiai įvardijami pagal laikotarpio pabaigos datą.\n" +" Pavyzdžiui, jei įmonės finansiniai metai baigiasi 2011 m.\n" +" lapkričio 30 d., tuomet operacijos tarp 2010 m. gruodžio 1 " +"d.\n" +" ir 2011 m. lapkričio 30 d. bus priskirtos 2011 finansiniams " +"metams.\n" +"

\n" +" " #. module: account #: view:account.common.report:0 @@ -2941,18 +3094,18 @@ msgstr "" #: view:account.move.line:0 #: view:accounting.report:0 msgid "Dates" -msgstr "" +msgstr "Datos" #. module: account #: field:account.chart.template,parent_id:0 msgid "Parent Chart Template" -msgstr "" +msgstr "Tėvinis sąskaitų plano šablonas" #. module: account #: field:account.tax,parent_id:0 #: field:account.tax.template,parent_id:0 msgid "Parent Tax Account" -msgstr "Tėvinė mokesčių sąskaita" +msgstr "Tėvinė mokesčio sąskaita" #. module: account #: view:account.aged.trial.balance:0 @@ -2986,6 +3139,10 @@ msgid "" "Note that journal entries that are automatically created by the system are " "always skipping that state." msgstr "" +"Pažymėjus šį lauką, visi ranka įvedami žurnalo įrašai bus iš karto " +"patvirtinami.\n" +"Pažymėtina, kad žurnalo įrašai, kuriuos sistema sukuria automatiškai, yra iš " +"karto patvirtinami." #. module: account #: field:account.move.line.reconcile,writeoff:0 @@ -2996,7 +3153,7 @@ msgstr "Nurašymo suma" #: field:account.bank.statement,message_unread:0 #: field:account.invoice,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Neperžiūrėtos žinutės" #. module: account #: code:addons/account/wizard/account_invoice_state.py:44 @@ -3007,7 +3164,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3020,7 +3177,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "Negalima ištrinti patvirtinto įrašo \"%s\"." @@ -3028,7 +3185,7 @@ msgstr "Negalima ištrinti patvirtinto įrašo \"%s\"." #. module: account #: view:account.invoice:0 msgid "Accounting Period" -msgstr "" +msgstr "Periodas" #. module: account #: field:account.config.settings,sale_journal_id:0 @@ -3036,8 +3193,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3074,7 +3231,7 @@ msgstr "" #: model:ir.ui.menu,name:account.menu_account_customer #: model:ir.ui.menu,name:account.menu_finance_receivables msgid "Customers" -msgstr "Klientai" +msgstr "Pirkėjai" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -3095,7 +3252,7 @@ msgstr "Rugpjūtis" #. module: account #: field:accounting.report,debit_credit:0 msgid "Display Debit/Credit Columns" -msgstr "" +msgstr "Rodyti debeto/kredito skiltis" #. module: account #: selection:account.entries.report,month:0 @@ -3112,6 +3269,8 @@ msgid "" "The optional quantity expressed by this line, eg: number of product sold. " "The quantity is not a legal requirement but is very useful for some reports." msgstr "" +"Papildomas kiekis išreikštas šiuo DK įrašu, pvz. parduotų produktų kiekis. " +"Šis kiekis nėra būtinas, tačiau naudingas kai kuriose ataskaitose." #. module: account #: view:account.unreconcile:0 @@ -3129,13 +3288,13 @@ msgstr "" #: field:product.category,property_account_expense_categ:0 #: field:product.template,property_account_expense:0 msgid "Expense Account" -msgstr "Išlaidų sąskaita" +msgstr "Sąnaudų sąskaita" #. module: account #: field:account.bank.statement,message_summary:0 #: field:account.invoice,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Santrauka" #. module: account #: help:account.invoice,period_id:0 @@ -3170,6 +3329,8 @@ msgid "" "between the creation date or the creation date of the entries plus the " "partner payment terms." msgstr "" +"Šio modelio sukurtų įrašų apmokėjimo data. Jūs galite pasirinkti tarp įrašo " +"sukūrimo datos bei datos pagal partnerio mokėjimo sąlygas." #. module: account #: model:ir.ui.menu,name:account.menu_finance_accounting @@ -3179,7 +3340,7 @@ msgstr "Finansinė apskaita" #. module: account #: model:ir.ui.menu,name:account.menu_account_report_pl msgid "Profit And Loss" -msgstr "" +msgstr "Pelnas (nuostolis)" #. module: account #: view:account.fiscal.position:0 @@ -3193,10 +3354,10 @@ msgstr "" #: model:ir.model,name:account.model_account_fiscal_position #: field:res.partner,property_account_position:0 msgid "Fiscal Position" -msgstr "Fiskalinė pozicija" +msgstr "Mokestinė aplinka" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3220,7 +3381,7 @@ msgstr "Vaikinis" #: model:ir.actions.report.xml,name:account.account_account_balance #: model:ir.ui.menu,name:account.menu_general_Balance_report msgid "Trial Balance" -msgstr "" +msgstr "Bandomasis balansas" #. module: account #: code:addons/account/account.py:431 @@ -3239,7 +3400,7 @@ msgstr "Sąskaita faktūra klientui" #. module: account #: model:ir.model,name:account.model_account_open_closed_fiscalyear msgid "Choose Fiscal Year" -msgstr "Pasirinkite mokestinius metus" +msgstr "Pasirinkite finansinius metus" #. module: account #: view:account.config.settings:0 @@ -3261,7 +3422,7 @@ msgstr "" #: field:accounting.report,account_report_id:0 #: model:ir.ui.menu,name:account.menu_account_financial_reports_tree msgid "Account Reports" -msgstr "" +msgstr "Finansinė ataskaita" #. module: account #: field:account.payment.term,line_ids:0 @@ -3276,7 +3437,7 @@ msgstr "Mokesčių šablonų sąrašas" #. module: account #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal msgid "Sale/Purchase Journals" -msgstr "" +msgstr "Pirkimų/pardavimų žurnalai" #. module: account #: help:account.account,currency_mode:0 @@ -3287,9 +3448,14 @@ msgid "" "software system you may have to use the rate at date. Incoming transactions " "always use the rate at date." msgstr "" +"Pasirinkite kaip bus skaičiuojamas valiutų kursas mokamų sumų tranzakcijoms. " +"Daugelyje valstybių yra leidžiamas „Vidutinio kurso“ metodas, tačiau tik " +"nedaugelis sistemų gali tai atlikti. Taigi, jeigu importuojate duomenis iš " +"kitos sistemos, turėtumėte naudoti metodą „Datai“. Gaunamų sumų tranzakcijos " +"visados naudoja metodą „Datai“." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3303,7 +3469,7 @@ msgstr "Sąskaitos kodo skaitmenų skaičius" #. module: account #: field:res.partner,property_supplier_payment_term:0 msgid "Supplier Payment Term" -msgstr "" +msgstr "Pirkimo mokėjimo sąlygos" #. module: account #: view:account.fiscalyear:0 @@ -3324,7 +3490,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Total Quantity" -msgstr "" +msgstr "Bendras kiekis" #. module: account #: field:account.move.line.reconcile.writeoff,writeoff_acc_id:0 @@ -3349,11 +3515,11 @@ msgstr "Deklaruojama mokesčių suma" #: selection:account.entries.report,type:0 #: selection:account.financial.report,type:0 msgid "View" -msgstr "Žiūrėti" +msgstr "Rodinys" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3366,7 +3532,7 @@ msgstr "Analitinės eilutės" #. module: account #: view:account.invoice:0 msgid "Proforma Invoices" -msgstr "" +msgstr "Išankstinės sąskaitos" #. module: account #: model:process.node,name:account.process_node_electronicfile0 @@ -3376,7 +3542,7 @@ msgstr "Elektroninis failas" #. module: account #: field:account.move.line,reconcile:0 msgid "Reconcile Ref" -msgstr "" +msgstr "Sudengimo Nr" #. module: account #: field:account.config.settings,has_chart_of_accounts:0 @@ -3488,7 +3654,7 @@ msgstr "" #: help:account.account.template,currency_id:0 #: help:account.bank.accounts.wizard,currency_id:0 msgid "Forces all moves for this account to have this secondary currency." -msgstr "" +msgstr "Visi šios sąskaitos DK įrašai privalės turėti šią antrinę valiutą." #. module: account #: model:ir.actions.act_window,help:account.action_validate_account_move_line @@ -3506,7 +3672,7 @@ msgstr "Sąskaitų plano šablonas" #. module: account #: view:account.bank.statement:0 msgid "Transactions" -msgstr "" +msgstr "Tranzakcijos" #. module: account #: model:ir.model,name:account.model_account_unreconcile_reconcile @@ -3526,6 +3692,15 @@ msgid "" " 'Unreconciled' will copy only the journal items that were unreconciled on " "the first day of the new fiscal year." msgstr "" +"Pasirinkite metodą, kuris bus naudojamas generuojant finansinių metų " +"uždarymo įrašus sąskaitoms su šiuo tipu.\n" +"\n" +" „Nieko“ reiškia, kad nebus kuriami įrašai šiam tipui.\n" +" „Balansas“ pagrinde bus naudojamas pinigų sąskaitoms.\n" +" „Išsamiai“ metodas sukurs kiekvieno ankstesnių metų DK įrašo kopiją, net ir " +"tų, kurie buvo sudengti.\n" +" „Nesudengta“ metodas sukurs tik, iki naujų finansinių metų, nesudengtų DK " +"įrašų kopijas." #. module: account #: view:account.tax.template:0 @@ -3598,7 +3773,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_vat_declaration msgid "Account Tax Declaration" -msgstr "" +msgstr "Mokesčių deklaravimas" #. module: account #: help:account.bank.statement,name:0 @@ -3607,9 +3782,12 @@ msgid "" "be with same name as statement name. This allows the statement entries to " "have the same references than the statement itself" msgstr "" +"Jeigu įvesti kitą pavadinimą vietoj „/“, tuomet sukurtų DK įrašų pavadinimai " +"bus tokie pat kaip ir šio banko išrašo. Banko išrašo tranzakcijų numeriai " +"skirsis nuo banko išrašo numerio." #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3624,7 +3802,7 @@ msgid "Starting Balance" msgstr "Pradinis likutis" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Nėra nurodyta partnerio !" @@ -3640,7 +3818,7 @@ msgstr "Uždaryti periodą" #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_opening:0 msgid "Opening Subtotal" -msgstr "" +msgstr "Atidarymo suma" #. module: account #: constraint:account.move.line:0 @@ -3652,7 +3830,7 @@ msgstr "" #. module: account #: field:account.financial.report,display_detail:0 msgid "Display details" -msgstr "" +msgstr "Rodyti detaliai" #. module: account #: report:account.overdue:0 @@ -3665,6 +3843,8 @@ msgid "" "The amount expressed in the related account currency if not equal to the " "company one." msgstr "" +"Suma išreikšta susijusios finansinės sąskaitos valiuta, jeigu valiuta " +"skiriasi nuo pagrindinės įmonės valiutos." #. module: account #: help:account.config.settings,paypal_account:0 @@ -3676,7 +3856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3690,19 +3870,19 @@ msgstr "" #: 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 "Panaikinti sugretinimą" +msgstr "Panaikinti sudengimą" #. module: account #: field:account.tax.code,notprintable:0 #: field:account.tax.code.template,notprintable:0 msgid "Not Printable in Invoice" -msgstr "Sąskaitoje faktūroje nėra spausdinama" +msgstr "Nespausdinti sąskaitoje faktūroje" #. module: account #: report:account.vat.declaration:0 #: field:account.vat.declaration,chart_tax_id:0 msgid "Chart of Tax" -msgstr "" +msgstr "Mokesčių lentelė" #. module: account #: view:account.journal:0 @@ -3734,6 +3914,8 @@ msgid "" "by\n" " your supplier/customer." msgstr "" +"Bus sukurtas kreditinė sąskaitos faktūros juodraštis, kurį galima keisti, " +"patvirtinti, arba laukti kol šį dokumentą išrašys jūsų tiekėjas/pirkėjas." #. module: account #: view:validate.account.move.lines:0 @@ -3769,7 +3951,7 @@ msgstr "Sąskaitų planai" #: view:cash.box.out:0 #: model:ir.actions.act_window,name:account.action_cash_box_out msgid "Take Money Out" -msgstr "" +msgstr "Išimti pinigus" #. module: account #: report:account.vat.declaration:0 @@ -3799,6 +3981,22 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte pirkėjo sąskaitą faktūrą.\n" +"

\n" +" OpenERP elektroninių sąskaitų faktūrų pagalba, pirkėjų " +"mokėjimai\n" +" surenkami patogiau ir greičiau. Jūsų pirkėjas gauna sąskaitą " +"faktūrą\n" +" el. paštu, kurią gali apmokėti internetu arba importuoti į " +"savo\n" +" naudojamą sistemą.\n" +"

\n" +" Bendravimo istorija su pirkėju automatiškai rodoma " +"kiekvienos\n" +" sąskaitos faktūros apačioje.\n" +"

\n" +" " #. module: account #: field:account.tax.code,name:0 @@ -3811,20 +4009,20 @@ msgstr "Mokesčio pavadinimas" #: view:account.invoice:0 #: model:process.node,name:account.process_node_draftinvoices0 msgid "Draft Invoice" -msgstr "Sąskaitos faktūros juodraštis" +msgstr "SĄSKAITOS JUODRAŠTIS" #. module: account #: view:account.config.settings:0 msgid "Options" -msgstr "Nustatymai" +msgstr "Pasirinkimai" #. module: account #: field:account.aged.trial.balance,period_length:0 msgid "Period Length (days)" -msgstr "" +msgstr "Laikotarpis (dienomis)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3834,7 +4032,7 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal msgid "Print Sale/Purchase Journal" -msgstr "" +msgstr "Spausdinti pirkimų/pardavimų žurnalą" #. module: account #: view:account.installer:0 @@ -3845,7 +4043,7 @@ msgstr "Tęsti" #: view:account.invoice.report:0 #: field:account.invoice.report,categ_id:0 msgid "Category of Product" -msgstr "" +msgstr "Produkto kategorija" #. module: account #: code:addons/account/account.py:930 @@ -3875,7 +4073,7 @@ msgstr "Mokesčio kodo suma" #. module: account #: view:account.move.line:0 msgid "Unreconciled Journal Items" -msgstr "Nesugretintos įrašų eilutės" +msgstr "Nesudengti DK įrašai" #. module: account #: selection:account.account.type,close_method:0 @@ -3893,9 +4091,13 @@ msgid "VAT :" msgstr "PVM:" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3908,7 +4110,7 @@ msgstr "Sąskaitų planas" #. module: account #: view:account.tax.chart:0 msgid "(If you do not select period it will take all open periods)" -msgstr "" +msgstr "(Jeigu nenurodysite periodo, bus naudojami visi atviri periodai)" #. module: account #: model:ir.model,name:account.model_account_journal_cashbox_line @@ -3924,7 +4126,7 @@ msgstr "" #: view:account.chart:0 msgid "(If you do not select Fiscal year it will take all open fiscal years)" msgstr "" -"(Jeigu nenurodysite fiskalinių metų, bus pasirinkti visi atviri fiskaliniai " +"(Jeigu nenurodysite finansinių metų, bus naudojami visi atviri finansiniai " "metai)" #. module: account @@ -3972,13 +4174,13 @@ msgstr "Data" #. module: account #: view:account.move:0 msgid "Post" -msgstr "" +msgstr "Registruoti" #. module: account #: view:account.unreconcile:0 #: view:account.unreconcile.reconcile:0 msgid "Unreconcile" -msgstr "Panaikinti sugretinimą" +msgstr "Panaikinti sudengimą" #. module: account #: view:account.chart.template:0 @@ -3986,7 +4188,7 @@ msgid "Chart of Accounts Template" msgstr "Sąskaitų plano šablonas" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3995,8 +4197,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4025,18 +4229,18 @@ msgstr "" #: selection:accounting.report,filter:0 #: selection:accounting.report,filter_cmp:0 msgid "No Filters" -msgstr "" +msgstr "Be filtro" #. module: account #: view:account.invoice.report:0 #: model:res.groups,name:account.group_proforma_invoices msgid "Pro-forma Invoices" -msgstr "" +msgstr "Išankstinės sąskaitos" #. module: account #: view:res.partner:0 msgid "History" -msgstr "" +msgstr "Istorija" #. module: account #: help:account.tax,applicable_type:0 @@ -4045,6 +4249,8 @@ msgid "" "If not applicable (computed through a Python code), the tax won't appear on " "the invoice." msgstr "" +"Jeigu netaikomas (apskaičiuota pagal Python kodą), mokestis nebus naudojamas " +"sąskaitoje faktūroje." #. module: account #: field:account.config.settings,group_check_supplier_invoice_total:0 @@ -4068,7 +4274,7 @@ msgstr "" #: view:account.invoice.report:0 #: field:account.invoice.report,product_qty:0 msgid "Qty" -msgstr "" +msgstr "Kiekis" #. module: account #: help:account.tax.code,sign:0 @@ -4077,6 +4283,9 @@ msgid "" "the amount of this case into its parent. For example, set 1/-1 if you want " "to add/substract it." msgstr "" +"Įveskite koeficientą, kuris bus naudojamas tėviniame mokesčių kode " +"konsoliduojant šio mokesčių kodo sumą. Pavyzdžiui, įvedus 1 suma bus " +"pridedama, įvedus -1 suma bus atimama." #. module: account #: view:account.analytic.line:0 @@ -4104,14 +4313,13 @@ msgstr "Mokėjimo nurodymas" msgid "" "Check this option if you want the user to reconcile entries in this account." msgstr "" -"Pažymėkite, jeigu norite, kad vartotojas galėtų kurti sugretinimo įrašus " -"šiai sąskaitai." +"Pažymėkite, jeigu norite, kad naudotojas galėtų kurti sudengti šią sąskaitą." #. module: account #: report:account.invoice:0 #: field:account.invoice.line,price_unit:0 msgid "Unit Price" -msgstr "Vieneto kaina" +msgstr "Kaina" #. module: account #: model:ir.actions.act_window,name:account.action_account_tree1 @@ -4121,7 +4329,7 @@ msgstr "" #. module: account #: field:analytic.entries.report,nbr:0 msgid "#Entries" -msgstr "" +msgstr "# įrašų" #. module: account #: view:account.state.open:0 @@ -4136,7 +4344,7 @@ msgstr "" #. module: account #: field:account.config.settings,complete_tax_set:0 msgid "Complete set of taxes" -msgstr "" +msgstr "Pilnas mokesčių rinkinys" #. module: account #: field:account.account,name:0 @@ -4151,7 +4359,7 @@ msgid "Name" msgstr "Pavadinimas" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4176,7 +4384,7 @@ msgstr "" #: 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 "Banko sąskaitų nustatymai" #. module: account #: xsl:account.transfer:0 @@ -4187,12 +4395,12 @@ msgstr "" #: help:account.bank.statement,message_ids:0 #: help:account.invoice,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Žinučių ir pranešimų istorija" #. module: account #: help:account.journal,analytic_journal_id:0 msgid "Journal for analytic entries" -msgstr "" +msgstr "Žurnalas analitiniams įrašams" #. module: account #: constraint:account.aged.trial.balance:0 @@ -4213,6 +4421,8 @@ msgid "" "The fiscalyear, periods or chart of account chosen have to belong to the " "same company." msgstr "" +"Pasirinkti finansiniai metai, periodai ar sąskaitų planas turi priklausyti " +"tai pačiai įmonei." #. module: account #: help:account.tax.code.template,notprintable:0 @@ -4220,10 +4430,12 @@ msgid "" "Check this box if you don't want any tax related to this tax Code to appear " "on invoices." msgstr "" +"Pažymėkite šį lauką, jeigu nenorite, kad mokesčiai susiję su šiuo mokesčių " +"kodu būtų rodomi sąskaitose faktūrose" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4245,7 +4457,7 @@ msgstr "Apskaita" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current year" -msgstr "" +msgstr "Žurnalų įrašai, kurių periodas įeina į einamuosius finansinius metus" #. module: account #: field:account.account,child_consol_ids:0 @@ -4253,7 +4465,7 @@ msgid "Consolidated Children" msgstr "Konsoliduotos sąskaitos" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4269,7 +4481,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "General Accounting" -msgstr "" +msgstr "Apskaita" #. module: account #: help:account.fiscalyear.close,journal_id:0 @@ -4279,17 +4491,21 @@ msgid "" "debit/credit accounts, of type 'situation' and with a centralized " "counterpart." msgstr "" +"Geriausia praktika yra naudoti žurnalą specialiai skirtą visų finansinių " +"metų atidarymo įrašams. Pažymėtina, kad žurnalas privalo turėti nustatytas " +"kreditinę/debetinę sąskaitas, žurnalo tipas „Atidarymo/Uždarymo situacija“ " +"ir pažymėta „Bendras koresponduojantis įrašas“." #. module: account #: view:account.installer:0 msgid "title" -msgstr "" +msgstr "kreipinys" #. module: account #: view:account.invoice:0 #: view:account.subscription:0 msgid "Set to Draft" -msgstr "Nustatyti kaip juodraštį" +msgstr "Atstatyti į juodraštį" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form @@ -4299,7 +4515,7 @@ msgstr "Pasikartojančios eilutės" #. module: account #: field:account.partner.balance,display_partner:0 msgid "Display Partners" -msgstr "Atvaizduoti partnerius" +msgstr "Rodyti partnerius" #. module: account #: view:account.invoice:0 @@ -4309,7 +4525,7 @@ msgstr "Patvirtinti" #. module: account #: model:account.financial.report,name:account.account_financial_report_assets0 msgid "Assets" -msgstr "" +msgstr "Ilgalaikis turtas" #. module: account #: view:account.config.settings:0 @@ -4331,23 +4547,23 @@ msgstr "Vidutinis kursas" #: field:account.common.account.report,display_account:0 #: field:account.report.general.ledger,display_account:0 msgid "Display Accounts" -msgstr "" +msgstr "Rodyti sąskaitas" #. module: account #: view:account.state.open:0 msgid "(Invoice should be unreconciled if you want to open it)" msgstr "" -"(Sąskaita faktūra turi būti nesugretinta, jeigu Jūs norite ją atidaryti)" +"(Sąskaita faktūra turi būti nesudengta, jeigu Jūs norite ją atidaryti)" #. module: account #: field:account.tax,account_analytic_collected_id:0 msgid "Invoice Tax Analytic Account" -msgstr "" +msgstr "Mokėtino mokesčio analitinė sąskaita" #. module: account #: field:account.chart,period_from:0 msgid "Start period" -msgstr "" +msgstr "Pradžios periodas" #. module: account #: field:account.tax,name:0 @@ -4380,6 +4596,9 @@ msgid "" "This payment term will be used instead of the default one for sale orders " "and customer invoices" msgstr "" +"Šios mokėjimo sąlygos naudojamos pardavimų sandėriuose, kai šis kontaktas " +"yra pirkėjas. Kitu atveju, naudojamos numatytosios pardavimų mokėjimo " +"sąlygos." #. module: account #: view:account.config.settings:0 @@ -4394,26 +4613,28 @@ msgid "" "If the active field is set to False, it will allow you to hide the account " "without removing it." msgstr "" +"Jeigu aktyvus laukelis nustatytas kaip \"ne\", leidžiame paslėpti sąskaitą, " +"jos nepašalinus." #. module: account #: view:account.move.line:0 msgid "Posted Journal Items" -msgstr "Patvirtintos įrašų eilutės" +msgstr "Užregistruoti DK įrašai" #. module: account #: field:account.move.line,blocked:0 msgid "No Follow-up" -msgstr "" +msgstr "Ginčytinas" #. module: account #: view:account.tax.template:0 msgid "Search Tax Templates" -msgstr "" +msgstr "Ieškoti Mokesčių šablono" #. module: account #: model:ir.ui.menu,name:account.periodical_processing_journal_entries_validation msgid "Draft Entries" -msgstr "" +msgstr "Neužregistruoti įrašai" #. module: account #: help:account.config.settings,decimal_precision:0 @@ -4427,7 +4648,7 @@ msgstr "" #: field:account.account,shortcut:0 #: field:account.account.template,shortcut:0 msgid "Shortcut" -msgstr "Nuoroda" +msgstr "Trumpinys" #. module: account #: view:account.account:0 @@ -4448,7 +4669,7 @@ msgstr "Sąskaitos tipas" #. module: account #: view:account.bank.statement:0 msgid "Close CashBox" -msgstr "" +msgstr "Uždaryti kasą" #. module: account #: model:ir.model,name:account.model_account_invoice_cancel @@ -4456,7 +4677,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4483,6 +4704,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad nustatytumėte banko sąskaitą. \n" +"

\n" +" Sukonfigūruokite jūsų įmonės banko sąskaitą ir pasirinkite tas,\n" +" kurios bus rodomos ataskaitų poraštėje.\n" +"

\n" +" Jeigu naudojate OpenERP apskaitos aplikaciją, žurnalai bei\n" +" sąskaitos bus sukurti automatiškai pagal banko sąskaitos " +"duomenis.\n" +"

\n" +" " #. module: account #: constraint:account.tax.code.template:0 @@ -4521,8 +4753,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4534,7 +4766,7 @@ msgstr "" #: view:analytic.entries.report:0 #: field:analytic.entries.report,product_uom_id:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "Matavimo vienetas" #. module: account #: field:res.company,paypal_account:0 @@ -4544,12 +4776,12 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "Acc.Type" -msgstr "" +msgstr "Sąskaitos tipas" #. module: account #: selection:account.journal,type:0 msgid "Bank and Checks" -msgstr "" +msgstr "Banko sąskaitos" #. module: account #: field:account.account.template,note:0 @@ -4559,33 +4791,33 @@ msgstr "Pastaba" #. module: account #: selection:account.financial.report,sign:0 msgid "Reverse balance sign" -msgstr "" +msgstr "Priešingas balanso ženklas" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:191 #, python-format msgid "Balance Sheet (Liability account)" -msgstr "" +msgstr "Balansas (nuosavas kapitalas ir įsipareigojimai)" #. module: account #: help:account.invoice,date_invoice:0 msgid "Keep empty to use the current date" -msgstr "" +msgstr "Palikite tuščią, jei norite naudoti šiandienos datą" #. module: account #: view:account.bank.statement:0 #: field:account.cashbox.line,subtotal_closing:0 msgid "Closing Subtotal" -msgstr "" +msgstr "Uždarymo suma" #. module: account #: field:account.tax,base_code_id:0 msgid "Account Base Code" -msgstr "" +msgstr "Bazės kodas" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4616,7 +4848,7 @@ msgstr "" #: code:addons/account/report/common_report_header.py:68 #, python-format msgid "All Posted Entries" -msgstr "Visi registruoti įrašai" +msgstr "Registruoti įrašai" #. module: account #: field:report.aged.receivable,name:0 @@ -4651,7 +4883,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4671,12 +4903,12 @@ msgstr "" #. module: account #: field:account.invoice,reference_type:0 msgid "Payment Reference" -msgstr "" +msgstr "Mokėjimo numeris" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Main Title 1 (bold, underlined)" -msgstr "" +msgstr "Pagrindinis pavadinimas 1 (pusjuodis, pabrauktas)" #. module: account #: report:account.analytic.account.balance:0 @@ -4687,7 +4919,7 @@ msgstr "Sąskaitos pavadinimas" #. module: account #: help:account.fiscalyear.close,report_name:0 msgid "Give name of the new entries" -msgstr "" +msgstr "Suteikite pavadinimą naujiems įrašams" #. module: account #: model:ir.model,name:account.model_account_invoice_report @@ -4697,7 +4929,7 @@ msgstr "" #. module: account #: field:account.account,exchange_rate:0 msgid "Exchange Rate" -msgstr "" +msgstr "Valiutos kursas" #. module: account #: model:process.transition,note:account.process_transition_paymentorderreconcilation0 @@ -4705,7 +4937,7 @@ msgid "Bank statements are entered in the system." msgstr "Banko sąskaitos išrašai yra įvesti į sistemą." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4719,12 +4951,12 @@ msgstr "Sąskaitų šablonas" #. module: account #: view:account.bank.statement:0 msgid "Closing Balance" -msgstr "" +msgstr "Uždarymo balansas" #. module: account #: field:account.chart.template,visible:0 msgid "Can be Visible?" -msgstr "" +msgstr "Ar matomas?" #. module: account #: model:ir.model,name:account.model_account_journal_select @@ -4740,7 +4972,7 @@ msgstr "Grąžinimas" #: view:account.move.line:0 #: model:ir.actions.act_window,name:account.action_account_manual_reconcile msgid "Journal Items to Reconcile" -msgstr "" +msgstr "Nesudengti DK įrašai" #. module: account #: model:ir.model,name:account.model_account_tax_template @@ -4760,7 +4992,7 @@ msgstr "" #. module: account #: view:account.tax:0 msgid "Tax Computation" -msgstr "" +msgstr "Mokesčio apskaičiavimas" #. module: account #: view:wizard.multi.charts.accounts:0 @@ -4775,6 +5007,10 @@ msgid "" "you want to generate accounts of this template only when loading its child " "template." msgstr "" +"Nustatykite lauko reikšmę į neigiamą, jeigu nenorite, kad šis šablonas būtų " +"matomas sąskaitų plano generavimo vedlyje. Tai naudinga tuomet, kai norite " +"generuoti šio šablono sąskaitas tik tada, kai yra užkraunamas jo vaikinis " +"šablonas." #. module: account #: view:account.use.model:0 @@ -4785,7 +5021,7 @@ msgstr "Sukurti įrašus iš modelių" #: field:account.account,reconcile:0 #: field:account.account.template,reconcile:0 msgid "Allow Reconciliation" -msgstr "Leisti sugretinti" +msgstr "Leisti sudengti" #. module: account #: constraint:account.account:0 @@ -4795,7 +5031,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4807,10 +5043,10 @@ msgstr "" #. module: account #: report:account.vat.declaration:0 msgid "Based On" -msgstr "" +msgstr "Pagal" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4828,7 +5064,7 @@ msgstr "Pasikartojantys modeliai" #. module: account #: view:account.tax:0 msgid "Children/Sub Taxes" -msgstr "" +msgstr "Vaikiniai mokesčiai" #. module: account #: xsl:account.transfer:0 @@ -4848,7 +5084,7 @@ msgstr "" #. module: account #: view:cash.box.out:0 msgid "Describe why you take money from the cash register:" -msgstr "" +msgstr "Parašykite, kodėl pinigai išimami iš kasos:" #. module: account #: selection:account.invoice,state:0 @@ -4874,9 +5110,11 @@ msgid "" "It adds the currency column on report if the currency differs from the " "company currency." msgstr "" +"Ataskaitoje bus pridėta valiutos skiltis, jeigu įrašo valiuta skirsis nuo " +"įmonės valiutos." #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4886,12 +5124,12 @@ msgstr "" #: 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 "Generuoti įrašus" #. module: account #: help:account.vat.declaration,chart_tax_id:0 msgid "Select Charts of Taxes" -msgstr "" +msgstr "Pasirinkite mokesčių lentelę" #. module: account #: view:account.fiscal.position:0 @@ -4903,22 +5141,22 @@ msgstr "Sąskaitų nustatymai" #. module: account #: view:account.bank.statement:0 msgid "Confirmed" -msgstr "" +msgstr "Patvirtinta" #. module: account #: report:account.invoice:0 msgid "Cancelled Invoice" -msgstr "" +msgstr "ATŠAUKTA SĄSKAITA" #. module: account #: view:account.invoice:0 msgid "My Invoices" -msgstr "" +msgstr "Mano sąskaitos faktūros" #. module: account #: selection:account.bank.statement,state:0 msgid "New" -msgstr "" +msgstr "Naujas" #. module: account #: view:wizard.multi.charts.accounts:0 @@ -4934,12 +5172,12 @@ msgstr "Grąžintino mokesčio kodas" #. module: account #: view:account.invoice:0 msgid "Invoice " -msgstr "" +msgstr "Sąskaita faktūra " #. module: account #: field:account.chart.template,property_account_income:0 msgid "Income Account on Product Template" -msgstr "" +msgstr "Pajamų sąskaita produkto šablonui" #. module: account #: help:account.journal.period,state:0 @@ -4950,7 +5188,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -4958,7 +5196,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,fy2_id:0 msgid "New Fiscal Year" -msgstr "Nauji fiskaliniai metai" +msgstr "Nauji finansiniai metai" #. module: account #: view:account.invoice:0 @@ -5022,17 +5260,17 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "or" -msgstr "" +msgstr "arba" #. module: account #: view:account.invoice.report:0 msgid "Invoiced" -msgstr "" +msgstr "Sąskaitos faktūros" #. module: account #: view:account.move:0 msgid "Posted Journal Entries" -msgstr "Patvirtinti įrašai" +msgstr "Užregistruoti žurnalų įrašai" #. module: account #: view:account.use.model:0 @@ -5046,6 +5284,9 @@ msgid "" "account if this is a Customer Invoice or Supplier Refund, otherwise a " "Partner bank account number." msgstr "" +"Banko sąskaitos numeris, į kurį bus gautas šios sąskaitos apmokėjimas. " +"Sąskaitos pirkėjui ar grąžinimo tiekėjui atvejais, tai bus įmonės banko " +"sąskaita, kitais atvejais - kontakto banko sąskaita." #. module: account #: field:account.partner.reconcile.process,today_reconciled:0 @@ -5060,7 +5301,7 @@ msgstr "Mokesčių deklaracijos kodas" #. module: account #: view:account.addtmpl.wizard:0 msgid "Add" -msgstr "" +msgstr "Pridėti" #. module: account #: selection:account.invoice,state:0 @@ -5077,7 +5318,7 @@ msgstr "Mokesčių eilutės" #. module: account #: help:account.move.line,statement_id:0 msgid "The bank statement used for bank reconciliation" -msgstr "Banko sąskaitos išrašas naudojamas banko sugretinimui" +msgstr "Banko sąskaitos išrašas naudojamas sąskaitų sudengimui" #. module: account #: model:process.transition,note:account.process_transition_suppliercustomerinvoice0 @@ -5090,17 +5331,19 @@ msgid "" "Set the account that will be set by default on invoice tax lines for " "invoices. Leave empty to use the expense account." msgstr "" +"Pasirinkite sąskaitą, kuri bus nustatoma ant sąskaitų faktūrų mokesčių " +"eilučių. Palikus tuščią, bus naudojama sąnaudų sąskaita." #. module: account #: code:addons/account/account.py:890 #, python-format msgid "Opening Period" -msgstr "" +msgstr "Atidarymo periodas" #. module: account #: view:account.move:0 msgid "Journal Entries to Review" -msgstr "Įrašai peržiūrai" +msgstr "Žurnalų įrašai, kuriuos reikia peržiūrėti" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 @@ -5119,7 +5362,7 @@ msgid "Tax Application" msgstr "Mokesčio taikymas" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5140,7 +5383,7 @@ msgstr "Aktyvus" #: view:account.bank.statement:0 #: field:account.journal,cash_control:0 msgid "Cash Control" -msgstr "" +msgstr "Pinigų kontrolė" #. module: account #: field:account.analytic.balance,date2:0 @@ -5192,17 +5435,17 @@ msgstr "" #. module: account #: field:account.journal,group_invoice_lines:0 msgid "Group Invoice Lines" -msgstr "" +msgstr "Grupuoti sąskaitos faktūros eilutes" #. module: account #: view:account.automatic.reconcile:0 msgid "Close" -msgstr "Uždaryta" +msgstr "Užverti" #. module: account #: field:account.bank.statement.line,move_ids:0 msgid "Moves" -msgstr "DK įrašai" +msgstr "Žurnalo įrašas" #. module: account #: field:account.bank.statement,details_ids:0 @@ -5225,7 +5468,7 @@ msgstr "" #. module: account #: view:account.period:0 msgid "To Close" -msgstr "" +msgstr "Atidaryta" #. module: account #: field:account.treasury.report,date:0 @@ -5290,10 +5533,10 @@ msgstr "Analitinis balansas -" #: field:account.vat.declaration,target_move:0 #: field:accounting.report,target_move:0 msgid "Target Moves" -msgstr "Parinkti įrašai" +msgstr "Rodyti įrašus" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5303,7 +5546,7 @@ msgstr "" #: view:account.bank.statement:0 #: help:account.cashbox.line,number_opening:0 msgid "Opening Unit Numbers" -msgstr "" +msgstr "Atidarymo kupiūrų kiekis" #. module: account #: field:account.subscription,period_type:0 @@ -5342,6 +5585,9 @@ msgid "" "encode the sale and purchase rates or choose from list of taxes. This last " "choice assumes that the set of tax defined on this template is complete" msgstr "" +"Šis laukas leidžia pasirinkti, ar naudotojas turės pats įvesti mokesčių " +"tarifą ar pasirinkti iš mokesčių sąrašo. Pažymėtas laukas reikš, kad šiam " +"šablonui yra apibrėžtas pilnas mokesčių rinkinys" #. module: account #: view:account.financial.report:0 @@ -5361,12 +5607,12 @@ msgstr "" #: view:report.account_type.sales:0 #: field:report.account_type.sales,name:0 msgid "Year" -msgstr "" +msgstr "Metai" #. module: account #: help:account.invoice,sent:0 msgid "It indicates that the invoice has been sent." -msgstr "" +msgstr "Tai parodo, kad sąskaita-faktūra buvo išsiųsta." #. module: account #: field:account.tax.template,description:0 @@ -5374,7 +5620,7 @@ msgid "Internal Name" msgstr "Vidinis vardas" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5396,37 +5642,37 @@ msgstr "mėnuo" #: view:account.move.line:0 #: field:account.partner.reconcile.process,next_partner_id:0 msgid "Next Partner to Reconcile" -msgstr "" +msgstr "Kitas partneris sudengimui" #. module: account #: field:account.invoice.tax,account_id:0 #: field:account.move.line,tax_code_id:0 msgid "Tax Account" -msgstr "Mokesčių sąskaita" +msgstr "Mokesčio sąskaita" #. module: account #: model:account.financial.report,name:account.account_financial_report_balancesheet0 #: 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 "Balansas" #. module: account #: selection:account.account.type,report_type:0 #: code:addons/account/account.py:188 #, python-format msgid "Profit & Loss (Income account)" -msgstr "" +msgstr "Pelnas/nuostolis (pajamų sąskaita)" #. module: account #: field:account.journal,allow_date:0 msgid "Check Date in Period" -msgstr "" +msgstr "Tikrinti periodą pagal datą" #. module: account #: model:ir.ui.menu,name:account.final_accounting_reports msgid "Accounting Reports" -msgstr "Apskaitos ataskaitos" +msgstr "Finansinės ataskaitos" #. module: account #: field:account.move,line_id:0 @@ -5438,7 +5684,7 @@ msgstr "Įrašai" #. module: account #: view:account.entries.report:0 msgid "This Period" -msgstr "" +msgstr "Einamasis periodas" #. module: account #: view:account.tax.template:0 @@ -5446,7 +5692,7 @@ msgid "Compute Code (if type=code)" msgstr "Apskaičiuoti Kodą (jei tipas=kodas)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5486,13 +5732,13 @@ msgstr "Automatinis sugretinimas" #: field:cash.box.in,amount:0 #: field:cash.box.out,amount:0 msgid "Amount" -msgstr "Kiekis" +msgstr "Suma" #. module: account #: code:addons/account/wizard/account_fiscalyear_close.py:41 #, python-format msgid "End of Fiscal Year Entry" -msgstr "Fiskalinių metų pabaigos įrašai" +msgstr "Finansinių metų pabaigos operacijos" #. module: account #: model:process.transition,name:account.process_transition_customerinvoice0 @@ -5502,7 +5748,7 @@ msgstr "Fiskalinių metų pabaigos įrašai" #: model:process.transition,name:account.process_transition_suppliervalidentries0 #: model:process.transition,name:account.process_transition_validentries0 msgid "Validation" -msgstr "" +msgstr "Patvirtinimas" #. module: account #: help:account.bank.statement,message_summary:0 @@ -5511,12 +5757,14 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Saugo pokalbių suvestinę (žinučių skaičius, ...). Ši apžvalga saugoma html " +"formatu, kad būtų galima įterpti į kanban rodinius." #. module: account #: field:account.tax,child_depend:0 #: field:account.tax.template,child_depend:0 msgid "Tax on Children" -msgstr "" +msgstr "Pagal vaikinę vertę" #. module: account #: help:res.partner,last_reconciliation_date:0 @@ -5546,12 +5794,12 @@ msgstr "" #. module: account #: field:account.tax.code,sign:0 msgid "Coefficent for parent" -msgstr "" +msgstr "Ženklas" #. module: account #: report:account.partner.balance:0 msgid "(Account/Partner) Name" -msgstr "" +msgstr "(Sąskaitos/Partnerio) pavadinimas" #. module: account #: field:account.partner.reconcile.process,progress:0 @@ -5571,10 +5819,10 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Recompute taxes and total" -msgstr "" +msgstr "Perskaičiuoti mokesčius bei bendrą sumą" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5582,12 +5830,12 @@ msgstr "" #. module: account #: field:account.tax.template,include_base_amount:0 msgid "Include in Base Amount" -msgstr "Įtraukti į pagrindinę sumą" +msgstr "Įtraukti į bazinę sumą" #. module: account #: field:account.invoice,supplier_invoice_number:0 msgid "Supplier Invoice Number" -msgstr "" +msgstr "Tiekėjo SF numeris" #. module: account #: help:account.payment.term.line,days:0 @@ -5601,10 +5849,10 @@ msgstr "" #. module: account #: view:account.payment.term.line:0 msgid "Amount Computation" -msgstr "" +msgstr "Sumos apskaičiavimas" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5665,12 +5913,15 @@ msgid "" "that you should have your last line with the type 'Balance' to ensure that " "the whole amount will be treated." msgstr "" +"Pasirinkite mokėjimo termino eilutės apskaičiavimo būdą. Pažymėtina, " +"paskutinėje eilutėje reikia pasirinkti „Balansas“, tam kad užtikrintumėte, " +"jog bus apdorota visa suma." #. module: account #: field:account.partner.ledger,initial_balance:0 #: field:account.report.general.ledger,initial_balance:0 msgid "Include Initial Balances" -msgstr "Pridėti pradinį balansą" +msgstr "Įtraukti pradinį balansą" #. module: account #: view:account.invoice.tax:0 @@ -5700,23 +5951,23 @@ msgstr "" #. module: account #: field:account.fiscalyear,end_journal_period_id:0 msgid "End of Year Entries Journal" -msgstr "Fiskalinių metų uždarymo įrašų žurnalas" +msgstr "Finansinių metų uždarymo įrašų žurnalas" #. module: account #: view:account.invoice:0 msgid "Draft Refund " -msgstr "" +msgstr "Kreditinės sąskaitos faktūros juodraštis " #. module: account #: view:cash.box.in:0 msgid "Fill in this form if you put money in the cash register:" -msgstr "" +msgstr "Užpildykite šią formą norėdami įnešti pinigus į kasą:" #. module: account #: view:account.payment.term.line:0 #: field:account.payment.term.line,value_amount:0 msgid "Amount To Pay" -msgstr "" +msgstr "Mokama suma" #. module: account #: help:account.partner.reconcile.process,to_reconcile:0 @@ -5743,7 +5994,7 @@ msgstr "" #: selection:account.move,state:0 #: view:account.move.line:0 msgid "Unposted" -msgstr "Nepatvirtinti" +msgstr "Neužregistruota" #. module: account #: view:account.change.currency:0 @@ -5761,7 +6012,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Payment Date" -msgstr "" +msgstr "Apmokėjimo data" #. module: account #: view:account.bank.statement:0 @@ -5779,7 +6030,7 @@ msgstr "Analitinės sąskaitos" #. module: account #: view:account.invoice.report:0 msgid "Customer Invoices And Refunds" -msgstr "" +msgstr "Pirkėjui išrašytos S/F" #. module: account #: field:account.analytic.line,amount_currency:0 @@ -5817,7 +6068,7 @@ msgstr "" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Normal Text" -msgstr "" +msgstr "Paprastas tekstas" #. module: account #: model:process.transition,note:account.process_transition_paymentreconcile0 @@ -5830,13 +6081,15 @@ msgid "" "This payment term will be used instead of the default one for purchase " "orders and supplier invoices" msgstr "" +"Šios mokėjimo sąlygos naudojamos pirkimų sandėriuose, kai šis kontaktas yra " +"tiekėjas. Kitu atveju, naudojamos numatytosios pirkimų mokėjimo sąlygos." #. module: account #: help:account.automatic.reconcile,power:0 msgid "" "Number of partial amounts that can be combined to find a balance point can " "be chosen as the power of the automatic reconciliation" -msgstr "" +msgstr "Skaičius įrašų, kurie gali būti apjungti į sudengimą." #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:56 @@ -5848,19 +6101,19 @@ msgstr "" #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 msgid "Fiscal Position Template" -msgstr "Fiskalinės pozicijos šablonas" +msgstr "Mokestinės aplinkos šablonas" #. module: account #: view:account.invoice:0 msgid "Draft Refund" -msgstr "" +msgstr "Kreditinės sąskaitos faktūros juodraštis" #. module: account #: view:account.analytic.chart:0 #: view:account.chart:0 #: view:account.tax.chart:0 msgid "Open Charts" -msgstr "Aktyvūs planai" +msgstr "Rodyti planą" #. module: account #: field:account.central.journal,amount_currency:0 @@ -5875,17 +6128,17 @@ msgstr "Su valiuta" #. module: account #: view:account.bank.statement:0 msgid "Open CashBox" -msgstr "" +msgstr "Atidaryti kasą" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Automatic formatting" -msgstr "" +msgstr "Automatinis formatavimas" #. module: account #: view:account.move.line.reconcile:0 msgid "Reconcile With Write-Off" -msgstr "Sugretinti su nurašymu" +msgstr "Sudengti su nurašymu" #. module: account #: constraint:account.move.line:0 @@ -5899,7 +6152,7 @@ msgid "Fixed Amount" msgstr "Fiksuota suma" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5907,19 +6160,19 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_automatic_reconcile msgid "Account Automatic Reconcile" -msgstr "" +msgstr "Automatizuotas sąskaitų sudengimas" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "Journal Item" -msgstr "Įrašo eilutė" +msgstr "DK įrašas" #. 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 "Generuoti atidarymo įrašus" #. module: account #: help:account.tax,type:0 @@ -5929,12 +6182,12 @@ msgstr "Mokesčio skaičiavimo metodas" #. module: account #: view:account.payment.term.line:0 msgid "Due Date Computation" -msgstr "" +msgstr "Mokėjimo termino skaičiavimas" #. module: account #: field:report.invoice.created,create_date:0 msgid "Create Date" -msgstr "" +msgstr "Sukūrimo data" #. module: account #: view:account.analytic.journal:0 @@ -5942,7 +6195,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 "Analitinis žurnalas" +msgstr "Analitiniai žurnalai" #. module: account #: field:account.account,child_id:0 @@ -5950,14 +6203,14 @@ msgid "Child Accounts" msgstr "Vaikinės sąskaitos" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Nurašymas" @@ -5965,12 +6218,12 @@ msgstr "Nurašymas" #. module: account #: view:account.entries.report:0 msgid "entries" -msgstr "" +msgstr "Neužregistruoti įrašai" #. module: account #: field:res.partner,debit:0 msgid "Total Payable" -msgstr "Visos mokėtinos sumos" +msgstr "Bendra mokėtina suma" #. module: account #: model:account.account.type,name:account.data_account_type_income @@ -5983,7 +6236,7 @@ msgstr "Pajamos" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Tiekėjas" @@ -6003,20 +6256,22 @@ msgid "Account n°" msgstr "Sąskaitos Nr." #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" -msgstr "Nuoroda" +msgstr "Numeris" #. module: account #: selection:account.aged.trial.balance,result_selection:0 #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" -msgstr "Debetinės ir kreditinės sąskaitos" +msgstr "Debitorių ir kreditorių sąskaitos" #. module: account #: field:account.fiscal.position.account.template,position_id:0 @@ -6043,7 +6298,7 @@ msgstr "Maksimalus kiekis" #: view:account.invoice:0 #: model:ir.actions.act_window,name:account.action_account_invoice_refund msgid "Refund Invoice" -msgstr "Grąžinti sąskaitą faktūrą" +msgstr "Sąskaitos kreditavimas" #. module: account #: model:ir.actions.act_window,help:account.action_account_entries_report_all @@ -6085,17 +6340,31 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte sąskaitą.\n" +"

\n" +" Sąskaita yra Didžiosios knygos dalis, kurioje " +"registruojamos\n" +" visų rūšių debetinės ir kreditinės operacijos.\n" +" Įmonės pateikia savo metines sąskaitų suvestines šiose " +"ataskaitose:\n" +" balanso ataskaitoje bei pelno/nuostolio ataskaitoje (pajamų " +"bei sąnaudų sąskaitoms).\n" +" Metinės sąskaitų suvestinės sudaromos įstatymo reikalvimu,\n" +" kad būtų atskleidžiama tam tikra informacija.\n" +"

\n" +" " #. module: account #: view:account.invoice.report:0 #: field:account.invoice.report,nbr:0 msgid "# of Lines" -msgstr "" +msgstr "# eilučių" #. module: account #: view:account.invoice:0 msgid "(update)" -msgstr "" +msgstr "(atnaujinti)" #. module: account #: field:account.aged.trial.balance,filter:0 @@ -6114,10 +6383,10 @@ msgstr "" #: field:accounting.report,filter:0 #: field:accounting.report,filter_cmp:0 msgid "Filter by" -msgstr "" +msgstr "Filtruoti pagal" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6130,24 +6399,24 @@ msgstr "Skaičiuoti mokesčių kodus įtraukiant kainas" #. module: account #: help:account.bank.statement,balance_end:0 msgid "Balance as calculated based on Starting Balance and transaction lines" -msgstr "" +msgstr "Balansas apskaičiuotas pagal pradžios likutį bei tranzakcijų eilutes" #. module: account #: field:account.journal,loss_account_id:0 msgid "Loss Account" -msgstr "" +msgstr "Sąnaudų sąskaita" #. module: account #: field:account.tax,account_collected_id:0 #: field:account.tax.template,account_collected_id:0 msgid "Invoice Tax Account" -msgstr "Sąsk. fakt. mokesčių sąskaitą" +msgstr "Mokėtino mokesčio sąskaita" #. module: account #: 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 "Sąskaitos bendrasis žurnalas" +msgstr "Spausdinti bendrąjį žurnalą" #. module: account #: help:account.move,state:0 @@ -6165,7 +6434,7 @@ msgid "Number of Days" msgstr "Dienų skaičius" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6175,7 +6444,7 @@ msgstr "" #. module: account #: view:account.financial.report:0 msgid "Report" -msgstr "" +msgstr "Ataskaita" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax_template @@ -6204,12 +6473,12 @@ msgstr "Nieko" #: model:ir.actions.act_window,name:account.action_invoice_tree3 #: model:ir.ui.menu,name:account.menu_action_invoice_tree3 msgid "Customer Refunds" -msgstr "Kliento grąžinimai" +msgstr "Pirkėjo grąžinimai" #. module: account #: field:account.account,foreign_balance:0 msgid "Foreign Balance" -msgstr "" +msgstr "Balansas antrine valiuta" #. module: account #: field:account.journal.period,name:0 @@ -6234,7 +6503,7 @@ msgstr "" #. module: account #: view:account.subscription:0 msgid "Running Subscription" -msgstr "" +msgstr "Aktyvios periodinės operacijos" #. module: account #: report:account.invoice:0 @@ -6246,7 +6515,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 "Analitinių įrašų analizė" #. module: account #: selection:account.aged.trial.balance,direction_selection:0 @@ -6259,6 +6528,8 @@ msgid "" "This journal will be created automatically for this bank account when you " "save the record" msgstr "" +"Žurnalas bus sukurtas automatiškai pagal šios banko sąskaitos duomenis, kai " +"tik išsaugosite šį įrašą" #. module: account #: view:account.analytic.line:0 @@ -6269,12 +6540,12 @@ msgstr "Analitinis įrašas" #: view:res.company:0 #: field:res.company,overdue_msg:0 msgid "Overdue Payments Message" -msgstr "" +msgstr "Pranešimas apie pradelstą mokėjimą" #. module: account #: field:account.entries.report,date_created:0 msgid "Date Created" -msgstr "" +msgstr "Sukūrimo data" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_line_extended_form @@ -6308,10 +6579,10 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_action_model_form msgid "Models" -msgstr "" +msgstr "Modeliai" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6326,7 +6597,7 @@ msgstr "Kliento mokesčiai" #. module: account #: help:account.model,name:0 msgid "This is a model for recurring accounting entries" -msgstr "Modelis skirtas pasikartojantiems sąskaitų įrašams" +msgstr "Modelis skirtas pasikartojantiems DK įrašams" #. module: account #: field:wizard.multi.charts.accounts,sale_tax_rate:0 @@ -6336,7 +6607,7 @@ msgstr "" #. module: account #: view:account.tax.code:0 msgid "Reporting Configuration" -msgstr "" +msgstr "Spausdinimo nustatymai" #. module: account #: model:ir.actions.act_window,help:account.action_invoice_tree4 @@ -6351,6 +6622,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte iš tiekėjo gautą kreditinę S/F.\n" +"

\n" +" Vietoj to, kad įvestumėte tiekėjo kreditinę sąskaitą " +"faktūrą, \n" +" galite ją automatiškai sugeneruoti ir sudengti su susijusia " +"tiekėjo S/F.\n" +"

\n" +" " #. module: account #: field:account.tax,type:0 @@ -6377,32 +6657,32 @@ msgstr "" #. module: account #: report:account.vat.declaration:0 msgid "Tax Statement" -msgstr "" +msgstr "Mokesčių ataskaita" #. module: account #: model:ir.model,name:account.model_res_company msgid "Companies" -msgstr "" +msgstr "Įmonės" #. module: account #: view:account.invoice.report:0 msgid "Open and Paid Invoices" -msgstr "" +msgstr "Atviros bei apmokėtos S/F" #. module: account #: selection:account.financial.report,display_detail:0 msgid "Display children flat" -msgstr "" +msgstr "Rodyti vaikines ataskaitas vientisai" #. module: account #: view:account.config.settings:0 msgid "Bank & Cash" -msgstr "" +msgstr "Pinigai" #. module: account #: help:account.fiscalyear.close.state,fy_id:0 msgid "Select a fiscal year to close" -msgstr "" +msgstr "Pasirinkite finansinius metus, kuriuos uždarysite" #. module: account #: help:account.chart.template,tax_template_ids:0 @@ -6423,7 +6703,7 @@ msgstr "Priedo informacija" #: field:account.chart,fiscalyear:0 #: view:account.fiscalyear:0 msgid "Fiscal year" -msgstr "Fiskaliniai metai" +msgstr "Finansiniai metai" #. module: account #: view:account.move.reconcile:0 @@ -6483,7 +6763,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6504,7 +6784,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6528,10 +6808,10 @@ msgstr "Kapitalas" #. module: account #: field:account.journal,internal_account_id:0 msgid "Internal Transfers Account" -msgstr "" +msgstr "Vidinio perkėlimo sąskaita" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6539,7 +6819,7 @@ msgstr "" #. module: account #: selection:account.tax,type:0 msgid "Percentage" -msgstr "" +msgstr "Procentinė dalis" #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 @@ -6557,7 +6837,7 @@ msgid "Power" msgstr "Galia" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6584,6 +6864,8 @@ msgid "" "Indicates if the amount of tax must be included in the base amount for the " "computation of the next taxes" msgstr "" +"Pasirinkite ar mokesčio suma turi būti pridėta prie bazinės sumos prieš " +"skaičiuojant kitus mokesčius." #. module: account #: model:ir.actions.act_window,name:account.action_account_partner_reconcile @@ -6610,6 +6892,12 @@ msgid "" "due date, make sure that the payment term is not set on the invoice. If you " "keep the payment term and the due date empty, it means direct payment." msgstr "" +"Jeigu pasirinksite mokėjimo sąlygas, mokėjimo terminas bus paskaičiuotas " +"automatiškai sukuriant DK įrašus. Mokėjimo sąlygos gali apibrėžti keletą " +"mokėjimo terminų, pavyzdžiui 50% dabar, 50% per vieną mėnesį. Jeigu norite " +"įvesti savo mokėjimo terminą, įsitikinkite, kad mokėjimo sąlygos nėra " +"pasirinktos šioje sąskaitoje. Nepasirinkus mokėjimo sąlygų bei mokėjimo " +"termino, bus laikoma, kad apmokama iš karto." #. module: account #: code:addons/account/account.py:414 @@ -6628,14 +6916,17 @@ 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 "" +"Sekos laukas naudojamas surikiuoti mokesčių eilutes nuo žemiausio iki " +"aukščiausio. Seka yra svarbi jeigu jūs turite mokesčių su keletą vaikinių " +"mokesčių. Šiuo atveju vertinimo seka yra svarbi." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6644,25 +6935,25 @@ msgstr "" #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 #, python-format msgid "User Error!" -msgstr "" +msgstr "Naudotojo klaida!" #. module: account #: view:account.open.closed.fiscalyear:0 msgid "Discard" -msgstr "" +msgstr "Atmesti" #. module: account #: selection:account.account,type:0 #: selection:account.account.template,type:0 #: view:account.journal:0 msgid "Liquidity" -msgstr "" +msgstr "Pinigai" #. module: account #: 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 "Analitinių įrašų eilutės" +msgstr "Analitinio žurnalo įrašai" #. module: account #: field:account.config.settings,has_default_company:0 @@ -6676,11 +6967,14 @@ 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 "" +"Šis vedlys sukurs pasirinktų finansinių metų uždarymo įrašus. Pažymėtina, " +"kad vykdant šį veiksmą keletą kartų, tiems patiems finansiniams metams, bus " +"tiesiog pakeičiami senesni atidarymo įrašais su naujesniais." #. module: account #: model:ir.ui.menu,name:account.menu_finance_bank_and_cash msgid "Bank and Cash" -msgstr "Bankas ir Kasa" +msgstr "Pinigai" #. module: account #: model:ir.actions.act_window,help:account.action_analytic_entries_report @@ -6713,9 +7007,11 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" -msgstr "Grąžinimas tiekėjui" +msgstr "TIEKĖJO KREDITINĖ SĄSKAITA" #. module: account #: field:account.bank.statement,move_line_ids:0 @@ -6748,7 +7044,7 @@ msgstr "Centralizacija" #: view:account.tax.code.template:0 #: view:analytic.entries.report:0 msgid "Group By..." -msgstr "" +msgstr "Grupuoti pagal..." #. module: account #: code:addons/account/account.py:1024 @@ -6771,6 +7067,8 @@ msgid "" "If this box is checked, the system will try to group the accounting lines " "when generating them from invoices." msgstr "" +"Pažymėjus šį lauiką, sistema bandys sugrupuoti DK įrašus, kuomet jie kuriami " +"pagal sąskaitą faktūrą." #. module: account #: field:account.installer,has_default_company:0 @@ -6797,7 +7095,7 @@ msgstr "Analitinis žurnalas" #. module: account #: view:account.entries.report:0 msgid "Reconciled" -msgstr "" +msgstr "Sudengta" #. module: account #: constraint:account.payment.term.line:0 @@ -6820,7 +7118,7 @@ msgstr "Modelio pavadinimas" #. module: account #: field:account.chart.template,property_account_expense_categ:0 msgid "Expense Category Account" -msgstr "Išlaidų kategorijos sąskaita" +msgstr "Sąnaudų kategorijos sąskaita" #. module: account #: sql_constraint:account.tax:0 @@ -6830,7 +7128,7 @@ msgstr "" #. module: account #: view:account.bank.statement:0 msgid "Cash Transactions" -msgstr "" +msgstr "Pinigų tranzakcijos" #. module: account #: view:account.unreconcile:0 @@ -6856,7 +7154,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Įrašai: " @@ -6864,7 +7162,7 @@ msgstr "Įrašai: " #. module: account #: help:res.partner.bank,currency_id:0 msgid "Currency of the related account journal." -msgstr "" +msgstr "Susijusio žurnalo valiuta." #. module: account #: constraint:account.move.line:0 @@ -6883,7 +7181,7 @@ msgstr "Taip" #: code:addons/account/account.py:190 #, python-format msgid "Balance Sheet (Asset account)" -msgstr "" +msgstr "Balansas (turtas)" #. module: account #: model:process.node,note:account.process_node_draftstatement0 @@ -6898,7 +7196,7 @@ msgstr "Iš viso debeto" #. module: account #: view:account.move.line:0 msgid "Next Partner Entries to reconcile" -msgstr "" +msgstr "Sudengti kito partnerio DK įrašus" #. module: account #: report:account.invoice:0 @@ -6910,8 +7208,7 @@ msgstr "Faksas :" msgid "" "This account will be used instead of the default one as the receivable " "account for the current partner" -msgstr "" -"Ši sąskaita bus naudojama vietoj numatytosios, pirkėjo skolai žymėti." +msgstr "Sąskaita naudojama apskaityti gautinoms sumoms iš šio kontakto." #. module: account #: field:account.tax,python_applicable:0 @@ -6927,7 +7224,7 @@ msgstr "Python kodas" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current period" -msgstr "" +msgstr "Einamojo periodo žurnalų įrašai" #. module: account #: help:account.journal,update_posted:0 @@ -6951,12 +7248,12 @@ msgstr "Sukurti įrašą" #: code:addons/account/account.py:189 #, python-format msgid "Profit & Loss (Expense account)" -msgstr "" +msgstr "Pelnas/nuostolis (sąnaudų sąskaita)" #. module: account #: field:account.bank.statement,total_entry_encoding:0 msgid "Total Transactions" -msgstr "" +msgstr "Viso tranzakcijų" #. module: account #: code:addons/account/account.py:636 @@ -6966,20 +7263,20 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" -msgstr "Klaida !" +msgstr "Klaida!" #. module: account #: field:account.financial.report,style_overwrite:0 msgid "Financial Report Style" -msgstr "" +msgstr "Finansinės ataskaitos stilius" #. module: account #: selection:account.financial.report,sign:0 msgid "Preserve balance sign" -msgstr "" +msgstr "Išlaikyti balanso ženklą" #. module: account #: view:account.vat.declaration:0 @@ -7006,7 +7303,7 @@ msgstr "Rankinis" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Cancel: create refund and reconcile" -msgstr "" +msgstr "Atšaukti: sukurti kreditinę S/F ir sudengti su šia S/F" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 @@ -7023,12 +7320,16 @@ msgid "" "reconcile in a series of accounts. It finds entries for each partner where " "the amounts correspond." msgstr "" +"Kad sąskaita faktūra būtų laikoma kaip apmokėta, susijusę DK įrašai turi " +"būti sudengta su mokėjimais. Vykdant automatizuota sudengimą, OpenERP daro " +"DK įrašų paiešką sąskaitų grupėse, surandant kontaktų operacijas su " +"atitinkamomis sumomis." #. module: account #: view:account.move:0 #: field:account.move,to_check:0 msgid "To Review" -msgstr "" +msgstr "Peržiūrėti" #. module: account #: help:account.partner.ledger,initial_balance:0 @@ -7038,6 +7339,8 @@ msgid "" "row to display the amount of debit/credit/balance that precedes the filter " "you've set." msgstr "" +"Jeigu pasirinkote filtravimą pagal data ir periodą, šis pasirinkimas pridės " +"eilutę, rodančią debetą/kreditą/balansą iki rodomo laikotarpio." #. module: account #: view:account.bank.statement:0 @@ -7046,7 +7349,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 "Įrašai" +msgstr "Žurnalų įrašai" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:147 @@ -7057,7 +7360,7 @@ msgstr "" #. module: account #: help:account.partner.ledger,page_split:0 msgid "Display Ledger Report with One partner per page" -msgstr "" +msgstr "Rodyti vieną partnerį per puslapį didžiojoje knygoje" #. module: account #: report:account.general.ledger:0 @@ -7065,7 +7368,7 @@ msgstr "" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "JRNL" -msgstr "" +msgstr "ŽRNL" #. module: account #: view:account.state.open:0 @@ -7110,12 +7413,12 @@ msgstr "" #: code:addons/account/account.py:434 #, python-format msgid "Opening Balance" -msgstr "" +msgstr "Atidarymo balansas" #. module: account #: model:ir.model,name:account.model_account_move_reconcile msgid "Account Reconciliation" -msgstr "Sąskaitos sugretinimas" +msgstr "Sąskaitos sudengimas" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax @@ -7143,12 +7446,14 @@ 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 "" +"Pažymėkite šį lauką, jeigu nesate tikri dėl šio žurnalo įrašo ir norite " +"pažymėti, kad šį įrašą turi peržiūrėti buhalteris." #. module: account #: field:account.chart.template,complete_tax_set:0 #: field:wizard.multi.charts.accounts,complete_tax_set:0 msgid "Complete Set of Taxes" -msgstr "" +msgstr "Pilnas mokesčių rinkinys" #. module: account #: code:addons/account/wizard/account_validate_account_move.py:61 @@ -7187,7 +7492,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7199,6 +7504,14 @@ msgid "" "\n" "e.g. My model on %(date)s" msgstr "" +"Modelio pavadinime galite nurodyti metus, mėnesį ar data naudojant šias " +"žymas:\n" +"\n" +"%(year)s: nurodant metus\n" +"%(month)s: nurodant mėnesį\n" +"%(date)s: nurodant datą\n" +"\n" +"pvz. Mano modelis %(date)s" #. module: account #: field:account.invoice,paypal_url:0 @@ -7214,6 +7527,7 @@ msgstr "" #: help:report.invoice.created,origin:0 msgid "Reference of the document that generated this invoice report." msgstr "" +"Dokumento numeris, pagal kurį sugeneruota ši sąskaitos faktūros ataskaita." #. module: account #: field:account.tax.code,child_ids:0 @@ -7231,23 +7545,23 @@ msgstr "" #. module: account #: view:account.tax.template:0 msgid "Taxes used in Sales" -msgstr "" +msgstr "Mokesčiai naudojami parduodant" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 #: model:ir.ui.menu,name:account.menu_action_invoice_tree1 msgid "Customer Invoices" -msgstr "Kliento sąskaitos" +msgstr "Sąskaitos pirkėjui" #. module: account #: view:account.tax:0 msgid "Misc" -msgstr "" +msgstr "Įvairūs" #. module: account #: view:account.analytic.line:0 msgid "Sales" -msgstr "" +msgstr "Pardavimai" #. module: account #: selection:account.invoice.report,state:0 @@ -7258,7 +7572,7 @@ msgid "Done" msgstr "Atlikta" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7281,13 +7595,19 @@ msgid "" "you request an interval of 30 days OpenERP generates an analysis of " "creditors for the past month, past two months, and so on. " msgstr "" +"Partnerio skolų balansas yra detalesnės gautinų sumų ataskaita. Prieš " +"spausdinant ataskaitą reikia pasirinkti įmonę, finansinį periodą ir " +"laikotarpį (dienomis), kuris bus analizuojamas. OpenERP sugeneruos lentelę " +"su skolų balansu pagal laikotarpį. Taigi, jeigu pasirinkote 30 dienų " +"laikotarpį, tuomet OpenERP sugeneruos skolų analizę paskutiniam mėnesiui, " +"dviem paskutiniams mėnesiams ir t.t. " #. module: account #: field:account.invoice,origin:0 #: field:account.invoice.line,origin:0 #: field:report.invoice.created,origin:0 msgid "Source Document" -msgstr "" +msgstr "Susijęs dokumentas" #. module: account #: help:account.config.settings,company_footer:0 @@ -7333,12 +7653,12 @@ msgstr "" #. module: account #: model:ir.actions.act_window,name:account.action_account_report_tree_hierarchy msgid "Financial Reports Hierarchy" -msgstr "" +msgstr "Finansinių ataskaitų hierarchiją" #. module: account #: model:ir.actions.act_window,name:account.act_account_invoice_partner_relation msgid "Monthly Turnover" -msgstr "" +msgstr "Mėnesinė apyvarta" #. module: account #: view:account.move:0 @@ -7370,12 +7690,12 @@ msgstr "Ar jūs tikras, kad norite atidaryti šią sąskaitą ?" #. module: account #: field:account.chart.template,property_account_expense_opening:0 msgid "Opening Entries Expense Account" -msgstr "" +msgstr "Uždarymo įrašų sąnaudų sąskaita" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "" +msgstr "Pirkėjo identifikatorius" #. module: account #: field:account.account.template,parent_id:0 @@ -7385,7 +7705,7 @@ msgstr "Tėvinis sąskaitos šablonas" #. module: account #: report:account.invoice:0 msgid "Price" -msgstr "Kaina" +msgstr "Suma" #. module: account #: view:account.bank.statement:0 @@ -7409,12 +7729,12 @@ msgstr "" #. module: account #: view:account.entries.report:0 msgid "Posted entries" -msgstr "" +msgstr "Užregistruoti įrašai" #. module: account #: help:account.payment.term.line,value_amount:0 msgid "For percent enter a ratio between 0-1." -msgstr "" +msgstr "Procentams įveskite koeficientą tarp 0-1." #. module: account #: report:account.invoice:0 @@ -7427,7 +7747,7 @@ msgstr "Sąskaitos data" #. module: account #: view:account.invoice.report:0 msgid "Group by year of Invoice Date" -msgstr "" +msgstr "S/F išrašymo metai" #. module: account #: field:account.config.settings,purchase_tax_rate:0 @@ -7437,12 +7757,12 @@ msgstr "" #. module: account #: help:res.partner,credit:0 msgid "Total amount this customer owes you." -msgstr "Visa suma, kurią klientas skolingas Jums." +msgstr "Suma, kurią pirkėjas yra skolingas jums." #. module: account #: view:account.move.line:0 msgid "Unbalanced Journal Items" -msgstr "Nepatvirtintos įrašų eilutės" +msgstr "Nesubalansuoti DK įrašai" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules @@ -7471,11 +7791,14 @@ msgid "" "new counterpart but will share the same counterpart. This is used in fiscal " "year closing." msgstr "" +"Pažymėkite šį lauką, jei norite, kad žurnalo įrašai nekurtu naujų " +"koresponduojančių įrašų, o naudotų tą patį koresponduojantį įrašą. Tai " +"naudojamas uždarant finansinius metus." #. module: account #: field:account.bank.statement,closing_date:0 msgid "Closed On" -msgstr "" +msgstr "Uždarymo data" #. module: account #: model:ir.model,name:account.model_account_bank_statement_line @@ -7490,7 +7813,7 @@ msgstr "" #. module: account #: field:account.chart.template,property_account_income_opening:0 msgid "Opening Entries Income Account" -msgstr "" +msgstr "Uždarymo įrašų pajamų sąskaita" #. module: account #: field:account.config.settings,group_proforma_invoices:0 @@ -7509,6 +7832,8 @@ msgid "" "This field is only used if you develop your own module allowing developers " "to create specific taxes in a custom domain." msgstr "" +"Šis laukas naudojamas tik, jeigu kuriate modulį. Tai leidžia kūrėjams " +"apibrėžti specialius mokesčius su tam tikru domenu." #. module: account #: field:account.invoice,reference:0 @@ -7543,16 +7868,16 @@ msgstr "Ataskaitos" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" -msgstr "" +msgstr "Įspėjimas" #. module: account #: model:ir.actions.act_window,name:account.action_analytic_open msgid "Contracts/Analytic Accounts" -msgstr "" +msgstr "Sutartys/Analitinės sąskaitos" #. module: account #: view:account.journal:0 @@ -7580,6 +7905,10 @@ msgid "" " with the invoice. You will not be able " "to modify the credit note." msgstr "" +"Naudokite šį pasirinkimą norėdami atšaukti sąskaitą faktūrą, kurią per " +"klaidą išrašėte. Bus sukurta kreditinė sąskaita faktūra, patvirtinta ir " +"sudengta su šia sąskaita faktūrą. Jūs negalėsite keisti kreditinės sąskaitos " +"faktūros." #. module: account #: help:account.partner.reconcile.process,next_partner_id:0 @@ -7606,7 +7935,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7623,7 +7952,7 @@ msgstr "Sąskaitos faktūros eilutė" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Refunds" -msgstr "" +msgstr "Pirkėjui arba tiekėjo išrašytos kreditinės sąskaitos fatkūros" #. module: account #: field:account.financial.report,sign:0 @@ -7657,7 +7986,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7666,14 +7995,14 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 msgid "PRO-FORMA" -msgstr "Išankstinė sąskaita" +msgstr "IŠANKSTINĖ SĄSKAITA" #. module: account #: selection:account.entries.report,move_line_state:0 #: view:account.move.line:0 #: selection:account.move.line,state:0 msgid "Unbalanced" -msgstr "Nesugretinti" +msgstr "Nesubalansuoti" #. module: account #: selection:account.move.line,centralisation:0 @@ -7684,7 +8013,7 @@ msgstr "Įprasta" #: model:ir.actions.act_window,name:account.action_email_templates #: model:ir.ui.menu,name:account.menu_email_templates msgid "Email Templates" -msgstr "" +msgstr "El. laiškų šablonai" #. module: account #: view:account.move.line:0 @@ -7712,19 +8041,21 @@ msgid "" "This field is used for payable and receivable journal entries. You can put " "the limit date for the payment of this line." msgstr "" +"Šis laukas yra naudojamas mokėtinų ir gautinų sumų DK įrašuose. Galite " +"nustatyti data, iki kurios privaloma apmokėti šį DK įrašą." #. module: account #: model:ir.ui.menu,name:account.menu_multi_currency msgid "Multi-Currencies" -msgstr "" +msgstr "Valiutų kursų svyravimai" #. module: account #: field:account.model.line,date_maturity:0 msgid "Maturity Date" -msgstr "" +msgstr "Apmokėjimo data" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Pardavimų žurnalas" @@ -7735,7 +8066,7 @@ msgid "Invoice Tax" msgstr "Sąskaitos faktūros mokesčiai" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Nenurodytas numeris !" @@ -7744,7 +8075,7 @@ msgstr "Nenurodytas numeris !" #: view:account.financial.report:0 #: model:ir.ui.menu,name:account.menu_account_report_tree_hierarchy msgid "Account Reports Hierarchy" -msgstr "" +msgstr "Finansinių ataskaitų hierarchiją" #. module: account #: help:account.account.template,chart_template_id:0 @@ -7755,11 +8086,16 @@ msgid "" "few new accounts (You don't need to define the whole structure that is " "common to both several times)." msgstr "" +"Šis papildomas laukas leidžia susieti sąskaitos šabloną su tam tikru " +"sąskaitų plano šablonu, kuris gali skirtis nuo tėvinio sąskaitų plano. Tai " +"leidžia apibrėžti sąskaitų plano šabloną, kuris papildo kitą naujomis " +"sąskaitomis (dėl to nereikia kelis kartus apibrėžti pilnos struktūros, " +"kuomet tai tinka keliems šablonams)." #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "Nepatvirtinti įrašai" +msgstr "Neužregistruoti žurnalų įrašai" #. module: account #: help:account.invoice.refund,date:0 @@ -7767,6 +8103,8 @@ msgid "" "This date will be used as the invoice date for credit note and period will " "be chosen accordingly!" msgstr "" +"Ši data naudojama kaip kreditinės S/F išrašymo data, pagal kurią parenkamas " +"ataskaitinis periodas!" #. module: account #: view:product.template:0 @@ -7774,7 +8112,7 @@ msgid "Sales Properties" msgstr "Pardavimų nustatymai" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7784,7 +8122,7 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_manual_reconcile msgid "Manual Reconciliation" -msgstr "Rankinis sugretinimas" +msgstr "Rankinis sudengimas" #. module: account #: report:account.overdue:0 @@ -7799,7 +8137,7 @@ msgstr "Iki" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7807,7 +8145,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,fy_id:0 msgid "Fiscal Year to close" -msgstr "Uždarytini fiskaliniai metai" +msgstr "Uždaromi finansiniai metai" #. module: account #: view:account.invoice.cancel:0 @@ -7820,6 +8158,8 @@ msgstr "" msgid "" "This field is used to generate legal reports: profit and loss, balance sheet." msgstr "" +"Šis laukas naudojamas spausdinant finansines ataskaitas: pelno nuostolio " +"ataskaita, balanso ataskaita." #. module: account #: selection:account.entries.report,month:0 @@ -7831,7 +8171,7 @@ msgid "May" msgstr "Gegužė" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7847,6 +8187,8 @@ msgid "" "The sequence field is used to order the resources from lower sequences to " "higher ones." msgstr "" +"Sekos laukas naudojamas eilutčių išdėstymui nuo mažiausios iki didžiausios " +"sekos reikšmės." #. module: account #: field:account.move.line,amount_residual_currency:0 @@ -7865,22 +8207,22 @@ msgstr "" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Post Journal Entries" -msgstr "Patvirtinti įrašus" +msgstr "Registruoti žurnalų įrašus" #. module: account #: selection:account.bank.statement.line,type:0 #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" -msgstr "Klientas" +msgstr "Pirkėjas" #. module: account #: field:account.financial.report,name:0 msgid "Report Name" -msgstr "" +msgstr "Ataskaitos pavadinimas" #. module: account #: model:account.account.type,name:account.data_account_type_cash @@ -7888,7 +8230,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Grynieji" @@ -7897,7 +8239,7 @@ msgstr "Grynieji" #: field:account.fiscal.position.account,account_dest_id:0 #: field:account.fiscal.position.account.template,account_dest_id:0 msgid "Account Destination" -msgstr "Sąskaita tikslas" +msgstr "Sąskaitos pakaitalas" #. module: account #: help:account.invoice.refund,filter_refund:0 @@ -7905,6 +8247,8 @@ msgid "" "Refund base on this type. You can not Modify and Cancel if the invoice is " "already reconciled" msgstr "" +"Kredituoti pasirinktu būdu. Jūs negalite Keisti ar Atšaukti, jeigu sąskaita " +"faktūra jau sudengta." #. module: account #: field:account.bank.statement.line,sequence:0 @@ -7927,12 +8271,12 @@ msgstr "" #. module: account #: selection:account.print.journal,sort_selection:0 msgid "Journal Entry Number" -msgstr "Įrašo numeris" +msgstr "Žurnalo įrašo numeris" #. module: account #: view:account.financial.report:0 msgid "Parent Report" -msgstr "" +msgstr "Tėvinė ataskaita" #. module: account #: constraint:account.account:0 @@ -7950,7 +8294,7 @@ msgstr "" #. module: account #: help:account.invoice,move_id:0 msgid "Link to the automatically generated Journal Items." -msgstr "" +msgstr "Nuorodą į automatiškai sukurtą žurnalo įrašą." #. module: account #: model:ir.model,name:account.model_account_config_settings @@ -7961,24 +8305,24 @@ msgstr "" #: selection:account.config.settings,period:0 #: selection:account.installer,period:0 msgid "Monthly" -msgstr "" +msgstr "Kas mėnesį" #. module: account #: model:account.account.type,name:account.data_account_type_asset msgid "Asset" -msgstr "Turtas" +msgstr "Ilg. turtas" #. module: account #: field:account.bank.statement,balance_end:0 msgid "Computed Balance" -msgstr "" +msgstr "Paskaičiuotas balansas" #. module: account #. openerp-web #: code:addons/account/static/src/js/account_move_reconciliation.js:89 #, python-format msgid "You must choose at least one record." -msgstr "" +msgstr "Turite pasirinkti bent vieną įrašą." #. module: account #: field:account.account,parent_id:0 @@ -7999,16 +8343,20 @@ 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 "" +"Nustatykite -1, kad būtų skaičiuojama paskutinė einamo mėnesio diena. Jeigu " +"tai teigiamas skaičius, tuomet grąžins kito mėnesio dieną. Nustačius 0, bus " +"grąžinamos grynos dienos (kitu atveju, terminas prasidės nuo mėnesio " +"pradžios)." #. module: account #: view:account.move.line.reconcile:0 msgid "Reconciliation Transactions" -msgstr "Gretinimo transakcijos" +msgstr "Sudengimo transakcijos" #. module: account #: model:ir.ui.menu,name:account.menu_finance_legal_statement msgid "Legal Reports" -msgstr "Teisinės ataskaitos" +msgstr "Įstatyminės ataskaitos" #. module: account #: field:account.tax.code,sum_period:0 @@ -8044,7 +8392,7 @@ msgstr "" #: model:ir.actions.report.xml,name:account.account_3rdparty_ledger_other #: model:ir.ui.menu,name:account.menu_account_partner_ledger msgid "Partner Ledger" -msgstr "Partnerio knyga" +msgstr "Partnerio dydžioji knyga" #. module: account #: selection:account.tax.template,type:0 @@ -8055,15 +8403,16 @@ msgstr "Fiksuotas" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" -msgstr "Įspėjimas!" +msgstr "Perspėjimas!" #. module: account #: help:account.bank.statement,message_unread:0 #: help:account.invoice,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Jeigu pažymėta, naujos žinutės reikalaus jūsų dėmesio." #. module: account #: field:res.company,tax_calculation_rounding_method:0 @@ -8122,7 +8471,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8130,7 +8479,7 @@ msgstr "" #. module: account #: view:account.financial.report:0 msgid "Report Type" -msgstr "" +msgstr "Ataskaitos tipas" #. module: account #: help:account.open.closed.fiscalyear,fyear_id:0 @@ -8138,14 +8487,15 @@ msgid "" "Select Fiscal Year which you want to remove entries for its End of year " "entries journal" msgstr "" +"Pasirinkite finansinius metus, kurių uždarymo įrašus norite pašalinti" #. module: account #: field:account.tax.template,type_tax_use:0 msgid "Tax Use In" -msgstr "" +msgstr "Naudojimas" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8153,7 +8503,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Sąskaitos įrašai yra netinkamos būsenos." @@ -8173,6 +8523,7 @@ msgstr "" msgid "" "Check this box if this account allows reconciliation of journal items." msgstr "" +"Pažymėkite šį lauką, jeigu leidžiama sudengti šio sąskaitos DK įrašus." #. module: account #: report:account.analytic.account.inverted.balance:0 @@ -8197,7 +8548,7 @@ msgid "Associated Partner" msgstr "Susijęs partneris" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Visų pirma turite pasirinkti partnerį !" @@ -8216,7 +8567,7 @@ msgstr "" #. module: account #: view:account.bank.statement:0 msgid "Opening Cash Control" -msgstr "" +msgstr "Pradžios likutis" #. module: account #: model:process.node,note:account.process_node_invoiceinvoice0 @@ -8261,7 +8612,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Proforma" -msgstr "" +msgstr "Išankstinė sąskaita" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -8274,15 +8625,17 @@ msgid "" "Set if the amount of tax must be included in the base amount before " "computing the next taxes." msgstr "" +"Pasirinkite ar mokesčio suma turi būti pridėta prie bazinės sumos prieš " +"skaičiuojant kitus mokesčius." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" -msgstr "" +msgstr "Pirktų prekių grąžinimo žurnalas" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8290,7 +8643,7 @@ msgstr "" #. module: account #: help:account.tax.template,amount:0 msgid "For Tax Type percent enter % ratio between 0-1." -msgstr "" +msgstr "Procentiniam mokesčio tipui įveskite % koeficientą tarp 0-1." #. module: account #: view:account.analytic.account:0 @@ -8300,7 +8653,7 @@ msgstr "" #. module: account #: view:account.invoice.report:0 msgid "Group by Invoice Date" -msgstr "" +msgstr "S/F išrašymo data" #. module: account #: help:account.journal,user_id:0 @@ -8338,7 +8691,7 @@ msgstr "" #: field:account.treasury.report,period_id:0 #: field:validate.account.move,period_id:0 msgid "Period" -msgstr "Laikotarpis" +msgstr "Periodas" #. module: account #: help:account.account,adjusted_balance:0 @@ -8350,7 +8703,7 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Net Total:" -msgstr "Iš viso be mokesčių:" +msgstr "Iš viso:" #. module: account #: code:addons/account/wizard/account_report_common.py:158 @@ -8376,23 +8729,23 @@ msgstr "Nurašymų žurnalas" #. module: account #: field:account.chart.template,property_account_income_categ:0 msgid "Income Category Account" -msgstr "Įplaukų kategorijos sąskaita" +msgstr "Pajamų kategorijos sąskaita" #. module: account #: field:account.account,adjusted_balance:0 msgid "Adjusted Balance" -msgstr "" +msgstr "Konvertuotas balansas" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form #: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form_template msgid "Fiscal Position Templates" -msgstr "Fiskalinės pozicijos šablonai" +msgstr "Mokestinės aplinkos šablonai" #. module: account #: view:account.entries.report:0 msgid "Int.Type" -msgstr "" +msgstr "Vidinis tipas" #. module: account #: field:account.move.line,tax_amount:0 @@ -8405,6 +8758,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 "" +"Šis vedlys pašalins pasirinktų finansinių metų uždarymo įrašus. Pažymėtina, " +"kad galite vykdyti šiuos veiksmus daug kartų su tais pačiais finansiniais " +"metais." #. module: account #: report:account.invoice:0 @@ -8433,18 +8789,18 @@ msgstr "Įmonės naudojama valiuta" #: field:account.vat.declaration,chart_account_id:0 #: field:accounting.report,chart_account_id:0 msgid "Chart of Account" -msgstr "" +msgstr "Sąskaitų planas" #. module: account #: model:process.node,name:account.process_node_paymententries0 #: model:process.transition,name:account.process_transition_reconcilepaid0 msgid "Payment" -msgstr "" +msgstr "Mokėjimas" #. module: account #: view:account.automatic.reconcile:0 msgid "Reconciliation Result" -msgstr "Sugretinimo rezultatas" +msgstr "Sudengimo rezultatas" #. module: account #: field:account.bank.statement,balance_end_real:0 @@ -8455,7 +8811,7 @@ msgstr "Pabaigos likutis" #. module: account #: field:account.journal,centralisation:0 msgid "Centralized Counterpart" -msgstr "" +msgstr "Bendras koresponduojantis įrašas" #. module: account #: help:account.move.line,blocked:0 @@ -8463,12 +8819,14 @@ msgid "" "You can check this box to mark this journal item as a litigation with the " "associated partner" msgstr "" +"Galite pažymėti šį DK įrašą kaip ginčytiną. DK įrašas nebebus įtraukiamas į " +"skolų ataskaitas." #. module: account #: field:account.move.line,reconcile_partial_id:0 #: view:account.move.line.reconcile:0 msgid "Partial Reconcile" -msgstr "Dalinis sugretinimas" +msgstr "Dalinis sudengimas" #. module: account #: model:ir.model,name:account.model_account_analytic_inverted_balance @@ -8490,6 +8848,10 @@ msgid "" "invoice will be created \n" " so that you can edit it." msgstr "" +"Naudokite šį pasirinkimą norėdami pataisyti išrašytą sąskaita faktūrą. " +"Sukurta kreditinė sąskaita faktūra bus patvirtinta ir sugretinta su šia " +"sąskaita faktūrą. Taip pat bus sukurta naujas sąskaitos faktūros juodraštis, " +"kurį galėsite keisti." #. module: account #: model:process.transition,name:account.process_transition_filestatement0 @@ -8510,7 +8872,7 @@ msgstr "" #. module: account #: view:account.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Taikyti" #. module: account #: field:account.financial.report,account_type_ids:0 @@ -8525,7 +8887,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8535,7 +8897,7 @@ msgstr "" #. module: account #: field:account.account.type,report_type:0 msgid "P&L / BS Category" -msgstr "" +msgstr "Ataskaitos kategorija" #. module: account #: view:account.automatic.reconcile:0 @@ -8549,7 +8911,7 @@ msgstr "" #: model:process.node,name:account.process_node_supplierreconciliation0 #, python-format msgid "Reconciliation" -msgstr "Gretinimas" +msgstr "Sudengimas" #. module: account #: view:account.tax.template:0 @@ -8585,6 +8947,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte žurnalą.\n" +"

\n" +" Žurnalas yra naudojamas apskaitos tranzakcijų " +"registravimui.\n" +"

\n" +" Įprastai įmonės naudoja po atskirą žurnalą kiekvienam " +"mokėjimo būdui (grynieji pinigai, banko sąskaitos, čekiai),\n" +" pirkimų žurnalą, pardavimų žurnalą\n" +" bei žurnalą kitoms operacijoms.\n" +"

\n" +" " #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close_state @@ -8604,7 +8978,7 @@ msgstr "Grąžinimų žurnalas" #: report:account.general.ledger_landscape:0 #: report:account.partner.balance:0 msgid "Filter By" -msgstr "" +msgstr "Filtruoti pagal" #. module: account #: code:addons/account/wizard/account_period_close.py:51 @@ -8618,15 +8992,15 @@ msgstr "" #: view:board.board:0 #: model:ir.actions.act_window,name:account.action_company_analysis_tree msgid "Company Analysis" -msgstr "" +msgstr "Įmonės finansų analizė" #. module: account #: help:account.invoice,account_id:0 msgid "The partner account used for this invoice." -msgstr "Partnerio sąskaita naudojama šioje sąskaitoje faktūroje." +msgstr "Kontakto sąskaita naudojama šioje sąskaitoje faktūroje." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8641,10 +9015,10 @@ msgstr "Tėvinis kodas" #. module: account #: model:ir.model,name:account.model_account_payment_term_line msgid "Payment Term Line" -msgstr "Mokėjimo terminų eilutės" +msgstr "Mokėjimo sąlygų eilutės" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Pirkimo žurnalas" @@ -8652,12 +9026,12 @@ msgstr "Pirkimo žurnalas" #. module: account #: field:account.invoice,amount_untaxed:0 msgid "Subtotal" -msgstr "" +msgstr "Suma" #. module: account #: view:account.vat.declaration:0 msgid "Print Tax Statement" -msgstr "" +msgstr "Spausdinti ataskaitą" #. module: account #: view:account.model.line:0 @@ -8694,7 +9068,7 @@ msgstr "" #. module: account #: view:account.tax.code:0 msgid "Statistics" -msgstr "" +msgstr "Statistika" #. module: account #: field:account.analytic.chart,from_date:0 @@ -8709,6 +9083,9 @@ msgid "" "computed. Because it is space consuming, we do not allow to use it while " "doing a comparison." msgstr "" +"Šis pasirinkimas leidžia gauti daugiau duomenų apie tai, kaip buvo " +"paskaičiuotas balansas. Kadangi tai užima vietą, šis pasirinkimas " +"neleidžiamas atliekant palyginimą." #. module: account #: model:ir.model,name:account.model_account_fiscalyear_close @@ -8730,7 +9107,7 @@ msgstr "" #: view:account.invoice:0 #: model:ir.actions.act_window,name:account.act_account_journal_2_account_invoice_opened msgid "Unpaid Invoices" -msgstr "" +msgstr "Neamokėtos sąskaitos" #. module: account #: field:account.move.line.reconcile,debit:0 @@ -8769,7 +9146,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.action_account_analytic_chart #: model:ir.ui.menu,name:account.menu_action_analytic_account_tree2 msgid "Chart of Analytic Accounts" -msgstr "" +msgstr "Analitinių sąskaitų planas" #. module: account #: model:ir.actions.act_window,help:account.action_subscription_form @@ -8787,17 +9164,28 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte pasikartojančią operaciją.\n" +"

\n" +" Pasikartojanti operacija vykdoma periodiškai nuo pasirinktos " +"datos,\n" +" pvz. nuo sutarties pasirašymo datos arba pagal susitartimą " +"su pirkėju\n" +" ar tiekėju. Jūs galite sukurti tokias operacijas, kad\n" +" automatizuotumėte įrašų registravimą sistemoje.\n" +"

\n" +" " #. module: account #: view:account.journal:0 #: model:ir.ui.menu,name:account.menu_configuration_misc msgid "Miscellaneous" -msgstr "" +msgstr "Įvairūs" #. module: account #: help:res.partner,debit:0 msgid "Total amount you have to pay to this supplier." -msgstr "Visa suma, kurią Jūs esate skolingas šiam tiekėjui." +msgstr "Suma, kurią jūs esate skolingas šiam tiekėjui." #. module: account #: model:process.node,name:account.process_node_analytic0 @@ -8813,7 +9201,7 @@ msgid "Journal Name" msgstr "Žurnalo pavadinimas" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Įrašas \"%s\" yra nepatvirtintas !" @@ -8821,7 +9209,7 @@ msgstr "Įrašas \"%s\" yra nepatvirtintas !" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Smallest Text" -msgstr "" +msgstr "Mažiausias tekstas" #. module: account #: help:account.config.settings,module_account_check_writing:0 @@ -8853,7 +9241,7 @@ msgstr "Išlaidos" #. module: account #: help:account.chart,fiscalyear:0 msgid "Keep empty for all open fiscal years" -msgstr "" +msgstr "Palikite tuščią visiems atviriems finansiniams metams." #. module: account #: help:account.move.line,amount_currency:0 @@ -8865,7 +9253,7 @@ msgstr "" "valiutų įrašai." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8907,6 +9295,9 @@ msgid "" "created. If you leave that field empty, it will use the same journal as the " "current invoice." msgstr "" +"Pasirinkite žurnalą, kuris bus naudojamas sukurtoje kreditinėje S/F. Palikus " +"lauką tuščią, bus naudojama tas pats žurnalas kaip ir šiuoje sąskaitoje " +"faktūroje." #. module: account #: help:account.bank.statement.line,sequence:0 @@ -8923,10 +9314,10 @@ msgstr "" #: view:account.entries.report:0 #: model:ir.actions.act_window,name:account.act_account_acount_move_line_reconcile_open msgid "Reconciled entries" -msgstr "Sugretinti įrašai" +msgstr "Sudengti įrašai" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8935,12 +9326,12 @@ msgstr "" #: view:account.tax.code.template:0 #: view:account.tax.template:0 msgid "Tax Template" -msgstr "" +msgstr "Mokesčių šablonas" #. module: account #: field:account.invoice.refund,period:0 msgid "Force period" -msgstr "Priverstinai naudoti periodą" +msgstr "Periodas" #. module: account #: model:ir.model,name:account.model_account_partner_balance @@ -8948,7 +9339,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8965,11 +9356,16 @@ 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 "" +"Jeigu norite spausdinti neigiamą balansą sąskaitoms, kurios įprastai daugiau " +"debetuojamos negu kredituojamos, pasirinkite „Priešingas balanso ženklas“, " +"pvz. sąnaudų sąskaita. Tas pats galioja, jeigu norite spausdinti teigimą " +"balansą sąskaitoms, kurios įprastai daugiau kredituojamos negu debetuojamos, " +"pvz. pajamų sąskaita." #. module: account #: field:res.partner,contract_ids:0 msgid "Contracts" -msgstr "" +msgstr "Darbo sutartys" #. module: account #: field:account.cashbox.line,bank_statement_id:0 @@ -8978,14 +9374,14 @@ msgstr "" #: field:account.financial.report,credit:0 #: field:account.financial.report,debit:0 msgid "unknown" -msgstr "" +msgstr "nežinomas" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" -msgstr "Atidarymo įrašų žurnalas" +msgstr "Žurnalas atidarymo įrašams" #. module: account #: model:process.transition,note:account.process_transition_customerinvoice0 @@ -8996,14 +9392,14 @@ msgstr "" #: field:account.bank.statement,message_is_follower:0 #: field:account.invoice,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Ar prenumeratorius" #. module: account #: view:account.move:0 #: field:account.move,narration:0 #: field:account.move.line,narration:0 msgid "Internal Note" -msgstr "" +msgstr "Vidinės pastabos" #. module: account #: constraint:account.account:0 @@ -9048,7 +9444,7 @@ msgstr "Žurnalo kodas" #: view:account.invoice:0 #: field:account.move.line,amount_residual:0 msgid "Residual Amount" -msgstr "" +msgstr "Likutis" #. module: account #: field:account.invoice,move_lines:0 @@ -9059,7 +9455,7 @@ msgstr "Įrašo eilutės" #. module: account #: model:ir.actions.act_window,name:account.action_open_journal_button msgid "Open Journal" -msgstr "" +msgstr "Aktyvūs žurnalai" #. module: account #: report:account.analytic.account.journal:0 @@ -9076,10 +9472,10 @@ msgstr "Periodas nuo" #. module: account #: field:account.cashbox.line,pieces:0 msgid "Unit of Currency" -msgstr "" +msgstr "Kupiūra" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9113,12 +9509,12 @@ msgstr "" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 msgid "Purchase refund journal" -msgstr "" +msgstr "Pirktų prekių grąžinimo žurnalas" #. module: account #: view:account.analytic.line:0 msgid "Product Information" -msgstr "" +msgstr "Produkto duomenys" #. module: account #: report:account.analytic.account.journal:0 @@ -9132,7 +9528,7 @@ msgstr "Analitinis" #: model:process.node,name:account.process_node_invoiceinvoice0 #: model:process.node,name:account.process_node_supplierinvoiceinvoice0 msgid "Create Invoice" -msgstr "Sukurti sąskaitą faktūrą" +msgstr "Išrašyti sąskaitą" #. module: account #: model:ir.actions.act_window,name:account.action_account_configuration_installer @@ -9145,13 +9541,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9161,10 +9557,10 @@ msgstr "" #. module: account #: field:account.vat.declaration,display_detail:0 msgid "Display Detail" -msgstr "" +msgstr "Rodyti detaliai" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9180,7 +9576,7 @@ msgstr "" #: view:account.analytic.line:0 #: view:analytic.entries.report:0 msgid "My Entries" -msgstr "" +msgstr "Mano įrašai" #. module: account #: help:account.invoice,state:0 @@ -9209,7 +9605,7 @@ msgstr "Periodo pabaiga" #: model:ir.actions.act_window,name:account.action_account_report #: model:ir.ui.menu,name:account.menu_account_reports msgid "Financial Reports" -msgstr "" +msgstr "Finansinės ataskaitos" #. module: account #: model:account.account.type,name:account.account_type_liability_view1 @@ -9242,7 +9638,7 @@ msgstr "" #: field:accounting.report,period_from:0 #: field:accounting.report,period_from_cmp:0 msgid "Start Period" -msgstr "" +msgstr "Pradžios periodas" #. module: account #: model:ir.actions.report.xml,name:account.account_central_journal @@ -9257,7 +9653,7 @@ msgstr "Analizės kryptis" #. module: account #: field:res.partner,ref_companies:0 msgid "Companies that refers to partner" -msgstr "Kompanijos susijusios su partneriu" +msgstr "Kompanijos susijusios su kontaktu" #. module: account #: view:account.invoice:0 @@ -9287,7 +9683,7 @@ msgstr "" #. module: account #: view:account.account.template:0 msgid "Receivale Accounts" -msgstr "" +msgstr "Debitorių sąskaitos" #. module: account #: field:account.config.settings,purchase_refund_sequence_prefix:0 @@ -9323,8 +9719,8 @@ msgid "Receivable Account" msgstr "Debitorių sąskaita" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9353,7 +9749,7 @@ msgstr "" #: field:report.account.receivable,balance:0 #: field:report.aged.receivable,balance:0 msgid "Balance" -msgstr "Likutis" +msgstr "Balansas" #. module: account #: model:process.node,note:account.process_node_supplierbankstatement0 @@ -9364,7 +9760,7 @@ msgstr "" #: report:account.account.balance:0 #: report:account.general.ledger_landscape:0 msgid "Display Account" -msgstr "" +msgstr "Sąskaitų rodymas" #. module: account #: selection:account.account,type:0 @@ -9372,7 +9768,7 @@ msgstr "" #: model:account.account.type,name:account.data_account_type_payable #: selection:account.entries.report,type:0 msgid "Payable" -msgstr "Kreditoriai" +msgstr "Mokėtinos sumos" #. module: account #: view:board.board:0 @@ -9393,7 +9789,7 @@ msgstr "" #. module: account #: view:account.fiscalyear.close:0 msgid "Generate Fiscal Year Opening Entries" -msgstr "Generuoti fiskalinių metų atviras eilutes" +msgstr "Generuoti finansinių metų atidarymo įrašus" #. module: account #: report:account.third_party_ledger:0 @@ -9425,21 +9821,21 @@ msgid "Move" msgstr "DK įrašas" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Klaidingas veiksmas!" #. module: account #: view:account.bank.statement:0 msgid "Date / Period" -msgstr "" +msgstr "Data / Periodas" #. module: account #: report:account.central.journal:0 msgid "A/C No." -msgstr "" +msgstr "Sąsk." #. module: account #: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement @@ -9457,7 +9853,7 @@ msgstr "" #. module: account #: report:account.overdue:0 msgid "There is nothing due with this customer." -msgstr "" +msgstr "Šis pirkėjas neturi pradelstų mokėjimų." #. module: account #: help:account.tax,account_paid_id:0 @@ -9465,6 +9861,8 @@ msgid "" "Set the account that will be set by default on invoice tax lines for " "refunds. Leave empty to use the expense account." msgstr "" +"Pasirinkite sąskaitą, kuri bus nustatoma ant kreditinių sąskaitų faktūrų " +"mokesčių eilučių. Palikus tuščią, bus naudojama sąnaudų sąskaita." #. module: account #: help:account.addtmpl.wizard,cparent_id:0 @@ -9475,12 +9873,12 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Source" -msgstr "" +msgstr "Paėmimas" #. module: account #: selection:account.model.line,date_maturity:0 msgid "Date of the day" -msgstr "Šios dienos data" +msgstr "Sukūrimo data" #. module: account #: code:addons/account/wizard/account_move_bank_reconcile.py:49 @@ -9496,11 +9894,12 @@ msgid "" "This field contains the information related to the numbering of the journal " "entries of this journal." msgstr "" +"Šiame lauke saugoma informacija susijusi su šio žurnalo įrašų numeravimu." #. module: account #: field:account.invoice,sent:0 msgid "Sent" -msgstr "" +msgstr "Išsiųsta" #. module: account #: model:ir.actions.act_window,name:account.action_account_common_menu @@ -9519,7 +9918,7 @@ msgid "Balance :" msgstr "Balansas :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9527,12 +9926,12 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing msgid "Periodic Processing" -msgstr "" +msgstr "Periodinės operacijos" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Invoices" -msgstr "" +msgstr "Pirkėjui arba tiekėjo išrašytos sąskaitos faktūros" #. module: account #: model:process.node,note:account.process_node_paymententries0 @@ -9591,7 +9990,7 @@ msgstr "" #: field:accounting.report,period_to:0 #: field:accounting.report,period_to_cmp:0 msgid "End Period" -msgstr "" +msgstr "Pabaigos periodas" #. module: account #: model:account.account.type,name:account.account_type_expense_view1 @@ -9601,7 +10000,7 @@ msgstr "" #. module: account #: field:account.move.line,date_maturity:0 msgid "Due date" -msgstr "" +msgstr "Mokėjimo terminas" #. module: account #: model:account.payment.term,name:account.account_payment_term_immediate @@ -9610,7 +10009,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9624,6 +10023,12 @@ msgid "" "journals. Select 'Opening/Closing Situation' for entries generated for new " "fiscal years." msgstr "" +"Pasirinkite „Pardavimas“ pirkėjų sąskaitų faktūrų žurnalams. Pasirinkite " +"„Pirkimai“ tiekėjo sąskaitų faktūrų žurnalams. Pasirinkite „Grynieji“ arba " +"„Banko sąskaitos“ žurnalams, kurie naudojami pirkėjų ar tiekėjų mokėjimų " +"registravimui. Pasirinkite „Bendra“ kitų operacijų žurnalams. Pasirinkite " +"„Atidarymo/Uždarymo sitaucija“ sugeneruotiems įrašams finansinių metų " +"uždarymo metu." #. module: account #: view:account.subscription:0 @@ -9634,7 +10039,7 @@ msgstr "Periodiniai įrašai" #. module: account #: report:account.overdue:0 msgid "Maturity date" -msgstr "Mokėjimo data" +msgstr "Apmokėjimo data" #. module: account #: view:account.subscription:0 @@ -9683,23 +10088,23 @@ msgstr "" #: view:account.invoice.report:0 #: model:process.node,name:account.process_node_supplierdraftinvoices0 msgid "Draft Invoices" -msgstr "Sąskaitų faktūrų juodraščiai" +msgstr "Sąskaitų juodraščiai" #. module: account #: view:cash.box.in:0 #: model:ir.actions.act_window,name:account.action_cash_box_in msgid "Put Money In" -msgstr "" +msgstr "Įnešti pinigus" #. module: account #: selection:account.account.type,close_method:0 #: view:account.entries.report:0 #: view:account.move.line:0 msgid "Unreconciled" -msgstr "Nesugretinta" +msgstr "Nesudengta" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Bloga suma !" @@ -9720,6 +10125,13 @@ 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 "" +"Periodas yra mokestinis laikotarpis, pagal kurį fiksuojamos su finansų " +"apskaitą susijusios operacijos. Dažniausiai naudojami mėnesio periodai, bet " +"priklausomai nuo valstybės ar įmonės poreikių, galima vesti apskaitą " +"ketvirčio periodais. Uždarius periodą nebebus galima įvesti naujų DK įrašų, " +"tad visi nauji įrašai bus registruojami kitame periode. Uždarykite periodą, " +"tuomet kai visos laikotarpio operacijos yra suvestos ir norite atlikti " +"skaičiavimus susijusius su mokesčiais." #. module: account #: view:account.analytic.account:0 @@ -9776,15 +10188,15 @@ msgstr "Kodas/Data" #: model:ir.model,name:account.model_account_move_line #: model:ir.ui.menu,name:account.menu_action_account_moves_all msgid "Journal Items" -msgstr "Įrašų eilutės" +msgstr "DK įrašai" #. module: account #: view:accounting.report:0 msgid "Comparison" -msgstr "" +msgstr "Palyginimas" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9812,9 +10224,7 @@ msgstr "" msgid "" "This account will be used instead of the default one as the payable account " "for the current partner" -msgstr "" -"Ši sąskaita bus naudojama vietoj numatytosios kaip mokėtina sąskaita " -"partneriui." +msgstr "Sąskaita naudojama apskaityti mokėtinas sumas šiam kontaktui." #. module: account #: field:account.period,special:0 @@ -9860,12 +10270,12 @@ msgstr "Kreditas" #. module: account #: view:account.invoice:0 msgid "Draft Invoice " -msgstr "" +msgstr "Sąskaitos faktūros juodraštis " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal msgid "General Journals" -msgstr "Bendrieji žurnalai" +msgstr "Bendrasis žurnalas" #. module: account #: view:account.model:0 @@ -9873,7 +10283,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -9882,7 +10292,7 @@ msgstr "" #: field:account.invoice,number:0 #: field:account.move,name:0 msgid "Number" -msgstr "" +msgstr "Numeris" #. module: account #: report:account.analytic.account.journal:0 @@ -9897,7 +10307,7 @@ msgstr "Bendra" #: field:account.invoice.report,price_total:0 #: field:account.invoice.report,user_currency_price_total:0 msgid "Total Without Tax" -msgstr "" +msgstr "Iš viso be mokesčių" #. module: account #: selection:account.aged.trial.balance,filter:0 @@ -9976,7 +10386,7 @@ msgstr "" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Title 2 (bold)" -msgstr "" +msgstr "Pavadinimas 2 (pusjuodis)" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree2 @@ -10023,7 +10433,7 @@ msgstr "Pašalinti eilutes" #: selection:account.account.template,type:0 #: selection:account.entries.report,type:0 msgid "Regular" -msgstr "" +msgstr "Įprastinė" #. module: account #: view:account.account:0 @@ -10037,12 +10447,12 @@ msgstr "Vidinis tipas" #. module: account #: field:account.subscription.generate,date:0 msgid "Generate Entries Before" -msgstr "" +msgstr "Generuoti įrašus iki" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_running msgid "Running Subscriptions" -msgstr "Aktyvus periodiniai įrašai" +msgstr "Aktyvios periodinės operacijos" #. module: account #: view:account.analytic.balance:0 @@ -10106,24 +10516,24 @@ msgstr "Mėnesio diena" #: field:account.fiscal.position.tax,tax_src_id:0 #: field:account.fiscal.position.tax.template,tax_src_id:0 msgid "Tax Source" -msgstr "" +msgstr "Mokestis" #. module: account #: view:ir.sequence:0 msgid "Fiscal Year Sequences" -msgstr "Fiskalinių metų sekos" +msgstr "Finansinių metų sekos" #. module: account #: selection:account.financial.report,display_detail:0 msgid "No detail" -msgstr "" +msgstr "Be detalių" #. module: account #: field:account.account,unrealized_gain_loss:0 #: model:ir.actions.act_window,name:account.action_account_gain_loss #: model:ir.ui.menu,name:account.menu_unrealized_gains_losses msgid "Unrealized Gain or Loss" -msgstr "" +msgstr "Negautos pajamos" #. module: account #: view:account.move:0 @@ -10140,7 +10550,7 @@ msgstr "" #. module: account #: field:account.invoice,check_total:0 msgid "Verification Total" -msgstr "" +msgstr "Patvirtinta bendra suma" #. module: account #: report:account.analytic.account.balance:0 @@ -10163,7 +10573,7 @@ msgstr "" #. module: account #: field:account.tax,account_analytic_paid_id:0 msgid "Refund Tax Analytic Account" -msgstr "" +msgstr "Grąžintino mokesčio analitinė sąskaita" #. module: account #: view:account.move.bank.reconcile:0 @@ -10172,6 +10582,7 @@ msgstr "Atidaryti banko įrašų sugerinimui" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10187,7 +10598,9 @@ msgstr "Atidaryti banko įrašų sugerinimui" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10196,6 +10609,7 @@ msgstr "Atidaryti banko įrašų sugerinimui" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10218,19 +10632,19 @@ msgstr "Įmonė" #. module: account #: model:ir.ui.menu,name:account.menu_action_subscription_form msgid "Define Recurring Entries" -msgstr "Apibrėžti pasikartojančius įrašus" +msgstr "Apibrėžti pasikartojančias operacijas" #. module: account #: field:account.entries.report,date_maturity:0 msgid "Date Maturity" -msgstr "" +msgstr "Buhalterinė data" #. module: account #: field:account.invoice.refund,description:0 #: field:cash.box.in,name:0 #: field:cash.box.out,name:0 msgid "Reason" -msgstr "" +msgstr "Priežastis" #. module: account #: selection:account.partner.ledger,filter:0 @@ -10238,7 +10652,7 @@ msgstr "" #: model:ir.actions.act_window,name:account.act_account_acount_move_line_open_unreconciled #, python-format msgid "Unreconciled Entries" -msgstr "" +msgstr "Nesudengti įrašai" #. module: account #: help:account.partner.reconcile.process,today_reconciled:0 @@ -10256,12 +10670,12 @@ msgstr "Sukurti mėnesio periodus" #. module: account #: field:account.tax.code.template,sign:0 msgid "Sign For Parent" -msgstr "" +msgstr "Ženklas" #. module: account #: model:ir.model,name:account.model_account_balance_report msgid "Trial Balance Report" -msgstr "" +msgstr "Bandomojo balanso ataskaita" #. module: account #: model:ir.actions.act_window,name:account.action_bank_statement_draft_tree @@ -10287,7 +10701,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10305,7 +10719,7 @@ msgstr "Sąskaitos faktūros eilutės" #. module: account #: field:account.chart,period_to:0 msgid "End period" -msgstr "" +msgstr "Pabaigos periodas" #. module: account #: sql_constraint:account.journal:0 @@ -10329,7 +10743,7 @@ msgstr "" #: view:account.automatic.reconcile:0 #: view:account.move.line.reconcile.writeoff:0 msgid "Write-Off Move" -msgstr "Nurašymų įrašai" +msgstr "Nurašymai" #. module: account #: model:process.node,note:account.process_node_paidinvoice0 @@ -10356,10 +10770,12 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" -msgstr "Tiekėjo sąskaita faktūra" +msgstr "TIEKĖJO SĄSKAITA" #. module: account #: field:account.account,debit:0 @@ -10388,13 +10804,13 @@ msgstr "Debetas" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Title 3 (bold, smaller)" -msgstr "" +msgstr "Pavadinimas 3 (pusjuodis, mažesnis)" #. module: account #: view:account.invoice:0 #: field:account.invoice,invoice_line:0 msgid "Invoice Lines" -msgstr "Sąskaitos faktūros eilutės" +msgstr "Sąskaitos eilutės" #. module: account #: help:account.model.line,quantity:0 @@ -10404,12 +10820,12 @@ msgstr "" #. module: account #: field:account.automatic.reconcile,reconciled:0 msgid "Reconciled transactions" -msgstr "Sugretintos transakcijos" +msgstr "Sudengtos transakcijos" #. module: account #: model:ir.model,name:account.model_report_account_receivable msgid "Receivable accounts" -msgstr "" +msgstr "Debitorių sąskaitos" #. module: account #: code:addons/account/account_move_line.py:783 @@ -10420,7 +10836,7 @@ msgstr "" #. module: account #: selection:account.model.line,date_maturity:0 msgid "Partner Payment Term" -msgstr "Partnerių apmokėjimo terminas" +msgstr "Partnerių mokėjimo sąlygos" #. module: account #: field:temp.range,name:0 @@ -10430,7 +10846,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a purchase journal." -msgstr "" +msgstr "Analitinio žurnalo įrašai susiję su pirkimo žurnalu." #. module: account #: help:account.account,type:0 @@ -10441,10 +10857,17 @@ msgid "" "payable/receivable are for partners accounts (for debit/credit " "computations), closed for depreciated accounts." msgstr "" +"Vidinis tipas naudojamas nusakyti tam tikrą funkcionalumą skirtingoms " +"sąskaitų grupėms: rodiniai negali turėti DK įrašų, konsolidacinės sąskaitos " +"gali turėti vaikines sąskaitas konsolidacijai tarp įmonių, mokėtinų/gautinų " +"sumų sąskaitos naudojamos partnerių sąskaitoms (debeto/kredito " +"skaičiavimui), „uždaryta“ - sąskaitoms, kurios nebenaudojamos." #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Su DK įrašais" @@ -10477,7 +10900,7 @@ msgstr "Gruodis" #. module: account #: view:account.invoice.report:0 msgid "Group by month of Invoice Date" -msgstr "" +msgstr "S/F išrašymo mėnuo" #. module: account #: code:addons/account/account_analytic_line.py:99 @@ -10516,7 +10939,7 @@ msgstr "" #: view:account.account:0 #: view:account.analytic.account:0 msgid "Parent Account" -msgstr "" +msgstr "Tėvinė sąskaita" #. module: account #: view:report.account.receivable:0 @@ -10536,10 +10959,10 @@ msgstr "Likusi neapmokėta suma." #. module: account #: field:account.print.journal,sort_selection:0 msgid "Entries Sorted by" -msgstr "" +msgstr "Įrašai surikiuoti pagal" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10550,7 +10973,7 @@ msgstr "" #: view:account.fiscal.position:0 #: view:account.fiscal.position.template:0 msgid "Accounts Mapping" -msgstr "Sąskaitų nustatymai" +msgstr "Sąskaitų pakaitalai" #. module: account #: model:ir.actions.act_window,help:account.action_tax_code_list @@ -10568,6 +10991,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte mokesčių kodą.\n" +"

\n" +" Priklausomai nuo šalies, mokesčių kodas dažniausiai yra " +"eilutė\n" +" mokesčių deklaracijoje. OpenERP įgalina aprašyti mokesčių\n" +" struktūrą, kur kiekviena mokesčių suma bus užregistruota\n" +" su vienu ar keletu mokesčių kodų.\n" +"

\n" +" " #. module: account #: selection:account.entries.report,month:0 @@ -10594,11 +11027,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pasirinkite periodą bei žurnalą, kuriame norite " +"užregistruoti įrašą.\n" +"

\n" +" Šis sąrašas gali būti naudojamas buhalterių, greitam įrašų " +"įvedimui\n" +" į OpenERP. Norėdami įvesti tiekėjo sąskaitą faktūrą,\n" +" pradėkite nuo sąnaudų įvedimo. OpenERP automatiškai " +"pasiūlys\n" +" mokesčius susijusius su šia sąskaita bei korespondentinę\n" +" mokėtinų sumų sąskaitą.\n" +"

\n" +" " #. module: account #: help:account.invoice.line,account_id:0 msgid "The income or expense account related to the selected product." -msgstr "Pajamų ir išlaidų sąskaitos susijusios su pasirinktu produktu." +msgstr "Pajamų ar sąnaudų sąskaitos susijusios su pasirinktu produktu." #. module: account #: view:account.config.settings:0 @@ -10620,8 +11066,10 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" -msgstr "Grąžinimas" +msgstr "KREDITINĖ PVM SĄSKAITA-FAKTŪRA" #. module: account #: model:ir.model,name:account.model_res_partner_bank @@ -10631,18 +11079,18 @@ msgstr "Banko sąskaitos" #. module: account #: field:res.partner,credit:0 msgid "Total Receivable" -msgstr "Visos gautinos sumos" +msgstr "Bendra gautina suma" #. module: account #: view:account.move.line:0 msgid "General Information" -msgstr "Bendroji informacija" +msgstr "Bendra informacija" #. module: account #: view:account.move:0 #: view:account.move.line:0 msgid "Accounting Documents" -msgstr "" +msgstr "Apskaitos dokumentai" #. module: account #: code:addons/account/account.py:641 @@ -10662,6 +11110,8 @@ msgstr "" msgid "" "The fiscal position will determine taxes and accounts used for the partner." msgstr "" +"Mokestinė aplinka nurodo mokesčių kodus bei sąskaitas, kurios bus naudojamos " +"vykdant komercinę veiklą su šiuo kontaktu." #. module: account #: model:process.node,note:account.process_node_supplierpaidinvoice0 @@ -10690,7 +11140,7 @@ msgid "Manual Invoice Taxes" msgstr "Rankinis mokesčių registravimas" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" @@ -10706,7 +11156,7 @@ msgstr "" #: code:addons/account/static/src/js/account_move_reconciliation.js:80 #, python-format msgid "Never" -msgstr "" +msgstr "Niekada" #. module: account #: model:ir.model,name:account.model_account_addtmpl_wizard @@ -10722,19 +11172,19 @@ msgstr "" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Partner's" -msgstr "" +msgstr "Partnerio" #. module: account #: field:account.account,note:0 msgid "Internal Notes" -msgstr "" +msgstr "Vidinės pastabos" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear #: view:ir.sequence:0 #: model:ir.ui.menu,name:account.menu_action_account_fiscalyear msgid "Fiscal Years" -msgstr "Fiskaliniai metai" +msgstr "Finansiniai metai" #. module: account #: help:account.analytic.journal,active:0 @@ -10742,11 +11192,13 @@ msgid "" "If the active field is set to False, it will allow you to hide the analytic " "journal without removing it." msgstr "" +"Jeigu aktyvus laukelis nustatytas kaip \"ne\", leidžiame paslėpti analitinį " +"žurnalą, jo nepašalinus." #. module: account #: field:account.analytic.line,ref:0 msgid "Ref." -msgstr "Nuoroda" +msgstr "Numeris" #. module: account #: field:account.use.model,model:0 @@ -10773,7 +11225,7 @@ msgstr "Vasaris" #: view:account.bank.statement:0 #: help:account.cashbox.line,number_closing:0 msgid "Closing Unit Numbers" -msgstr "" +msgstr "Uždarymo kupiūrų kiekis" #. module: account #: field:account.bank.accounts.wizard,bank_account_id:0 @@ -10788,12 +11240,12 @@ msgstr "Banko sąskaita" #: model:ir.actions.act_window,name:account.action_account_central_journal #: model:ir.model,name:account.model_account_central_journal msgid "Account Central Journal" -msgstr "" +msgstr "Spausdinti didžiąją knygą" #. module: account #: report:account.overdue:0 msgid "Maturity" -msgstr "" +msgstr "Liko" #. module: account #: selection:account.aged.trial.balance,direction_selection:0 @@ -10825,12 +11277,12 @@ msgstr "" #. module: account #: field:account.chart.template,property_account_expense:0 msgid "Expense Account on Product Template" -msgstr "Išlaidų sąskaita produkto šablonui" +msgstr "Sąnaudų sąskaita produkto šablonui" #. module: account #: field:res.partner,property_payment_term:0 msgid "Customer Payment Term" -msgstr "" +msgstr "Pardavimo mokėjimo sąlygos" #. module: account #: help:accounting.report,label_filter:0 @@ -10838,6 +11290,8 @@ msgid "" "This label will be displayed on report to show the balance computed for the " "given comparison filter." msgstr "" +"Šis pavadinimas bus naudojamas ataskaitos stulpelyje, kuriame rodomas " +"paskaičiuotas balansas pagal palyginimo filtrą." #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 @@ -11197,9 +11651,6 @@ msgstr "" #~ msgid "Analytic Invoice" #~ msgstr "Analitinė sąskaita faktūra" -#~ msgid "Cancel Invoice" -#~ msgstr "Atšaukti sąskaitą faktūrą" - #~ msgid "Select Chart of Accounts" #~ msgstr "Pasirinkite sąskaitų planą" @@ -12434,3 +12885,6 @@ msgstr "" #~ msgid "Communication" #~ msgstr "Komunikacija" + +#~ msgid "Cancel Invoice" +#~ msgstr "Atšaukti sąskaitą" diff --git a/addons/account/i18n/lv.po b/addons/account/i18n/lv.po index c21eb9881c6..543caeb094c 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-16 05:15+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:08+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "Atlikums" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "Importēt no rēķina vai maksājuma" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -130,15 +130,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -150,7 +150,7 @@ msgid "Warning!" msgstr "Uzmanību!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Dažādi reģistri" @@ -339,7 +339,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -660,7 +660,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -671,13 +671,13 @@ msgid "Report of the Sales by Account Type" msgstr "Pārdošanas atskaites pēc Konta Tipa." #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "REL" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -730,7 +730,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Debitoru Konti" @@ -768,7 +770,7 @@ msgid "Are you sure you want to create entries?" msgstr "Vai esat pārliecināti, ka vēlaties izveidot ierakstus?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -837,7 +839,7 @@ msgid "Type" msgstr "Veids" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -860,7 +862,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -934,7 +936,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1018,7 +1020,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1091,10 +1093,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1220,7 +1222,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Banka" @@ -1525,15 +1527,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Kur bilance nav vienāda ar 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1756,8 +1760,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Rēķins" @@ -1832,7 +1838,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1986,36 +1992,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2029,8 +2035,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2072,7 +2078,7 @@ msgid "period close" msgstr "perioda slēgšana" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2144,7 +2150,7 @@ msgid "Analytic account" msgstr "Analītiskais konts" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Pārbaudiet, vai reģistram ir definēts konts." @@ -2246,7 +2252,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Izdevumu Konti" @@ -2552,7 +2560,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2573,7 +2581,7 @@ msgid "Main Sequence" msgstr "Galvenā Secība" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2597,7 +2605,7 @@ msgid "Fiscal Positions" msgstr "Nodokļu Profili" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2705,7 +2713,7 @@ msgid "Account Model Entries" msgstr "Tipveida ieraksti" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "IEP" @@ -2822,21 +2830,20 @@ msgid "Accounts" msgstr "Konti" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Konfigurācijas kļūda!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3027,7 +3034,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3040,7 +3047,7 @@ msgid "Sales by Account" msgstr "Pārdošanas dati pēc Konta" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "Nogrāmatotu \"%s\" reģistra ierakstu nevar dzēst." @@ -3056,8 +3063,8 @@ msgid "Sale journal" msgstr "Realizācijas reģistrs" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3221,7 +3228,7 @@ msgid "Fiscal Position" msgstr "Nodokļu Profils" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3319,7 +3326,7 @@ msgstr "" "datuma valūtas kursu." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3383,8 +3390,8 @@ msgid "View" msgstr "Skatījums" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3653,7 +3660,7 @@ msgstr "" "izrakstam." #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3668,7 +3675,7 @@ msgid "Starting Balance" msgstr "Sākuma Bilance" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Nav definēts Partneris!" @@ -3721,7 +3728,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3871,7 +3878,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3942,9 +3949,13 @@ msgid "VAT :" msgstr "PVN :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4034,7 +4045,7 @@ msgid "Chart of Accounts Template" msgstr "Kontu Plāns (Veidne)" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4043,8 +4054,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4199,7 +4212,7 @@ msgid "Name" msgstr "Nosaukums" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4270,8 +4283,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4301,7 +4314,7 @@ msgid "Consolidated Children" msgstr "Konsolidētie Konti" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4503,7 +4516,7 @@ msgid "Cancel the Selected Invoices" msgstr "Atcelt izvēlētos Rēķinus" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4571,8 +4584,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4635,7 +4648,7 @@ msgid "Account Base Code" msgstr "Konta Bāzes Kods" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4701,7 +4714,7 @@ msgid "Statement from invoice or payment" msgstr "Izraksts rēķinam vai maksājumam" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4755,7 +4768,7 @@ msgid "Bank statements are entered in the system." msgstr "Bankas izraksti ievadīti sistēmā." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Norakstīšana" @@ -4845,7 +4858,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4860,7 +4873,7 @@ msgid "Based On" msgstr "Bāzēts Uz" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -4926,7 +4939,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -5000,7 +5013,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5169,7 +5182,7 @@ msgid "Tax Application" msgstr "Nodokļa Pielietojums" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5341,7 +5354,7 @@ msgid "Target Moves" msgstr "Mērķa Grāmatojumi" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5422,7 +5435,7 @@ msgid "Internal Name" msgstr "Iekšējais Nosaukums" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5494,7 +5507,7 @@ msgid "Compute Code (if type=code)" msgstr "Aprēķināt kodu (ja tips=kods)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5622,7 +5635,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5652,7 +5665,7 @@ msgid "Amount Computation" msgstr "Vērtības Aprēķins" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5947,7 +5960,7 @@ msgid "Fixed Amount" msgstr "Fiksēta Summa" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5998,14 +6011,14 @@ msgid "Child Accounts" msgstr "Apakškonti" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Norakstīšana" @@ -6031,7 +6044,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Piegādātājs" @@ -6051,7 +6064,7 @@ msgid "Account n°" msgstr "Konta numurs" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Atsauce" @@ -6061,7 +6074,9 @@ msgstr "Atsauce" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Ieņēmumu un Izdevumu Konti" @@ -6171,7 +6186,7 @@ msgid "Filter by" msgstr "Filtrēt pēc" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6219,7 +6234,7 @@ msgid "Number of Days" msgstr "Dienu Skaits" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6367,7 +6382,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6539,7 +6554,7 @@ msgid "You cannot create journal items on closed account." msgstr "Jūs nevarat izveidot reģistru ierakstus slēgtā periodā." #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6560,7 +6575,7 @@ msgid "The related account currency if not equal to the company one." msgstr "Saistītā konta valūta, ja nav vienāda ar uzņēmuma valūtu." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6587,7 +6602,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "Lūdzu pārbaudiet vai ir aizpildīts lauks 'Reģistrs' Bankas izrakstā" @@ -6613,7 +6628,7 @@ msgid "Power" msgstr "Pakāpe:" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6686,12 +6701,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6772,7 +6787,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Ienākošie Kredītrēķini" @@ -6917,7 +6934,7 @@ msgstr "Analītisko Ierakstu Statistika" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Ieraksti: " @@ -7029,7 +7046,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Kļūda!" @@ -7257,7 +7274,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7336,7 +7353,7 @@ msgid "Done" msgstr "Apstiprināts" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7624,7 +7641,7 @@ msgstr "Atskaites" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7689,7 +7706,7 @@ msgid "Use model" msgstr "Lietot modeli" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7742,7 +7759,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7811,7 +7828,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Realizācijas reģistrs" @@ -7822,7 +7839,7 @@ msgid "Invoice Tax" msgstr "Rēķina Nodoklis" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Vienībai nav definēts numurs!" @@ -7861,7 +7878,7 @@ msgid "Sales Properties" msgstr "Pārdošanas Parametri" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7886,7 +7903,7 @@ msgstr "Līdz" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7918,7 +7935,7 @@ msgid "May" msgstr "Maijs" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7959,7 +7976,7 @@ msgstr "Veikt grāmatojumus" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Klients" @@ -7975,7 +7992,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Skaidrā nauda" @@ -8142,6 +8159,7 @@ msgstr "Fiksēts" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Uzmanību!" @@ -8209,7 +8227,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Izvēlēties rēķina valūtu" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Nav Rēķina Rindu!" @@ -8232,7 +8250,7 @@ msgid "Tax Use In" msgstr "Nodokļa lietojums" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8240,7 +8258,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Kontējumi nav derīgi." @@ -8284,7 +8302,7 @@ msgid "Associated Partner" msgstr "Saistītais Partneris" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Vispirms jāizvēlas partneris!" @@ -8365,13 +8383,13 @@ msgstr "" "citi nodokļi." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Iegādes kredītrēķinu reģistrs" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "Lūdzu norādiet reģistra sekvenci." @@ -8614,7 +8632,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8715,7 +8733,7 @@ msgid "The partner account used for this invoice." msgstr "Rēķinā izmantotais partnera konts." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8733,7 +8751,7 @@ msgid "Payment Term Line" msgstr "Apmaksas Noteikumu Rinda" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Iegādes reģistrs" @@ -8902,7 +8920,7 @@ msgid "Journal Name" msgstr "Reģistra nosaukums" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Ieraksts \"%s\" nav derīgs!" @@ -8951,7 +8969,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -9012,7 +9030,7 @@ msgid "Reconciled entries" msgstr "Sasaistītie kontējumi" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -9034,7 +9052,7 @@ msgid "Print Account Partner Balance" msgstr "Drukāt Partnera Bilanci" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9068,7 +9086,7 @@ msgstr "nezināms" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Sākuma atlikumu ierakstu reģistrs" @@ -9163,7 +9181,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Realizācijas kredītrēķinu reģistrs" @@ -9229,13 +9247,13 @@ msgid "Purchase Tax(%)" msgstr "Iepirkumu Nodoklis(%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Ievadiet rēķina rindas" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9248,7 +9266,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9409,8 +9427,8 @@ msgid "Receivable Account" msgstr "Debitoru saistību konts" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9511,7 +9529,7 @@ msgid "Move" msgstr "Grāmatojums" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9607,7 +9625,7 @@ msgid "Balance :" msgstr "Bilance" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9698,7 +9716,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9787,7 +9805,7 @@ msgid "Unreconciled" msgstr "Nesaistīts" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Kļūdaina kopsumma!" @@ -9872,7 +9890,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9959,7 +9977,7 @@ msgid "Journal Entry Model" msgstr "Grāmatojuma modelis" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10258,6 +10276,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10273,7 +10292,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10282,6 +10303,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10373,7 +10395,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10442,8 +10464,10 @@ msgstr "Kontu Nodokļu Profils" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Ienākošais Rēķins" @@ -10529,8 +10553,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Ar grāmatojumiem" @@ -10625,7 +10651,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10706,6 +10732,8 @@ msgstr "Meklēt Rēķinu" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Atmaksa" @@ -10776,7 +10804,7 @@ msgid "Manual Invoice Taxes" msgstr "Manuāli Rēķina Nodokļi" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/mk.po b/addons/account/i18n/mk.po index dced1340ae9..8ed5098821d 100644 --- a/addons/account/i18n/mk.po +++ b/addons/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-16 05:16+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:08+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -27,7 +27,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 @@ -41,7 +42,7 @@ msgstr "" #. module: account #: view:account.move.reconcile:0 msgid "Journal Entry Reconcile" -msgstr "Порамни запис во картица" +msgstr "Порамни внес во дневник" #. module: account #: view:account.account:0 @@ -61,10 +62,10 @@ msgid "Residual" msgstr "Остаток" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." -msgstr "Ставката на картицата \"%s\" не е валидна." +msgstr "Ставката на дневникот \"%s\" не е валидна." #. module: account #: model:ir.model,name:account.model_report_aged_receivable @@ -77,9 +78,9 @@ msgid "Import from invoice or payment" msgstr "Увези од фактура или плаќање" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "Погрешна сметка!" @@ -133,15 +134,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -153,10 +154,10 @@ msgid "Warning!" msgstr "Внимание!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" -msgstr "Картица разно" +msgstr "Дневник разно" #. module: account #: code:addons/account/wizard/account_open_closed_fiscalyear.py:39 @@ -215,9 +216,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 @@ -239,7 +240,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 @@ -275,7 +276,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 @@ -347,7 +348,7 @@ msgstr "Непорамнета сметка" #. module: account #: field:account.config.settings,module_account_budget:0 msgid "Budget management" -msgstr "Менаџирање на буџет" +msgstr "Управување со буџети" #. module: account #: view:product.template:0 @@ -372,10 +373,10 @@ msgid "Allow multi currencies" msgstr "Дозволи повеќе валути" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" -msgstr "Мора да дефинирате аналитичка картица од типот '%s'!" +msgstr "Мора да дефинирате аналитички дневник од типот '%s'!" #. module: account #: selection:account.entries.report,month:0 @@ -458,11 +459,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 @@ -557,7 +565,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 @@ -577,7 +585,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 @@ -646,7 +654,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 @@ -672,8 +680,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 @@ -684,7 +692,7 @@ msgstr "Мапирање на даноци" #. module: account #: report:account.central.journal:0 msgid "Centralized Journal" -msgstr "Центализирана картица" +msgstr "Центализиран дневник" #. module: account #: sql_constraint:account.sequence.fiscalyear:0 @@ -704,7 +712,7 @@ msgid "Profit Account" msgstr "Сметка Добивка" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "Не е пронајден период или има повеќе од еден период за даден датум." @@ -715,13 +723,13 @@ msgid "Report of the Sales by Account Type" msgstr "Извештај за продажбите по тип на сметки" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "SAJ" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "Не може да се креира движење со валута различна од .." @@ -754,15 +762,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 @@ -781,7 +789,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Сметки Побарувања" @@ -802,8 +812,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 @@ -821,7 +831,7 @@ msgid "Are you sure you want to create entries?" msgstr "Дали сте сигурни дека сакате да креирате записи?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "Фактурата е делумно платена: %s%s of %s%s (остануваат %s%s)." @@ -893,7 +903,7 @@ msgid "Type" msgstr "Тип" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -916,10 +926,10 @@ msgid "Supplier Invoices And Refunds" msgstr "Фактури и поврати на добавувач" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." -msgstr "Записот е веќе порамнет." +msgstr "Внесот е веќе порамнет." #. module: account #: view:account.move.line.unreconcile.select:0 @@ -989,19 +999,19 @@ msgid "" "

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

\n" " " #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " " opening/closing fiscal " "year process." msgstr "" -"Не може да поништите порамнување на ставки од картицата доколку се " +"Не може да поништите порамнување на ставки од дневникот доколку се " "генерирани во процесот на отварање/затварање на фискална година." #. module: account @@ -1081,10 +1091,10 @@ msgid "Liability" msgstr "Обврска" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." -msgstr "Дефинирајте секвенца на картицата поврзана со оваа фактура." +msgstr "Дефинирајте секвенца на дневникот поврзан со оваа фактура." #. module: account #: view:account.entries.report:0 @@ -1094,7 +1104,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 @@ -1130,7 +1140,7 @@ msgstr "Набавки" #. module: account #: field:account.model,lines_id:0 msgid "Model Entries" -msgstr "Стафки на моделот" +msgstr "Внесови на моделот" #. module: account #: field:account.account,code:0 @@ -1155,10 +1165,10 @@ msgid "Features" msgstr "Можности" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1170,7 +1180,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 @@ -1191,13 +1201,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" " " @@ -1209,7 +1220,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 @@ -1228,7 +1239,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 @@ -1270,12 +1281,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 @@ -1298,8 +1309,8 @@ msgstr "" " Кликнете за да креирате нов готовински лог.\n" "

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

\n" @@ -1308,7 +1319,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Банка" @@ -1326,7 +1337,7 @@ msgstr "Поврати" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 msgid "Confirm statement" -msgstr "Потврди изјава" +msgstr "Потврди извод" #. module: account #: view:account.tax:0 @@ -1366,7 +1377,7 @@ msgid "" "item are debit and negatif when journal item are credit." msgstr "" "Сумата изразена во секундарна валута мора да биде позитивна кога ставката од " -"картицата е долг и негативна кога ставката од картицата е побарување." +"дневникот е задолжување и негативна кога ставката од дневникот е побарување." #. module: account #: view:account.invoice.cancel:0 @@ -1411,7 +1422,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 @@ -1424,7 +1435,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 @@ -1481,7 +1492,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 @@ -1536,7 +1547,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 @@ -1548,7 +1559,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 @@ -1574,7 +1585,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 @@ -1619,22 +1630,24 @@ msgid "%s (copy)" msgstr "%s (копија)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: 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 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" "on journal \"%s\"." msgstr "" "Нема дефинирано стандардна сметка на долгови\n" -"на картицата \"%s\"." +"на дневникот \"%s\"." #. module: account #: view:account.tax:0 @@ -1649,7 +1662,7 @@ msgstr "Главна книга за сметка за аналитички тр #. module: account #: view:account.model:0 msgid "Create entries" -msgstr "Креирај записи" +msgstr "Креирај внесови" #. module: account #: field:account.entries.report,nbr:0 @@ -1682,7 +1695,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 @@ -1709,7 +1722,7 @@ msgstr "Главна книга на трошоци за период" #. module: account #: view:account.entries.report:0 msgid "# of Entries " -msgstr "# од влезови " +msgstr "# од записи " #. module: account #: help:account.fiscal.position,active:0 @@ -1735,7 +1748,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 @@ -1756,7 +1769,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 @@ -1776,7 +1789,7 @@ msgstr "Групи" #. module: account #: field:report.invoice.created,amount_untaxed:0 msgid "Untaxed" -msgstr "Без данок" +msgstr "Неоданочено" #. module: account #: view:account.journal:0 @@ -1791,13 +1804,13 @@ msgstr "Барај банкарски изводи" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "Необјавени ставки на картица" +msgstr "Необјавени ставки на дневникот" #. module: account #: view:account.chart.template:0 #: field:account.chart.template,property_account_payable:0 msgid "Payable Account" -msgstr "Сметка Плаќања" +msgstr "Сметка Обврски" #. module: account #: field:account.tax,account_paid_id:0 @@ -1850,27 +1863,42 @@ 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 #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" 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 @@ -1941,10 +1969,10 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." -msgstr "Некои записи се веќе порамнети" +msgstr "Некои внесови се веќе порамнети" #. module: account #: field:account.tax.code,sum:0 @@ -1987,8 +2015,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 @@ -2003,7 +2031,7 @@ msgstr "Побарувања и обврски" #. module: account #: field:account.config.settings,module_account_payment:0 msgid "Manage payment orders" -msgstr "Менаџирај налози за плаќање" +msgstr "Управување на налози за плаќање" #. module: account #: view:account.period:0 @@ -2034,7 +2062,7 @@ msgstr "Аналитички контен план" #. module: account #: report:account.overdue:0 msgid "Customer Ref:" -msgstr "Реф. на добавувач:" +msgstr "Реф. на купувач:" #. module: account #: help:account.tax,base_code_id:0 @@ -2103,36 +2131,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2146,8 +2174,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Грешка!" @@ -2177,7 +2205,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 @@ -2189,7 +2217,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 @@ -2197,7 +2225,7 @@ msgid "period close" msgstr "Затвори период" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2209,7 +2237,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 @@ -2253,7 +2281,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 @@ -2271,7 +2299,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 @@ -2280,10 +2308,10 @@ msgid "Analytic account" msgstr "Аналитичка сметка" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, 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 @@ -2386,10 +2414,12 @@ msgstr "Управување со имот" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" -msgstr "Сметка Обврски" +msgstr "Сметки Обврски" #. module: account #: constraint:account.move.line:0 @@ -2398,9 +2428,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 @@ -2420,7 +2450,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 @@ -2545,7 +2575,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 @@ -2700,7 +2735,7 @@ msgid "Create an Account Based on this Template" msgstr "Креирај Сметка заснована на овој урнек" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2718,7 +2753,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 @@ -2726,14 +2761,14 @@ msgid "Main Sequence" msgstr "Главна секвенца" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format 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 @@ -2752,7 +2787,7 @@ msgid "Fiscal Positions" msgstr "Фискална позиција" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "Не може да креирате ставки на дневник на затворена сметка %s %s." @@ -2820,6 +2855,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 @@ -2857,10 +2893,10 @@ 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 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "EXJ" @@ -2990,21 +3026,20 @@ msgid "Accounts" msgstr "Сметки" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Грешка конфигурација!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "Изводот %s е потврден, креирани се ставки во дневникот." @@ -3155,7 +3190,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 @@ -3182,10 +3217,10 @@ msgid "" "Note that journal entries that are automatically created by the system are " "always skipping that state." msgstr "" -"Означете го ова поле доколку не сакате новите записи на картицата да " +"Означете го ова поле доколку не сакате новите записи во дневникот да " "поминуваат преку состојбата 'нацрт' и наместо тоа да одат директно во " "состојба 'објавено' без било какво рачно потврдување.\n" -"Забележете дека записите на картицата кои се автоматски креирани од страна " +"Забележете дека записите во дневникот кои се автоматски креирани од страна " "на системот секогаш ја прескокнуваат оваа фаза." #. module: account @@ -3210,7 +3245,7 @@ msgstr "" "фактура' состојба." #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "Треба да изберете периоди што припаѓаат на иста компанија." @@ -3223,7 +3258,7 @@ msgid "Sales by Account" msgstr "Продажби по сметка" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "Не може да го избришете внесот во дневникот \"%s\"." @@ -3239,12 +3274,12 @@ msgid "Sale journal" msgstr "Дневник за продажба" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: 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 @@ -3253,7 +3288,7 @@ msgid "" "This journal already contains items, therefore you cannot modify its company " "field." msgstr "" -"Оваа книга веќе содржи елемени, затоа не може да ги менувате полињата на " +"Овој дневник веќе содржи елемени, затоа не може да ги менувате полињата на " "компанијата." #. module: account @@ -3263,6 +3298,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 @@ -3279,7 +3316,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 @@ -3325,12 +3362,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 @@ -3409,7 +3446,7 @@ msgid "Fiscal Position" msgstr "Фискална позиција" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3421,7 +3458,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 @@ -3441,7 +3478,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 @@ -3449,7 +3486,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 @@ -3460,7 +3497,7 @@ msgstr "Избери фискална година" #: view:account.config.settings:0 #: view:account.installer:0 msgid "Date Range" -msgstr "Опсег на период" +msgstr "Опсег на датум" #. module: account #: view:account.period:0 @@ -3491,7 +3528,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 @@ -3509,16 +3546,16 @@ msgstr "" "Влезните трансакции секогаш го користат курсот на датумот." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, 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 @@ -3540,6 +3577,8 @@ msgstr "Секогаш" msgid "" "Full accounting features: journals, legal statements, chart of accounts, etc." msgstr "" +"Пополнете ги сметководствените карактеристики: дневници, законски изјави, " +"контен план и.т.н." #. module: account #: view:account.analytic.line:0 @@ -3561,7 +3600,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 @@ -3572,8 +3611,8 @@ msgid "View" msgstr "Преглед" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3596,7 +3635,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 @@ -3611,7 +3650,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 @@ -3782,7 +3821,7 @@ msgstr "" #. module: account #: view:account.period:0 msgid "Account Period" -msgstr "" +msgstr "Период на сметка" #. module: account #: help:account.account,currency_id:0 @@ -3798,15 +3837,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 @@ -3816,7 +3855,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 @@ -3877,7 +3916,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 @@ -3888,7 +3927,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 @@ -3911,7 +3950,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 @@ -3920,12 +3959,12 @@ 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 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3940,10 +3979,10 @@ 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 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Нема дефинирано партнер !" @@ -3967,6 +4006,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 @@ -3995,9 +4036,13 @@ 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 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4005,13 +4050,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 @@ -4028,7 +4077,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 @@ -4044,7 +4093,7 @@ msgstr "година" #. module: account #: field:account.config.settings,date_start:0 msgid "Start date" -msgstr "Старен датум" +msgstr "Почетен датум" #. module: account #: view:account.invoice.refund:0 @@ -4055,6 +4104,12 @@ msgid "" "by\n" " your supplier/customer." msgstr "" +"Ќе можете да ја уредите и валидирате оваа\n" +" белешка за побарување директно или да ја " +"оставите во нацрт,\n" +" чекајќи го документот кој треба да биде " +"доставен од\n" +" вашиот добавувач/купувач." #. module: account #: view:validate.account.move.lines:0 @@ -4062,9 +4117,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 @@ -4073,6 +4127,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 @@ -4139,7 +4195,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 @@ -4159,17 +4215,19 @@ msgid "Period Length (days)" msgstr "Должина на периодот (денови)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format 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 @@ -4202,7 +4260,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 @@ -4212,7 +4270,7 @@ msgstr "Сметка на даночен код" #. module: account #: view:account.move.line:0 msgid "Unreconciled Journal Items" -msgstr "Непорамнети ставки од картица" +msgstr "Непорамнети ставки од дневник" #. module: account #: selection:account.account.type,close_method:0 @@ -4222,7 +4280,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 @@ -4230,9 +4288,13 @@ msgid "VAT :" msgstr "ДДВ :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4323,17 +4385,22 @@ msgid "Chart of Accounts Template" msgstr "Урнек за контен план" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " "based on partner payment term!\n" "Please define partner on it!" msgstr "" +"Датумот на доспевање на ставката од внесот генерирана со ставката на моделот " +"'%s' од моделот '%s' е заснована на рокот за плаќање на партнерот!\n" +"Дефинирајте партнер на него!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4394,7 +4461,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 @@ -4402,6 +4469,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 @@ -4416,9 +4485,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 @@ -4428,13 +4497,13 @@ msgstr "Барај аналитички ставки" #. module: account #: field:res.partner,property_account_payable:0 msgid "Account Payable" -msgstr "Сметка Плаќања" +msgstr "Сметка Обврски" #. module: account #: 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 @@ -4446,7 +4515,7 @@ msgstr "Налог за плаќање" msgid "" "Check this option if you want the user to reconcile entries in this account." msgstr "" -"Изберете ја оваа опција доколку сакате корисникот да ги порамни записите во " +"Изберете ја оваа опција доколку сакате корисникот да ги порамни внесовите во " "оваа сметка." #. module: account @@ -4463,12 +4532,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 @@ -4478,7 +4547,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 @@ -4493,7 +4562,7 @@ msgid "Name" msgstr "Име" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "Нема неконфигурирана компанија !" @@ -4501,7 +4570,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 @@ -4512,13 +4581,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 @@ -4534,7 +4603,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 @@ -4564,10 +4633,12 @@ 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 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "Не може да користите неактивна сметка." @@ -4589,15 +4660,15 @@ 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 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4687,7 +4758,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 @@ -4717,7 +4788,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 @@ -4725,6 +4796,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 @@ -4746,12 +4819,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 @@ -4761,7 +4834,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 @@ -4770,8 +4843,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 @@ -4807,10 +4880,10 @@ msgid "Cancel the Selected Invoices" msgstr "Откажи ги селектираните фактури" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, 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 @@ -4818,8 +4891,8 @@ msgid "" "Analytic costs (timesheets, some purchased products, ...) come from analytic " "accounts. These generate draft supplier invoices." msgstr "" -"Аналитичките трошоци (распореди, некои нарачани производи, ...) доаѓаат од " -"аналитичките сметки. Овие генерираат нацрт влезни фактури.)" +"Аналитичките трошоци (временски таблици, некои нарачани производи, ...) " +"доаѓаат од аналитичките сметки. Овие генерираат нацрт влезни фактури." #. module: account #: model:ir.actions.act_window,help:account.action_bank_tree @@ -4836,6 +4909,19 @@ msgid "" "

\n" " " msgstr "" +"

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

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

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

\n" +" " #. module: account #: constraint:account.tax.code.template:0 @@ -4843,6 +4929,8 @@ msgid "" "Error!\n" "You cannot create recursive Tax Codes." msgstr "" +"Грешка!\n" +"Не може да креирате рекурсивни Даночни кодови." #. module: account #: constraint:account.period:0 @@ -4850,6 +4938,8 @@ msgid "" "Error!\n" "The duration of the Period(s) is/are invalid." msgstr "" +"Грешка!\n" +"Времетраењето на Периодот(ите) не е/се валидни." #. module: account #: field:account.entries.report,month:0 @@ -4867,20 +4957,23 @@ 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 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format 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 @@ -4938,11 +5031,11 @@ msgid "Account Base Code" msgstr "Основен код на сметката" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, 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 @@ -4969,7 +5062,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 @@ -4979,12 +5072,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 @@ -4996,7 +5089,7 @@ msgstr "Последно порамнување:" #. module: account #: selection:account.move.line,state:0 msgid "Balanced" -msgstr "" +msgstr "Балансирано" #. module: account #: model:process.node,note:account.process_node_importinvoice0 @@ -5004,17 +5097,19 @@ msgid "Statement from invoice or payment" msgstr "Извод од фактура или плаќање" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " "therefore not be executed." 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 @@ -5024,7 +5119,7 @@ msgstr "Контен план" #. module: account #: field:account.invoice,reference_type:0 msgid "Payment Reference" -msgstr "Референца за уплата" +msgstr "Референца на уплата" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -5040,7 +5135,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 @@ -5058,7 +5153,7 @@ msgid "Bank statements are entered in the system." msgstr "Банкарските изводи се внесени во системот" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Порамни отпишување" @@ -5082,12 +5177,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 @@ -5108,7 +5203,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 @@ -5132,7 +5227,7 @@ msgstr "" #. module: account #: view:account.use.model:0 msgid "Create Entries From Models" -msgstr "Креирај записи од моделите" +msgstr "Креирај внесови од моделите" #. module: account #: field:account.account,reconcile:0 @@ -5147,10 +5242,10 @@ msgid "" "You cannot create an account which has parent account of different company." msgstr "" "Грешка!\n" -"Неможе да креирате сметка што има матична сметка од друга компанија." +"Не може да креирате сметка што има матична сметка од друга компанија." #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -5158,6 +5253,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 @@ -5165,7 +5264,7 @@ msgid "Based On" msgstr "Засновано на" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -5174,12 +5273,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 @@ -5221,7 +5320,7 @@ msgstr "Овозможува префрлање на фактурите во с #. module: account #: view:account.journal:0 msgid "Unit Of Currency Definition" -msgstr "" +msgstr "Дефиниција на валутата" #. module: account #: help:account.partner.ledger,amount_currency:0 @@ -5230,9 +5329,11 @@ 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 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "Данок на набавка %.2f%%" @@ -5242,7 +5343,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 @@ -5295,7 +5396,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 @@ -5304,9 +5405,12 @@ 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 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "MISC" @@ -5332,7 +5436,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 @@ -5388,7 +5492,7 @@ msgstr "Фактурирано" #. module: account #: view:account.move:0 msgid "Posted Journal Entries" -msgstr "Објавени записи на картица" +msgstr "Објавени внесови во дневникот" #. module: account #: view:account.use.model:0 @@ -5403,7 +5507,7 @@ msgid "" "Partner bank account number." msgstr "" "Број на банкарска сметка на која фактурата ќе биде платена. Банкарската " -"сметка на Компанијата доколку е Фактура на клиент или Повлекување на " +"сметка на Компанијата доколку е Излезна фактура или Повлекување на " "добавувач, во спротивно бројот на банкарската сметка на Партнерот." #. module: account @@ -5449,6 +5553,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 @@ -5459,7 +5565,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 @@ -5478,7 +5584,7 @@ msgid "Tax Application" msgstr "Даночна пријава" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5531,7 +5637,7 @@ msgstr "Биланс по тип на сметка" #: 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 #: model:res.groups,name:account.group_account_user @@ -5569,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 @@ -5582,6 +5688,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 @@ -5621,7 +5730,7 @@ msgstr "" #. module: account #: report:account.analytic.account.balance:0 msgid "Analytic Balance -" -msgstr "Аналитичка сост -" +msgstr "Аналитичко салдо" #. module: account #: report:account.account.balance:0 @@ -5654,11 +5763,13 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format 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 @@ -5681,7 +5792,7 @@ msgstr "Плаќања" #. module: account #: field:account.subscription.line,move_id:0 msgid "Entry" -msgstr "Запис" +msgstr "Внес" #. module: account #: field:account.tax,python_compute_inv:0 @@ -5735,13 +5846,16 @@ msgid "Internal Name" msgstr "Внатрешно име" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" "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 @@ -5770,7 +5884,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 @@ -5794,7 +5908,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 @@ -5807,11 +5921,12 @@ msgid "Compute Code (if type=code)" msgstr "Код за пресметка (доколку тип=код)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." msgstr "" +"Не може да пронајде контен план за оваа компанија, треба да креирате." #. module: account #: selection:account.analytic.journal,type:0 @@ -5853,7 +5968,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 @@ -5891,11 +6006,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 @@ -5905,14 +6026,14 @@ 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 msgid "Coefficent for parent" -msgstr "" +msgstr "Коефициент за партнер" #. module: account #: report:account.partner.balance:0 @@ -5940,10 +6061,10 @@ msgid "Recompute taxes and total" msgstr "Преработи даноци и вкупно" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, 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 @@ -5953,7 +6074,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 @@ -5971,21 +6092,22 @@ msgid "Amount Computation" msgstr "Пресметување на износ" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, 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 @@ -6032,12 +6154,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 @@ -6049,7 +6174,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 @@ -6067,7 +6192,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 @@ -6099,7 +6224,7 @@ msgstr "" #. module: account #: view:account.subscription.line:0 msgid "Subscription lines" -msgstr "" +msgstr "Ставки за претплата" #. module: account #: field:account.entries.report,quantity:0 @@ -6126,7 +6251,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 @@ -6137,7 +6262,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 @@ -6149,7 +6274,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 @@ -6162,7 +6287,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 @@ -6192,7 +6317,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 @@ -6200,6 +6325,8 @@ msgid "" "This payment term will be used instead of the default one for purchase " "orders and supplier invoices" msgstr "" +"Овој рок на плаќање ќе биде употребен наместо стандардниот за налозите за " +"набавка и влезните фактури" #. module: account #: help:account.automatic.reconcile,power:0 @@ -6260,7 +6387,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 @@ -6269,10 +6396,12 @@ msgid "Fixed Amount" msgstr "Фиксен износ" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, 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 @@ -6283,13 +6412,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 @@ -6312,7 +6441,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 @@ -6320,14 +6449,14 @@ msgid "Child Accounts" msgstr "Сметка (дете)" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Премести име (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Отпиши" @@ -6335,12 +6464,12 @@ msgstr "Отпиши" #. module: account #: view:account.entries.report:0 msgid "entries" -msgstr "записи" +msgstr "внесови" #. module: account #: field:res.partner,debit:0 msgid "Total Payable" -msgstr "Вкупно побарувања" +msgstr "Вкупно обврски" #. module: account #: model:account.account.type,name:account.data_account_type_income @@ -6353,7 +6482,7 @@ msgstr "Приход" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Добавувач" @@ -6373,7 +6502,7 @@ msgid "Account n°" msgstr "Бр. на сметка" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Слободна референца" @@ -6383,10 +6512,12 @@ msgstr "Слободна референца" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" -msgstr "Сметки побарувања и плаќања" +msgstr "Сметки побарувања и обврски" #. module: account #: field:account.fiscal.position.account.template,position_id:0 @@ -6413,7 +6544,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 @@ -6422,6 +6553,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 @@ -6429,7 +6564,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" "Партнери порамнети денес \\ (Преостанати партнери + Партнери порамнети денес)" @@ -6503,7 +6638,7 @@ msgid "Filter by" msgstr "Филтрирај по" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "Имате погрешен израз \"%(...)s\" во вашиот модел !" @@ -6517,7 +6652,7 @@ msgstr "" #: help:account.bank.statement,balance_end:0 msgid "Balance as calculated based on Starting Balance and transaction lines" msgstr "" -"Билансот е пресметан врз основа на Почетниот Биланс и ставките на " +"Салдото е пресметано врз основа на Почетното Салдо и ставките на " "трансакцијата" #. module: account @@ -6535,7 +6670,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 @@ -6546,6 +6681,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 @@ -6553,12 +6693,14 @@ msgid "Number of Days" msgstr "Број на денови" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format 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 @@ -6592,17 +6734,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 @@ -6612,7 +6754,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 @@ -6634,7 +6776,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 @@ -6647,13 +6789,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 @@ -6684,7 +6826,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 @@ -6703,22 +6845,24 @@ msgid "Models" msgstr "Модели" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format 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 @@ -6747,7 +6891,7 @@ msgstr "" " Кликнете тука за да регистрирате поврат од добавувач.\n" "

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

\n" " " @@ -6811,7 +6955,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 @@ -6882,7 +7026,7 @@ msgid "You cannot create journal items on closed account." msgstr "Не може да креирате внесови во дневник на затворени сметки." #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6903,7 +7047,7 @@ msgid "The related account currency if not equal to the company one." msgstr "Поврзаната валута на сметката не е еднаква со онаа на компанијата." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "Сопствен" @@ -6930,7 +7074,7 @@ msgid "Internal Transfers Account" msgstr "Сметка Внатрешни трансфери" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "Проверете дали полето 'Дневник' е ставено во банкарскиот извод" @@ -6948,7 +7092,7 @@ msgstr "Заокружи глобално" #. module: account #: selection:account.report.general.ledger,sortby:0 msgid "Journal & Partner" -msgstr "Картица и партнер" +msgstr "Дневник и партнер" #. module: account #: field:account.automatic.reconcile,power:0 @@ -6956,15 +7100,15 @@ msgid "Power" msgstr "Моќ" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." -msgstr "Не може да генерира неупотребен код на картица." +msgstr "Не може да генерира неупотребен код на дневник." #. module: account #: view:project.account.analytic.line:0 msgid "View Account Analytic Lines" -msgstr "Поглед аналитички ставки на сметка" +msgstr "Прегледај аналитички ставки на сметка" #. module: account #: field:account.invoice,internal_number:0 @@ -7025,6 +7169,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 @@ -7033,14 +7179,17 @@ 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 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -7067,7 +7216,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 @@ -7081,6 +7230,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 @@ -7095,11 +7248,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 @@ -7113,21 +7270,23 @@ msgid "" "You cannot change the owner company of an account that already contains " "journal items." msgstr "" -"Не можете да ја промените компанијата сопственик на сметката која содржи " -"ставки во картицата." +"Не можете да ја промените компанијата сопственик на сметката која веќе " +"содржи ставки во дневникот." #. module: account #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Поврати на добавувач" #. module: account #: field:account.bank.statement,move_line_ids:0 msgid "Entry lines" -msgstr "Ставки на запис" +msgstr "Ставки на внес" #. module: account #: field:account.move.line,centralisation:0 @@ -7203,7 +7362,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 @@ -7216,6 +7375,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 @@ -7265,19 +7426,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 +#: code:addons/account/account_move_line.py:955 #, 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 @@ -7312,7 +7473,7 @@ msgstr "Вкупно задолжување" #. module: account #: view:account.move.line:0 msgid "Next Partner Entries to reconcile" -msgstr "Следен внос на партнер за порамнување" +msgstr "Следен внес на партнер за порамнување" #. module: account #: report:account.invoice:0 @@ -7325,7 +7486,7 @@ msgid "" "This account will be used instead of the default one as the receivable " "account for the current partner" msgstr "" -"Оваа сметка ќе се употреби наместо стандарднота како сметка на побарувања за " +"Оваа сметка ќе се употреби наместо стандардната како сметка на побарувања за " "тековен партнер" #. module: account @@ -7342,7 +7503,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 @@ -7350,8 +7511,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 @@ -7361,7 +7522,7 @@ msgstr "Креирај" #. module: account #: model:process.transition.action,name:account.process_transition_action_createentries0 msgid "Create entry" -msgstr "Креирај запис" +msgstr "Креирај внес" #. module: account #: selection:account.account.type,report_type:0 @@ -7379,11 +7540,11 @@ 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 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Грешка !" @@ -7396,7 +7557,7 @@ msgstr "Стил на финансиски извештај" #. module: account #: selection:account.financial.report,sign:0 msgid "Preserve balance sign" -msgstr "Зачувај го знакот на состојбата" +msgstr "Зачувај го знакот на салдото" #. module: account #: view:account.vat.declaration:0 @@ -7471,7 +7632,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 @@ -7517,7 +7678,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 @@ -7527,7 +7688,7 @@ msgstr "Може да порманувате внесови во дневник #. module: account #: view:account.journal.select:0 msgid "Journal Select" -msgstr "Избери картица" +msgstr "Избори дневник" #. module: account #: view:account.bank.statement:0 @@ -7568,9 +7729,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 @@ -7617,7 +7778,7 @@ msgstr "" "Избраната валута треба да биде заедничка и со стандардните сметки." #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7646,7 +7807,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 @@ -7698,18 +7859,21 @@ msgid "Done" msgstr "Завршено" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" "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 @@ -7806,7 +7970,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 @@ -7821,7 +7985,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "Референца на клиент" +msgstr "Референца на купувач" #. module: account #: field:account.account.template,parent_id:0 @@ -7837,7 +8001,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 @@ -7855,7 +8019,7 @@ msgstr "Дејствува како стандардна сметка за за #. module: account #: view:account.entries.report:0 msgid "Posted entries" -msgstr "Објавени записи" +msgstr "Објавени внесови" #. module: account #: help:account.payment.term.line,value_amount:0 @@ -7868,7 +8032,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 @@ -7883,12 +8047,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 @@ -7903,7 +8067,7 @@ msgstr "Икона" #. module: account #: view:account.use.model:0 msgid "Ok" -msgstr "Добро" +msgstr "Во ред" #. module: account #: field:account.chart.template,tax_code_root_id:0 @@ -7965,12 +8129,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 @@ -7989,7 +8153,7 @@ msgstr "Известување" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -8004,7 +8168,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 @@ -8055,12 +8219,14 @@ msgid "Use model" msgstr "Употреби модел" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" "on journal \"%s\"." msgstr "" +"Нема дефинирано стандардна сметка на побарувања\n" +"на дневникот \"%s\"." #. module: account #: view:account.invoice.line:0 @@ -8072,12 +8238,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 @@ -8099,6 +8265,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 @@ -8106,7 +8290,7 @@ msgid "Root/View" msgstr "Корен/Преглед" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "OPEJ" @@ -8133,7 +8317,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 @@ -8161,6 +8345,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 @@ -8173,10 +8359,10 @@ msgid "Maturity Date" msgstr "Датум на доспевање" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" -msgstr "Продажна картица" +msgstr "Дневник Продажба" #. module: account #: model:ir.model,name:account.model_account_invoice_tax @@ -8184,10 +8370,10 @@ msgid "Invoice Tax" msgstr "Данок на фактура" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" -msgstr "" +msgstr "Нема број на парче !" #. module: account #: view:account.financial.report:0 @@ -8208,7 +8394,7 @@ msgstr "" #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "Необјавени записи на картица" +msgstr "Необјавени внесови во дневник" #. module: account #: help:account.invoice.refund,date:0 @@ -8216,8 +8402,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 @@ -8225,12 +8411,14 @@ msgid "Sales Properties" msgstr "Својства на продажби" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format 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 @@ -8250,7 +8438,7 @@ msgstr "До" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Подесување на валута" @@ -8284,7 +8472,7 @@ msgid "May" msgstr "Мај" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -8301,16 +8489,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 @@ -8319,17 +8509,17 @@ 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 #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" -msgstr "Клиент" +msgstr "Купувач" #. module: account #: field:account.financial.report,name:0 @@ -8342,7 +8532,7 @@ msgstr "Име на извештај" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Готовина" @@ -8359,6 +8549,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 @@ -8381,12 +8573,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 @@ -8396,7 +8588,7 @@ msgid "" "You cannot create recursive accounts." msgstr "" "Грешка!\n" -"неможете да креирате рекурзивни сметки." +"Не можете да креирате рекурзивни сметки." #. module: account #: model:ir.model,name:account.model_cash_box_in @@ -8406,7 +8598,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 @@ -8427,7 +8619,7 @@ msgstr "Средство" #. module: account #: field:account.bank.statement,balance_end:0 msgid "Computed Balance" -msgstr "Пресметана состојба" +msgstr "Пресметано салдо" #. module: account #. openerp-web @@ -8455,11 +8647,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 #: model:ir.ui.menu,name:account.menu_finance_legal_statement @@ -8478,6 +8673,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 @@ -8487,7 +8685,7 @@ msgstr "Ставка од каса" #. module: account #: field:account.installer,charts:0 msgid "Accounting Package" -msgstr "" +msgstr "Сметководствен пакет" #. module: account #: report:account.third_party_ledger:0 @@ -8508,6 +8706,7 @@ msgstr "Фиксно" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Внимание !" @@ -8521,12 +8720,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 @@ -8537,12 +8736,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 @@ -8575,7 +8774,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Изберете валута за да ја примените на фактурата" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Нема ставки во фактурата !" @@ -8597,23 +8796,23 @@ 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 +#: code:addons/account/account_bank_statement.py:382 #, python-format 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 +#: code:addons/account/account_bank_statement.py:420 #, 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 @@ -8623,15 +8822,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 @@ -8642,13 +8841,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 @@ -8656,10 +8856,10 @@ msgid "Associated Partner" msgstr "Поврзан партнер" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" -msgstr "Мора првин да изберете партнер !" +msgstr "Мора прво да изберете партнер !" #. module: account #: field:account.invoice,comment:0 @@ -8675,13 +8875,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 @@ -8725,7 +8925,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 @@ -8737,21 +8937,21 @@ msgstr "" "пред пресметување на следните даноци." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" -msgstr "Картица повлечи нарачка" +msgstr "Дневник повлечи нарачка" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, 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 @@ -8766,7 +8966,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 @@ -8834,7 +9034,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 @@ -8844,7 +9044,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 @@ -8868,8 +9068,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 @@ -8909,13 +9110,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 @@ -8957,6 +9158,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 @@ -8972,7 +9180,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 @@ -8992,17 +9200,19 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "${object.company_id.name} Фактура (Ref ${object.number or 'n/a'})" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format 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 @@ -9058,16 +9268,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 @@ -9085,7 +9309,7 @@ msgstr "Филтрирај по" msgid "" "In order to close a period, you must first post related journal entries." msgstr "" -"Со цел да затворите период, мора првин да ги објавите поврзаните записи на " +"Со цел да затворите период, мора првин да ги објавите поврзаните внесови на " "картицата." #. module: account @@ -9101,7 +9325,7 @@ msgid "The partner account used for this invoice." msgstr "Сметка на партнерот употребена за оваа фактура." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Данок %.2f%%" @@ -9119,10 +9343,10 @@ msgid "Payment Term Line" msgstr "Ставка рок на плаќање" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" -msgstr "Картица за набавки" +msgstr "Дневник Набавки" #. module: account #: field:account.invoice,amount_untaxed:0 @@ -9165,8 +9389,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 @@ -9186,6 +9410,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 @@ -9202,6 +9429,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 @@ -9212,7 +9441,7 @@ msgstr "Неплатени фактури" #. module: account #: field:account.move.line.reconcile,debit:0 msgid "Debit amount" -msgstr "Износ Должи" +msgstr "Должи" #. module: account #: view:account.aged.trial.balance:0 @@ -9264,6 +9493,17 @@ msgid "" "

\n" " " msgstr "" +"

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

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

\n" +" " #. module: account #: view:account.journal:0 @@ -9290,10 +9530,10 @@ msgid "Journal Name" msgstr "Име на картица" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" -msgstr "Записот \"%s\" не е валиден !" +msgstr "Внесот \"%s\" не е валиден !" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -9320,8 +9560,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 @@ -9332,7 +9571,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 @@ -9340,14 +9579,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 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." -msgstr "" +msgstr "Движењето на сметката (%s) за централизација беше потврдено." #. module: account #: report:account.analytic.account.journal:0 @@ -9386,29 +9624,33 @@ 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 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "Погрешен модел !" @@ -9427,16 +9669,19 @@ 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 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " "some non legal fields or you must unreconcile first.\n" "%s." msgstr "" +"Не може да ја направите оваа измена на порамнет внес. Може да измените само " +"незадолжителни полиња или мора прво да ги отпорамните.\n" +"%s." #. module: account #: help:account.financial.report,sign:0 @@ -9447,11 +9692,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 @@ -9469,7 +9715,7 @@ msgstr "непознато" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Дневник на отворени внесови" @@ -9483,7 +9729,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 @@ -9503,7 +9749,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 @@ -9512,41 +9758,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 @@ -9563,13 +9809,13 @@ msgstr "Период од" #. module: account #: field:account.cashbox.line,pieces:0 msgid "Unit of Currency" -msgstr "" +msgstr "Единица на валута" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" -msgstr "Картица повлечи продажби" +msgstr "Дневник Поврат од продажба" #. module: account #: view:account.move:0 @@ -9586,6 +9832,10 @@ msgid "" "chart\n" " of accounts." msgstr "" +"Откако нацрт фактурите се потврдени, нема да може да ги менувате\n" +" Фактурите ќе добијат единствен број\n" +" и ставките на дневникот ќе бидат креирани во вашиот\n" +" контен план." #. module: account #: model:process.node,note:account.process_node_bankstatement0 @@ -9600,7 +9850,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 @@ -9624,26 +9874,28 @@ 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 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Креирајте ставки на фактурата." #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format 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 @@ -9651,7 +9903,7 @@ msgid "Display Detail" msgstr "Прикажи детали" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "SCNJ" @@ -9662,14 +9914,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 @@ -9684,6 +9936,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 @@ -9731,12 +9994,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 @@ -9751,7 +10014,7 @@ msgstr "Компании кои се однесуваат на партенро #. module: account #: view:account.invoice:0 msgid "Ask Refund" -msgstr "Побарај рефундација" +msgstr "Побарај поврат" #. module: account #: view:account.move.line:0 @@ -9762,7 +10025,7 @@ msgstr "Вкупно побарува" #: model:process.transition,note:account.process_transition_suppliervalidentries0 msgid "Accountant validates the accounting entries coming from the invoice. " msgstr "" -"Сметководителот ги потврдува сметководствените записи кои доаѓаат од " +"Сметководителот ги потврдува сметководствените внесови кои доаѓаат од " "фактурата. " #. module: account @@ -9773,23 +10036,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 @@ -9801,6 +10064,13 @@ msgid "" "payments.\n" " This installs the module account_payment." msgstr "" +"Ова ви овозможува да креирате и управувате со вашите налози за плаќање, со " +"цел да ви\n" +" * послужат како основа за полесно приклучување на " +"различни механизми за плаќање и да ви обезбедат\n" +" * поефикасен начи за управување со плаќањата на " +"фактурите.\n" +" Ова го инсталира модулот account_payment." #. module: account #: xsl:account.transfer:0 @@ -9814,11 +10084,12 @@ msgid "Receivable Account" msgstr "Сметка Побарувања" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" +"За да се порамнат внесовите компанијата треба да биде иста за сите внесови." #. module: account #: field:account.account,balance:0 @@ -9844,7 +10115,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 @@ -9879,12 +10150,12 @@ 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 #: view:account.fiscalyear.close:0 msgid "Generate Fiscal Year Opening Entries" -msgstr "Генерира отворени записи за фискалната година" +msgstr "Генерира отворени внесови за фискалната година" #. module: account #: report:account.third_party_ledger:0 @@ -9896,13 +10167,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 @@ -9913,10 +10184,10 @@ 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 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9944,6 +10215,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 @@ -9956,13 +10230,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 @@ -9972,7 +10247,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 @@ -9980,7 +10255,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 @@ -9988,6 +10265,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 @@ -10003,35 +10282,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 +#: code:addons/account/account.py:1587 #, 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 @@ -10050,12 +10329,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 @@ -10099,10 +10378,10 @@ 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 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr " Централизација" @@ -10116,27 +10395,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 @@ -10174,8 +10453,8 @@ 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 #: view:account.invoice:0 @@ -10198,7 +10477,7 @@ msgid "Unreconciled" msgstr "Непорамнето" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Грешка вкупно !" @@ -10206,7 +10485,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 @@ -10219,13 +10498,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 @@ -10236,7 +10516,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 @@ -10247,7 +10527,7 @@ msgstr "Од аналитичките сметки" #. module: account #: view:account.installer:0 msgid "Configure your Fiscal Year" -msgstr "" +msgstr "Конфигурирајте ја вашата фискална година" #. module: account #: field:account.period,name:0 @@ -10261,6 +10541,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 @@ -10282,7 +10564,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 @@ -10290,13 +10572,16 @@ msgid "Comparison" msgstr "Споредување" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " "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 @@ -10307,6 +10592,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 @@ -10319,8 +10610,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 @@ -10371,18 +10662,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 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." -msgstr "" +msgstr "Почетниот период треба да му претходи на крајниот период." #. module: account #: field:account.invoice,number:0 @@ -10439,7 +10730,7 @@ msgstr "Периоди" #. module: account #: field:account.invoice.report,currency_rate:0 msgid "Currency Rate" -msgstr "Currency Rate" +msgstr "Девизен курс" #. module: account #: field:account.account,tax_ids:0 @@ -10461,13 +10752,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 @@ -10477,7 +10768,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 @@ -10513,14 +10804,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 @@ -10546,7 +10837,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 @@ -10645,11 +10936,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 @@ -10667,20 +10960,21 @@ 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 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10696,7 +10990,9 @@ msgstr "Отвори за консолидација на банки" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10705,6 +11001,7 @@ msgstr "Отвори за консолидација на банки" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10727,7 +11024,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 @@ -10747,7 +11044,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 @@ -10756,9 +11053,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 @@ -10768,7 +11064,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 @@ -10778,14 +11074,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 @@ -10798,17 +11093,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 +#: code:addons/account/account_move_line.py:1056 #, 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 @@ -10823,7 +11120,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 @@ -10832,6 +11129,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 @@ -10842,17 +11142,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 @@ -10869,8 +11169,10 @@ msgstr "Фискална позиција на сметки" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Фактура на добавувач" @@ -10912,7 +11214,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 @@ -10922,7 +11224,7 @@ msgstr "Порамнети трансакции" #. module: account #: model:ir.model,name:account.model_report_account_receivable msgid "Receivable accounts" -msgstr "Receivable accounts" +msgstr "Сметки побарување" #. module: account #: code:addons/account/account_move_line.py:783 @@ -10933,7 +11235,7 @@ msgstr "" #. module: account #: selection:account.model.line,date_maturity:0 msgid "Partner Payment Term" -msgstr "Рок за плаќање на партнерот" +msgstr "Рок за плаќање на партнер" #. module: account #: field:temp.range,name:0 @@ -10943,7 +11245,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 @@ -10954,23 +11256,25 @@ 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 +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape: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 @@ -11002,75 +11306,75 @@ 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 +#: code:addons/account/account_invoice.py:1546 #, python-format 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 @@ -11088,6 +11392,18 @@ msgid "" "

\n" " " msgstr "" +"

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

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

\n" +" " #. module: account #: selection:account.entries.report,month:0 @@ -11114,22 +11430,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 @@ -11140,8 +11470,10 @@ msgstr "Барај фактура" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" -msgstr "Повлечи" +msgstr "Поврат" #. module: account #: model:ir.model,name:account.model_res_partner_bank @@ -11151,7 +11483,7 @@ msgstr "Банкарски сметки" #. module: account #: field:res.partner,credit:0 msgid "Total Receivable" -msgstr "Total Receivable" +msgstr "Вкупно побарување" #. module: account #: view:account.move.line:0 @@ -11171,22 +11503,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 @@ -11197,7 +11533,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 @@ -11210,15 +11546,15 @@ msgid "Manual Invoice Taxes" msgstr "Manual Invoice Taxes" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, 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 @@ -11242,7 +11578,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 @@ -11262,8 +11598,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 @@ -11295,7 +11631,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 @@ -11310,7 +11646,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 @@ -11325,7 +11661,7 @@ msgstr "Иднина" #. module: account #: view:account.move.line:0 msgid "Search Journal Items" -msgstr "Барај ставки од картица" +msgstr "Барај ставки од дневник" #. module: account #: help:account.tax,base_sign:0 @@ -11342,7 +11678,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 @@ -11352,7 +11688,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 @@ -11360,13 +11696,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 @@ -11374,8 +11710,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)." +"Преостанатиот износ на побарување или обврска за внесот во дневникот " +"изразено во неговата валута (може да биде различна од валутата на " +"компанијата)." #, python-format #~ msgid "" diff --git a/addons/account/i18n/mn.po b/addons/account/i18n/mn.po index e56a5e79dd2..53c914b036e 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-16 05:16+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:08+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -27,7 +27,7 @@ msgstr "Системийн төлөлт" msgid "" "An account fiscal position could be defined only once time on same accounts." msgstr "" -"Ижил дансууд дээр дансны санхүүгийн позиц нь зөвхөн нэг л удаа " +"Ижил дансууд дээр дансны санхүүгийн харгалзаа нь зөвхөн нэг л удаа " "тодорхойлогдох боломжтой." #. module: account @@ -62,7 +62,7 @@ msgid "Residual" msgstr "Үлдэгдэл" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "\"%s\" гэсэн журналын зүйл нь зөв биш." @@ -78,9 +78,9 @@ msgid "Import from invoice or payment" msgstr "Нэхэмжлэх эсвэл төлбөрөөс импортлох" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "Буруу данс!" @@ -136,15 +136,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -156,7 +156,7 @@ msgid "Warning!" msgstr "Анхааруулга!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Бусад Журнал" @@ -264,7 +264,7 @@ msgstr "батлагдах" #. module: account #: model:account.account.type,name:account.account_type_income_view1 msgid "Income View" -msgstr "Орлого харах" +msgstr "Орлого харагдац" #. module: account #: help:account.account,user_type:0 @@ -280,7 +280,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 @@ -302,7 +302,7 @@ msgstr "Давтан гүйлгээ үүсгэх" #. module: account #: field:account.automatic.reconcile,allow_write_off:0 msgid "Allow write off" -msgstr "Зөрүүг хаах" +msgstr "Хасалтыг зөвшөөрөх" #. module: account #: view:account.analytic.chart:0 @@ -376,7 +376,7 @@ msgid "Allow multi currencies" msgstr "Олон төрлийн валют ашиглах" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "Та '%s' төрлийн шинжилгээний журнал тодорхойлох шаардлагатай!" @@ -407,7 +407,7 @@ msgstr "Та шинжилгээний данс хэрэглэхийг зөвшө #: view:account.invoice.report:0 #: field:account.invoice.report,user_id:0 msgid "Salesperson" -msgstr "Худалдагч" +msgstr "Борлуулалтын ажилтан" #. module: account #: view:account.bank.statement:0 @@ -630,7 +630,7 @@ msgstr "Тулгагдаагүй гүйлгээнүүд" #: report:account.general.ledger:0 #: report:account.general.ledger_landscape:0 msgid "Counterpart" -msgstr "Эсрэг тал" +msgstr "Харьцах данс" #. module: account #: view:account.fiscal.position:0 @@ -698,7 +698,7 @@ msgstr "Татварын харгалзаа" #. module: account #: report:account.central.journal:0 msgid "Centralized Journal" -msgstr "Төв журнал" +msgstr "Төвлөрсөн журнал" #. module: account #: sql_constraint:account.sequence.fiscalyear:0 @@ -718,7 +718,7 @@ msgid "Profit Account" msgstr "Ашгийн Данс" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -731,13 +731,13 @@ msgid "Report of the Sales by Account Type" msgstr "Борлуулалт Дансны төрлөөрх тайлан" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "SAJ" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "Дараахаас өөр валютаар хөдөлгөөнийг үүсгэж болохгүй .." @@ -796,7 +796,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Авлагын данс" @@ -836,7 +838,7 @@ msgid "Are you sure you want to create entries?" msgstr "Та гүйлгээ үүсгэхдээ итгэлтэй байна уу?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "Хэсэгчлэн төлсөн нэхэмжлэл: %s %s of %s%s (%s%s үлдэгдэл)." @@ -907,7 +909,7 @@ msgid "Type" msgstr "Төрөл" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -932,7 +934,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Ханган Нийлүүлэгчийн Нэхэмжлэх болон Зарлага (Буцаалт)" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "Аль хэдийн зассан бичилт" @@ -1011,7 +1013,7 @@ msgstr "" " " #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1097,7 +1099,7 @@ msgid "Liability" msgstr "Эх үүсвэр" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "Энэ нэхэмжлэлд холбогдох журналын дарааллыг тодорхойлно уу." @@ -1110,7 +1112,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 @@ -1135,7 +1137,7 @@ msgid "" "basic amount(without tax)." msgstr "" "Хэрэв татварын данс нь татварын код бол энэ талбар нь татварын дүнг агуулна. " -"Хэрэв татварын данс нь татварын суурь код бол энэ дүн нь суурь дүнг " +"Хэрэв татварын данс нь суурь татварын код бол энэ дүн нь суурь дүнг " "(татваргүй дүнг) агуулна." #. module: account @@ -1171,10 +1173,10 @@ msgid "Features" msgstr "Чанарууд" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1326,7 +1328,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Банк" @@ -1344,7 +1346,7 @@ msgstr "Буцаалтууд" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 msgid "Confirm statement" -msgstr "Орлого зарлагын ордер батлах" +msgstr "Хуулга батлах" #. module: account #: view:account.tax:0 @@ -1373,7 +1375,7 @@ msgstr "Кредит төвлөрүүлэлт" #: model:ir.actions.act_window,name:account.action_account_tax_code_template_form #: model:ir.ui.menu,name:account.menu_action_account_tax_code_template_form msgid "Tax Code Templates" -msgstr "Татварын ангилалын загвар" +msgstr "Татварын ангилалын үлгэр" #. module: account #: constraint:account.move.line:0 @@ -1407,7 +1409,7 @@ msgstr "Худалдан авалтад хэрэглэгдэх татвар" #: field:account.tax.template,tax_code_id:0 #: model:ir.model,name:account.model_account_tax_code msgid "Tax Code" -msgstr "Татварын ангилал" +msgstr "Татварын Код" #. module: account #: field:account.account,currency_mode:0 @@ -1553,7 +1555,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 @@ -1636,15 +1638,17 @@ msgid "%s (copy)" msgstr "%s (хуулбар)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Баланс нь тэгээс ялгаатай" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1710,7 +1714,7 @@ msgstr "Хэрэгжүүлээгүй." #. module: account #: view:account.invoice.refund:0 msgid "Credit Note" -msgstr "Кредитийн тэмдэглэл" +msgstr "Буцаалт" #. module: account #: view:account.config.settings:0 @@ -1733,7 +1737,7 @@ msgid "" "By unchecking the active field, you may hide a fiscal position without " "deleting it." msgstr "" -"Идэвхтэй талбарын тэмдэглэгээг арилгаснаар санхүүгийн жилийн харгалзуулалтыг " +"Идэвхтэй талбарын тэмдэглэгээг арилгаснаар санхүүгийн харгалзааг " "устгалгүйгээр нууж болно." #. module: account @@ -1751,7 +1755,7 @@ msgstr "Нийлүүлэгчийн буцаалт" #: field:account.tax.code,code:0 #: field:account.tax.code.template,code:0 msgid "Case Code" -msgstr "Ангилалын код" +msgstr "Татварын кодын код" #. module: account #: field:account.config.settings,company_footer:0 @@ -1777,7 +1781,7 @@ msgstr "Давтан гүйлгээ" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_template msgid "Template for Fiscal Position" -msgstr "Санхүүгийн байршилын загвар" +msgstr "Санхүүгийн харгалзааны үлгэр" #. module: account #: view:account.subscription:0 @@ -1830,7 +1834,7 @@ msgstr "ir.sequence" #: view:account.bank.statement:0 #: field:account.bank.statement,line_ids:0 msgid "Statement lines" -msgstr "Орлого зарлагын гүйлгээ" +msgstr "Хуулгын мөрүүд" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -1885,8 +1889,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Нэхэмжлэл" @@ -1968,11 +1974,11 @@ msgid "" "The journal must have centralized counterpart without the Skipping draft " "state option checked." msgstr "" -"Ноорог төлөвийг алгасахыг сонгохгүйгээр журнал нь төвлөрсөн эсрэгтэй талтай " +"Ноорог төлөвийг алгасахыг сонгохгүйгээр журнал нь төвлөрсөн харьцах данстай " "байж болохгүй." #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "Зарим бичилтүүд хэдийнээ тулгагдсан байна" @@ -2135,36 +2141,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2178,8 +2184,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Алдаа!" @@ -2203,7 +2209,8 @@ msgstr "" " Худалдан авсан, хүлээн авсан зүйлсийн дагуух нийлүүлэгчийн\n" " нэхэмжлэлийг хянах боломжтой. Түүнчлэн OpenERP нь " "борлуулалтын \n" -" захиалга болон талоноос ноорог нэхэмжлэлийг автоматаар \n" +" захиалга болон хүлээн авалтын баримтаас ноорог нэхэмжлэлийг " +"автоматаар \n" " үүсгэх боломжтой.\n" "

\n" " " @@ -2231,7 +2238,7 @@ msgid "period close" msgstr "мөчлөг хаах" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2318,7 +2325,7 @@ msgid "Analytic account" msgstr "Шинжилгээний данс" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Журналд данс тодорхойлогдсон эсэхийг нягтална уу." @@ -2424,7 +2431,9 @@ msgstr "Хөрөнгийн менежмент" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Өглөгийн данс" @@ -2512,7 +2521,7 @@ msgstr "Нээлттэй бичилтүүд" #. module: account #: field:account.config.settings,purchase_refund_sequence_next:0 msgid "Next supplier credit note number" -msgstr "Дараагийн нийлүүлэгчийн кредитийн тэмдэглэл дугаар" +msgstr "Нийлүүлэгчийн буцаалтын дараагийн дугаар" #. module: account #: field:account.automatic.reconcile,account_ids:0 @@ -2571,7 +2580,7 @@ msgstr "Нийт нийлүүлэгчийн нэхэмжлэл шалгах" #: selection:account.invoice.report,state:0 #: selection:report.invoice.created,state:0 msgid "Pro-forma" -msgstr "Про-форма" +msgstr "Урьдчилсан" #. module: account #: help:account.account.template,type:0 @@ -2742,7 +2751,7 @@ msgid "Create an Account Based on this Template" msgstr "Энэхүү үлгэрээр суурилж данс үүсгэх" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2767,7 +2776,7 @@ msgid "Main Sequence" msgstr "Үндсэн дараалал" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2793,7 +2802,7 @@ msgid "Fiscal Positions" msgstr "Санхүүгийн харгалзаа" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "Та хаагдсан %s %s дансанд журналын бичилт үүсгэх боломжгүй" @@ -2838,7 +2847,7 @@ msgstr "Санх.Данс" #: field:account.tax,tax_code_id:0 #: view:account.tax.code:0 msgid "Account Tax Code" -msgstr "Татварын дансны код" +msgstr "Татварын Кодын Данс" #. module: account #: model:account.payment.term,name:account.account_payment_term_advance @@ -2901,7 +2910,7 @@ msgid "Account Model Entries" msgstr "Дансны загвар гүйлгээ" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "EXJ" @@ -2985,7 +2994,7 @@ msgstr "Гүйлгээний нэр" #. module: account #: model:ir.model,name:account.model_account_move_line_reconcile_writeoff msgid "Account move line reconcile (writeoff)" -msgstr "Дансны тулгалтын мөрийн хөдөлгөөн (найдваргүй авлага)" +msgstr "Дансны тулгалтын мөрийн хөдөлгөөн (хасалт)" #. module: account #: model:account.account.type,name:account.conf_account_type_tax @@ -3030,21 +3039,20 @@ msgid "Accounts" msgstr "Данс" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Тохиргооны алдаа!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "Хуулга %s батлагдлаа, журналын бичилтүүд үүслээ." @@ -3106,7 +3114,7 @@ msgstr "Худалдан авалтын Татвар" #: help:account.move.line,tax_code_id:0 msgid "The Account can either be a base tax code or a tax code account." msgstr "" -"Данс нь татварын суурь код эсвэл татварын кодын дансны аль нэг байх ёстой." +"Данс нь суурь татварын код эсвэл татварын кодын дансны аль нэг байх ёстой." #. module: account #: sql_constraint:account.model.line:0 @@ -3134,7 +3142,7 @@ msgstr "Төлсөн/Тулгагдсан" #: field:account.tax,ref_base_code_id:0 #: field:account.tax.template,ref_base_code_id:0 msgid "Refund Base Code" -msgstr "Буцаалтын суурь ангилал" +msgstr "Буцаалтын суурь код" #. module: account #: model:ir.actions.act_window,name:account.action_bank_statement_tree @@ -3236,7 +3244,7 @@ msgstr "" #. module: account #: field:account.move.line.reconcile,writeoff:0 msgid "Write-Off amount" -msgstr "Зөрүү дүн" +msgstr "Хасалтын дүн" #. module: account #: field:account.bank.statement,message_unread:0 @@ -3255,7 +3263,7 @@ msgstr "" "'Урьдчилсан' төлөвт ороогүй байна." #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "Та ижил компанид харъяалагдах мөчлөгүүдийг сонгоно уу." @@ -3268,7 +3276,7 @@ msgid "Sales by Account" msgstr "Борлуулалт дансаар" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "Та илгээгдсэн журналын бичилт \"%s\" устгах боломжгүй." @@ -3284,8 +3292,8 @@ msgid "Sale journal" msgstr "Борлуулалтын Журнал" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3308,13 +3316,13 @@ msgid "" "balance." msgstr "" "Эхлэлийн балансыг тохируулахын тулд Нээлтийн журнал танд хэрэгтэй бөгөөд " -"төвлөрүүлсэн эсрэг талыг тэмдэглэсэн байх хэрэгтэй." +"төвлөрүүлсэн харьцах дансыг тэмдэглэсэн байх хэрэгтэй." #. module: account #: model:ir.actions.act_window,name:account.action_tax_code_list #: model:ir.ui.menu,name:account.menu_action_tax_code_list msgid "Tax codes" -msgstr "Татварын ангилал" +msgstr "Татварын кодууд" #. module: account #: view:account.account:0 @@ -3437,7 +3445,7 @@ msgstr "Санхүү бүртгэл" #. module: account #: model:ir.ui.menu,name:account.menu_account_report_pl msgid "Profit And Loss" -msgstr "Орлого зарлагын тайлан" +msgstr "Ашиг, алдагдал" #. module: account #: view:account.fiscal.position:0 @@ -3454,7 +3462,7 @@ msgid "Fiscal Position" msgstr "Санхүүгийн харгалзаа" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3554,7 +3562,7 @@ msgstr "" "өдрийн ханшаар тооцоологдоно." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "Үлгэр дансанд эцэг код байхгүй байна" @@ -3595,7 +3603,7 @@ msgstr "Нийт тоо хэмжээ" #. module: account #: field:account.move.line.reconcile.writeoff,writeoff_acc_id:0 msgid "Write-Off account" -msgstr "Цуцлалтын данс" +msgstr "Хасалтын данс" #. module: account #: field:account.model.line,model_id:0 @@ -3618,8 +3626,8 @@ msgid "View" msgstr "Харах" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3652,7 +3660,7 @@ msgstr "Компани нь дансны төлөвлөгөөтэй байна" #. module: account #: model:ir.model,name:account.model_account_tax_code_template msgid "Tax Code Template" -msgstr "Татварын кодны загвар" +msgstr "Татварын кодны үлгэр" #. module: account #: model:ir.model,name:account.model_account_partner_ledger @@ -3974,7 +3982,7 @@ msgstr "" "таних тэмдэгтэй болно" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3982,7 +3990,7 @@ msgid "" "menu." msgstr "" "Төвлөрсөн журнал дээр нэхэмжлэл үүсгэх боломжгүй. Тохиргооны менюгээс " -"журналын төвлөрсөн эсрэг тал тэмдэглэгээг арилгана уу." +"журналын төвлөрсөн харьцах данс тэмдэглэгээг арилгана уу." #. module: account #: field:account.bank.statement,balance_start:0 @@ -3991,7 +3999,7 @@ msgid "Starting Balance" msgstr "Нээлтийн үлдэгдэл" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Харилцагч алга !" @@ -4049,7 +4057,7 @@ msgstr "" "төлбөрийг хийх боломжтой." #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4073,7 +4081,7 @@ msgstr "Бичилтүүдийн тулгалтыг арилгах" #: field:account.tax.code,notprintable:0 #: field:account.tax.code.template,notprintable:0 msgid "Not Printable in Invoice" -msgstr "Нэхэмжлэлд тусгагдахгүй" +msgstr "Нэхэмжлэлд хэвлэгдэхгүй" #. module: account #: report:account.vat.declaration:0 @@ -4111,7 +4119,7 @@ msgid "" "by\n" " your supplier/customer." msgstr "" -"Энэхүү кредит баримтыг шууд засварлаад батлаж болно\n" +"Энэхүү буцаалтыг шууд засварлаад батлаж болно\n" " эсвэл үүнийг ноорог хэвээр нь хадгалаад\n" " нийлүүлэгч/захиалагчаас ирэх баримтыг " "хүлээж\n" @@ -4202,7 +4210,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 @@ -4222,7 +4230,7 @@ msgid "Period Length (days)" msgstr "Мөчлөгийн урт (өдөрөөр)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -4277,7 +4285,7 @@ msgstr "Татварын кодын дүн" #. module: account #: view:account.move.line:0 msgid "Unreconciled Journal Items" -msgstr "Тулгагдаагүй Журналийн зүйлүүд" +msgstr "Тулгагдаагүй Журналийн бичилтүүд" #. module: account #: selection:account.account.type,close_method:0 @@ -4296,9 +4304,13 @@ msgid "VAT :" msgstr "НӨАТ :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4321,7 +4333,7 @@ msgstr "account.journal.cashbox.line" #. module: account #: model:ir.model,name:account.model_account_partner_reconcile_process msgid "Reconcilation Process partner by partner" -msgstr "Харилцагч, харилцагчаар гүйцээлтийн боловсруулалт" +msgstr "Харилцагч, харилцагчаар тулгалтын боловсруулалт" #. module: account #: view:account.chart:0 @@ -4389,7 +4401,7 @@ msgid "Chart of Accounts Template" msgstr "Дансны төлөвлөгөөний үлгэр" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4401,8 +4413,10 @@ msgstr "" "Үүнд харилагчийг тодорхойлно уу!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4563,7 +4577,7 @@ msgid "Name" msgstr "Нэр" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "Тохируулаагүй компани алга !" @@ -4633,12 +4647,12 @@ 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 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "Идэвхгүй дансыг хэрэглэх боломжгүй." @@ -4668,7 +4682,7 @@ msgid "Consolidated Children" msgstr "Нэгтгэсэн дэд дансууд" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4698,7 +4712,7 @@ msgstr "" "Энд хэрэглэдэг шилдэг туршлага нь жилийн нээлтийн журналийн үүсгэж бүх " "нээлтийн бичилтүүдийг нэгтгэх хэрэгтэй. Гэхдээ үүнийг үүсгэхдээ дебит/кредит " "дансны анхны утгуудыг нь тодорхойлох хэрэгтэй. Гэхдээ эдгээр дансаа 'байдал' " -"гэсэн төрөлтэй эсрэг тал нь төвлөрсөн байхаар үүсгэх хэрэгтэй." +"гэсэн төрөлтэй харьцах данс нь төвлөрсөн байхаар үүсгэх хэрэгтэй." #. module: account #: view:account.installer:0 @@ -4826,7 +4840,7 @@ msgstr "Батлагдсан журналын бичилтүүд" #. module: account #: field:account.move.line,blocked:0 msgid "No Follow-up" -msgstr "Дагаж хийх зүйлс байхгүй" +msgstr "Мөшгөлт байхгүй" #. module: account #: view:account.tax.template:0 @@ -4882,7 +4896,7 @@ msgid "Cancel the Selected Invoices" msgstr "Сонгосон нэхэмжлэлийг цуцлах" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "'%s' журналд шинжилгээний журналыг оноох хэрэгтэй!" @@ -4964,8 +4978,8 @@ msgid "Supplier invoice sequence" msgstr "Нийлүүлэгчийн нэхэмжлэлийн дараалал" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -5027,10 +5041,10 @@ msgstr "Хаалтын Дэд дүн" #. module: account #: field:account.tax,base_code_id:0 msgid "Account Base Code" -msgstr "Account Base Code" +msgstr "Дансны Суурь Код" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -5097,7 +5111,7 @@ msgid "Statement from invoice or payment" msgstr "Statement from invoice or payment" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -5153,7 +5167,7 @@ msgid "Bank statements are entered in the system." msgstr "Банкны хуулгын системд оруулдаг." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Тулгалтын хасалт" @@ -5182,7 +5196,7 @@ msgstr "Журнал сонгох" #. module: account #: view:account.tax.template:0 msgid "Credit Notes" -msgstr "Орлогын тэмдэглэл" +msgstr "Буцаалтууд" #. module: account #: view:account.move.line:0 @@ -5248,7 +5262,7 @@ msgstr "" "Өөр компанийн дансыг эцэг дансаа болгосон данс үүсгэж болохгүй." #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -5267,7 +5281,7 @@ msgid "Based On" msgstr "Суурь" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -5334,7 +5348,7 @@ msgstr "" "Энэ нь тайланд валют баганыг хэрэв компанийн валютаас ялгаатай байвал нэмнэ." #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "Худалдан авалтын Татвар %.2f%%" @@ -5387,7 +5401,7 @@ msgstr "Борлуулалтын Татвар" #: field:account.tax,ref_tax_code_id:0 #: field:account.tax.template,ref_tax_code_id:0 msgid "Refund Tax Code" -msgstr "Буцаалтын татварын ангилал" +msgstr "Буцаалтын Татварын Код" #. module: account #: view:account.invoice:0 @@ -5411,7 +5425,7 @@ msgstr "" "төлөвт шилжинэ." #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "БУСАД" @@ -5443,7 +5457,7 @@ msgstr "Хэрэв энэ компани нь хуулийн этгээд бол #: model:account.account.type,name:account.conf_account_type_chk #: selection:account.bank.accounts.wizard,account_type:0 msgid "Check" -msgstr "Шалгах" +msgstr "Чек" #. module: account #: view:account.aged.trial.balance:0 @@ -5585,7 +5599,7 @@ msgid "Tax Application" msgstr "Татварын хэрэглээ" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5767,7 +5781,7 @@ msgid "Target Moves" msgstr "Хэрэглэх гүйлгээ" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5854,7 +5868,7 @@ msgid "Internal Name" msgstr "Дотоод нэр" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5929,7 +5943,7 @@ msgid "Compute Code (if type=code)" msgstr "Тооцоолох програмчлалын код (хэрэв төрөл = програмчлал)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -6040,7 +6054,7 @@ msgstr "" #. module: account #: field:account.tax.code,sign:0 msgid "Coefficent for parent" -msgstr "Эцэгт коффициентлэх нь" +msgstr "Эцэгт коэффициентлэх нь" #. module: account #: report:account.partner.balance:0 @@ -6068,7 +6082,7 @@ msgid "Recompute taxes and total" msgstr "Татвар болон дүнг дахин тооцоолох" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "Энэ мөчлөгт бичлэгтэй журналыг засварлаж/устгаж чадахгүй." @@ -6089,8 +6103,8 @@ msgid "" "Number of days to add before computation of the day of month.If Date=15/01, " "Number of Days=22, Day of Month=-1, then the due date is 28/02." msgstr "" -"Сарын өдрийг тооцоолхоос өмнө хоногийн тоог нэмж өгнө. Хэрвээ огноо=15/01, " -"Хоногийн тоо=22, Сарын өдөр=-1 бол тогтоосон хугацаа 28/02." +"Тооцооллын сарын өдрийг тооцоолохоос нэмэх өмнө хоногийн тоо. Хэрвээ " +"огноо=15/01, Хоногийн тоо=22, Сарын өдөр=-1 бол эцсийн хугацаа 28/02." #. module: account #: view:account.payment.term.line:0 @@ -6098,7 +6112,7 @@ msgid "Amount Computation" msgstr "Дүн тооцоолол" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -6173,7 +6187,7 @@ msgstr "Эхний үлдэгдэл багтах" #. module: account #: view:account.invoice.tax:0 msgid "Tax Codes" -msgstr "Татварын ангилал" +msgstr "Татварын Кодууд" #. module: account #: selection:account.invoice,type:0 @@ -6188,7 +6202,7 @@ msgstr "Захиалагчийн буцаалт" #: field:account.tax.template,ref_tax_sign:0 #: field:account.tax.template,tax_sign:0 msgid "Tax Code Sign" -msgstr "Татварын ангилалын тэмдэг" +msgstr "Татварын Кодын Тэмдэг" #. module: account #: model:ir.model,name:account.model_report_invoice_created @@ -6223,7 +6237,7 @@ msgid "" "something to reconcile or not. This figure already count the current partner " "as reconciled." msgstr "" -"Эдгээр нь гүйцээлт хийх шаардлагатай эсэхийг шалгахаар үлдэж байгаа " +"Эдгээр нь тулгалт хийх шаардлагатай эсэхийг шалгахаар үлдэж байгаа " "харилцагчдын жагсаалт. Энэ зураглал нь идэвхтэй харилцагчдыг тулгалт " "хийгдсэнээр тоолсон байгаа." @@ -6340,8 +6354,8 @@ msgid "" "Number of partial amounts that can be combined to find a balance point can " "be chosen as the power of the automatic reconciliation" msgstr "" -"Хэсэгчилсэн дүнгүүдийг нэгтгэгдэж автомат гүйцээлтээр баланстай тулах " -"цэгүүдийг олж болдог нь автомат тулгалтын давуу тал юм." +"Хэсэгчилсэн дүнгүүдийг нэгтгэгдэж автомат тулалт баланстай тулах цэгүүдийг " +"олж болдог нь автомат тулгалтын давуу тал юм." #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:56 @@ -6353,7 +6367,7 @@ msgstr "Мөчлөгийн уртыг 0-с их байхаар сонгох ёс #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 msgid "Fiscal Position Template" -msgstr "Санхүүгийн харгалзуулалтын загвар" +msgstr "Санхүүгийн харгалзааны үлгэр" #. module: account #: view:account.invoice:0 @@ -6404,7 +6418,7 @@ msgid "Fixed Amount" msgstr "Тогтмол дүн" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6457,17 +6471,17 @@ msgid "Child Accounts" msgstr "Дэд дансууд" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Гүйлгээний нэр (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" -msgstr "Зөрүү" +msgstr "Хасалт" #. module: account #: view:account.entries.report:0 @@ -6490,7 +6504,7 @@ msgstr "Орлого" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Нийлүүлэгч" @@ -6510,7 +6524,7 @@ msgid "Account n°" msgstr "Данс n°" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Бусад холбогдол" @@ -6520,7 +6534,9 @@ msgstr "Бусад холбогдол" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Авлага өглөгийн данс" @@ -6640,7 +6656,7 @@ msgid "Filter by" msgstr "Шүүлтүүр" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "Танын илэрхийлэл таны моделд буруу байна \"%(...)s\" !" @@ -6691,10 +6707,10 @@ msgstr "" #. module: account #: field:account.payment.term.line,days:0 msgid "Number of Days" -msgstr "Өдрийн дугаар" +msgstr "Хоногийн тоо" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6711,7 +6727,7 @@ msgstr "Тайлан" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax_template msgid "Template Tax Fiscal Position" -msgstr "Татварын жилийн харгалзааны үлгэр" +msgstr "Татварын санхүүгийн харгалзааны үлгэр" #. module: account #: help:account.tax,name:0 @@ -6770,7 +6786,7 @@ msgstr "Ажиллаж байгаа Бүртгэл" #. module: account #: report:account.invoice:0 msgid "Fiscal Position Remark :" -msgstr "Санхүүгийн жилийн харгалзуулалтын тайлбар :" +msgstr "Санхүүгийн харгалзааны тайлбар :" #. module: account #: view:analytic.entries.report:0 @@ -6844,7 +6860,7 @@ msgid "Models" msgstr "Модел" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -7030,7 +7046,7 @@ msgid "You cannot create journal items on closed account." msgstr "Та хаагдсан дансанд журналын бичилт үүсгэх боломжгүй." #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -7053,7 +7069,7 @@ msgid "The related account currency if not equal to the company one." msgstr "Холбогдох дансны валют нь компаний валютаас өөр бол." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "Өөрийн" @@ -7072,7 +7088,7 @@ msgstr "Касс" #: model:account.account.type,name:account.account_type_cash_equity #: model:account.account.type,name:account.conf_account_type_equity msgid "Equity" -msgstr "Тэгшитгэл" +msgstr "Өөрийн хөрөнгө" #. module: account #: field:account.journal,internal_account_id:0 @@ -7080,7 +7096,7 @@ msgid "Internal Transfers Account" msgstr "Дотоод Шилжүүлэлтийн Данс" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -7107,7 +7123,7 @@ msgid "Power" msgstr "Хүч" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "Хэрэглэгдээгүй журналын кодыг үүсгэж чадахгүй." @@ -7192,12 +7208,12 @@ msgstr "" "тооцоологдоно." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -7281,7 +7297,9 @@ msgstr "Журналын бичилтүүд агуулж байгаа дансн #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Нийлүүлэгчийн буцаалт" @@ -7432,7 +7450,7 @@ msgstr "Шинжилгээний бичилтийн статистик" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Гүйлгээ: " @@ -7544,7 +7562,7 @@ msgstr "Та журналын бичилт агуулж байгаа данс х #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Алдаа !" @@ -7601,7 +7619,7 @@ msgid "" "reconcile in a series of accounts. It finds entries for each partner where " "the amounts correspond." msgstr "" -"Төлөгдсөн гэж үзэж байгаа нэхэмжлэлүүдийн бичилтүүдийн эсрэг талтайгаа " +"Төлөгдсөн гэж үзэж байгаа нэхэмжлэлүүдийн бичилтүүд нь харьцсан данстайгаа " "тулгагдсан байх ёстой. Энэ нь ихэнхдээ төлбөртэй тулгагддаг. Автомат " "тулгаглтын хувьд OpenERP нь өөрөө дансдуудад тулгаж болох бичилтүүдийг " "хайдаг. Энэ харилцагч бүр харгалзах бичилтүүдийг олдог." @@ -7705,7 +7723,7 @@ msgstr "Дансны тулгалт" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax msgid "Taxes Fiscal Position" -msgstr "Санхүүгийн татварын харгалзаа" +msgstr "Татварын санхүүгийн харгалзаа" #. module: account #: report:account.general.ledger:0 @@ -7778,7 +7796,7 @@ msgstr "" "Сонгосон валют нь анхны утгын дансдад бас хуваалцагдсан байх ёстой." #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7859,7 +7877,7 @@ msgid "Done" msgstr "Дууссан" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -8011,7 +8029,7 @@ msgstr "Кассын Хаалтын Мөрүүд" #: field:account.move.line,statement_id:0 #: model:process.process,name:account.process_process_statementprocess0 msgid "Statement" -msgstr "Орлого зарлагын ордер" +msgstr "Хуулга" #. module: account #: help:account.journal,default_debit_account_id:0 @@ -8074,7 +8092,7 @@ msgstr "Ok" #. module: account #: field:account.chart.template,tax_code_root_id:0 msgid "Root Tax Code" -msgstr "Толгой татварын ангилал" +msgstr "Язгуур татварын код" #. module: account #: help:account.journal,centralisation:0 @@ -8083,8 +8101,8 @@ msgid "" "new counterpart but will share the same counterpart. This is used in fiscal " "year closing." msgstr "" -"Энэ сонголтыг тэмдэглэснээр журналын бичилт бүрд шинэ эсрэг талыг " -"үүсгэлгүйгээр бүх бичилт нэг ерөнхий эсрэг талыг хэрэглэнэ. Санхүүгийн " +"Энэ сонголтыг тэмдэглэснээр журналын бичилт бүрд шинэ харьцах дансыг " +"үүсгэлгүйгээр бүх бичилт нэг ерөнхий харьцах дансыг хэрэглэнэ. Санхүүгийн " "жилийг хаахад энэ нь хэрэглэгддэг." #. module: account @@ -8160,7 +8178,7 @@ msgstr "Тайлан" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -8198,8 +8216,8 @@ msgid "" "to modify the credit note." msgstr "" "Энэ сонголтыг хэрэггүй нэхэмжлэлийг цуцлахаар бол хэрэглэнэ. Нэхэмжлэлийн " -"кредит тэмдэглэл үүсгэгдэж, шалгагдаж, тулгагдана. Кредит тэмдэглэлийг " -"засварлах боломжгүй байна." +"буцаалт үүсгэгдэж, шалгагдаж, тулгагдана. Буцаалтыг засварлах боломжгүй " +"байна." #. module: account #: help:account.partner.reconcile.process,next_partner_id:0 @@ -8228,7 +8246,7 @@ msgid "Use model" msgstr "Модел хэрэлгэх" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -8297,7 +8315,7 @@ msgid "Root/View" msgstr "Язгуур/Харагдац" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "OPEJ" @@ -8306,7 +8324,7 @@ msgstr "OPEJ" #: report:account.invoice:0 #: view:account.invoice:0 msgid "PRO-FORMA" -msgstr "ПРО-ФОРМА" +msgstr "УРЬДЧИЛСАН" #. module: account #: selection:account.entries.report,move_line_state:0 @@ -8366,7 +8384,7 @@ msgid "Maturity Date" msgstr "Боловсорч гүйцэх огноо" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Борлуулалтын журнал" @@ -8377,7 +8395,7 @@ msgid "Invoice Tax" msgstr "Татварын нэхэмжлэл" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Хэсгийн Дугаар Алга !" @@ -8413,8 +8431,8 @@ msgid "" "This date will be used as the invoice date for credit note and period will " "be chosen accordingly!" msgstr "" -"Энэ огноо нь кредит тэмдэглэлийн нэхэмжлэл огноо болж ашиглагдах бөгөөд " -"холбогдох мөчлөг нь үүний дагууд сонгогдоно!" +"Энэ огноо нь буцаалтын нэхэмжлэх огноо болж ашиглагдах бөгөөд холбогдох " +"мөчлөг нь үүний дагууд сонгогдоно!" #. module: account #: view:product.template:0 @@ -8422,7 +8440,7 @@ msgid "Sales Properties" msgstr "Борлуулалтын талбарууд" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -8448,7 +8466,7 @@ msgstr "Хүртэл" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Валютын Тохиргоо" @@ -8482,7 +8500,7 @@ msgid "May" msgstr "5 сар" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -8511,7 +8529,7 @@ 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 @@ -8527,7 +8545,7 @@ msgstr "Журналын бичилтүүдийг батлах" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Захиалагч" @@ -8543,7 +8561,7 @@ msgstr "Тайлангийн нэр" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Бэлэн мөнгө" @@ -8665,7 +8683,7 @@ msgstr "" #. module: account #: view:account.move.line.reconcile:0 msgid "Reconciliation Transactions" -msgstr "Гүйцээлтийн гүйлгээ" +msgstr "Тулгалтын гүйлгээ" #. module: account #: model:ir.ui.menu,name:account.menu_finance_legal_statement @@ -8717,6 +8735,7 @@ msgstr "Тогтмол утга" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Анхааруулга !" @@ -8785,7 +8804,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Нэхэмжлэлд хэрэглэх валютаа сонго" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Нэхэмжлэлийн мөр алга !" @@ -8808,7 +8827,7 @@ msgid "Tax Use In" msgstr "Татварын хэрэглээ" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8819,7 +8838,7 @@ msgstr "" "байна." #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Журналын бичилтүүд хүчингүй байна." @@ -8865,7 +8884,7 @@ msgid "Associated Partner" msgstr "Холбогдох харилцагч" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Та эхлээд харилцагч сонгох хэрэгтэй !" @@ -8946,13 +8965,13 @@ msgstr "" "эсэх." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Худалдан авалтын буцаалтын журнал" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "Энэ журналд дараалaл тодорхойлон уу." @@ -9048,7 +9067,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 @@ -9064,7 +9083,7 @@ msgstr "Тохируулсан бланс" #: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form #: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form_template msgid "Fiscal Position Templates" -msgstr "Санхүүгийн жилийн харгалзуулалтын үлгэр" +msgstr "Санхүүгийн харгалзааны үлгэр" #. module: account #: view:account.entries.report:0 @@ -9124,7 +9143,7 @@ msgstr "Төлбөр" #. module: account #: view:account.automatic.reconcile:0 msgid "Reconciliation Result" -msgstr "Гүйцээлтийн үр дүн" +msgstr "Тулгалтын үр дүн" #. module: account #: field:account.bank.statement,balance_end_real:0 @@ -9135,7 +9154,7 @@ msgstr "Төгсгөлийн баланс" #. module: account #: field:account.journal,centralisation:0 msgid "Centralized Counterpart" -msgstr "Төвлөрсөн эсрэг тал" +msgstr "Төвлөрсөн харьцах данс" #. module: account #: help:account.move.line,blocked:0 @@ -9173,8 +9192,8 @@ msgid "" " so that you can edit it." msgstr "" "Хэрэв нэхэмжлэлийг цуцлаад шинийг үүсгэхийг хүсвэл энэ сонголтыг ашиглана. " -"Идэвхтэй нэхэмжлэлийн кредит тэмдэглэл үүсгэгдэж, батлагдаж, тулгагдана. " -"Шинэ, ноорог үүсгэгдэх бөгөөд энэ нь засварлах боломжтой байна." +"Идэвхтэй нэхэмжлэлийн буцаалт үүсгэгдэж, батлагдаж, тулгагдана. Шинэ, ноорог " +"үүсгэгдэх бөгөөд энэ нь засварлах боломжтой байна." #. module: account #: model:process.transition,name:account.process_transition_filestatement0 @@ -9210,7 +9229,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "${object.company_id.name} Нэхэмжлэл (Ref ${object.number or 'n/a'})" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -9336,7 +9355,7 @@ msgid "The partner account used for this invoice." msgstr "Уг нэхэмжлэл дээр хэрэглэгдэх харилцагчийн данс" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Татвар %.2f%%" @@ -9346,7 +9365,7 @@ msgstr "Татвар %.2f%%" #: view:account.tax.code.template:0 #: field:account.tax.code.template,parent_id:0 msgid "Parent Code" -msgstr "Эцэг ангилал" +msgstr "Эцэг Код" #. module: account #: model:ir.model,name:account.model_account_payment_term_line @@ -9354,7 +9373,7 @@ msgid "Payment Term Line" msgstr "төлбөрийн нөхцөлийн шугам" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Худалдан авалтын журнал" @@ -9540,7 +9559,7 @@ msgid "Journal Name" msgstr "Журналын нэр" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "\"%s\" гүйлгээ алга !" @@ -9578,7 +9597,7 @@ msgstr "" #: model:account.account.type,name:account.data_account_type_expense #: model:account.financial.report,name:account.account_financial_report_expense0 msgid "Expense" -msgstr "Зарлага" +msgstr "Зардал" #. module: account #: help:account.chart,fiscalyear:0 @@ -9595,7 +9614,7 @@ msgstr "" "дүн бичнэ." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "Төвлөрүүлэхэд зориулсан (%s) дансны хөдөлгөөн нь батлагдсан." @@ -9637,8 +9656,8 @@ 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 @@ -9658,7 +9677,7 @@ msgid "Reconciled entries" msgstr "Тулгагдсан бичилтүүд" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "Буруу модел !" @@ -9680,7 +9699,7 @@ msgid "Print Account Partner Balance" msgstr "Харилцагчийн баланс тайлан" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9722,7 +9741,7 @@ msgstr "үл мэдэх" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Нээлтийн гүйлгээний журнал" @@ -9822,7 +9841,7 @@ msgid "Unit of Currency" msgstr "Валютын Нэгж" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Борлуулалтын буцаалтын журнал" @@ -9893,13 +9912,13 @@ msgid "Purchase Tax(%)" msgstr "Худалдан авалтын татвар(%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Нэхэмжлэлийн мөр үүсгэнэ үү." #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9914,7 +9933,7 @@ msgid "Display Detail" msgstr "Дэлгэрэнгүйг харуулах" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "SCNJ" @@ -10009,7 +10028,7 @@ 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 @@ -10054,7 +10073,7 @@ 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 @@ -10091,8 +10110,8 @@ msgid "Receivable Account" msgstr "Авлагын данс" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -10194,7 +10213,7 @@ msgid "Move" msgstr "Ажил гүйлгээ" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -10297,7 +10316,7 @@ msgid "Balance :" msgstr "Үлдэгдэл" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "Өөр компаниудад хөдөлгөөн хийх боломжгүй" @@ -10388,7 +10407,7 @@ msgid "Immediate Payment" msgstr "Шууд Төлбөр" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr " Төвлөрөл" @@ -10484,7 +10503,7 @@ msgid "Unreconciled" msgstr "Тулгагдаагүй" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Нийлбэр буруу !" @@ -10577,7 +10596,7 @@ msgid "Comparison" msgstr "Харьцуулалт" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10674,7 +10693,7 @@ msgid "Journal Entry Model" msgstr "Журналын Бичилтийн Модель" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "Эхлэлийн мөчлөг нь төгсгөлийн мөчлөгийн өмнө байх ёстой." @@ -10756,7 +10775,7 @@ msgstr "4 сар" #. 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 @@ -10975,6 +10994,7 @@ msgstr "Банкны төлөлтийн тайлан нээх." #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10990,7 +11010,9 @@ msgstr "Банкны төлөлтийн тайлан нээх." #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10999,6 +11021,7 @@ msgstr "Банкны төлөлтийн тайлан нээх." #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -11094,7 +11117,7 @@ msgstr "" "үйлдэлүүдийг шалгах хэрэгтэй. Учир нь эдгээр нь цуцлагдахгүй." #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "Татварыг солих боломжгүй!" @@ -11140,7 +11163,7 @@ msgstr "Дараачийн харилцагч руу шилжих." #: view:account.automatic.reconcile:0 #: view:account.move.line.reconcile.writeoff:0 msgid "Write-Off Move" -msgstr "Зөрүү гүйцээлтийн бичилт" +msgstr "Хасалтын бичилт" #. module: account #: model:process.node,note:account.process_node_paidinvoice0 @@ -11150,7 +11173,7 @@ 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 @@ -11160,15 +11183,17 @@ msgstr "Борлуулалтын Тайлан Дансаар" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_account msgid "Accounts Fiscal Position" -msgstr "Санхүүгийн харгалзуулалт" +msgstr "Дансдын Санхүүгийн харгалзаа" #. module: account #: report:account.invoice:0 #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Нийлүүлэгчийн нэхэмжлэл" @@ -11259,8 +11284,10 @@ msgstr "" "хэрэггүй болсон данс байна." #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Гүйлгээтэй" @@ -11268,7 +11295,7 @@ msgstr "Гүйлгээтэй" #. module: account #: view:account.tax.code.template:0 msgid "Account Tax Code Template" -msgstr "Дансны татварын кодны загвар" +msgstr "Дансны татварын кодны үлгэр" #. module: account #: model:process.node,name:account.process_node_manually0 @@ -11357,7 +11384,7 @@ msgid "Entries Sorted by" msgstr "Бичилтүүдийн эрэмбэлсэн талбар" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -11428,8 +11455,8 @@ msgstr "" " Энэ харагдац нь нягтлангууд OpenERP-д бичилтийг хурдан " "бүртгэхэд хэрэглэгдэж болно. Хэрэв нийлүүлэгчийн нэхэмжлэл үүсгэхийг хүсвэл " "зардлын дансны мөрийг бүртгэх байдлаар эхлэж болно. OpenERP нь автоматаар " -"энэ дансанд холбогдох татварыг санал болгож эсрэг талын \"Өглөгийн Данс\"-г " -"санал болгоно.\n" +"энэ дансанд холбогдох татварыг санал болгож харьцах дансаар \"Өглөгийн " +"Данс\"-г санал болгоно.\n" "

\n" " " @@ -11458,6 +11485,8 @@ msgstr "Нэхэмжлэл хайх" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Буцаалт" @@ -11531,7 +11560,7 @@ msgid "Manual Invoice Taxes" msgstr "Нэхэмжлэлийг Гар Татварууд" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" @@ -11632,7 +11661,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 "Төв журнал хэвлэх" +msgstr "Төвлөрсөн журналын Данс" #. module: account #: report:account.overdue:0 diff --git a/addons/account/i18n/nb.po b/addons/account/i18n/nb.po index d5087432935..caacf0bd05d 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-16 05:16+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:08+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -60,7 +60,7 @@ msgid "Residual" msgstr "Gjenværende" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "Journal element «% s\" er ikke gyldig." @@ -76,9 +76,9 @@ msgid "Import from invoice or payment" msgstr "Importer fra fakturaer eller betalinger" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "Dårlig konto!" @@ -134,15 +134,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -154,7 +154,7 @@ msgid "Warning!" msgstr "Advarsel!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Diverse journal" @@ -347,7 +347,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "Du må definere en analytisk kontojournal av typen '%s'!" @@ -668,7 +668,7 @@ msgid "Profit Account" msgstr "Fortjeneste konto." #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -680,13 +680,13 @@ msgid "Report of the Sales by Account Type" msgstr "Salgsrapport etter kontotype" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "SAJ" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "Kan ikke opprette trekk med annen valuta enn .." @@ -739,7 +739,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Debitorkonti" @@ -779,7 +781,7 @@ msgid "Are you sure you want to create entries?" msgstr "Er du sikker på du ønsker å opprette posteringer?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -848,7 +850,7 @@ msgid "Type" msgstr "Type" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -873,7 +875,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Leverandørfakturaer og kreditnotaer" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -949,7 +951,7 @@ msgstr "" " " #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1033,7 +1035,7 @@ msgid "Liability" msgstr "Gjeld" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1109,10 +1111,10 @@ msgid "Features" msgstr "Funksjoner." #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1238,7 +1240,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Bank" @@ -1545,15 +1547,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Hvor saldo ikke er lik 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1778,8 +1782,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Faktura" @@ -1854,7 +1860,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -2008,36 +2014,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2051,8 +2057,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Feil!" @@ -2094,7 +2100,7 @@ msgid "period close" msgstr "Periode til" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2166,7 +2172,7 @@ msgid "Analytic account" msgstr "Analytisk konto" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Vennligst bekreft at en konto er definert i journalen" @@ -2268,7 +2274,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Betalbare konti" @@ -2583,7 +2591,7 @@ msgid "Create an Account Based on this Template" msgstr "Opprett en konto basert på denne malen" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2604,7 +2612,7 @@ msgid "Main Sequence" msgstr "Hovedsekvens" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2630,7 +2638,7 @@ msgid "Fiscal Positions" msgstr "skattemessige posisjoner" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "Du kan ikke opprette journal elementer på en lukket konto% s% s." @@ -2738,7 +2746,7 @@ msgid "Account Model Entries" msgstr "Konto Modell oppføringer" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "EXJ" @@ -2854,21 +2862,20 @@ msgid "Accounts" msgstr "Konto" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Konfigurasjonsfeil!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3063,7 +3070,7 @@ msgstr "" "forma 'tilstand." #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "Du bør velge de periodene som tilhører samme selskap." @@ -3076,7 +3083,7 @@ msgid "Sales by Account" msgstr "Salg pr. konto" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "Du kan ikke slette en publisert bilagsregistrering \"% s\"." @@ -3092,8 +3099,8 @@ msgid "Sale journal" msgstr "Salgs journal." #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3259,7 +3266,7 @@ msgid "Fiscal Position" msgstr "Regnskapsstatus" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3359,7 +3366,7 @@ msgstr "" "bruker alltid dagens valutakurs." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "Det er ingen overordnede kode for denne malen kontoen." @@ -3422,8 +3429,8 @@ msgid "View" msgstr "Vis" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3682,7 +3689,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3697,7 +3704,7 @@ msgid "Starting Balance" msgstr "Inngående saldo" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Ingen partner er definert!" @@ -3751,7 +3758,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3905,7 +3912,7 @@ msgid "Period Length (days)" msgstr "Periodelengde (dager)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3974,9 +3981,13 @@ msgid "VAT :" msgstr "MVA:" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4065,7 +4076,7 @@ msgid "Chart of Accounts Template" msgstr "Kontoplanmal" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4077,8 +4088,10 @@ msgstr "" "Vennligst definere partner på det!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4235,7 +4248,7 @@ msgid "Name" msgstr "Navn" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "Ingen ukonfigurerte selskap!" @@ -4308,8 +4321,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "Du kan ikke bruke en inaktiv konto." @@ -4339,7 +4352,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4549,7 +4562,7 @@ msgid "Cancel the Selected Invoices" msgstr "Annuler valgte fakturaer" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "Du må knytte til en analytisk journal i '%s' journal!" @@ -4620,8 +4633,8 @@ msgid "Supplier invoice sequence" msgstr "Leverandør faktura sekvens." #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4684,7 +4697,7 @@ msgid "Account Base Code" msgstr "Konto Base kode" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4751,7 +4764,7 @@ msgid "Statement from invoice or payment" msgstr "Bekreftelse fra faktura eller betaling" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4805,7 +4818,7 @@ msgid "Bank statements are entered in the system." msgstr "Kontoutskrifter føres i systemet." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Avstem avskriving" @@ -4900,7 +4913,7 @@ msgstr "" "Du kan ikke opprette en konto som har overordnede hensyn til ulike selskap." #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4915,7 +4928,7 @@ msgid "Based On" msgstr "Basert på" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -4981,7 +4994,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -5055,7 +5068,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "DIV" @@ -5227,7 +5240,7 @@ msgid "Tax Application" msgstr "Tax Application" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5401,7 +5414,7 @@ msgid "Target Moves" msgstr "målet beveger seg" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5485,7 +5498,7 @@ msgid "Internal Name" msgstr "Internt navn" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5557,7 +5570,7 @@ msgid "Compute Code (if type=code)" msgstr "Beregningskode (dersom type=kode)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5685,7 +5698,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5715,7 +5728,7 @@ msgid "Amount Computation" msgstr "Beregning" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -6017,7 +6030,7 @@ msgid "Fixed Amount" msgstr "Fast beløp" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6068,14 +6081,14 @@ msgid "Child Accounts" msgstr "Underordnede konti" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Flytt navn (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Nedskrivning" @@ -6101,7 +6114,7 @@ msgstr "Inntekt" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Leverandør" @@ -6121,7 +6134,7 @@ msgid "Account n°" msgstr "Kontonr." #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Fri referanse" @@ -6131,7 +6144,9 @@ msgstr "Fri referanse" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Debitor og kreditor konti" @@ -6240,7 +6255,7 @@ msgid "Filter by" msgstr "Filtrer etter" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6290,7 +6305,7 @@ msgid "Number of Days" msgstr "Antall dager" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6440,7 +6455,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6615,7 +6630,7 @@ msgid "You cannot create journal items on closed account." msgstr "Du kan ikke opprette journal enmer i en lukker konto." #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6636,7 +6651,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6663,7 +6678,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6689,7 +6704,7 @@ msgid "Power" msgstr "Styrke" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "Kan ikke lage en ubenyttet journalkode" @@ -6765,12 +6780,12 @@ msgstr "" "avgifter. I slike tilfeller er vurderingsrekkefølge viktig." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6858,7 +6873,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Kreditnota" @@ -7005,7 +7022,7 @@ msgstr "Analytisk Innlegg Statistikk" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Regsitreringer: " @@ -7114,7 +7131,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Feil!" @@ -7338,7 +7355,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7409,7 +7426,7 @@ msgid "Done" msgstr "Fullført" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7696,7 +7713,7 @@ msgstr "Rapportering" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7762,7 +7779,7 @@ msgid "Use model" msgstr "Bruk modell" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7813,7 +7830,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "OPEJ" @@ -7882,7 +7899,7 @@ msgid "Maturity Date" msgstr "Forfallsdato" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Salgsjournal" @@ -7893,7 +7910,7 @@ msgid "Invoice Tax" msgstr "Faktura avgift" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Ikke noe antallsnummer!" @@ -7932,7 +7949,7 @@ msgid "Sales Properties" msgstr "Instillinger for Salg" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7957,7 +7974,7 @@ msgstr "Til" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Valutajustering" @@ -7990,7 +8007,7 @@ msgid "May" msgstr "Mai" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "Global skatter definert, men de er ikke i fakturalinjer!" @@ -8033,7 +8050,7 @@ msgstr "Total journalregistreringer" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Kunde" @@ -8049,7 +8066,7 @@ msgstr "Rapportnavn" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Kontant" @@ -8219,6 +8236,7 @@ msgstr "Fast" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Advarsel !" @@ -8286,7 +8304,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Velg en valuta for fakturaen" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Ingen fakturalinjer!" @@ -8311,7 +8329,7 @@ msgid "Tax Use In" msgstr "Avgift brukt i" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8319,7 +8337,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Konto oppføring linjene er ikke i gyldig tilstand." @@ -8363,7 +8381,7 @@ msgid "Associated Partner" msgstr "Samarbeidspartner" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Du må først velge en partner!" @@ -8444,13 +8462,13 @@ msgstr "" "neste skattene." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Leverandør kreditnota-journal" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8695,7 +8713,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8797,7 +8815,7 @@ msgid "The partner account used for this invoice." msgstr "Partnerkonto benyttet for denne faktura." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Skatt %.2f%%" @@ -8815,7 +8833,7 @@ msgid "Payment Term Line" msgstr "Betalingsbet.linje" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Innkjøpsjournal" @@ -8986,7 +9004,7 @@ msgid "Journal Name" msgstr "Journalnavn" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Registrering \"%s\" er ikke gyldig" @@ -9037,7 +9055,7 @@ msgstr "" "flervaluta." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -9098,7 +9116,7 @@ msgid "Reconciled entries" msgstr "Avstemte posteringer" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "Feil modell!" @@ -9120,7 +9138,7 @@ msgid "Print Account Partner Balance" msgstr "Skriv ut konto partner balanse." #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9154,7 +9172,7 @@ msgstr "unknown" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9249,7 +9267,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Refusjonsjournal" @@ -9315,13 +9333,13 @@ msgid "Purchase Tax(%)" msgstr "Innkjøpsavgift(%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Vennligst opprett fakturalinje(er)" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9334,7 +9352,7 @@ msgid "Display Detail" msgstr "Vis Detalj." #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "SCNJ" @@ -9493,8 +9511,8 @@ msgid "Receivable Account" msgstr "Fordring konto." #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9595,7 +9613,7 @@ msgid "Move" msgstr "Bevegelse" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9692,7 +9710,7 @@ msgid "Balance :" msgstr "Saldo :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9783,7 +9801,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9872,7 +9890,7 @@ msgid "Unreconciled" msgstr "Ikke avstemt" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Feil sum !" @@ -9957,7 +9975,7 @@ msgid "Comparison" msgstr "Sammenligning" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10046,7 +10064,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10345,6 +10363,7 @@ msgstr "Åpen for bankavstemming" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10360,7 +10379,9 @@ msgstr "Åpen for bankavstemming" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10369,6 +10390,7 @@ msgstr "Åpen for bankavstemming" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10460,7 +10482,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10529,8 +10551,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Leverandørfaktura" @@ -10616,8 +10640,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Med bevegelser" @@ -10712,7 +10738,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10793,6 +10819,8 @@ msgstr "Søk faktura" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Kreditnota" @@ -10863,7 +10891,7 @@ msgid "Manual Invoice Taxes" msgstr "Manuell fakturaavgift" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/nl.po b/addons/account/i18n/nl.po index 650219149df..06dbb4dff8c 100644 --- a/addons/account/i18n/nl.po +++ b/addons/account/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-16 05:13+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:06+0000\n" +"X-Generator: Launchpad (build 16753)\n" #, python-format #~ msgid "Integrity Error !" @@ -65,7 +65,7 @@ msgid "Residual" msgstr "Resterend" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "Boeking \"%s\" is niet geldig." @@ -81,9 +81,9 @@ msgid "Import from invoice or payment" msgstr "Importeer van factuur of betaling" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "Onjuiste grootboekrekening" @@ -138,15 +138,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -158,7 +158,7 @@ msgid "Warning!" msgstr "Waarschuwing!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Memoriaal" @@ -194,10 +194,10 @@ msgstr "" "

\n" " klik hier om een fiscale periode toe te voegen.\n" "

\n" -" Een fiscale periode is vaak een maand of een kwartaal. " -"Normaal\n" -" zal dit gelijk zijn met de periode van uw Belasting " -"aangifte.\n" +" Een fiscale periode is vaak een maand of een kwartaal. Deze " +"kan\n" +" gelijk zijn met de periode van uw belasting aangifte, maar " +"dat hoeft niet.\n" "

\n" " " @@ -262,7 +262,7 @@ msgstr "Belgische overzichten" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "Gevalideerd" +msgstr "Bevestigd" #. module: account #: model:account.account.type,name:account.account_type_income_view1 @@ -381,7 +381,7 @@ msgid "Allow multi currencies" msgstr "Toestaan meerdere valuta" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "Een kostenplaats van het type %s moet worden gedefinieerd!" @@ -404,7 +404,7 @@ msgstr "Selecteer de grootboekrekeningen die afgeletterd moeten worden." #. module: account #: help:account.config.settings,group_analytic_accounting:0 msgid "Allows you to use the analytic accounting." -msgstr "stelt u in staat kostenplaatsen te gebruiken" +msgstr "Stelt u in staat kostenplaatsen te gebruiken" #. module: account #: view:account.invoice:0 @@ -513,18 +513,16 @@ msgid "" "should choose 'Round per line' because you certainly want the sum of your " "tax-included line subtotals to be equal to the total amount with taxes." msgstr "" -"Als u 'Afronden per regel' selecteert: voor elke BTW rekening wordt het BTW " -"bedrag eerst berekend en afgerond voor elke factuurregel. Vervolgens worden " -"deze afgeronde bedragen opgeteld, wat leidt tot het totale bedrag voor deze " -"belasting.\r\n" -"\r\n" -"Als u 'Globaal afronden' selecteert: voor elke BTW rekening wordt het BTW " -"bedrag berekend voor elke factuurregel. Vervolgens zullen deze bedragen " -"worden opgeteld en uiteindelijk wordt dit totale BTW bedrag afgerond.\r\n" -"\r\n" -"Als u verkoopt met BTW inbegrepen, moet u kiezen voor 'afronden per regel', " -"omdat U zeker wilt zijn dat de subtotalen van \r\n" -"uw (BTW inbegrepen) regels gelijk zijn aan het totale bedrag met BTW." +"* Afronden per regel: voor elke BTW rekening wordt het BTW bedrag eerst " +"berekend en afgerond voor elke factuurregel. Vervolgens worden deze " +"afgeronde bedragen opgeteld, wat leidt tot het totale bedrag voor deze " +"belasting. \r\n" +"* Globaal afronden: voor elke BTW rekening wordt het BTW bedrag berekend " +"voor elke factuurregel. Vervolgens zullen deze bedragen worden opgeteld en " +"uiteindelijk wordt dit totale BTW bedrag afgerond. Als u verkoopt met " +"prijzen inclusief BTW, moet u kiezen voor 'afronden per regel', omdat u " +"zeker wilt zijn dat de subtotalen van uw (BTW inbegrepen) regels gelijk zijn " +"aan het totale bedrag met BTW." #. module: account #: model:ir.model,name:account.model_wizard_multi_charts_accounts @@ -722,7 +720,7 @@ msgid "Profit Account" msgstr "Winst & Verlies rekening" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -734,13 +732,13 @@ msgid "Report of the Sales by Account Type" msgstr "Overzicht van de verkopen per rekeningsoort" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "VKB" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "U kunt geen boeking doen met een andere valuta dan ..." @@ -798,10 +796,12 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" -msgstr "Debiteuren" +msgstr "Debiteuren rekening" #. module: account #: view:account.config.settings:0 @@ -838,7 +838,7 @@ msgid "Are you sure you want to create entries?" msgstr "Weet u zeker dat u boekingen wilt maken?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "Factuur gedeeltelijk betaald %s%s van %s%s (%s%s resterend)" @@ -909,7 +909,7 @@ msgid "Type" msgstr "Type" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -931,10 +931,10 @@ msgstr "Het relatiekenmerk of deze factuur" #. module: account #: view:account.invoice.report:0 msgid "Supplier Invoices And Refunds" -msgstr "Leveranciers facturen en teruggaves" +msgstr "Leverancier facturen en credit facturen" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "Boeking is reeds afgeletterd." @@ -1008,12 +1008,12 @@ msgid "" " " msgstr "" "

\n" -" Geen boekingen gevonden.\n" +" Geen boekingsregels gevonden.\n" "

\n" " " #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1099,7 +1099,7 @@ msgid "Liability" msgstr "Passiva" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "Geef de volgorde weer bij het dagboek gerelateerd aan deze factuur." @@ -1174,10 +1174,10 @@ msgid "Features" msgstr "Opties" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1329,7 +1329,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Bank" @@ -1342,7 +1342,7 @@ msgstr "Begin van de periode" #. module: account #: view:account.tax:0 msgid "Refunds" -msgstr "Credits" +msgstr "Credit facturen" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 @@ -1574,7 +1574,7 @@ msgstr "Beginbalans" #. module: account #: view:account.invoice:0 msgid "Reset to Draft" -msgstr "Terugzetten naar Concept" +msgstr "Terugzetten naar concept" #. module: account #: view:account.aged.trial.balance:0 @@ -1629,7 +1629,7 @@ msgstr "Bankafschrift" #. module: account #: field:res.partner,property_account_receivable:0 msgid "Account Receivable" -msgstr "Debiteuren" +msgstr "Debiteuren rekening" #. module: account #: code:addons/account/account.py:612 @@ -1640,15 +1640,17 @@ msgid "%s (copy)" msgstr "%s (kopie)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Met saldo ongelijk aan 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1680,7 +1682,7 @@ msgstr "Aantal items" #. module: account #: field:account.automatic.reconcile,max_amount:0 msgid "Maximum write-off amount" -msgstr "Maximaal af te boeken bedrag" +msgstr "Maximaal afschrijf bedrag" #. module: account #. openerp-web @@ -1892,8 +1894,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Factuur" @@ -1980,7 +1984,7 @@ msgstr "" "overslaan optie mag niet zijn aangevinkt." #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "Een aantal regels zijns afgeltterd." @@ -2100,7 +2104,7 @@ msgstr "Voorlopige overzicht" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_validated msgid "Invoice validated" -msgstr "Factuur gevalideerd" +msgstr "Factuur bevestigd" #. module: account #: field:account.config.settings,module_account_check_writing:0 @@ -2142,36 +2146,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2185,8 +2189,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Fout!" @@ -2239,7 +2243,7 @@ msgid "period close" msgstr "Periode afsluiten" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2278,7 +2282,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" @@ -2325,7 +2329,7 @@ msgid "Analytic account" msgstr "Kostenplaats" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2431,7 +2435,9 @@ msgstr "Assets management" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Crediteuren rekening" @@ -2560,7 +2566,7 @@ msgstr "Grootboek BTW-grafieken" #: model:account.payment.term,name:account.account_payment_term_net #: model:account.payment.term,note:account.account_payment_term_net msgid "30 Net Days" -msgstr "30 dagen netto" +msgstr "30 dagen" #. module: account #: code:addons/account/account_cash_statement.py:256 @@ -2752,7 +2758,7 @@ msgid "Create an Account Based on this Template" msgstr "Maak een rekening gebaseerd op dit sjabloon" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2778,7 +2784,7 @@ msgid "Main Sequence" msgstr "Hoofdreeks" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2804,7 +2810,7 @@ msgid "Fiscal Positions" msgstr "Fiscale positie" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2913,7 +2919,7 @@ msgid "Account Model Entries" msgstr "Account Model Entries" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "IKB" @@ -2921,7 +2927,7 @@ msgstr "IKB" #. module: account #: field:product.template,supplier_taxes_id:0 msgid "Supplier Taxes" -msgstr "Inkoopbelastingen" +msgstr "Inkoop belastingen" #. module: account #: view:res.partner:0 @@ -2948,18 +2954,17 @@ msgid "" " " msgstr "" "

\n" -" Klik voor het maken van een journaalpost.\n" +" Klik voor het maken van een boeking.\n" "

\n" -" Een journaalpost bestaat uit verschillende boekingen. Elk " +" Een boeking bestaat uit verschillende boekingregels. Elk " "daarvan \n" " is ofwel een debet- of een credit-transactie. \n" "

\n" -" OpenERP genereert automatisch één journaalpost per " -"financieel\n" +" OpenERP genereert automatisch één boeking per financieel\n" " boekstuk: factuur, credit factuur, betaling aan een " "leverancier, bankafschrift, etc.).\n" -" U hoeft dus alleen/hoofdzakelijk handmatige journaalposten " -"aan te maken \n" +" U hoeft dus alleen/hoofdzakelijk handmatige boekingen aan te " +"maken \n" " voor memoriaal boekingen.\n" "

\n" " " @@ -3046,21 +3051,20 @@ msgid "Accounts" msgstr "Grootboekrekeningen" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Configuratiefout!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "Afschrift %s bevestigd, regels zijn aangemaakt." @@ -3257,7 +3261,7 @@ msgstr "" #. module: account #: field:account.move.line.reconcile,writeoff:0 msgid "Write-Off amount" -msgstr "Af te boeken bedrag" +msgstr "Afschrijf bedrag" #. module: account #: field:account.bank.statement,message_unread:0 @@ -3276,7 +3280,7 @@ msgstr "" "de 'Concept' of 'Proforma' status bevinden." #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "U dient de periodes te selecteren welke toebehoren aan het bedrijf." @@ -3289,7 +3293,7 @@ msgid "Sales by Account" msgstr "Verkopen per grootboekrekening" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "Het is niet mogelijk een geboekte regel te verwijderen \"%s\"." @@ -3305,8 +3309,8 @@ msgid "Sale journal" msgstr "Verkoopboek" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3368,7 +3372,7 @@ msgstr "Augustus" #. module: account #: field:accounting.report,debit_credit:0 msgid "Display Debit/Credit Columns" -msgstr "Debet/Credit kolom weergaven" +msgstr "Debet/Credit kolom weergeven" #. module: account #: selection:account.entries.report,month:0 @@ -3477,14 +3481,14 @@ msgid "Fiscal Position" msgstr "Fiscale positie" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" "Click on compute to update the tax base." msgstr "" "Belasting grondslag verschil!\n" -"Klik op berekenen om de belasting grondslag bij te werken" +"Klik op \"Bijwerken\" om de belasting grondslag bij te werken" #. module: account #: field:account.partner.ledger,page_split:0 @@ -3577,7 +3581,7 @@ msgstr "" "Binnenkomende transacties gebruiken altijd de dagkoers." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "Er is geen bovenliggende code voor deze rekening." @@ -3631,7 +3635,7 @@ msgstr "Model" #. module: account #: help:account.invoice.tax,base_code_id:0 msgid "The account basis of the tax declaration." -msgstr "De grootboekrekening van de belastingverklaring" +msgstr "De grootboekrekening van de belastingaangifte" #. module: account #: selection:account.account,type:0 @@ -3642,8 +3646,8 @@ msgid "View" msgstr "Aanzicht" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3777,10 +3781,10 @@ msgstr "" " \n" "

\n" "   REFERENTIES
\n" -"   Invoice number: ${object.number}
\n" -"   Invoice total: ${object.amount_total} " +"   Factuurnummer: ${object.number}
\n" +"   Factuur totaal: ${object.amount_total} " "${object.currency_id.name}
\n" -"   Invoice date: ${object.date_invoice}
\n" +"   Factuurdatum: ${object.date_invoice}
\n" " % if object.origin:\n" "   Order referentie: ${object.origin}
\n" " % endif\n" @@ -3994,7 +3998,7 @@ msgstr "" "makkelijker terug te vinden zijn." #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -4012,7 +4016,7 @@ msgid "Starting Balance" msgstr "Beginsaldo" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Geen relatie gedefinieerd!" @@ -4073,7 +4077,7 @@ msgstr "" "portaal." #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4136,7 +4140,7 @@ msgid "" " your supplier/customer." msgstr "" "U heeft de mogelijkheid om deze credit factuur\n" -" direct de bewerken en te valideren of " +" direct de bewerken en te bevestigen of " "deze\n" " in concept te laten staan en te wachten " "totdat u\n" @@ -4149,8 +4153,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 "" -"Alle geselecteerde boekingen worden gevalideerd en geboekt. Daarmee kunnen " -"de financiële gegevens ervan niet meer gewijzigd worden." +"Alle geselecteerde boekingen worden bevestigd en geboekt. Daarmee kunnen de " +"financiële gegevens ervan niet meer gewijzigd worden." #. module: account #: code:addons/account/account_move_line.py:98 @@ -4170,7 +4174,7 @@ msgstr "Transfers" #. module: account #: field:account.config.settings,expects_chart_of_accounts:0 msgid "This company has its own chart of accounts" -msgstr "Dit bedrijf heeft zijnerven grootboekschema" +msgstr "Dit bedrijf heeft zijn eigen grootboekschema" #. module: account #: view:account.chart:0 @@ -4243,7 +4247,7 @@ msgstr "Concept factuur" #. module: account #: view:account.config.settings:0 msgid "Options" -msgstr "Optie's" +msgstr "Opties" #. module: account #: field:account.aged.trial.balance,period_length:0 @@ -4251,7 +4255,7 @@ msgid "Period Length (days)" msgstr "Periode lengte (dagen)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -4307,7 +4311,7 @@ msgstr "Belastingbedrag" #. module: account #: view:account.move.line:0 msgid "Unreconciled Journal Items" -msgstr "Onafgeletterde boekingen" +msgstr "Onafgeletterde boekingsregels" #. module: account #: selection:account.account.type,close_method:0 @@ -4326,9 +4330,13 @@ msgid "VAT :" msgstr "BTW" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4419,7 +4427,7 @@ msgid "Chart of Accounts Template" msgstr "Template grootboekschema" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4431,8 +4439,10 @@ msgstr "" "nog een relatie definiëren!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4593,7 +4603,7 @@ msgid "Name" msgstr "Naam" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "Geen ongeconfigureerd bedrijf!" @@ -4668,8 +4678,8 @@ msgstr "" "op facturen." #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "U kunt een inactieve rekening niet gebruiken." @@ -4699,7 +4709,7 @@ msgid "Consolidated Children" msgstr "Geconsolideerde dochters" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4741,7 +4751,7 @@ msgstr "titel" #: view:account.invoice:0 #: view:account.subscription:0 msgid "Set to Draft" -msgstr "Naar Concept" +msgstr "Zet op concept" #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form @@ -4855,7 +4865,7 @@ msgstr "" #. module: account #: view:account.move.line:0 msgid "Posted Journal Items" -msgstr "Geboekte boekingen" +msgstr "Geboekte boekingsregels" #. module: account #: field:account.move.line,blocked:0 @@ -4915,7 +4925,7 @@ msgid "Cancel the Selected Invoices" msgstr "De geselecteerde facturen annuleren" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "U dient een kostenplaatsendagboek te koppelen aan het dagboek '%s'" @@ -4997,8 +5007,8 @@ msgid "Supplier invoice sequence" msgstr "Inkoopfactuur nummer reeks" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -5027,7 +5037,7 @@ msgstr "Rek. type" #. module: account #: selection:account.journal,type:0 msgid "Bank and Checks" -msgstr "Bank en Cheques." +msgstr "Bank en Cheques" #. module: account #: field:account.account.template,note:0 @@ -5063,12 +5073,12 @@ msgid "Account Base Code" msgstr "Grondslag" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." msgstr "" -"U dient ene rekening op te geven voor boeken van het betaal- en/of " +"U dient een rekening op te geven voor het boeken van het betaal- en/of " "koersverschil." #. module: account @@ -5098,7 +5108,7 @@ msgstr "" #: code:addons/account/report/common_report_header.py:68 #, python-format msgid "All Posted Entries" -msgstr "Alle mutaties" +msgstr "Alle geboekte boekingen" #. module: account #: field:report.aged.receivable,name:0 @@ -5133,7 +5143,7 @@ msgid "Statement from invoice or payment" msgstr "Afschrift vanaf factuur of betaling" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -5189,7 +5199,7 @@ msgid "Bank statements are entered in the system." msgstr "Bankafschriften zijn in het systeem geladen" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Afschrijving afletteren" @@ -5208,7 +5218,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 @@ -5224,7 +5234,7 @@ msgstr "Creditfacturen" #: view:account.move.line:0 #: model:ir.actions.act_window,name:account.action_account_manual_reconcile msgid "Journal Items to Reconcile" -msgstr "Af te letteren boekingen" +msgstr "Af te letteren boekingsregels" #. module: account #: model:ir.model,name:account.model_account_tax_template @@ -5286,7 +5296,7 @@ msgstr "" "rekening toebehoord aan een ander bedrijf." #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -5294,7 +5304,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." @@ -5305,7 +5315,7 @@ msgid "Based On" msgstr "Gebaseerd op" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "CIKB" @@ -5374,7 +5384,7 @@ msgstr "" "bedrijfsvaluta." #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "Inkoop belastigen %.2f%%" @@ -5451,7 +5461,7 @@ msgstr "" "transacties zijn afgerond, krijgt het de status 'Gereed'." #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "MEM" @@ -5559,7 +5569,7 @@ msgstr "Vandaag afgeletterde relaties" #. module: account #: help:account.invoice.tax,tax_code_id:0 msgid "The tax basis of the tax declaration." -msgstr "De grondslag van de belastingverklaring." +msgstr "De grondslag van de belastingaangifte" #. module: account #: view:account.addtmpl.wizard:0 @@ -5625,7 +5635,7 @@ msgid "Tax Application" msgstr "Belastingstoepassing" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5803,10 +5813,10 @@ msgstr "Kostenplaats balans -" #: field:account.vat.declaration,target_move:0 #: field:accounting.report,target_move:0 msgid "Target Moves" -msgstr "Doelrekening" +msgstr "Welke boekingen" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5893,7 +5903,7 @@ msgid "Internal Name" msgstr "Interne naam" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5924,7 +5934,7 @@ msgstr "Volgende relatie om af te letteren" #: field:account.invoice.tax,account_id:0 #: field:account.move.line,tax_code_id:0 msgid "Tax Account" -msgstr "Rekening" +msgstr "Belastingrekening" #. module: account #: model:account.financial.report,name:account.account_financial_report_balancesheet0 @@ -5968,7 +5978,7 @@ msgid "Compute Code (if type=code)" msgstr "Bereken code (if type=code)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -6111,7 +6121,7 @@ msgid "Recompute taxes and total" msgstr "Belastingen en totalen opnieuw berekenen" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -6144,7 +6154,7 @@ msgid "Amount Computation" msgstr "Bedrag berekening" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -6453,7 +6463,7 @@ msgid "Fixed Amount" msgstr "Vast Bedrag" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6469,7 +6479,7 @@ msgstr "Rekening automatisch afletteren" #: view:account.move:0 #: view:account.move.line:0 msgid "Journal Item" -msgstr "Journaal item" +msgstr "Boeking" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear_close @@ -6506,17 +6516,17 @@ msgid "Child Accounts" msgstr "Subrekeningen" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Mutatienaam (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" -msgstr "Boek af" +msgstr "Afschrijving" #. module: account #: view:account.entries.report:0 @@ -6539,7 +6549,7 @@ msgstr "Opbrengst" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Leverancier" @@ -6556,10 +6566,10 @@ msgstr "Maart" #. module: account #: report:account.analytic.account.journal:0 msgid "Account n°" -msgstr "Rekening n°" +msgstr "Rekeningnr." #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Vrije referentie" @@ -6569,7 +6579,9 @@ msgstr "Vrije referentie" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Debiteuren en crediteuren rekeningen" @@ -6694,7 +6706,7 @@ msgid "Filter by" msgstr "Filter op" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "U heeft een ongeldinge expressie \"%(...)s\" in uw model!" @@ -6724,7 +6736,7 @@ msgstr "Belasting rekening" #: 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 "Algemeen grootboek" +msgstr "Dagboek totalen" #. module: account #: help:account.move,state:0 @@ -6747,13 +6759,13 @@ msgid "Number of Days" msgstr "Aantal Dagen" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " "belong to chart of accounts \"%s\"." msgstr "" -"U kunt deze boeking niet valideren omdat rekening \"%s\" niet tot het " +"U kunt deze boeking niet bevestigen omdat rekening \"%s\" niet tot het " "rekeningschema \"%s\" behoort." #. module: account @@ -6899,7 +6911,7 @@ msgid "Models" msgstr "Modellen" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6911,7 +6923,7 @@ msgstr "" #. module: account #: field:product.template,taxes_id:0 msgid "Customer Taxes" -msgstr "Belastingen" +msgstr "Verkoop belastingen" #. module: account #: help:account.model,name:0 @@ -7079,7 +7091,7 @@ msgstr "Annuleer" #: model:account.account.type,name:account.data_account_type_receivable #: selection:account.entries.report,type:0 msgid "Receivable" -msgstr "Debiteuren" +msgstr "Debiteuren rekening" #. module: account #: constraint:account.move.line:0 @@ -7087,7 +7099,7 @@ msgid "You cannot create journal items on closed account." msgstr "Het is niet mogelijk om boekingen te maken op een gesloten rekening." #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -7111,7 +7123,7 @@ msgstr "" "De valuta van de rekening is niet gelijk aan de valuta van het bedrijf." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "Aangepast" @@ -7138,7 +7150,7 @@ msgid "Internal Transfers Account" msgstr "Interne overboekingen rekening" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "Controleer of het veld 'dagboek' is ingesteld bij de bankafschrift." @@ -7164,7 +7176,7 @@ msgid "Power" msgstr "Kracht" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "Het is niet mogelijk een ongebruikte rekeningcode te genereren" @@ -7249,12 +7261,12 @@ msgstr "" "belastingen. In dat geval bepaalt het de volgorde van berekeningen." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -7341,7 +7353,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Credit inkoopfactuur" @@ -7454,7 +7468,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 @@ -7493,7 +7507,7 @@ msgstr "Kostenplaats boekingen analyses" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Boekingen: " @@ -7610,7 +7624,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Fout !" @@ -7717,7 +7731,7 @@ msgstr "Geef grootboekrekening rapport weer met één relatie per pagina" #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "JRNL" -msgstr "DGBK" +msgstr "DB" #. module: account #: view:account.state.open:0 @@ -7846,7 +7860,7 @@ msgstr "" "De gekozen valuta moet worden gedeeld bij de standaard rekeningen." #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7927,7 +7941,7 @@ msgid "Done" msgstr "Verwerkt" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -8031,7 +8045,7 @@ msgstr "Maandelijkse omzet" #: view:account.move:0 #: view:account.move.line:0 msgid "Analytic Lines" -msgstr "Kostenplaats regels" +msgstr "Kostenplaatsregels" #. module: account #: field:account.analytic.journal,line_ids:0 @@ -8067,7 +8081,7 @@ msgstr "Referentie klant" #. module: account #: field:account.account.template,parent_id:0 msgid "Parent Account Template" -msgstr "Bovenliggerde grootboekkaart template" +msgstr "Bovenliggerde grootboekrekening sjabloon" #. module: account #: report:account.invoice:0 @@ -8129,7 +8143,7 @@ msgstr "Totaalbedrag dat deze klant aan u verschuldigd is." #. module: account #: view:account.move.line:0 msgid "Unbalanced Journal Items" -msgstr "Boekingen in onbelans" +msgstr "Boekingsregel niet in balans" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules @@ -8236,7 +8250,7 @@ msgstr "Rapportages" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -8308,7 +8322,7 @@ msgid "Use model" msgstr "Gebruik model" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -8375,7 +8389,7 @@ msgid "Root/View" msgstr "Basis/Weergave" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "OPEN" @@ -8444,7 +8458,7 @@ msgid "Maturity Date" msgstr "Vervaldatum" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Verkoopboek" @@ -8455,7 +8469,7 @@ msgid "Invoice Tax" msgstr "Invoice Tax" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Geen onderdeelnummer !" @@ -8502,7 +8516,7 @@ msgid "Sales Properties" msgstr "Verkoop instellingen" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -8529,7 +8543,7 @@ msgstr "Aan" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Valuta aaanpassing" @@ -8563,7 +8577,7 @@ msgid "May" msgstr "Mei" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -8606,7 +8620,7 @@ msgstr "Boekingsregels boeken" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Klant" @@ -8622,7 +8636,7 @@ msgstr "Rapportnaam" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Kas" @@ -8797,6 +8811,7 @@ msgstr "Vastgezet" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Waarschuwing!" @@ -8864,7 +8879,7 @@ msgid "Select a currency to apply on the invoice" msgstr "selectere een valuta. welke wordt toegepast op de factuur" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Geen factuurregels!" @@ -8888,7 +8903,7 @@ msgid "Tax Use In" msgstr "Belasting gebruikt in" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8899,7 +8914,7 @@ msgstr "" "(%.2f)." #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "De transactieregels zijn niet in een geldige status" @@ -8945,7 +8960,7 @@ msgid "Associated Partner" msgstr "Gekoppelde relatie" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Selecteer eerst een relatie" @@ -9026,13 +9041,13 @@ msgstr "" "toegevoegd in de berekening van de volgende belastingen." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Credit inkoopboek" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "Definieer een reeks voor dit dagboek." @@ -9131,7 +9146,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 @@ -9291,7 +9306,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "${object.company_id.name} Factuur (Ref ${object.number or 'n/b'})" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -9413,7 +9428,7 @@ msgid "The partner account used for this invoice." msgstr "De gebruikte relatie voor deze factuur" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Belasting %.2f%%" @@ -9431,7 +9446,7 @@ msgid "Payment Term Line" msgstr "Betalingsconditie regel" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Inkoopboek" @@ -9620,7 +9635,7 @@ msgid "Journal Name" msgstr "Naam dagboek" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Invoer \"%s\" is ongeldig !" @@ -9674,7 +9689,7 @@ msgstr "" "valuta boeking is." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "De boeking (%s) voor voor centralisatie is bevestigd." @@ -9739,7 +9754,7 @@ msgid "Reconciled entries" msgstr "Afgeletterde boekingen" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "Verkeerde model!" @@ -9761,7 +9776,7 @@ msgid "Print Account Partner Balance" msgstr "Afdrukken relatie rekeningen balans" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9805,7 +9820,7 @@ msgstr "onbekend" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Openingsbalans" @@ -9908,7 +9923,7 @@ msgid "Unit of Currency" msgstr "Valuta eenheid" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Credit verkoopboek" @@ -9977,13 +9992,13 @@ msgid "Purchase Tax(%)" msgstr "Inkoop belastingen (%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Maak factuurregels aan." #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9998,7 +10013,7 @@ msgid "Display Detail" msgstr "Details weergeven" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "CVKB" @@ -10094,7 +10109,7 @@ msgstr "Start periode" #. module: account #: model:ir.actions.report.xml,name:account.account_central_journal msgid "Central Journal" -msgstr "Centraal dagboek" +msgstr "Dagboek samenvatting" #. module: account #: field:account.aged.trial.balance,direction_selection:0 @@ -10178,8 +10193,8 @@ msgid "Receivable Account" msgstr "Debiteuren rekening" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "Om regels af te letteren moeten deze tot hetzelfde bedrijf behoren." @@ -10280,7 +10295,7 @@ msgid "Move" msgstr "Mutatie" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -10294,7 +10309,7 @@ msgstr "Datum / periode" #. module: account #: report:account.central.journal:0 msgid "A/C No." -msgstr "Rek. Nr." +msgstr "Reknr." #. module: account #: model:ir.actions.act_window,name:account.act_account_journal_2_account_bank_statement @@ -10383,7 +10398,7 @@ msgid "Balance :" msgstr "Saldo :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "Het is niet mogelijk om mutaties te maken voor meerdere bedrijven." @@ -10474,7 +10489,7 @@ msgid "Immediate Payment" msgstr "Directe betaling" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr " Centralisatie" @@ -10570,7 +10585,7 @@ msgid "Unreconciled" msgstr "Onafgeletterd" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Fout totaal !" @@ -10656,7 +10671,7 @@ msgstr "Code/Datum" #: model:ir.model,name:account.model_account_move_line #: model:ir.ui.menu,name:account.menu_action_account_moves_all msgid "Journal Items" -msgstr "Dagboekregels" +msgstr "Boekingsregels" #. module: account #: view:accounting.report:0 @@ -10664,7 +10679,7 @@ msgid "Comparison" msgstr "Vergelijking" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10764,7 +10779,7 @@ msgid "Journal Entry Model" msgstr "Boeking model" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "Start periode dient voor de eindproduct te liggen" @@ -11023,7 +11038,7 @@ msgstr "Niet-gerealiseerde winst of verlies" #: view:account.move:0 #: view:account.move.line:0 msgid "States" -msgstr "Provincies" +msgstr "Statussen" #. module: account #: help:product.category,property_account_income_categ:0 @@ -11068,6 +11083,7 @@ msgstr "Openen voor afletteren bank" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -11083,7 +11099,9 @@ msgstr "Openen voor afletteren bank" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -11092,6 +11110,7 @@ msgstr "Openen voor afletteren bank" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -11189,10 +11208,10 @@ msgstr "" "ongedaan gemaakt." #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" -msgstr "Niet ongeluk om belasting te wijzigen" +msgstr "Het is niet mogelijk om de belasting te wijzigen" #. module: account #: constraint:account.bank.statement:0 @@ -11234,7 +11253,7 @@ msgstr "Ga naar volgende relatie" #: view:account.automatic.reconcile:0 #: view:account.move.line.reconcile.writeoff:0 msgid "Write-Off Move" -msgstr "Afboekingen" +msgstr "Afschrijvingen" #. module: account #: model:process.node,note:account.process_node_paidinvoice0 @@ -11261,8 +11280,10 @@ msgstr "Rekening fiscale positie" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Inkoopfactuur" @@ -11314,7 +11335,7 @@ msgstr "Afgeletterde transacties" #. module: account #: model:ir.model,name:account.model_report_account_receivable msgid "Receivable accounts" -msgstr "Debiteuren" +msgstr "Debiteuren rekening" #. module: account #: code:addons/account/account_move_line.py:783 @@ -11354,8 +11375,10 @@ msgstr "" "wordt gebruikt voor afgeschreven rekeningen." #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Met mutaties" @@ -11452,7 +11475,7 @@ msgid "Entries Sorted by" msgstr "Boekingen gesorteerd op" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -11549,7 +11572,7 @@ msgstr "Installeer meer grootboekrekening sjablonen" #: report:account.general.journal:0 #: model:ir.actions.report.xml,name:account.account_general_journal msgid "General Journal" -msgstr "Algemeen dagboek" +msgstr "Dagboek totalen" #. module: account #: view:account.invoice:0 @@ -11560,6 +11583,8 @@ msgstr "Zoek factuur" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Crediteer" @@ -11634,7 +11659,7 @@ msgid "Manual Invoice Taxes" msgstr "Handmatige Factuur Belasting" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" @@ -11735,12 +11760,12 @@ msgstr "Bankrekening" #: 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 "Centraal dagboek" +msgstr "Dagboek samenvatting" #. module: account #: report:account.overdue:0 msgid "Maturity" -msgstr "Vervaldatum" +msgstr "Vervallen" #. module: account #: selection:account.aged.trial.balance,direction_selection:0 @@ -11750,7 +11775,7 @@ msgstr "Toekomst" #. module: account #: view:account.move.line:0 msgid "Search Journal Items" -msgstr "Zoek boekingen" +msgstr "Zoek boekingsregels" #. module: account #: help:account.tax,base_sign:0 diff --git a/addons/account/i18n/nl_BE.po b/addons/account/i18n/nl_BE.po index 139807ab49b..2ec44af4d85 100644 --- a/addons/account/i18n/nl_BE.po +++ b/addons/account/i18n/nl_BE.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-04-17 05:15+0000\n" -"X-Generator: Launchpad (build 16567)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:12+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: nl\n" #. module: account @@ -62,7 +62,7 @@ msgid "Residual" msgstr "Rest" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "Boekingslijn \"%s\" is niet geldig." @@ -78,9 +78,9 @@ msgid "Import from invoice or payment" msgstr "Importeren van factuur of betaling" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "Verkeerde rekening" @@ -134,15 +134,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -154,7 +154,7 @@ msgid "Warning!" msgstr "Waarschuwing!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Diversendagboek" @@ -376,7 +376,7 @@ msgid "Allow multi currencies" msgstr "Werken met meerdere munten" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "U moet een analytisch journaal instellen van het type '%s'." @@ -713,7 +713,7 @@ msgid "Profit Account" msgstr "Opbrengstenrekening" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -725,13 +725,13 @@ msgid "Report of the Sales by Account Type" msgstr "Verkopen per rekeningtype" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "VK" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "Kan geen boeking maken met een munt verschillend van .." @@ -791,7 +791,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Klanten" @@ -831,7 +833,7 @@ msgid "Are you sure you want to create entries?" msgstr "Bent u zeker dat u de boeking wilt uitvoeren?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "Factuur is gedeeltelijk betaald: %s%s of %s%s (%s%s blijft open)" @@ -902,7 +904,7 @@ msgid "Type" msgstr "Type" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -927,7 +929,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Aankoopfacturen en -creditnota's" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "De boeking is al afgepunt." @@ -1004,7 +1006,7 @@ msgstr "" " " #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1091,7 +1093,7 @@ msgid "Liability" msgstr "Passiva" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "Stel een reeks in voor het journaal van deze factuur." @@ -1165,10 +1167,10 @@ msgid "Features" msgstr "Mogelijkheden" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1321,7 +1323,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Bank" @@ -1633,15 +1635,17 @@ msgid "%s (copy)" msgstr "%s (kopie)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Met saldo verschillend van 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1883,8 +1887,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Factuur" @@ -1969,7 +1975,7 @@ msgstr "" "optie Status 'Voorlopig' overslaan mag niet zijn ingeschakeld." #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "Bepaalde boekingen zijn al afgepunt." @@ -2131,36 +2137,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2174,8 +2180,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Fout!" @@ -2227,7 +2233,7 @@ msgid "period close" msgstr "periode sluiten" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2313,7 +2319,7 @@ msgid "Analytic account" msgstr "Analytische rekening" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Kijk na of er een rekening voor dit journaal is gedefinieerd." @@ -2418,7 +2424,9 @@ msgstr "Afschrijvingen" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Te betalen rekeningen" @@ -2738,7 +2746,7 @@ msgid "Create an Account Based on this Template" msgstr "Maak een rekening op basis van deze sjabloon" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2764,7 +2772,7 @@ msgid "Main Sequence" msgstr "Hoofdvolgorde" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2790,7 +2798,7 @@ msgid "Fiscal Positions" msgstr "Fiscale posities" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "U kunt niet boeken op een afgesloten rekening %s %s." @@ -2898,7 +2906,7 @@ msgid "Account Model Entries" msgstr "Rekeningmodelboekingen" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "AK" @@ -3029,21 +3037,20 @@ msgid "Accounts" msgstr "Rekeningen" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Configuratiefout" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "Uittreksel %s is bevestigd; de boekingen zijn gemaakt." @@ -3253,7 +3260,7 @@ msgstr "" "niet Voorlopig of Pro forma is." #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "U moet perioden van dezelfde firma kiezen." @@ -3266,7 +3273,7 @@ msgid "Sales by Account" msgstr "Verkopen per rekening" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "U kunt de bevestigde boeking \"%s\" niet verwijderen." @@ -3282,8 +3289,8 @@ msgid "Sale journal" msgstr "Verkoopjournaal" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3452,7 +3459,7 @@ msgid "Fiscal Position" msgstr "Fiscale positie" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3552,7 +3559,7 @@ msgstr "" "transacties gebeuren altijd volgens de dagkoers." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "Er is geen hoofdcode voor de sjabloonrekening." @@ -3617,8 +3624,8 @@ msgid "View" msgstr "Weergave" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3970,7 +3977,7 @@ msgstr "" "het uittreksel zelf." #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3988,7 +3995,7 @@ msgid "Starting Balance" msgstr "Beginbalans" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Geen relatie gedefinieerd" @@ -4048,7 +4055,7 @@ msgstr "" "portaal van OpenERP." #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4221,7 +4228,7 @@ msgid "Period Length (days)" msgstr "Lengte periode (dagen)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -4295,9 +4302,13 @@ msgid "VAT :" msgstr "Btw:" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4387,7 +4398,7 @@ msgid "Chart of Accounts Template" msgstr "Sjablonen boekhoudplan" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4399,8 +4410,10 @@ msgstr "" "Gelieve een relatie in te stellen." #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4560,7 +4573,7 @@ msgid "Name" msgstr "Naam" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "Alle firma's zijn ingesteld." @@ -4634,8 +4647,8 @@ msgstr "" "afdrukken op facturen" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "Een niet-actieve rekening kan niet worden gebruikt." @@ -4665,7 +4678,7 @@ msgid "Consolidated Children" msgstr "Afhankelijke consolidatierekeningen" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4880,7 +4893,7 @@ msgid "Cancel the Selected Invoices" msgstr "De geselecteerde facturen annuleren" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "U moet een analytisch dagboek toekennen aan het '%s' journaal." @@ -4960,8 +4973,8 @@ msgid "Supplier invoice sequence" msgstr "Nummering aankoopfacturen" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -5026,7 +5039,7 @@ msgid "Account Base Code" msgstr "Rekening basisvak" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -5092,7 +5105,7 @@ msgid "Statement from invoice or payment" msgstr "Uittreksel van factuur of betaling" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -5147,7 +5160,7 @@ msgid "Bank statements are entered in the system." msgstr "Rekeninguittreksels worden in het systeem ingevoerd." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Afpunten met afschrijving" @@ -5241,7 +5254,7 @@ msgstr "" "U kunt geen rekening maken met een hoofdrekening van een andere firma." #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -5260,7 +5273,7 @@ msgid "Based On" msgstr "Op basis van" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "AKCN" @@ -5327,7 +5340,7 @@ msgstr "" "Voegt een kolom toe met de munt, indien deze verschilt van de firmamunt." #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "Aankoop-btw %.2f%%" @@ -5404,7 +5417,7 @@ msgstr "" "zijn voltooid, wordt de status 'Voltooid'." #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "DIV" @@ -5578,7 +5591,7 @@ msgid "Tax Application" msgstr "Btw-toepassing" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5757,7 +5770,7 @@ msgid "Target Moves" msgstr "Doelbewegingen" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5843,7 +5856,7 @@ msgid "Internal Name" msgstr "Interne naam" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5918,7 +5931,7 @@ msgid "Compute Code (if type=code)" msgstr "Berekende code (als type=code)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -6057,7 +6070,7 @@ msgid "Recompute taxes and total" msgstr "Btw en totaal herberekenen." #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -6088,7 +6101,7 @@ msgid "Amount Computation" msgstr "Berekend bedrag" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -6396,7 +6409,7 @@ msgid "Fixed Amount" msgstr "Vast bedrag" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6448,14 +6461,14 @@ msgid "Child Accounts" msgstr "Afhankelijke rekeningen" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Boekingsnaam (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Afschrijving" @@ -6481,7 +6494,7 @@ msgstr "Inkomsten" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Leverancier" @@ -6501,7 +6514,7 @@ msgid "Account n°" msgstr "Rekeningnr." #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Vrije referentie" @@ -6511,7 +6524,9 @@ msgstr "Vrije referentie" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Te ontvangen en te betalen" @@ -6632,7 +6647,7 @@ msgid "Filter by" msgstr "Filteren op" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "U heeft een verkeerde expressie \"%(...)s\" in uw model." @@ -6684,7 +6699,7 @@ msgid "Number of Days" msgstr "Aantal dagen" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6836,7 +6851,7 @@ msgid "Models" msgstr "Modellen" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -7022,7 +7037,7 @@ msgid "You cannot create journal items on closed account." msgstr "U kunt niet boeken op een afgesloten rekening." #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -7045,7 +7060,7 @@ msgid "The related account currency if not equal to the company one." msgstr "De gekoppelde munt indien deze verschilt van de firmamunt." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "Aangepast" @@ -7072,7 +7087,7 @@ msgid "Internal Transfers Account" msgstr "Interne overboekingen" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -7099,7 +7114,7 @@ msgid "Power" msgstr "Kracht" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "Kan geen ongebruikte journaalcode maken." @@ -7182,12 +7197,12 @@ msgstr "" "volgorde is belangrijk als u btw hebt met onderliggende btw-berekeningen." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -7270,7 +7285,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Aankoopcreditnota" @@ -7421,7 +7438,7 @@ msgstr "Statistieken analytische boekingen" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Boekingen: " @@ -7535,7 +7552,7 @@ msgstr "U kunt een rekening met boekingen niet verwijderen." #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Fout" @@ -7766,7 +7783,7 @@ msgstr "" "gedeeld." #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7846,7 +7863,7 @@ msgid "Done" msgstr "Voltooid" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -8150,7 +8167,7 @@ msgstr "Rapportering" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -8221,7 +8238,7 @@ msgid "Use model" msgstr "Model gebruiken" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -8292,7 +8309,7 @@ msgid "Root/View" msgstr "Root/weergave" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "OPEN" @@ -8361,7 +8378,7 @@ msgid "Maturity Date" msgstr "Vervaldatum" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Verkoopjournaal" @@ -8372,7 +8389,7 @@ msgid "Invoice Tax" msgstr "Factuur-btw" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Geen stuknummer" @@ -8418,7 +8435,7 @@ msgid "Sales Properties" msgstr "Verkoopeigenschappen" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -8444,7 +8461,7 @@ msgstr "Tot" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Muntaanpassing" @@ -8477,7 +8494,7 @@ msgid "May" msgstr "Mei" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "Globale btw gedefinieerd, maar niet op de factuurlijnen." @@ -8519,7 +8536,7 @@ msgstr "Boekingen definitief maken" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Klant" @@ -8535,7 +8552,7 @@ msgstr "Rapportnaam" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Kas" @@ -8706,6 +8723,7 @@ msgstr "Vast" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Waarschuwing" @@ -8774,7 +8792,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Kies de munt voor de factuur" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Geen factuurlijnen" @@ -8798,7 +8816,7 @@ msgid "Tax Use In" msgstr "Btw-type" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8808,7 +8826,7 @@ msgstr "" "Het verwachte saldo (%.2f) verschilt van het berekende saldo (%.2f)." #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "De boekingslijnen zijn niet geldig." @@ -8854,7 +8872,7 @@ msgid "Associated Partner" msgstr "Gekoppelde relatie" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "U moet eerst een relatie kiezen." @@ -8935,13 +8953,13 @@ msgstr "" "de volgende btw wordt berekend." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Aankoopcreditnotajournaal" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "Gelieve een reeks in te stellen voor het journaal." @@ -9198,7 +9216,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "${object.company_id.name} Factuur (Ref. ${object.number or 'nvt' })" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -9321,7 +9339,7 @@ msgid "The partner account used for this invoice." msgstr "De centralisatierekening voor deze factuur." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Btw %.2f%%" @@ -9339,7 +9357,7 @@ msgid "Payment Term Line" msgstr "Betalingslijn" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Aankoopjournaal" @@ -9525,7 +9543,7 @@ msgid "Journal Name" msgstr "Journaalnaam" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Boeking \"%s\" is ongeldig." @@ -9579,7 +9597,7 @@ msgstr "" "in meerdere munten." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "De beweging (%s) voor de centralisering is bevestigd." @@ -9643,7 +9661,7 @@ msgid "Reconciled entries" msgstr "Afgepunte boekingen" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "Verkeerde model" @@ -9665,7 +9683,7 @@ msgid "Print Account Partner Balance" msgstr "Relatiebalans afdrukken" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9708,7 +9726,7 @@ msgstr "onbekend" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Openingsjournaal" @@ -9808,7 +9826,7 @@ msgid "Unit of Currency" msgstr "Munteenheid" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Verkoopcreditnotajournaal" @@ -9877,13 +9895,13 @@ msgid "Purchase Tax(%)" msgstr "Aankoop-btw (%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Gelieve factuurlijnen toe te voegen." #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9898,7 +9916,7 @@ msgid "Display Detail" msgstr "Details tonen" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "VKCN" @@ -10073,8 +10091,8 @@ msgid "Receivable Account" msgstr "Klanten" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -10177,7 +10195,7 @@ msgid "Move" msgstr "Beweging" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -10278,7 +10296,7 @@ msgid "Balance :" msgstr "Saldo:" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "Kan geen boekingen maken tussen verschillende firma's." @@ -10369,7 +10387,7 @@ msgid "Immediate Payment" msgstr "Contante betaling" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr " Centralisering" @@ -10464,7 +10482,7 @@ msgid "Unreconciled" msgstr "Niet afgepunt" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Verkeerd totaal" @@ -10557,7 +10575,7 @@ msgid "Comparison" msgstr "Vergelijking" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10655,7 +10673,7 @@ msgid "Journal Entry Model" msgstr "Boekingsmodel" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "De beginperiode moet voor de eindperiode liggen" @@ -10958,6 +10976,7 @@ msgstr "Bank afpunten" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10973,7 +10992,9 @@ msgstr "Bank afpunten" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10982,6 +11003,7 @@ msgstr "Bank afpunten" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -11078,7 +11100,7 @@ msgstr "" "nakijken, want deze worden niet ongedaan gemaakt." #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "Kan btw niet veranderen" @@ -11150,8 +11172,10 @@ msgstr "Fiscale positie" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Aankoopfactuur" @@ -11243,8 +11267,10 @@ msgstr "" "gebruikt voor oude, ongebruikte rekeningen." #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Met bewegingen" @@ -11341,7 +11367,7 @@ msgid "Entries Sorted by" msgstr "Boekingen gesorteerd op" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -11445,6 +11471,8 @@ msgstr "Zoeken in facturen" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Creditnota" @@ -11519,7 +11547,7 @@ msgid "Manual Invoice Taxes" msgstr "Manuele factuur-btw" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "De betalingsvoorwaarde van de leverancier heeft geen betalingslijn." diff --git a/addons/account/i18n/oc.po b/addons/account/i18n/oc.po index c1c2c640a44..b36022b9324 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-16 05:16+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:09+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "Tipe" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "Modèl d'escritura comptabla" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "Afichatge" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "TVA :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "Nom" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "Enfants consolidats" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "Nom intèrne" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "Còde de Calcul (se tipe=còde)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "Montant fixe" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "Comptes enfant" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Ajustament" @@ -5966,7 +5979,7 @@ msgstr "Produches" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "Compte n°" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "Poténcia" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Liquiditats" @@ -8032,6 +8049,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "Nom del jornal" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "Compte clients" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "Desplaçar" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "Balança :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/pl.po b/addons/account/i18n/pl.po index e8b2594e7a7..8cb26bf97b5 100644 --- a/addons/account/i18n/pl.po +++ b/addons/account/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-16 05:16+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:09+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -59,7 +59,7 @@ msgid "Residual" msgstr "Pozostało" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "Zapis \"%s\" jest niedozwolony." @@ -75,9 +75,9 @@ msgid "Import from invoice or payment" msgstr "Importuj z faktur lub płatności" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "Niepoprawne konto!" @@ -133,15 +133,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -153,7 +153,7 @@ msgid "Warning!" msgstr "Uwaga!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Dziennik PK" @@ -198,7 +198,7 @@ msgstr "Etykieta kolumny" #. module: account #: help:account.config.settings,code_digits:0 msgid "No. of digits to use for account code" -msgstr "Liczba cyfr do generacji kodu konta" +msgstr "" #. module: account #: help:account.analytic.journal,type:0 @@ -359,7 +359,7 @@ msgid "Allow multi currencies" msgstr "Dozwól wielowalutowość" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "Musisz zdefiniować dziennik analityczny typu '%s'!" @@ -690,7 +690,7 @@ msgid "Profit Account" msgstr "Konto zysków" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "Nie znaleziono żadnego lub znaleziono kilka okresów dla tej daty." @@ -701,13 +701,13 @@ msgid "Report of the Sales by Account Type" msgstr "raport sprzedaży wg typu konta" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "DS" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "Nie mozna utworzyć zapisu w walucie innej niż .." @@ -765,7 +765,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Konta należności" @@ -805,7 +807,7 @@ msgid "Are you sure you want to create entries?" msgstr "Jesteś pewna, że chcesz utworzyć zapisy?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "Faktura częściowo zapłacona: %s%s of %s%s (pozostało %s%s)." @@ -876,7 +878,7 @@ msgid "Type" msgstr "Typ" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -901,7 +903,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Faktury i korekty od dostawców" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "Zapis jest już usgodniony." @@ -980,7 +982,7 @@ msgstr "" " " #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1064,7 +1066,7 @@ msgid "Liability" msgstr "Pasywa" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "Zdefiniuj kolejność w dzienniku dla tej faktury." @@ -1138,10 +1140,10 @@ msgid "Features" msgstr "Funkcjonalności" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1291,7 +1293,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Bank" @@ -1500,7 +1502,7 @@ msgstr "Wybierz okres początkowy i końcowy" #: 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 "Zayski i straty" +msgstr "Zyski i straty" #. module: account #: model:ir.model,name:account.model_account_account_template @@ -1600,15 +1602,17 @@ msgid "%s (copy)" msgstr "%s (kopia)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Z saldem różnym od zera" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1835,8 +1839,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Faktura" @@ -1921,7 +1927,7 @@ msgstr "" "stanu projekt." #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "Część zapisów jest juz uzgodnionych." @@ -2077,36 +2083,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2120,8 +2126,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Błąd!" @@ -2172,7 +2178,7 @@ msgid "period close" msgstr "zamknięcie okresu" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2256,7 +2262,7 @@ msgid "Analytic account" msgstr "Konto analityczne" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Sprawdź, czy konto jest zdefiniowane w dzienniku." @@ -2357,7 +2363,9 @@ msgstr "Środku trwałe" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Konta zobowiązań" @@ -2674,7 +2682,7 @@ msgid "Create an Account Based on this Template" msgstr "Utwórz konto według tego szablonu" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2699,7 +2707,7 @@ msgid "Main Sequence" msgstr "Sekwencja główna" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2723,7 +2731,7 @@ msgid "Fiscal Positions" msgstr "Obszary podatkowe" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "Nie możesz tworzyć pozycji zapisów na zamkniętym koncie %s %s." @@ -2831,7 +2839,7 @@ msgid "Account Model Entries" msgstr "Zapisy modelu kont" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "DZ" @@ -2963,21 +2971,20 @@ msgid "Accounts" msgstr "Konta" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Błąd konfiguracji!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "Wyciąg %s jest potwierdzony. Utworzono zapisy księgowe." @@ -3171,7 +3178,7 @@ msgstr "" "lub 'Pro-Forma'." #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "Musisz wybrać okres należący do tej samej firmy." @@ -3184,7 +3191,7 @@ msgid "Sales by Account" msgstr "Sprzedaż wg kont" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "Nie można usuwać zaksięgowanego zapisu \"%s\"." @@ -3200,8 +3207,8 @@ msgid "Sale journal" msgstr "Dziennik sprzedaży" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3367,7 +3374,7 @@ msgid "Fiscal Position" msgstr "Obszar podatkowy" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3467,7 +3474,7 @@ msgstr "" "zawsze stosują kurs dnia." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "Brak kodu nadrzędnego dla szblonu konta." @@ -3530,8 +3537,8 @@ msgid "View" msgstr "Widok" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3791,7 +3798,7 @@ msgstr "" "numer (nazwę) co wyciąg. To pozwala mieć te same numery wyciągów i zapisów." #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3808,7 +3815,7 @@ msgid "Starting Balance" msgstr "Saldo początkowe" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Nie zdefiniowano partnera !" @@ -3866,7 +3873,7 @@ msgstr "" "automatycznymi mailami lub w portalu OpenERP." #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4036,7 +4043,7 @@ msgid "Period Length (days)" msgstr "Długość okresu w dniach" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -4110,9 +4117,13 @@ msgid "VAT :" msgstr "NIP :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4205,7 +4216,7 @@ msgid "Chart of Accounts Template" msgstr "Szablon planów kont" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4217,8 +4228,10 @@ msgstr "" "Podaj partnera!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4378,7 +4391,7 @@ msgid "Name" msgstr "Nazwa" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "Nie ma nieskonfigurowanych firm" @@ -4451,8 +4464,8 @@ msgstr "" "Zaznacz tę opcję, jeśli nie chcesz aby podatki drukowały się na fakturach." #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "Nie można stosować niekatywnych kont." @@ -4482,7 +4495,7 @@ msgid "Consolidated Children" msgstr "Skonsolidowane podrzędne" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4690,7 +4703,7 @@ msgid "Cancel the Selected Invoices" msgstr "Anuluj zaznaczone faktury" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "Musisz związać dziennik analityczny z dziennikiem '%s' !" @@ -4759,8 +4772,8 @@ msgid "Supplier invoice sequence" msgstr "Numeracja faktur od dostawcy" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4825,7 +4838,7 @@ msgid "Account Base Code" msgstr "Rejstr główny" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4891,7 +4904,7 @@ msgid "Statement from invoice or payment" msgstr "Wyciąg z faktury lub płatności" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4945,7 +4958,7 @@ msgid "Bank statements are entered in the system." msgstr "Wyciągi bankowe zostały wprowadzone do systemu." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Odpisy uzgodnień" @@ -5040,7 +5053,7 @@ msgstr "" "Nie możesz utworzyć konta, którego konto nadrzędne ma inną firmę.." #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -5059,7 +5072,7 @@ msgid "Based On" msgstr "Bazując na" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "FZKZ" @@ -5127,7 +5140,7 @@ msgstr "" "waluta firmy." #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "Podatek zakupowy %.2f%%" @@ -5201,7 +5214,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5375,7 +5388,7 @@ msgid "Tax Application" msgstr "Zastosowanie podatku" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5442,7 +5455,7 @@ msgid "" "every accounting entries made on liquidity accounts per period." msgstr "" "W tym widoku możesz analizować swoje finanse. Pokazuje on obroty na kontach " -"w okresie." +"gotówkowych w okresie." #. module: account #: model:res.groups,name:account.group_account_manager @@ -5554,7 +5567,7 @@ msgid "Target Moves" msgstr "Zapisy docelowe" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5639,7 +5652,7 @@ msgid "Internal Name" msgstr "Nazwa wewnętrzna" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5714,7 +5727,7 @@ msgid "Compute Code (if type=code)" msgstr "Oblicz kod (jeśli typ = kod)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5848,7 +5861,7 @@ msgid "Recompute taxes and total" msgstr "Przelicz podatki i sumę" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "Nie możesz modyfikować/usuwać dziennika z zapisami w tym okresie." @@ -5878,7 +5891,7 @@ msgid "Amount Computation" msgstr "Obliczanie kwoty" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -6181,7 +6194,7 @@ msgid "Fixed Amount" msgstr "Kwota stała" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6234,14 +6247,14 @@ msgid "Child Accounts" msgstr "Konta podrzędne" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Nazwa zapisu (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Odpis" @@ -6267,7 +6280,7 @@ msgstr "Dochody" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Dostawca" @@ -6287,7 +6300,7 @@ msgid "Account n°" msgstr "Nr konta" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Odnośnik" @@ -6297,7 +6310,9 @@ msgstr "Odnośnik" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Konta należności i zobowiązań" @@ -6406,7 +6421,7 @@ msgid "Filter by" msgstr "Filtruj wg" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "Masz błędne wyrażenie \"%(...)s\" w twoim modelu !" @@ -6458,7 +6473,7 @@ msgid "Number of Days" msgstr "Liczba dni" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6610,7 +6625,7 @@ msgid "Models" msgstr "Modele" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6795,7 +6810,7 @@ msgid "You cannot create journal items on closed account." msgstr "Nie możesz tworzyć zapisów na zamknietym koncie" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "Firma z pozycji nie odpowiada firmie z faktury" @@ -6816,7 +6831,7 @@ msgid "The related account currency if not equal to the company one." msgstr "Waluta powiązanego konta nie jest zgodna z walutą firmy." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "Własne" @@ -6843,7 +6858,7 @@ msgid "Internal Transfers Account" msgstr "Konto wenętrznych przeksięgowań" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "Sprawdź, czy pole 'Dziennik' jest ustawione w wyciągu" @@ -6869,7 +6884,7 @@ msgid "Power" msgstr "Moc" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6951,12 +6966,12 @@ msgstr "" "wieloma podrzędnymi. W takim przypadku kolejność obliczeń ma znaczenie." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6977,7 +6992,7 @@ msgstr "Odrzuć" #: selection:account.account.template,type:0 #: view:account.journal:0 msgid "Liquidity" -msgstr "Likwidacja" +msgstr "Gotówkowe" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_journal_open_form @@ -7039,7 +7054,9 @@ msgstr "Nie możesz zmienić firmy konta, jeśli są na nim zapisy." #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Korekta od dostawcy" @@ -7190,7 +7207,7 @@ msgstr "Statystyka zapisów analitycznych" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Zapisy: " @@ -7303,7 +7320,7 @@ msgstr "Nie możesz usunąć konta, na którym sa zapisy." #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Błąd !" @@ -7526,7 +7543,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7599,7 +7616,7 @@ msgid "Done" msgstr "Wykonano" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7899,7 +7916,7 @@ msgstr "Raportowanie" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7970,7 +7987,7 @@ msgid "Use model" msgstr "Stosuj model" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -8035,7 +8052,7 @@ msgid "Root/View" msgstr "Widok/Korzeń" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "DO" @@ -8104,7 +8121,7 @@ msgid "Maturity Date" msgstr "Termin płatności" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Dziennik sprzedaży" @@ -8115,7 +8132,7 @@ msgid "Invoice Tax" msgstr "Podatek faktury" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Brak ilości !" @@ -8156,7 +8173,7 @@ msgid "Sales Properties" msgstr "Właściwości sprzedaży" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -8181,7 +8198,7 @@ msgstr "Do" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Poprawka walutowa" @@ -8213,7 +8230,7 @@ msgid "May" msgstr "Maj" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "Zdefiniowano globalne podatki ale ich nie ma w pozycjach !" @@ -8256,7 +8273,7 @@ msgstr "Zaksięguj zapisy dziennika" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Klient" @@ -8272,7 +8289,7 @@ msgstr "Nazwa raportu" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Gotówka" @@ -8357,7 +8374,7 @@ msgstr "Środek trwały" #. module: account #: field:account.bank.statement,balance_end:0 msgid "Computed Balance" -msgstr "Wyliczona salso" +msgstr "Wyliczone saldo" #. module: account #. openerp-web @@ -8444,6 +8461,7 @@ msgstr "Stały" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Ostrzeżenie !" @@ -8511,7 +8529,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Wybierz walutę dla faktury" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Brak pozycji faktury" @@ -8536,7 +8554,7 @@ msgid "Tax Use In" msgstr "Podatek zastosowany w" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8546,7 +8564,7 @@ msgstr "" "Spodziewany bilans (%.2f) jest inny od wyliczonego. (%.2f)" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Pozycje zapisów konta są w niedozwolonym stanie" @@ -8591,7 +8609,7 @@ msgid "Associated Partner" msgstr "Przypisany partner" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Musisz najpierw wybrać partnera" @@ -8672,13 +8690,13 @@ msgstr "" "następnych podatków." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Dziennik korekt zakupu" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "Zdefiniuj numerację w dzienniku" @@ -8932,7 +8950,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -9040,7 +9058,7 @@ msgid "The partner account used for this invoice." msgstr "Konto partnera stosowane dla tej faktury" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Podatek %.2f%%" @@ -9058,7 +9076,7 @@ msgid "Payment Term Line" msgstr "Pozycja warunków płatności" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Dziennik zakupów" @@ -9229,7 +9247,7 @@ msgid "Journal Name" msgstr "Nazwa dziennika" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Zapis \"%s\" jest niedozwolony !" @@ -9277,7 +9295,7 @@ msgid "" msgstr "Wartość wyrażona w drugiej walucie, jeśli zapis jest wielowalutowy." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -9341,7 +9359,7 @@ msgid "Reconciled entries" msgstr "Zapisy uzgodnione" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "Niepoprawny model!" @@ -9363,7 +9381,7 @@ msgid "Print Account Partner Balance" msgstr "Drukuj bilans partnera" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9403,7 +9421,7 @@ msgstr "nieznany" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Dziennik zapisów otwarcia" @@ -9500,7 +9518,7 @@ msgid "Unit of Currency" msgstr "Jednostka waluty" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Dziennik korekt sprzedaży" @@ -9570,13 +9588,13 @@ msgid "Purchase Tax(%)" msgstr "Podatek zakupu (%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Utwórz pozycje faktury." #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9589,7 +9607,7 @@ msgid "Display Detail" msgstr "Wyświetl szczegóły" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "FZKS" @@ -9761,8 +9779,8 @@ msgid "Receivable Account" msgstr "Konto należności" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "Do uzgodnień wszystkie zapisy muszą być z tej samej firmy." @@ -9863,7 +9881,7 @@ msgid "Move" msgstr "Zapis" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9966,7 +9984,7 @@ msgid "Balance :" msgstr "Saldo :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "Nie można tworzyć pozycji z różnych firm." @@ -10057,7 +10075,7 @@ msgid "Immediate Payment" msgstr "Płatność natychmiastowa" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr " Centralizacja" @@ -10152,7 +10170,7 @@ msgid "Unreconciled" msgstr "Skasowano uzgodnienie" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Zła suma !" @@ -10239,7 +10257,7 @@ msgid "Comparison" msgstr "Porównanie" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10331,7 +10349,7 @@ msgid "Journal Entry Model" msgstr "Model zapisów" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "Okres początkowy musi poprzedzać końcowy." @@ -10340,7 +10358,7 @@ msgstr "Okres początkowy musi poprzedzać końcowy." #: field:account.invoice,number:0 #: field:account.move,name:0 msgid "Number" -msgstr "Liczba" +msgstr "Numer" #. module: account #: report:account.analytic.account.journal:0 @@ -10631,6 +10649,7 @@ msgstr "Otwarte dla uzgodnienia bankowego" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10646,7 +10665,9 @@ msgstr "Otwarte dla uzgodnienia bankowego" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10655,6 +10676,7 @@ msgstr "Otwarte dla uzgodnienia bankowego" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10751,7 +10773,7 @@ msgstr "" "tych transakcji, bo one mogą być ciągle aktywne." #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "Nie można zmieniac podatku!" @@ -10823,8 +10845,10 @@ msgstr "Obszar podatkowy" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Faktura od dostawcy" @@ -10914,8 +10938,10 @@ msgstr "" "oznacza konto nieużywane." #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Ze zmianami stanu" @@ -11010,7 +11036,7 @@ msgid "Entries Sorted by" msgstr "Sortowanie zapisów" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -11091,6 +11117,8 @@ msgstr "Szukaj faktury" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Korekta" @@ -11163,7 +11191,7 @@ msgid "Manual Invoice Taxes" msgstr "Ręczne podatki faktur" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "Warunki płatności dostawcy nie mają pozycji." diff --git a/addons/account/i18n/pt.po b/addons/account/i18n/pt.po index 8d9bc4ee5a1..30b8a4a10d2 100644 --- a/addons/account/i18n/pt.po +++ b/addons/account/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-16 05:16+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:09+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -59,7 +59,7 @@ msgid "Residual" msgstr "Residual" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "Item diário \"%s\" não é válido." @@ -75,9 +75,9 @@ msgid "Import from invoice or payment" msgstr "Importar da fatura ou pagamento" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -133,15 +133,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -153,7 +153,7 @@ msgid "Warning!" msgstr "Aviso!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Diário Diverso" @@ -243,7 +243,7 @@ msgstr "Relatórios belgas" #. module: account #: model:mail.message.subtype,name:account.mt_invoice_validated msgid "Validated" -msgstr "" +msgstr "Validado" #. module: account #: model:account.account.type,name:account.account_type_income_view1 @@ -346,7 +346,7 @@ msgid "Allow multi currencies" msgstr "Permitir várias divisas" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "Deve definir um diário analítico do tipo '%s'!" @@ -667,7 +667,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -680,13 +680,13 @@ msgid "Report of the Sales by Account Type" msgstr "Relatório de Vendas por Tipo de Conta" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "SAJ" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -739,7 +739,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Contas a Receber" @@ -779,7 +781,7 @@ msgid "Are you sure you want to create entries?" msgstr "De certeza que quer criar os movimentos?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -848,7 +850,7 @@ msgid "Type" msgstr "Tipo" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -873,7 +875,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Faturas de fornecedores e Reembolsos" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -950,7 +952,7 @@ msgstr "" " " #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1034,7 +1036,7 @@ msgid "Liability" msgstr "Responsabilidade" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "Por favor, defina sequência no diário relacionado a esta fatura." @@ -1108,10 +1110,10 @@ msgid "Features" msgstr "Funcionalidades" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1237,7 +1239,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Banco" @@ -1544,15 +1546,17 @@ msgid "%s (copy)" msgstr "%s (cópia)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Com saldo diferente de 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1777,8 +1781,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Fatura" @@ -1853,7 +1859,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -2007,36 +2013,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2050,8 +2056,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Erro!" @@ -2093,7 +2099,7 @@ msgid "period close" msgstr "Fechar período" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2165,7 +2171,7 @@ msgid "Analytic account" msgstr "Conta Analítica" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Por favor verifique se a conta está definida no diário." @@ -2267,7 +2273,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Contas a pagar" @@ -2582,7 +2590,7 @@ msgid "Create an Account Based on this Template" msgstr "Criar uma conta baseada neste modelo" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2603,7 +2611,7 @@ msgid "Main Sequence" msgstr "Sequência principal" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2629,7 +2637,7 @@ msgid "Fiscal Positions" msgstr "Posições Fiscais" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "Não se pode criar entradas em diário numa conta já fechada %s %s." @@ -2737,7 +2745,7 @@ msgid "Account Model Entries" msgstr "Modelo de Movimentos da Conta" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "EXJ" @@ -2853,21 +2861,20 @@ msgid "Accounts" msgstr "Contas" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Erro de Configuração!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3061,7 +3068,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3074,7 +3081,7 @@ msgid "Sales by Account" msgstr "Vendas por conta" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3090,8 +3097,8 @@ msgid "Sale journal" msgstr "Diário de vendas" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3258,7 +3265,7 @@ msgid "Fiscal Position" msgstr "Posição Fiscal" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3357,7 +3364,7 @@ msgstr "" "ter de usar o câmbio do dia. Nas compras é sempre usado o câmbio do dia." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3420,8 +3427,8 @@ msgid "View" msgstr "Vista" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3691,7 +3698,7 @@ msgstr "" "mesmas referências que o extracto em si." #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3706,7 +3713,7 @@ msgid "Starting Balance" msgstr "Saldo inicial" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Nenhum parceiro definido!" @@ -3759,7 +3766,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3909,7 +3916,7 @@ msgid "Period Length (days)" msgstr "Duração do período (dias)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3978,9 +3985,13 @@ msgid "VAT :" msgstr "Nº Contribuinte :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4070,7 +4081,7 @@ msgid "Chart of Accounts Template" msgstr "Template do Plano de Contas" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4082,8 +4093,10 @@ msgstr "" "Por favor defina os Paceiros na mesma!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4242,7 +4255,7 @@ msgid "Name" msgstr "Nome" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4315,8 +4328,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "Não se pode usar uma conta inativa." @@ -4346,7 +4359,7 @@ msgid "Consolidated Children" msgstr "Dependentes consolidados" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4556,7 +4569,7 @@ msgid "Cancel the Selected Invoices" msgstr "Cancelar as faturas selecionadas" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "Tem que atribuir um diário analítico sobre o diário '%s'!" @@ -4627,8 +4640,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4691,7 +4704,7 @@ msgid "Account Base Code" msgstr "Código de Conta Base" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4757,7 +4770,7 @@ msgid "Statement from invoice or payment" msgstr "Extrato a partir de fatura ou pagamento" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4811,7 +4824,7 @@ msgid "Bank statements are entered in the system." msgstr "Extratos bancários são introduzidos no sistema." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Reconcilie Acertos" @@ -4908,7 +4921,7 @@ msgstr "" "outra empresa." #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4923,7 +4936,7 @@ msgid "Based On" msgstr "Baseado em" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -4989,7 +5002,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "Imposto da Compra %.2f%%" @@ -5063,7 +5076,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "MISC" @@ -5235,7 +5248,7 @@ msgid "Tax Application" msgstr "Aplicação do imposto" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5306,7 +5319,7 @@ msgstr "" #. module: account #: model:res.groups,name:account.group_account_manager msgid "Financial Manager" -msgstr "" +msgstr "Gestor financeiro" #. module: account #: field:account.journal,group_invoice_lines:0 @@ -5412,7 +5425,7 @@ msgid "Target Moves" msgstr "Movimentos alvo" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5496,7 +5509,7 @@ msgid "Internal Name" msgstr "Nome Interno" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5568,7 +5581,7 @@ msgid "Compute Code (if type=code)" msgstr "Processar código (se tipo=código)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5699,7 +5712,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5729,7 +5742,7 @@ msgid "Amount Computation" msgstr "Processamento de Conta" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -6029,7 +6042,7 @@ msgid "Fixed Amount" msgstr "Montante Fixo" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6080,14 +6093,14 @@ msgid "Child Accounts" msgstr "Conta-filha" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Nome movimento (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Fechar" @@ -6113,7 +6126,7 @@ msgstr "Receita" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Fornecedor" @@ -6133,7 +6146,7 @@ msgid "Account n°" msgstr "Conta nº" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Referência livre" @@ -6143,7 +6156,9 @@ msgstr "Referência livre" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Contas a receber e a pagar" @@ -6253,7 +6268,7 @@ msgid "Filter by" msgstr "Filtrar por" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "Tem um erro de expressão \"%(...)s\" no seu modelo!" @@ -6301,7 +6316,7 @@ msgid "Number of Days" msgstr "Numero de dias" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6451,7 +6466,7 @@ msgid "Models" msgstr "Modelos" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6628,7 +6643,7 @@ msgid "You cannot create journal items on closed account." msgstr "Não se pode criar entradas em diário numa conta já fechada." #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6649,7 +6664,7 @@ msgid "The related account currency if not equal to the company one." msgstr "A moeda da conta não é igual à moeda da empresa" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6676,7 +6691,7 @@ msgid "Internal Transfers Account" msgstr "Conta de transferências internas" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6702,7 +6717,7 @@ msgid "Power" msgstr "Energia" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "Não é possível gerar um código Diário não utilizado." @@ -6778,12 +6793,12 @@ msgstr "" "vários impostos dependentes. Neste caso a ordem de avaliação é importante." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6870,7 +6885,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Nota de crédito de fornecedores" @@ -7015,7 +7032,7 @@ msgstr "Estatísticas de Movimentos Analíticos" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Movimentos: " @@ -7128,7 +7145,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Erro !" @@ -7359,7 +7376,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7383,7 +7400,7 @@ msgstr "" #. module: account #: field:account.invoice,paypal_url:0 msgid "Paypal Url" -msgstr "" +msgstr "Endereço Paypal" #. module: account #: field:account.config.settings,module_account_voucher:0 @@ -7440,7 +7457,7 @@ msgid "Done" msgstr "Concluído" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7736,7 +7753,7 @@ msgstr "Relatórios" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7802,7 +7819,7 @@ msgid "Use model" msgstr "Usar modelo" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7853,7 +7870,7 @@ msgid "Root/View" msgstr "Origem / Vista" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "OPEJ" @@ -7922,7 +7939,7 @@ msgid "Maturity Date" msgstr "Data de vencimento" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Diário de Vendas" @@ -7933,7 +7950,7 @@ msgid "Invoice Tax" msgstr "Taxa de faturação" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Nenhum número à parte !" @@ -7977,7 +7994,7 @@ msgid "Sales Properties" msgstr "Propriedades da venda" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -8002,7 +8019,7 @@ msgstr "Para" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Ajustar Moeda" @@ -8036,7 +8053,7 @@ msgid "May" msgstr "Maio" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -8080,7 +8097,7 @@ msgstr "Movimentos de diário publicados" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Cliente" @@ -8096,7 +8113,7 @@ msgstr "Nome do relatório" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Dinheiro" @@ -8268,6 +8285,7 @@ msgstr "Fixo" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Aviso!" @@ -8335,7 +8353,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Selecione uma Moeda a aplicar à fatura" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Não há linhas na fatura!" @@ -8360,7 +8378,7 @@ msgid "Tax Use In" msgstr "Imposto usado em" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8370,7 +8388,7 @@ msgstr "" "O equilíbrio esperado (%.2f) é diferente do calculado um. (%.2f)" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "As linhas de movimentos de conta não estão no estado valido" @@ -8415,7 +8433,7 @@ msgid "Associated Partner" msgstr "Parceiro associado" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Primeiro deve selecionar um parceiro !" @@ -8496,13 +8514,13 @@ msgstr "" "antes processar os próximos impostos." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Diário de retorno de compras" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8749,7 +8767,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8858,7 +8876,7 @@ msgid "The partner account used for this invoice." msgstr "A conta do parceiro usada para esta fatura." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Imposto %.2f%%" @@ -8876,7 +8894,7 @@ msgid "Payment Term Line" msgstr "Linha de prazos de pagamento" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Diário de Compra" @@ -9047,7 +9065,7 @@ msgid "Journal Name" msgstr "Nome do Diário" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "A entada \"%s\" não é valida !" @@ -9098,7 +9116,7 @@ msgstr "" "moeda." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -9161,7 +9179,7 @@ msgid "Reconciled entries" msgstr "Movimentos reconciliados" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "Modelo errado !" @@ -9183,7 +9201,7 @@ msgid "Print Account Partner Balance" msgstr "Imprima o Saldo de Conta do Terceiro" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9223,7 +9241,7 @@ msgstr "desconhecido" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Diário de Abertura" @@ -9320,7 +9338,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Diário de notas de crédito de vendas" @@ -9386,13 +9404,13 @@ msgid "Purchase Tax(%)" msgstr "Imposto para compras (%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Por favor, crie primeiro algumas linhas na fatura" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9405,7 +9423,7 @@ msgid "Display Detail" msgstr "Mostrar detalhes" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "SCNJ" @@ -9567,8 +9585,8 @@ msgid "Receivable Account" msgstr "Conta a Receber" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9671,7 +9689,7 @@ msgid "Move" msgstr "Movimento" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9749,7 +9767,7 @@ msgstr "" #. module: account #: field:account.invoice,sent:0 msgid "Sent" -msgstr "" +msgstr "Enviado" #. module: account #: model:ir.actions.act_window,name:account.action_account_common_menu @@ -9768,7 +9786,7 @@ msgid "Balance :" msgstr "Saldo:" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9856,13 +9874,13 @@ msgstr "Data de vencimento" #: 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 "Pagamento imediato" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" -msgstr "" +msgstr " Centralização" #. module: account #: help:account.journal,type:0 @@ -9955,7 +9973,7 @@ msgid "Unreconciled" msgstr "Desconciliado" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Mau total !" @@ -10006,7 +10024,7 @@ msgstr "A partir das contas analíticas" #. module: account #: view:account.installer:0 msgid "Configure your Fiscal Year" -msgstr "" +msgstr "Configure o seu ano fiscal" #. module: account #: field:account.period,name:0 @@ -10049,7 +10067,7 @@ msgid "Comparison" msgstr "Comparação" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10138,7 +10156,7 @@ msgid "Journal Entry Model" msgstr "Modelo de Movimento de Diário" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10440,6 +10458,7 @@ msgstr "Abrir para reconciliação bancária" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10455,7 +10474,9 @@ msgstr "Abrir para reconciliação bancária" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10464,6 +10485,7 @@ msgstr "Abrir para reconciliação bancária" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10559,7 +10581,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10628,8 +10650,10 @@ msgstr "Posição Fiscal de Contas" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Fatura do fornecedor" @@ -10720,8 +10744,10 @@ msgstr "" "fechada por contas depreciadas." #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Com movimentos" @@ -10817,7 +10843,7 @@ msgid "Entries Sorted by" msgstr "Entradas classificadas por" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10898,6 +10924,8 @@ msgstr "Procurar fatura" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Estornar" @@ -10969,7 +10997,7 @@ msgid "Manual Invoice Taxes" msgstr "Imposto de faturação manual" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/pt_BR.po b/addons/account/i18n/pt_BR.po index d1816589139..488d87bce8f 100644 --- a/addons/account/i18n/pt_BR.po +++ b/addons/account/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-04-19 05:24+0000\n" -"X-Generator: Launchpad (build 16567)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:12+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -61,7 +61,7 @@ msgid "Residual" msgstr "Residual" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "Item do diário \"%s\" inválido." @@ -77,9 +77,9 @@ msgid "Import from invoice or payment" msgstr "Importar da fatura ou do pagamento" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "Conta Inválida!" @@ -135,15 +135,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -155,7 +155,7 @@ msgid "Warning!" msgstr "Aviso!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Diário Diversos" @@ -377,7 +377,7 @@ msgid "Allow multi currencies" msgstr "Permite multi moedas" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "Você deve definir um diário analítico do tipo '% s'!" @@ -716,7 +716,7 @@ msgid "Profit Account" msgstr "Conta de Resultados" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -729,13 +729,13 @@ msgid "Report of the Sales by Account Type" msgstr "Relatório de vendas por tipo de conta" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "DV" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "Não é possível criar movimento com moeda diferente .." @@ -795,7 +795,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Contas de Recebíveis" @@ -835,7 +837,7 @@ msgid "Are you sure you want to create entries?" msgstr "Voce tem certeza que deseja criar lançamentos?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "Fatura parcialmente paga: %s%s de %s%s (%s%s restantes)." @@ -906,7 +908,7 @@ msgid "Type" msgstr "Tipo" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -931,7 +933,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Faturas de Fornecedores e Reembolsos" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "Entrada já reconciliada" @@ -1009,7 +1011,7 @@ msgstr "" " " #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1095,7 +1097,7 @@ msgid "Liability" msgstr "Responsabilidade" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "Defina a sequencia do diário referente a essa fatura." @@ -1169,10 +1171,10 @@ msgid "Features" msgstr "Recursos" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1323,7 +1325,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Banco" @@ -1634,15 +1636,17 @@ msgid "%s (copy)" msgstr "%s (cópia)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Com saldo diferente de zero" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1882,8 +1886,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Fatura" @@ -1969,7 +1975,7 @@ msgstr "" "provisório marcado." #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "Algumas entradas já estão reconciliadas" @@ -2133,36 +2139,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2176,8 +2182,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Erro!" @@ -2229,7 +2235,7 @@ msgid "period close" msgstr "fechar período" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2317,7 +2323,7 @@ msgid "Analytic account" msgstr "Conta analítica" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Por favor verifique se uma conta está definida no diário." @@ -2423,7 +2429,9 @@ msgstr "Gestão Patrimonial" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Contas a Pagar" @@ -2742,7 +2750,7 @@ msgid "Create an Account Based on this Template" msgstr "Criar uma Conta baseada neste modelo" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2768,7 +2776,7 @@ msgid "Main Sequence" msgstr "Sequencia Principal" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2794,7 +2802,7 @@ msgid "Fiscal Positions" msgstr "Posições fiscais" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "Não é possível criar um item de diário em uma conta fechada %s %s." @@ -2903,7 +2911,7 @@ msgid "Account Model Entries" msgstr "Modelo de Entrada de Contas" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "DC" @@ -3036,21 +3044,20 @@ msgid "Accounts" msgstr "Contas" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Erro de Configuração!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "Demonstrativo %s confirmado, itens de diário foram criados." @@ -3264,7 +3271,7 @@ msgstr "" "'Provisória' ou 'Pro-Forma'." #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "Você deve escolher os períodos que pertencem à mesma empresa." @@ -3277,7 +3284,7 @@ msgid "Sales by Account" msgstr "Vendas por Conta" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "Você não pode excluir uma entrada de diário postada \"%s\"." @@ -3293,8 +3300,8 @@ msgid "Sale journal" msgstr "Diário de Vendas" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3465,7 +3472,7 @@ msgid "Fiscal Position" msgstr "Posição Fiscal" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3565,7 +3572,7 @@ msgstr "" "de entrada sempre usam a taxa do dia." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "Não há código de pai para o modelo de conta." @@ -3630,8 +3637,8 @@ msgid "View" msgstr "Visualizar" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BCO" @@ -3985,7 +3992,7 @@ msgstr "" "lançamentos no extrato terem as mesmas referências que os extrato em si" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -4003,7 +4010,7 @@ msgid "Starting Balance" msgstr "Saldo Inicial" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Nenhum Parceiro definido!" @@ -4063,7 +4070,7 @@ msgstr "" "automáticos ou através do portal do OpenERP ." #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4239,7 +4246,7 @@ msgid "Period Length (days)" msgstr "Duração do período (dias)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -4313,9 +4320,13 @@ msgid "VAT :" msgstr "IVA (Imposto de Valor Agregado) :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4407,7 +4418,7 @@ msgid "Chart of Accounts Template" msgstr "Modelo de Plano de Contas" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4419,8 +4430,10 @@ msgstr "" "Por favor, defina o parceiro sobre ela!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4582,7 +4595,7 @@ msgid "Name" msgstr "Nome" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "Nenhuma empresa sem configuração!" @@ -4657,8 +4670,8 @@ msgstr "" "Código de imposto apareça nas faturas." #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "Você não pode usar uma conta inativa." @@ -4688,7 +4701,7 @@ msgid "Consolidated Children" msgstr "Dependentes consolidados" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4904,7 +4917,7 @@ msgid "Cancel the Selected Invoices" msgstr "Cancelar as Faturas Selecionadas" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "Você tem que atribuir um diário analítico no diário '%s' !" @@ -4986,8 +4999,8 @@ msgid "Supplier invoice sequence" msgstr "Seqüência de fatura do fornecedor" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -5052,7 +5065,7 @@ msgid "Account Base Code" msgstr "Código Base da Conta" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -5120,7 +5133,7 @@ msgid "Statement from invoice or payment" msgstr "Demonstrativo da fatura ou pagamento" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -5176,7 +5189,7 @@ msgid "Bank statements are entered in the system." msgstr "Extratos Bancários são lançados no sistema." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Reconciliar o Ajuste" @@ -5272,7 +5285,7 @@ msgstr "" "Você não pode criar uma conta que tem conta-pai de empresa diferente." #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -5291,7 +5304,7 @@ msgid "Based On" msgstr "Baseado Em" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "DRC" @@ -5359,7 +5372,7 @@ msgstr "" "moeda da empresa." #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "Impostos de Compra %.2f%%" @@ -5436,7 +5449,7 @@ msgstr "" "transações são feitas, a situação muda para 'Concluído'." #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "DIVER" @@ -5610,7 +5623,7 @@ msgid "Tax Application" msgstr "Aplicação de Impostos" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5791,7 +5804,7 @@ msgid "Target Moves" msgstr "Movimentos de destino" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5878,7 +5891,7 @@ msgid "Internal Name" msgstr "Nome Interno" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5953,7 +5966,7 @@ msgid "Compute Code (if type=code)" msgstr "Computar Código (se tipo=código)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -6095,7 +6108,7 @@ msgid "Recompute taxes and total" msgstr "Recalcular impostos e total" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -6127,7 +6140,7 @@ msgid "Amount Computation" msgstr "Calcular Valor" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -6436,7 +6449,7 @@ msgid "Fixed Amount" msgstr "Valor fixo" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6488,14 +6501,14 @@ msgid "Child Accounts" msgstr "Sub-contas" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Nome da movimentação (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Ajuste" @@ -6521,7 +6534,7 @@ msgstr "Receita" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Fornecedor" @@ -6541,7 +6554,7 @@ msgid "Account n°" msgstr "Conta n°" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Referencia livre" @@ -6551,7 +6564,9 @@ msgstr "Referencia livre" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Contas de Pagamento e Recebimento" @@ -6675,7 +6690,7 @@ msgid "Filter by" msgstr "Filtrar por" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "Você tem um erro de expressão \"%(...) s\" no seu modelo!" @@ -6728,7 +6743,7 @@ msgid "Number of Days" msgstr "Numero de dias" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6880,7 +6895,7 @@ msgid "Models" msgstr "Modelos" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -7068,7 +7083,7 @@ msgid "You cannot create journal items on closed account." msgstr "Você não pode criar itens de diário em uma conta fechada." #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "A empresa da linha da fatura e a empresa da fatura são diferentes" @@ -7089,7 +7104,7 @@ msgid "The related account currency if not equal to the company one." msgstr "A moeda da conta relacionada é diferente da moeda da empresa." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "Personalizado" @@ -7116,7 +7131,7 @@ msgid "Internal Transfers Account" msgstr "Conta de Transferência Interna" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -7143,7 +7158,7 @@ msgid "Power" msgstr "Potência" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "Não é possível gerar um código de diário não utilizado." @@ -7227,12 +7242,12 @@ msgstr "" "dependentes/derivados." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -7320,7 +7335,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Reembolso de Fornecedor" @@ -7471,7 +7488,7 @@ msgstr "Estatísticas de Lançamentos Analíticos" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Lancamentos: " @@ -7586,7 +7603,7 @@ msgstr "Você não pode remover uma conta que contém itens de diário." #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Erro!" @@ -7822,7 +7839,7 @@ msgstr "" "A moeda escolhida deve ser partilhada pelas contas padrão também." #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7902,7 +7919,7 @@ msgid "Done" msgstr "Concluído" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -8208,7 +8225,7 @@ msgstr "Relatórios" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -8279,7 +8296,7 @@ msgid "Use model" msgstr "Usar modelo" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -8348,7 +8365,7 @@ msgid "Root/View" msgstr "Origem/Visualização" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "OPEJ" @@ -8417,7 +8434,7 @@ msgid "Maturity Date" msgstr "Data de Vencimento" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Diário de Vendas" @@ -8428,7 +8445,7 @@ msgid "Invoice Tax" msgstr "Impostos da Fatura" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Nenhum número da parte!" @@ -8474,7 +8491,7 @@ msgid "Sales Properties" msgstr "Propriedades da Venda" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -8501,7 +8518,7 @@ msgstr "Para" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Ajuste de Moeda" @@ -8534,7 +8551,7 @@ msgid "May" msgstr "Maio" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "Impostos globais definido, mas não se encontram em linhas de fatura!" @@ -8576,7 +8593,7 @@ msgstr "Postar Lançamentos de Diário" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Cliente" @@ -8592,7 +8609,7 @@ msgstr "Nome do Relatório" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Dinheiro" @@ -8766,6 +8783,7 @@ msgstr "Fixo" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Aviso!" @@ -8833,7 +8851,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Selecione uma moeda para ser usada na fatura" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Sem Linhas na Fatura!" @@ -8858,7 +8876,7 @@ msgid "Tax Use In" msgstr "Usar Imposto em" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8868,7 +8886,7 @@ msgstr "" "O saldo experado (%.2f) é diferente do saldo calculado (%.2f)" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "As linhas de lançamentos de conta não estão em formato válido." @@ -8914,7 +8932,7 @@ msgid "Associated Partner" msgstr "Parceiro Associado" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Voce precisa primeiro selecionar um parceiro!" @@ -8995,13 +9013,13 @@ msgstr "" "antes do cálculo dos próximos impostos." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Diário de Devolução de Compra" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "Por favor defina a sequência no diário." @@ -9261,7 +9279,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "${object.company_id.name} Fatura (Ref ${object.number or 'n/a'})" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -9386,7 +9404,7 @@ msgid "The partner account used for this invoice." msgstr "A conta do parceiro usada para esta fatura" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Imposto %.2f%%" @@ -9404,7 +9422,7 @@ msgid "Payment Term Line" msgstr "Linha da condição de pagamento" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Diário de Compras" @@ -9592,7 +9610,7 @@ msgid "Journal Name" msgstr "Nome do Diário" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Lançamento \"%s\" não é válido" @@ -9645,7 +9663,7 @@ msgstr "" "moeda" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "O movimento da conta (%s) para a centralização foi confirmada." @@ -9710,7 +9728,7 @@ msgid "Reconciled entries" msgstr "Lançamentos reconciliados" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "Modelo errado!" @@ -9732,7 +9750,7 @@ msgid "Print Account Partner Balance" msgstr "Imprime o Saldo da Conta de Parceiro" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9775,7 +9793,7 @@ msgstr "desconhecido" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Diário de Abertura de Lançamentos" @@ -9876,7 +9894,7 @@ msgid "Unit of Currency" msgstr "Unidade da Moeda" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Diário de Devolução de Vendas" @@ -9914,7 +9932,7 @@ msgstr "Situação do fechamento de Ano Fiscal e períodos" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 msgid "Purchase refund journal" -msgstr "Diário de Devolução de Vendas" +msgstr "Diário de Devolução de Compras" #. module: account #: view:account.analytic.line:0 @@ -9946,13 +9964,13 @@ msgid "Purchase Tax(%)" msgstr "Imposto de Compra(%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Por favor, crie algumas linhas da fatura." #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9967,7 +9985,7 @@ msgid "Display Detail" msgstr "Mostrar Detalhes" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "DRV" @@ -10142,8 +10160,8 @@ msgid "Receivable Account" msgstr "Conta de Recebimento" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "Para reconciliar, a empresa deve ser a mesma para todas as entradas." @@ -10244,7 +10262,7 @@ msgid "Move" msgstr "Movimento" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -10347,7 +10365,7 @@ msgid "Balance :" msgstr "Saldo:" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "Não é possível criar movimentos para empresas diferentes." @@ -10438,7 +10456,7 @@ msgid "Immediate Payment" msgstr "Pagamento Imediato" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr " Centralização" @@ -10534,7 +10552,7 @@ msgid "Unreconciled" msgstr "Não Conciliado" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Total inválido!" @@ -10628,7 +10646,7 @@ msgid "Comparison" msgstr "Comparação" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10727,7 +10745,7 @@ msgid "Journal Entry Model" msgstr "Modelo de Lançamento de Diário" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "O período inicial deve vir antes do período final." @@ -11031,6 +11049,7 @@ msgstr "Aberto para reconciliação bancária" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -11046,7 +11065,9 @@ msgstr "Aberto para reconciliação bancária" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -11055,6 +11076,7 @@ msgstr "Aberto para reconciliação bancária" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -11154,7 +11176,7 @@ msgstr "" "automaticamente" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "Não é possível alterar o imposto!" @@ -11227,8 +11249,10 @@ msgstr "Posição Fiscal das Contas" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Fatura do fornecedor" @@ -11319,8 +11343,10 @@ msgstr "" "débito/crédito), fechado para contas de depreciação." #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Com movimentos" @@ -11419,7 +11445,7 @@ msgid "Entries Sorted by" msgstr "Entradas classificadas por" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -11526,6 +11552,8 @@ msgstr "Procurar Fatura" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Reembolso" @@ -11599,7 +11627,7 @@ msgid "Manual Invoice Taxes" msgstr "Impostos de fatura manual" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" @@ -15921,3 +15949,55 @@ msgstr "" #~ msgid "Modify: refund invoice, reconcile and create a new draft invoice" #~ msgstr "" #~ "Modificar: Fatura reembolso, conciliar e criar uma nova fatura provisória." + +#~ msgid "Header" +#~ msgstr "Cabeçalho" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ "Example: 14 days 2%, 30 days net\n" +#~ "1. Line 1: percent 0.02 14 days\n" +#~ "2. Line 2: balance 30 days" +#~ msgstr "" +#~ "Exemplo: 14 dias 2%, 30 dias líquidos \n" +#~ "1. Linha 1: 0,02 por cento 14 dias \n" +#~ "2. Linha 2: Saldo 30 dias" + +#~ msgid "logo" +#~ msgstr "logotipo" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "TITLE COMPANY" +#~ msgstr "Título Empresa" + +#~ msgid "COL 2" +#~ msgstr "COL 2" + +#~ msgid "COL 1" +#~ msgstr "COL 1" + +#~ msgid "" +#~ msgstr "color=\"darkblue\"/> " +#~ msgstr "" + +#, python-format +#~ msgid "UnknownError" +#~ msgstr "UnknownError" + +#~ msgid "Balance Brought Forward" +#~ msgstr "Saldo anterior" + +#~ msgid "Account Entry Lines" +#~ msgstr "Conta linhas de entrada" + +#~ msgid "" +#~ msgstr "" + +#~ msgid "" +#~ msgstr "" diff --git a/addons/account/i18n/ro.po b/addons/account/i18n/ro.po index 5f7bf0f8094..359eaa64f42 100644 --- a/addons/account/i18n/ro.po +++ b/addons/account/i18n/ro.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-10 07:21+0000\n" -"Last-Translator: Fekete Mihai \n" +"Last-Translator: ERPSystems.ro \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-16 05:17+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:09+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -61,7 +61,7 @@ msgid "Residual" msgstr "Valoare reziduala" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "Elementul \"%s\" din registru nu este valabil." @@ -77,9 +77,9 @@ msgid "Import from invoice or payment" msgstr "Importati din factura sau din plata" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "Contul nu este bun!" @@ -135,15 +135,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -155,7 +155,7 @@ msgid "Warning!" msgstr "Avertisment!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Jurnal Diverse" @@ -377,7 +377,7 @@ msgid "Allow multi currencies" msgstr "Permite valute multiple" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "Trebuie sa definiti un jurnal analitic de tipul '%s'!" @@ -719,7 +719,7 @@ msgid "Profit Account" msgstr "Cont Profit" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -732,13 +732,13 @@ msgid "Report of the Sales by Account Type" msgstr "Raport Vanzari dupa Tipul Contului" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "SAJ" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "Nu se poate crea miscarea cu valuta diferita de .." @@ -798,7 +798,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Conturi Incasari" @@ -838,7 +840,7 @@ msgid "Are you sure you want to create entries?" msgstr "Sunteti sigur(a) ca doriti sa creati inregistrari ?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "Factura platita partial: %s%s din %s%s (%s%s ramas)." @@ -909,7 +911,7 @@ msgid "Type" msgstr "Tip" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -934,7 +936,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Facturi Furnizor si Rambursari" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "Inregistrarea a fost deja reconciliata." @@ -1012,7 +1014,7 @@ msgstr "" " " #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1098,7 +1100,7 @@ msgid "Liability" msgstr "Raspundere" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "Va rugam sa definiti secventa din jurnalul asociat acestei facturi." @@ -1142,7 +1144,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Purchases" -msgstr "Achizitii" +msgstr "Achiziții" #. module: account #: field:account.model,lines_id:0 @@ -1172,10 +1174,10 @@ msgid "Features" msgstr "Caracteristici" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1332,7 +1334,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Banca" @@ -1406,7 +1408,7 @@ msgstr "Codul va fi afisat in rapoarte." #. module: account #: view:account.tax.template:0 msgid "Taxes used in Purchases" -msgstr "Taxe utilizate in Achizitii." +msgstr "Taxe utilizate în Achiziții." #. module: account #: field:account.invoice.tax,tax_code_id:0 @@ -1644,15 +1646,17 @@ msgid "%s (copy)" msgstr "%s (copie)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Cu soldul diferit de zero" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1894,8 +1898,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Factura" @@ -1981,7 +1987,7 @@ msgstr "" "starea ciorna selectata." #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "Unele inregistrari sunt deja reconciliate." @@ -2144,36 +2150,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2187,8 +2193,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Eroare!" @@ -2243,7 +2249,7 @@ msgid "period close" msgstr "inchiderea perioadei" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2331,7 +2337,7 @@ msgid "Analytic account" msgstr "Cont analitic" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Va rugam sa verificati daca acest cont este definit in jurnal." @@ -2437,7 +2443,9 @@ msgstr "Managementul activelor" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Conturi Plati" @@ -2756,7 +2764,7 @@ msgid "Create an Account Based on this Template" msgstr "Creeaza un Cont pe baza acestui Sablon" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2782,7 +2790,7 @@ msgid "Main Sequence" msgstr "Secventa Principala" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2808,7 +2816,7 @@ msgid "Fiscal Positions" msgstr "Pozitii Fiscale" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "Nu puteti crea elemente ale registrului intr-un cont inchis %s %s." @@ -2917,7 +2925,7 @@ msgid "Account Model Entries" msgstr "Inregistrari Model Cont" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "EXJ" @@ -3049,21 +3057,20 @@ msgid "Accounts" msgstr "Conturi" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Eroare de configurare!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3277,7 +3284,7 @@ msgstr "" "sau 'Pro-Forma'." #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "Ar trebui sa alegeti perioadele care apartin aceleiasi companii." @@ -3290,7 +3297,7 @@ msgid "Sales by Account" msgstr "Vanzari dupa Cont" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "Nu puteti sterge o inregistrare afisata \"%s\" a registrului." @@ -3306,8 +3313,8 @@ msgid "Sale journal" msgstr "Registru de vanzari" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3479,7 +3486,7 @@ msgid "Fiscal Position" msgstr "Pozitie fiscala" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3580,7 +3587,7 @@ msgstr "" "cursul zilei." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "Nu exista nici un cod principal pentru contul sablon." @@ -3645,8 +3652,8 @@ msgid "View" msgstr "Vizualizare" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -4002,7 +4009,7 @@ msgstr "" "inregistrarilor extrasului sa aiba aceleasi referinte ca si extrasul insusi." #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -4019,7 +4026,7 @@ msgid "Starting Balance" msgstr "Soldul initial" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Nici un partener definit !" @@ -4079,7 +4086,7 @@ msgstr "" "prin portalul OpenERP." #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4258,7 +4265,7 @@ msgid "Period Length (days)" msgstr "Durata Perioada (zile)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -4333,9 +4340,13 @@ msgid "VAT :" msgstr "TVA :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4428,7 +4439,7 @@ msgid "Chart of Accounts Template" msgstr "Sablon Plan de Conturi" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4440,8 +4451,10 @@ msgstr "" "Va rugam sa ii definiti un partener!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4604,7 +4617,7 @@ msgid "Name" msgstr "Nume" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "Nici o companie neconfigurata !" @@ -4679,8 +4692,8 @@ msgstr "" "asociata acestui Cod fiscal." #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "Nu puteti folosi un cont inactiv." @@ -4710,7 +4723,7 @@ msgid "Consolidated Children" msgstr "Subordonati reuniti" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4925,7 +4938,7 @@ msgid "Cancel the Selected Invoices" msgstr "Anulati Facturile Selectate" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "Trebuie sa atribuiti un jurnal analitic jurnalului '%s'!" @@ -5008,8 +5021,8 @@ msgid "Supplier invoice sequence" msgstr "Ordinea facturilor furnizorului" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -5074,7 +5087,7 @@ msgid "Account Base Code" msgstr "Cod de baza cont" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -5143,7 +5156,7 @@ msgid "Statement from invoice or payment" msgstr "Extras din factura sau plata" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -5199,7 +5212,7 @@ msgid "Bank statements are entered in the system." msgstr "Extrasele bancare sunt introduse in sistem." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Reconciliere Pierdere" @@ -5295,7 +5308,7 @@ msgstr "" "Nu puteti crea un cont care are contul principal al unei companii diferite." #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -5315,7 +5328,7 @@ msgid "Based On" msgstr "Bazat pe" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -5382,7 +5395,7 @@ msgstr "" "Adauga coloana valutei in raport daca valuta difera de cea a companiei." #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "Taxa Achizitie %.2f%%" @@ -5459,7 +5472,7 @@ msgstr "" "starea este 'Efectuat'." #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "DIVERSE" @@ -5635,7 +5648,7 @@ msgid "Tax Application" msgstr "Aplicare Taxa" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5816,7 +5829,7 @@ msgid "Target Moves" msgstr "Miscari tinta" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5903,7 +5916,7 @@ msgid "Internal Name" msgstr "Nume intern" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5978,7 +5991,7 @@ msgid "Compute Code (if type=code)" msgstr "Cod Calcul (daca tip=cod)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -6120,7 +6133,7 @@ msgid "Recompute taxes and total" msgstr "Recalculeaza taxele si totalul" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -6153,7 +6166,7 @@ msgid "Amount Computation" msgstr "Calcul Suma" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -6461,7 +6474,7 @@ msgid "Fixed Amount" msgstr "Suma fixa" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6513,14 +6526,14 @@ msgid "Child Accounts" msgstr "Conturi subordonate" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Nume miscare (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Pierdere" @@ -6546,7 +6559,7 @@ msgstr "Venit" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Furnizor" @@ -6566,7 +6579,7 @@ msgid "Account n°" msgstr "Nr. de cont" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Referinta gratuita" @@ -6576,7 +6589,9 @@ msgstr "Referinta gratuita" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Conturi Incasari si Plati" @@ -6702,7 +6717,7 @@ msgid "Filter by" msgstr "Filtrati dupa" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "Aveti o expresie \"%(...)s\" gresita in modelul dumneavoastra !" @@ -6755,7 +6770,7 @@ msgid "Number of Days" msgstr "Numarul de zile" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6907,7 +6922,7 @@ msgid "Models" msgstr "Modele" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -7095,7 +7110,7 @@ msgid "You cannot create journal items on closed account." msgstr "Nu puteti crea elemente ale registrului intr-un cont inchis." #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -7117,7 +7132,7 @@ msgid "The related account currency if not equal to the company one." msgstr "Valuta asociata contului daca nu este aceeasi ca si cea a companiei." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "Personalizat" @@ -7144,7 +7159,7 @@ msgid "Internal Transfers Account" msgstr "Cont de Transferuri Interne" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -7172,7 +7187,7 @@ msgid "Power" msgstr "Putere" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "Nu se poate crea un cod de jurnal nefolosit." @@ -7256,12 +7271,12 @@ msgstr "" "subordonate. In acest caz, ordinea evaluarii este importanta." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -7349,7 +7364,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Restituire furnizor" @@ -7501,7 +7518,7 @@ msgstr "Statistica Inregistrari Analitice" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Inregistrari: " @@ -7615,7 +7632,7 @@ msgstr "Nu puteti sterge un cont care contine elemente ale registrului." #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Eroare !" @@ -7851,7 +7868,7 @@ msgstr "" "Valuta aleasa ar trebui sa fie comuna si conturilor implicite." #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7932,7 +7949,7 @@ msgid "Done" msgstr "Efectuat" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -8238,7 +8255,7 @@ msgstr "Raportare" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -8310,7 +8327,7 @@ msgid "Use model" msgstr "Utilizati modelul" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -8379,7 +8396,7 @@ msgid "Root/View" msgstr "Baza/Vizualizare" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "OPEJ" @@ -8448,7 +8465,7 @@ msgid "Maturity Date" msgstr "Data scadenta" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Jurnal Vanzari" @@ -8459,7 +8476,7 @@ msgid "Invoice Tax" msgstr "Factură fiscală" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Lipsă număr bucăţi !" @@ -8505,7 +8522,7 @@ msgid "Sales Properties" msgstr "Proprietati Vanzari" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -8532,7 +8549,7 @@ msgstr "Catre" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Ajustare Moneda" @@ -8566,7 +8583,7 @@ msgid "May" msgstr "Mai" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -8609,7 +8626,7 @@ msgstr "Afisati Inregistrarile in Jurnal" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Client" @@ -8625,7 +8642,7 @@ msgstr "Nume raport" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Numerar" @@ -8799,6 +8816,7 @@ msgstr "Fix" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Avertizare !" @@ -8866,7 +8884,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Selectati o valuta pentru a o aplica pe factura" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Nici o Linie a Facturii !" @@ -8891,7 +8909,7 @@ msgid "Tax Use In" msgstr "Taxa utilizata in" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8901,7 +8919,7 @@ msgstr "" "Soldul estimat (%.2f) este diferit de cel calculat. (%.2f)" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Liniile inregistrarilor contabile nu sunt in stare valida." @@ -8948,7 +8966,7 @@ msgid "Associated Partner" msgstr "Partener asociat" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Mai intai trebuie sa selectati un partener !" @@ -9029,13 +9047,13 @@ msgstr "" "calcula urmatoarele taxe." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Jurnal Rambursare Achizitii" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "Va rugam sa definiti o secventa in registru." @@ -9294,7 +9312,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "${obiect.companie_id.nume} Factura (Ref ${obiect.numar sau 'n/a'})" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -9420,7 +9438,7 @@ msgid "The partner account used for this invoice." msgstr "Contul partener folosit pentru aceasta factura." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Taxa %.2f%%" @@ -9438,7 +9456,7 @@ msgid "Payment Term Line" msgstr "Linie Termeni de plata" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Jurnal Achizitii" @@ -9625,7 +9643,7 @@ msgid "Journal Name" msgstr "Numele Jurnalului" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Inregistrarea \"%s\" nu este valida !" @@ -9678,7 +9696,7 @@ msgstr "" "multi-moneda." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "A fost confirmata miscarea contului (%s) pentru centralizare." @@ -9744,7 +9762,7 @@ msgid "Reconciled entries" msgstr "Inregistrari reconciliate" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "Model gresit !" @@ -9766,7 +9784,7 @@ msgid "Print Account Partner Balance" msgstr "Tipariti Soldul Contului Partener" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9810,7 +9828,7 @@ msgstr "necunoscut(a)" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Jurnalul Inregistrarilor de deschidere" @@ -9910,7 +9928,7 @@ msgid "Unit of Currency" msgstr "Unitatea Valutei" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Jurnal Rambursare Vanzari" @@ -9981,13 +9999,13 @@ msgid "Purchase Tax(%)" msgstr "Taxa de cumparare(%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Va rugam sa creati niste linii ale facturii." #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -10002,7 +10020,7 @@ msgid "Display Detail" msgstr "Afisati Detaliile" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "SCNJ" @@ -10182,8 +10200,8 @@ msgid "Receivable Account" msgstr "Cont Incasari" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -10286,7 +10304,7 @@ msgid "Move" msgstr "Miscare" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -10390,7 +10408,7 @@ msgid "Balance :" msgstr "Sold :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "Nu pot fi create miscari pentru companii diferite." @@ -10481,7 +10499,7 @@ msgid "Immediate Payment" msgstr "Plata Imediata" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr " Centralizare" @@ -10579,7 +10597,7 @@ msgid "Unreconciled" msgstr "Nereconciliat" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Total gresit !" @@ -10675,7 +10693,7 @@ msgid "Comparison" msgstr "Comparatie" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10773,7 +10791,7 @@ msgid "Journal Entry Model" msgstr "Model Inregistrare in Jurnal" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "Perioada de inceput ar trebui sa o preceada pe cea de sfarsit." @@ -11077,6 +11095,7 @@ msgstr "Deschis pentru reconciliere bancară" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -11092,7 +11111,9 @@ msgstr "Deschis pentru reconciliere bancară" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -11101,6 +11122,7 @@ msgstr "Deschis pentru reconciliere bancară" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -11199,7 +11221,7 @@ msgstr "" "dezactivate" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "Imposibil de modificat taxa!" @@ -11272,8 +11294,10 @@ msgstr "Pozitie Fiscala Conturi" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Factura furnizor" @@ -11365,8 +11389,10 @@ msgstr "" "conturi devalorizate." #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Cu miscari" @@ -11465,7 +11491,7 @@ msgid "Entries Sorted by" msgstr "Inregistrari Clasificate dupa" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -11574,6 +11600,8 @@ msgstr "Cautati Factura" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Rambursare" @@ -11647,7 +11675,7 @@ msgid "Manual Invoice Taxes" msgstr "Taxe factura manuala" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/ru.po b/addons/account/i18n/ru.po index c666e4dcf2e..1a30363d8cc 100644 --- a/addons/account/i18n/ru.po +++ b/addons/account/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-07-03 05:14+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:09+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -817,6 +817,8 @@ msgid "" "Cannot %s invoice which is already reconciled, invoice should be " "unreconciled first. You can only refund this invoice." msgstr "" +"Нельзя %s счет, который уже сверен, сначала надо отменить сверку. Можно " +"только сделать возврат счета." #. module: account #: selection:account.financial.report,display_detail:0 @@ -978,6 +980,8 @@ msgid "" " opening/closing fiscal " "year process." msgstr "" +"Нельзя отменить сверку элементов журнала, если они были созданы процессом " +"открытия/закрытия финансового года." #. module: account #: model:ir.actions.act_window,name:account.action_subscription_form_new @@ -3418,7 +3422,7 @@ msgstr "" #: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." -msgstr "" +msgstr "Нет кода родителя для шаблона счета." #. module: account #: help:account.chart.template,code_digits:0 @@ -4866,7 +4870,7 @@ msgstr "План счета" #. module: account #: field:account.invoice,reference_type:0 msgid "Payment Reference" -msgstr "" +msgstr "Описание платежа" #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -4950,7 +4954,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 @@ -5292,6 +5296,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 @@ -5877,7 +5883,7 @@ msgstr "" #: 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 @@ -5917,7 +5923,7 @@ msgstr "" #. module: account #: view:cash.box.in:0 msgid "Fill in this form if you put money in the cash register:" -msgstr "" +msgstr "Заполните эту форму, если вы помещаете деньги в кассу :" #. module: account #: view:account.payment.term.line:0 @@ -5986,7 +5992,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 @@ -6051,7 +6057,7 @@ msgstr "" #: code:addons/account/wizard/account_report_aged_partner_balance.py:56 #, python-format msgid "You must set a period length greater than 0." -msgstr "" +msgstr "Вы должны установить период длиной больше 0." #. module: account #: view:account.fiscal.position.template:0 @@ -6062,7 +6068,7 @@ msgstr "Шаблон системы налогообложения" #. module: account #: view:account.invoice:0 msgid "Draft Refund" -msgstr "" +msgstr "Черновик возврата" #. module: account #: view:account.analytic.chart:0 @@ -6099,7 +6105,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 @@ -6112,6 +6118,7 @@ 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 @@ -6138,7 +6145,7 @@ msgstr "Метод расчета суммы налога." #. module: account #: view:account.payment.term.line:0 msgid "Due Date Computation" -msgstr "" +msgstr "Вычисление срока оплаты" #. module: account #: field:report.invoice.created,create_date:0 @@ -6162,7 +6169,7 @@ msgstr "Субсчета" #: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" -msgstr "" +msgstr "Название операции (id) : %s (%s)" #. module: account #: view:account.move.line.reconcile:0 @@ -6311,7 +6318,7 @@ msgstr "# строк" #. module: account #: view:account.invoice:0 msgid "(update)" -msgstr "" +msgstr "(обновить)" #. module: account #: field:account.aged.trial.balance,filter:0 @@ -6336,7 +6343,7 @@ msgstr "Фильтровать по" #: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" -msgstr "" +msgstr "Неправильное выражение \"%(...)s\" в вашей модели !" #. module: account #: view:account.tax.template:0 @@ -6387,6 +6394,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 @@ -6425,7 +6434,7 @@ msgstr "Возврат средств клиенту" #. module: account #: field:account.account,foreign_balance:0 msgid "Foreign Balance" -msgstr "" +msgstr "Внешний баланс" #. module: account #: field:account.journal.period,name:0 @@ -6445,7 +6454,7 @@ msgstr "Организация, связанная с этим журналом" #. module: account #: help:account.config.settings,group_multi_currency:0 msgid "Allows you multi currency environment" -msgstr "" +msgstr "Позволяет несколько валют" #. module: account #: view:account.subscription:0 @@ -6475,6 +6484,8 @@ msgid "" "This journal will be created automatically for this bank account when you " "save the record" msgstr "" +"Этот журнал будет создана автоматически для этого банковского счета при " +"сохранении записи" #. module: account #: view:account.analytic.line:0 @@ -6535,6 +6546,8 @@ 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 @@ -6549,7 +6562,7 @@ msgstr "Это модель для повторяющихся проводок" #. module: account #: field:wizard.multi.charts.accounts,sale_tax_rate:0 msgid "Sales Tax(%)" -msgstr "" +msgstr "Налог с продаж (%)" #. module: account #: view:account.tax.code:0 @@ -6605,7 +6618,7 @@ msgstr "Организации" #. module: account #: view:account.invoice.report:0 msgid "Open and Paid Invoices" -msgstr "" +msgstr "Открытые и оплаченные счета" #. module: account #: selection:account.financial.report,display_detail:0 @@ -6615,7 +6628,7 @@ msgstr "" #. module: account #: view:account.config.settings:0 msgid "Bank & Cash" -msgstr "" +msgstr "Банк и наличные" #. module: account #: help:account.fiscalyear.close.state,fy_id:0 @@ -6698,7 +6711,7 @@ msgstr "Счета к получению" #. module: account #: constraint:account.move.line:0 msgid "You cannot create journal items on closed account." -msgstr "" +msgstr "Нельзя создать элементы журнала по закрытому счету." #. module: account #: code:addons/account/account_invoice.py:633 @@ -6725,7 +6738,7 @@ msgstr "Валюта связанного счета, если не одинак #: code:addons/account/installer.py:69 #, python-format msgid "Custom" -msgstr "" +msgstr "Пользовательский" #. module: account #: view:account.analytic.account:0 @@ -6753,6 +6766,7 @@ msgstr "Счет внутренних переводов" #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" +"Пожалуйста, проверьте , что поле \"Журнал\"установлено в банковской выписке" #. module: account #: selection:account.tax,type:0 @@ -6794,7 +6808,7 @@ msgstr "Номер счета" #. module: account #: field:account.bank.statement,difference:0 msgid "Difference" -msgstr "" +msgstr "Разница" #. module: account #: help:account.tax,include_base_amount:0 @@ -6802,6 +6816,8 @@ msgid "" "Indicates if the amount of tax must be included in the base amount for the " "computation of the next taxes" msgstr "" +"Показывает, что сумма налога должна быть включена в базу для начисления " +"следующих налогов" #. module: account #: model:ir.actions.act_window,name:account.action_account_partner_reconcile @@ -6863,12 +6879,12 @@ msgstr "" #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 #, python-format msgid "User Error!" -msgstr "" +msgstr "Ошибка пользователя!" #. module: account #: view:account.open.closed.fiscalyear:0 msgid "Discard" -msgstr "" +msgstr "Отклонить" #. module: account #: selection:account.account,type:0 @@ -6886,7 +6902,7 @@ msgstr "Элементы журнала аналитики" #. module: account #: field:account.config.settings,has_default_company:0 msgid "Has default company" -msgstr "" +msgstr "Имеет компании по умолчанию" #. module: account #: view:account.fiscalyear.close:0 @@ -6935,6 +6951,8 @@ msgid "" "You cannot change the owner company of an account that already contains " "journal items." msgstr "" +"Вы не можете изменить компанию - владельца счета, который уже содержит " +"элементы журнала ." #. module: account #: report:account.invoice:0 @@ -6986,6 +7004,8 @@ msgid "" "There is no period defined for this date: %s.\n" "Please create one." msgstr "" +"Нет периода для этой даты: %s.\n" +"Пожалуйста, создайте его." #. module: account #: field:account.analytic.line,product_uom_id:0 @@ -7006,7 +7026,7 @@ msgstr "" #. module: account #: field:account.installer,has_default_company:0 msgid "Has Default Company" -msgstr "" +msgstr "Имеет компанию по умолчанию" #. module: account #: model:ir.model,name:account.model_account_sequence_fiscalyear @@ -7056,7 +7076,7 @@ msgstr "Категория счета расходов" #. module: account #: sql_constraint:account.tax:0 msgid "Tax Name must be unique per company!" -msgstr "" +msgstr "Название налога должно быть уникальным для компании !" #. module: account #: view:account.bank.statement:0 @@ -7095,7 +7115,7 @@ 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 @@ -7114,7 +7134,7 @@ msgstr "Истина" #: code:addons/account/account.py:190 #, python-format msgid "Balance Sheet (Asset account)" -msgstr "" +msgstr "Валанс (счет актива)" #. module: account #: model:process.node,note:account.process_node_draftstatement0 @@ -7159,7 +7179,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 @@ -7185,18 +7205,18 @@ msgstr "Создать проводку" #: code:addons/account/account.py:189 #, python-format msgid "Profit & Loss (Expense account)" -msgstr "" +msgstr "Прибыль и убыток (счет расходов)" #. module: account #: field:account.bank.statement,total_entry_encoding:0 msgid "Total Transactions" -msgstr "" +msgstr "Итого операций" #. module: account #: 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 @@ -7208,12 +7228,12 @@ msgstr "Error !" #. module: account #: field:account.financial.report,style_overwrite:0 msgid "Financial Report Style" -msgstr "" +msgstr "Стиль финансового отчета" #. module: account #: selection:account.financial.report,sign:0 msgid "Preserve balance sign" -msgstr "" +msgstr "Сохранить знак баланса" #. module: account #: view:account.vat.declaration:0 @@ -7240,13 +7260,13 @@ msgstr "Вручную" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Cancel: create refund and reconcile" -msgstr "" +msgstr "Отмена: создать возврат и сверить" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 #, python-format msgid "You must set a start date." -msgstr "" +msgstr "Вы должны установить дату начала." #. module: account #: view:account.automatic.reconcile:0 @@ -7290,7 +7310,7 @@ msgstr "Записи журнала" #: code:addons/account/wizard/account_invoice_refund.py:147 #, python-format msgid "No period found on the invoice." -msgstr "" +msgstr "Не найдено периода по счету." #. module: account #: help:account.partner.ledger,page_split:0 @@ -7335,7 +7355,7 @@ msgstr "Все проводки" #. module: account #: constraint:account.move.reconcile:0 msgid "You can only reconcile journal items with the same partner." -msgstr "" +msgstr "Сверить можно только элементы журнала с тем же партнером." #. module: account #: view:account.journal.select:0 @@ -7388,14 +7408,14 @@ msgstr "" #: field:account.chart.template,complete_tax_set:0 #: field:wizard.multi.charts.accounts,complete_tax_set:0 msgid "Complete Set of Taxes" -msgstr "" +msgstr "Полный набор налогов" #. module: account #: code:addons/account/wizard/account_validate_account_move.py:61 #, python-format msgid "" "Selected Entry Lines does not have any account move enties in draft state." -msgstr "" +msgstr "Выбранные позиции проводок не содержат черновиков операций по счету." #. module: account #: view:account.chart.template:0 @@ -7451,7 +7471,7 @@ msgstr "" #. module: account #: field:account.invoice,paypal_url:0 msgid "Paypal Url" -msgstr "" +msgstr "Paypal Url" #. module: account #: field:account.config.settings,module_account_voucher:0 @@ -7475,11 +7495,13 @@ msgid "" "Error!\n" "The start date of a fiscal year must precede its end date." msgstr "" +"Ошибка!\n" +"Дата начала финансового года должна быть раньше даты его окончания." #. module: account #: view:account.tax.template:0 msgid "Taxes used in Sales" -msgstr "" +msgstr "Налоги используемые при продаже" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree1 @@ -7490,7 +7512,7 @@ msgstr "Счета заказчику" #. module: account #: view:account.tax:0 msgid "Misc" -msgstr "" +msgstr "Прочее" #. module: account #: view:account.analytic.line:0 @@ -7541,6 +7563,7 @@ msgstr "Документ-источник" #: help:account.config.settings,company_footer:0 msgid "Bank accounts as printed in the footer of each printed document" msgstr "" +"Банковские счета как напечатано в колонтитуле каждого печатного документа" #. module: account #: constraint:account.account:0 @@ -7553,12 +7576,12 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_accounting_report msgid "Accounting Report" -msgstr "" +msgstr "Бухгалтерский отчет" #. module: account #: field:account.analytic.line,currency_id:0 msgid "Account Currency" -msgstr "" +msgstr "Валюта счета" #. module: account #: report:account.invoice:0 @@ -7623,7 +7646,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Customer Reference" -msgstr "" +msgstr "Описание заказчика" #. module: account #: field:account.account.template,parent_id:0 @@ -7639,7 +7662,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 @@ -7657,12 +7680,12 @@ msgstr "Выступает в качестве счета по умолчани #. module: account #: view:account.entries.report:0 msgid "Posted entries" -msgstr "" +msgstr "Проведенные проводки" #. module: account #: help:account.payment.term.line,value_amount:0 msgid "For percent enter a ratio between 0-1." -msgstr "" +msgstr "Для процента введите коэффициент от 0 до 1." #. module: account #: report:account.invoice:0 @@ -7675,7 +7698,7 @@ msgstr "Дата выставления счета" #. module: account #: view:account.invoice.report:0 msgid "Group by year of Invoice Date" -msgstr "" +msgstr "Группировать по году в дате счета" #. module: account #: field:account.config.settings,purchase_tax_rate:0 @@ -7695,7 +7718,7 @@ msgstr "Несбалансированные элементы журнала" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules msgid "Chart Templates" -msgstr "" +msgstr "Шаблон плана счетов" #. module: account #: field:account.journal.period,icon:0 @@ -7741,7 +7764,7 @@ msgstr "Налог на покупку по умолчанию" #. module: account #: field:account.chart.template,property_account_income_opening:0 msgid "Opening Entries Income Account" -msgstr "" +msgstr "Проводки открытия счета доходов" #. module: account #: field:account.config.settings,group_proforma_invoices:0 @@ -7783,12 +7806,12 @@ msgstr "Создание проводок" #. module: account #: model:ir.model,name:account.model_cash_box_out msgid "cash.box.out" -msgstr "" +msgstr "cash.box.out" #. module: account #: help:account.config.settings,currency_id:0 msgid "Main currency of the company." -msgstr "" +msgstr "Основная валюта компании." #. module: account #: model:ir.ui.menu,name:account.menu_finance_reports @@ -7806,7 +7829,7 @@ msgstr "Warning" #. module: account #: model:ir.actions.act_window,name:account.action_analytic_open msgid "Contracts/Analytic Accounts" -msgstr "" +msgstr "Контракты/Счета аналитики" #. module: account #: view:account.journal:0 @@ -7879,7 +7902,7 @@ msgstr "Позиция счета" #. module: account #: view:account.invoice.report:0 msgid "Customer And Supplier Refunds" -msgstr "" +msgstr "Возвраты поставщиков и заказчиков" #. module: account #: field:account.financial.report,sign:0 @@ -7974,12 +7997,12 @@ msgstr "" #. module: account #: model:ir.ui.menu,name:account.menu_multi_currency msgid "Multi-Currencies" -msgstr "" +msgstr "Мультивалютность" #. module: account #: field:account.model.line,date_maturity:0 msgid "Maturity Date" -msgstr "" +msgstr "Срок платежа" #. module: account #: code:addons/account/account.py:3193 @@ -8017,7 +8040,7 @@ msgstr "" #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "" +msgstr "Не проведенные проводки журнала" #. module: account #: help:account.invoice.refund,date:0 @@ -8038,6 +8061,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 @@ -8060,7 +8085,7 @@ msgstr "По" #: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" -msgstr "" +msgstr "Корректировка валюты" #. module: account #: field:account.fiscalyear.close,fy_id:0 @@ -8111,7 +8136,7 @@ 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 @@ -8140,7 +8165,7 @@ msgstr "Заказчик" #. module: account #: field:account.financial.report,name:0 msgid "Report Name" -msgstr "" +msgstr "Название отчета" #. module: account #: model:account.account.type,name:account.data_account_type_cash @@ -8182,12 +8207,12 @@ msgstr "Нумерация" #. module: account #: field:account.config.settings,paypal_account:0 msgid "Paypal account" -msgstr "" +msgstr "Счет Paypal" #. module: account #: selection:account.print.journal,sort_selection:0 msgid "Journal Entry Number" -msgstr "" +msgstr "Номер проводки в журнале" #. module: account #: view:account.financial.report:0 @@ -8201,11 +8226,13 @@ msgid "" "Error!\n" "You cannot create recursive accounts." msgstr "" +"Ошибка !\n" +"Нельзя создавать рекурсивные счета." #. module: account #: model:ir.model,name:account.model_cash_box_in msgid "cash.box.in" -msgstr "" +msgstr "cash.box.in" #. module: account #: help:account.invoice,move_id:0 @@ -8215,7 +8242,7 @@ msgstr "Ссылка на созданные автоматически элем #. module: account #: model:ir.model,name:account.model_account_config_settings msgid "account.config.settings" -msgstr "" +msgstr "account.config.settings" #. module: account #: selection:account.config.settings,period:0 @@ -8231,14 +8258,14 @@ msgstr "Актив" #. module: account #: field:account.bank.statement,balance_end:0 msgid "Computed Balance" -msgstr "" +msgstr "Вычисленный баланс" #. module: account #. openerp-web #: code:addons/account/static/src/js/account_move_reconciliation.js:89 #, python-format msgid "You must choose at least one record." -msgstr "" +msgstr "Вы должны выбрать хотя бы одну запись." #. module: account #: field:account.account,parent_id:0 @@ -8250,7 +8277,7 @@ msgstr "Предыдущий" #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Profit" -msgstr "" +msgstr "Прибыль" #. module: account #: help:account.payment.term.line,days2:0 @@ -8298,7 +8325,7 @@ msgstr "Строка кассы" #. module: account #: field:account.installer,charts:0 msgid "Accounting Package" -msgstr "" +msgstr "Пакет учета" #. module: account #: report:account.third_party_ledger:0 @@ -8328,7 +8355,7 @@ msgstr "Warning !" #: help:account.bank.statement,message_unread:0 #: help:account.invoice,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Если отмечено, новые сообщения требуют вашего внимания." #. module: account #: field:res.company,tax_calculation_rounding_method:0 @@ -8395,7 +8422,7 @@ msgstr "Нет позиций в счете !" #. module: account #: view:account.financial.report:0 msgid "Report Type" -msgstr "" +msgstr "Тип отчета" #. module: account #: help:account.open.closed.fiscalyear,fyear_id:0 @@ -8417,6 +8444,8 @@ msgid "" "The statement balance is incorrect !\n" "The expected balance (%.2f) is different than the computed one. (%.2f)" msgstr "" +"В выписке неправильный баланс !\n" +"Ожидаемый баланс (%.2f) отличается от вычисленного (%.2f)" #. module: account #: code:addons/account/account_bank_statement.py:420 @@ -8522,7 +8551,7 @@ msgstr "Книга расходов" #. module: account #: view:account.config.settings:0 msgid "No Fiscal Year Defined for This Company" -msgstr "" +msgstr "Не определен финансовый год для этой компании" #. module: account #: view:account.invoice:0 @@ -8553,7 +8582,7 @@ msgstr "Журнал возврата покупок" #: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." -msgstr "" +msgstr "Пожалуйста, определите нумерацию журнала." #. module: account #: help:account.tax.template,amount:0 @@ -8563,12 +8592,12 @@ msgstr "Для налога типа \"процент\" введите %, как #. module: account #: view:account.analytic.account:0 msgid "Current Accounts" -msgstr "" +msgstr "Текущие счета" #. module: account #: view:account.invoice.report:0 msgid "Group by Invoice Date" -msgstr "" +msgstr "Группировать по дате счета" #. module: account #: help:account.journal,user_id:0 @@ -8624,12 +8653,12 @@ msgstr "Чистый итог:" #: code:addons/account/wizard/account_report_common.py:158 #, python-format msgid "Select a starting and an ending period." -msgstr "" +msgstr "Выберите начальный и конечный период." #. module: account #: field:account.config.settings,sale_sequence_next:0 msgid "Next invoice number" -msgstr "" +msgstr "Следующий номер счета" #. module: account #: model:ir.ui.menu,name:account.menu_finance_generic_reporting @@ -8649,7 +8678,7 @@ msgstr "Категория счета доходов" #. module: account #: field:account.account,adjusted_balance:0 msgid "Adjusted Balance" -msgstr "" +msgstr "Скорректированный баланс" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form @@ -8882,6 +8911,8 @@ msgstr "Фильтровать по" msgid "" "In order to close a period, you must first post related journal entries." msgstr "" +"Для того чтобы закрыть период, сначала вы должны провести связанные проводки " +"журнала." #. module: account #: view:account.entries.report:0 @@ -8899,7 +8930,7 @@ msgstr "Бух. счет партнера будет использоватьс #: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" -msgstr "" +msgstr "Налог %.2f%%" #. module: account #: field:account.tax.code,parent_id:0 @@ -8996,6 +9027,7 @@ 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 @@ -9033,7 +9065,7 @@ msgstr "Разрешенные счета (оставьте пустым для #. module: account #: field:account.config.settings,sale_tax_rate:0 msgid "Sales tax (%)" -msgstr "" +msgstr "Налог с продаж (%)" #. module: account #: model:ir.actions.act_window,name:account.action_account_analytic_account_tree2 @@ -9092,7 +9124,7 @@ msgstr "Проводка \"%s\" не верна !" #. module: account #: selection:account.financial.report,style_overwrite:0 msgid "Smallest Text" -msgstr "" +msgstr "Наименьший текст" #. module: account #: help:account.config.settings,module_account_check_writing:0 @@ -9104,7 +9136,7 @@ msgstr "" #. module: account #: model:res.groups,name:account.group_account_invoice msgid "Invoicing & Payments" -msgstr "" +msgstr "Выставление счетов и платежи" #. module: account #: help:account.invoice,internal_number:0 @@ -9198,13 +9230,13 @@ msgstr "Сверенные проводки" #: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" -msgstr "" +msgstr "Неправильная модель!" #. module: account #: view:account.tax.code.template:0 #: view:account.tax.template:0 msgid "Tax Template" -msgstr "" +msgstr "Шаблон налога" #. module: account #: field:account.invoice.refund,period:0 @@ -9265,14 +9297,14 @@ 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 #: field:account.move,narration:0 #: field:account.move.line,narration:0 msgid "Internal Note" -msgstr "" +msgstr "Внутреннее примечание" #. module: account #: constraint:account.account:0 @@ -9285,7 +9317,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 @@ -9301,7 +9333,7 @@ msgstr "" #: 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 @@ -9345,7 +9377,7 @@ msgstr "Период с" #. module: account #: field:account.cashbox.line,pieces:0 msgid "Unit of Currency" -msgstr "" +msgstr "Валютная единица" #. module: account #: code:addons/account/account.py:3195 @@ -9406,7 +9438,7 @@ 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 @@ -9432,7 +9464,7 @@ msgstr "" #. module: account #: field:account.vat.declaration,display_detail:0 msgid "Display Detail" -msgstr "" +msgstr "Отображение подробностей" #. module: account #: code:addons/account/account.py:3203 @@ -9569,7 +9601,7 @@ msgstr "" #: 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 @@ -9599,6 +9631,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 @@ -9670,13 +9703,13 @@ msgstr "Генерировать записи открытия финансов #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 msgid "Filters By" -msgstr "" +msgstr "Фильтрация по" #. module: account #: 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 @@ -9700,12 +9733,12 @@ msgstr "Операция" #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Неверное действие!" #. module: account #: view:account.bank.statement:0 msgid "Date / Period" -msgstr "" +msgstr "Дата / Период" #. module: account #: report:account.central.journal:0 @@ -9746,12 +9779,12 @@ msgstr "" #. module: account #: report:account.invoice:0 msgid "Source" -msgstr "" +msgstr "Источник" #. module: account #: selection:account.model.line,date_maturity:0 msgid "Date of the day" -msgstr "" +msgstr "Дата дня" #. module: account #: code:addons/account/wizard/account_move_bank_reconcile.py:49 @@ -9774,7 +9807,7 @@ msgstr "" #. module: account #: field:account.invoice,sent:0 msgid "Sent" -msgstr "" +msgstr "Отправлено" #. module: account #: model:ir.actions.act_window,name:account.action_account_common_menu @@ -9785,7 +9818,7 @@ 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 @@ -9796,7 +9829,7 @@ msgstr "Баланс :" #: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." -msgstr "" +msgstr "Нельзя создать операцию для различных компаний" #. module: account #: model:ir.ui.menu,name:account.menu_finance_periodical_processing @@ -9806,7 +9839,7 @@ 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 @@ -9881,7 +9914,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:1502 @@ -10015,7 +10048,7 @@ msgstr "Из аналитических счетов" #. module: account #: view:account.installer:0 msgid "Configure your Fiscal Year" -msgstr "" +msgstr "Настройка финансового года" #. module: account #: field:account.period,name:0 @@ -10055,7 +10088,7 @@ msgstr "Элементы журнала" #. module: account #: view:accounting.report:0 msgid "Comparison" -msgstr "" +msgstr "Сравнение" #. module: account #: code:addons/account/account_move_line.py:1119 @@ -10134,7 +10167,7 @@ msgstr "Кредит" #. module: account #: view:account.invoice:0 msgid "Draft Invoice " -msgstr "" +msgstr "Черновик счета " #. module: account #: model:ir.ui.menu,name:account.menu_account_general_journal @@ -10392,7 +10425,7 @@ msgstr "Последовательности отчетного года" #. module: account #: selection:account.financial.report,display_detail:0 msgid "No detail" -msgstr "" +msgstr "Нет информации" #. module: account #: field:account.account,unrealized_gain_loss:0 @@ -10412,11 +10445,13 @@ msgstr "Cостояния" #: 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 "" +msgstr "Всего (проверка)" #. module: account #: report:account.analytic.account.balance:0 @@ -10510,7 +10545,7 @@ msgstr "Дата погашения" #: field:cash.box.in,name:0 #: field:cash.box.out,name:0 msgid "Reason" -msgstr "" +msgstr "Причина" #. module: account #: selection:account.partner.ledger,filter:0 @@ -10574,12 +10609,12 @@ msgstr "" #: code:addons/account/account_move_line.py:1056 #, 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 @@ -10752,6 +10787,7 @@ msgstr "Вручную" msgid "" "This is a field only used for internal purpose and shouldn't be displayed" msgstr "" +"Это поле используется только для внутренних целей и не должно отображаться" #. module: account #: selection:account.entries.report,month:0 @@ -10765,13 +10801,13 @@ msgstr "Декабрь" #. module: account #: view:account.invoice.report:0 msgid "Group by month of Invoice Date" -msgstr "" +msgstr "Группировать по месяцу даты счета" #. module: account #: 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 @@ -10825,7 +10861,7 @@ msgstr "Оставшиеся суммы" #. module: account #: field:account.print.journal,sort_selection:0 msgid "Entries Sorted by" -msgstr "" +msgstr "Проводки сортируются по" #. module: account #: code:addons/account/account_invoice.py:1546 @@ -10834,6 +10870,7 @@ 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 @@ -10892,7 +10929,7 @@ msgstr "Счет доходов или расходов относящийся #. module: account #: view:account.config.settings:0 msgid "Install more chart templates" -msgstr "" +msgstr "Установить дополнительные планы счетов" #. module: account #: report:account.general.journal:0 @@ -10922,7 +10959,7 @@ msgstr "Банковские счета" #. module: account #: field:res.partner,credit:0 msgid "Total Receivable" -msgstr "Всго к получению" +msgstr "Всего к получению" #. module: account #: view:account.move.line:0 @@ -10968,7 +11005,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 @@ -10997,7 +11034,7 @@ msgstr "Правая скобка" #: code:addons/account/static/src/js/account_move_reconciliation.js:80 #, python-format msgid "Never" -msgstr "" +msgstr "Никогда" #. module: account #: model:ir.model,name:account.model_account_addtmpl_wizard @@ -11018,7 +11055,7 @@ msgstr "" #. module: account #: field:account.account,note:0 msgid "Internal Notes" -msgstr "" +msgstr "Внутренние примечания" #. module: account #: model:ir.actions.act_window,name:account.action_account_fiscalyear @@ -11051,7 +11088,7 @@ msgstr "Модель счета" #: code:addons/account/account_cash_statement.py:292 #, python-format msgid "Loss" -msgstr "" +msgstr "Убытки" #. module: account #: selection:account.entries.report,month:0 diff --git a/addons/account/i18n/si.po b/addons/account/i18n/si.po index a8567063b0f..7707a0ab46b 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-16 05:17+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:10+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8049,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/sk.po b/addons/account/i18n/sk.po index f38bcb9d203..fe92df1b3e8 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-16 05:17+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:10+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "Zostatok" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "Import z faktúry alebo platby" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "Varovanie!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Účty pohľadávok" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Faktúra" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Chyba konfigurácie!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "Interný názov" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Zákazník" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8035,6 +8052,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8102,7 +8120,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8125,7 +8143,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8133,7 +8151,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8177,7 +8195,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8256,13 +8274,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8505,7 +8523,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8606,7 +8624,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8624,7 +8642,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8793,7 +8811,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8841,7 +8859,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8902,7 +8920,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8924,7 +8942,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8958,7 +8976,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9053,7 +9071,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9119,13 +9137,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9138,7 +9156,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9297,8 +9315,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9399,7 +9417,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9493,7 +9511,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9584,7 +9602,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9673,7 +9691,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9758,7 +9776,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9845,7 +9863,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10144,6 +10162,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10159,7 +10178,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10168,6 +10189,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10259,7 +10281,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10328,8 +10350,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10415,8 +10439,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10511,7 +10537,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10592,6 +10618,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10662,7 +10690,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/sl.po b/addons/account/i18n/sl.po index 46cb9eb2322..12072a13d66 100644 --- a/addons/account/i18n/sl.po +++ b/addons/account/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-16 05:17+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:10+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -59,7 +59,7 @@ msgid "Residual" msgstr "Preostali" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "Postavka dnevnika \"%s\" ni veljavena" @@ -75,9 +75,9 @@ msgid "Import from invoice or payment" msgstr "Uvozi iz računa ali plačila" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "Napačen konto!" @@ -133,15 +133,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -153,7 +153,7 @@ msgid "Warning!" msgstr "Opozorilo!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Razni dnevniki" @@ -353,7 +353,7 @@ msgid "Allow multi currencies" msgstr "Omogoči uporabo večih valut" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "Določiti morate analitični dnevnik tipa '%s'!" @@ -676,7 +676,7 @@ msgid "Profit Account" msgstr "Konto prihodkov" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -688,13 +688,13 @@ msgid "Report of the Sales by Account Type" msgstr "Poročilo o prodaji po vrsti konta" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "SAJ" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "Valuta se razlikuje od .." @@ -749,7 +749,9 @@ msgstr "Tu lahko nastavite privzeti konto za davek na dobropisih kupcem." #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Konti terjatev" @@ -789,7 +791,7 @@ msgid "Are you sure you want to create entries?" msgstr "Ali res želite ustavriti vnose ?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "Račun delno plačan: %s%s od %s%s (%s%s ostane za plačilo)." @@ -858,7 +860,7 @@ msgid "Type" msgstr "Vrsta" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -881,7 +883,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Dobaviteljevi računi in nadomestila" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "Postavka je že usklajena" @@ -957,7 +959,7 @@ msgstr "" " " #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1043,7 +1045,7 @@ msgid "Liability" msgstr "Odgovornost" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "Določiti morate zaporedje v povezanem dnevniku." @@ -1114,10 +1116,10 @@ msgid "Features" msgstr "Možnosti" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1254,7 +1256,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Banka" @@ -1565,15 +1567,17 @@ msgid "%s (copy)" msgstr "%s (kopija)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "S stanjem različnim od 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1803,8 +1807,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Račun" @@ -1882,7 +1888,7 @@ msgstr "" "biti označeno." #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "Nekatere postavke so že usklajene" @@ -2036,36 +2042,36 @@ msgstr "Tiskanje obračuna davka" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2079,8 +2085,8 @@ msgstr "Tiskanje obračuna davka" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Napaka!" @@ -2125,7 +2131,7 @@ msgid "period close" msgstr "Zapiranje obdobja" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2200,7 +2206,7 @@ msgid "Analytic account" msgstr "Analitični konto" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Prosimo, potrdite da je konto definiran v dnevniku." @@ -2300,7 +2306,9 @@ msgstr "Upravljanje premoženja" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Konti obveznosti" @@ -2611,7 +2619,7 @@ msgid "Create an Account Based on this Template" msgstr "Ustvarite konto na osnovi te predloge" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2635,7 +2643,7 @@ msgid "Main Sequence" msgstr "Glavno zaporedje" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2661,7 +2669,7 @@ msgid "Fiscal Positions" msgstr "Davčno območje" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "Ne morete knjižiti na konto %s %s , ki je zaprt" @@ -2769,7 +2777,7 @@ msgid "Account Model Entries" msgstr "Postavke modela konta" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "EXJ" @@ -2884,21 +2892,20 @@ msgid "Accounts" msgstr "Konti" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Napaka v nastavitvah" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "Izpisek %s je potrjen." @@ -3091,7 +3098,7 @@ msgid "" msgstr "Izbrani računi nimajo statusa \"Osnutek\" ali \"Predračun\"" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "Izbrati morate obdobja , ki pripadajo istemu podetju" @@ -3104,7 +3111,7 @@ msgid "Sales by Account" msgstr "Prodaja po kontih" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "Ni možno brisati potrjene vknjižbe \"%s\"." @@ -3120,8 +3127,8 @@ msgid "Sale journal" msgstr "Dnevnik prodaje" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3285,7 +3292,7 @@ msgid "Fiscal Position" msgstr "Davčno območje" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3382,7 +3389,7 @@ msgstr "" "transakcije se vedno uporablja devizni tečaj na dan nastanka transakcije." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "Ni nadrejene kode za predlogo konta." @@ -3445,8 +3452,8 @@ msgid "View" msgstr "Pogled:" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3788,7 +3795,7 @@ msgid "" msgstr "Če vpišete opis , bodo vse postavke imele isti opis." #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3804,7 +3811,7 @@ msgid "Starting Balance" msgstr "Začetni saldo" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Partner ni izbran!" @@ -3856,7 +3863,7 @@ msgid "" msgstr "Paypal račun (e-mail)" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4010,7 +4017,7 @@ msgid "Period Length (days)" msgstr "Dolžina obdobja (dni)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -4079,9 +4086,13 @@ msgid "VAT :" msgstr "DDV:" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4170,7 +4181,7 @@ msgid "Chart of Accounts Template" msgstr "Predloge kontnih načrtov" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4182,8 +4193,10 @@ msgstr "" "Določite partnerja !" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4339,7 +4352,7 @@ msgid "Name" msgstr "Naziv" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "Ni podjetja brez nastavitev !" @@ -4411,8 +4424,8 @@ msgid "" msgstr "Označite , če ne želite te vrste davkov na računih." #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "Ne morete uporabiti de aktiviranega konta." @@ -4442,7 +4455,7 @@ msgid "Consolidated Children" msgstr "Konsolidacija podrejenih postavk" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4646,7 +4659,7 @@ msgid "Cancel the Selected Invoices" msgstr "Prekliči izbrane račune" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "Dnevniku '%s' ste dodelili analitični dnevnik." @@ -4720,8 +4733,8 @@ msgid "Supplier invoice sequence" msgstr "Številčno zaporedje dobaviteljevih računov" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4784,7 +4797,7 @@ msgid "Account Base Code" msgstr "Konto osnove" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4850,7 +4863,7 @@ msgid "Statement from invoice or payment" msgstr "Izvod iz računa ali plačila" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4904,7 +4917,7 @@ msgid "Bank statements are entered in the system." msgstr "Bančni izpiski so vneseni v sistem." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Usklajevanje odpisov" @@ -4999,7 +5012,7 @@ msgstr "" "Nadrejeni konto pripada drugemu podjetju." #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -5014,7 +5027,7 @@ msgid "Based On" msgstr "Na osnovi" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -5081,7 +5094,7 @@ msgstr "" "Dodajanje vrstice valute , če je različna od privzete valute podjetja." #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "Davek %.2f%%" @@ -5155,7 +5168,7 @@ msgid "" msgstr "Pri nastanku obdobja dnevnika je le ta v statusu \"Osnutek\"." #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "Razl." @@ -5324,7 +5337,7 @@ msgid "Tax Application" msgstr "Uporaba davka" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5498,7 +5511,7 @@ msgid "Target Moves" msgstr "Ciljni premik" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5581,7 +5594,7 @@ msgid "Internal Name" msgstr "Interni naziv" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5653,7 +5666,7 @@ msgid "Compute Code (if type=code)" msgstr "Izračunaj oznako (tip=koda)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5783,7 +5796,7 @@ msgid "Recompute taxes and total" msgstr "Ponovni izračun davkov in salda" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "Ni možno spremeniti/brisati dnevnik , ki ima postavke za to obdobje." @@ -5814,7 +5827,7 @@ msgid "Amount Computation" msgstr "Izračun zneska" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "Ni možno knjižiti v zaprto obdobje %s v dnevniku %s." @@ -6116,7 +6129,7 @@ msgid "Fixed Amount" msgstr "Določen znesek" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "Davka ni možno spremeniti,izbrisati morate vrstice." @@ -6167,14 +6180,14 @@ msgid "Child Accounts" msgstr "Podrejeni konti" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Naziv : %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Odpis" @@ -6200,7 +6213,7 @@ msgstr "Prihodki" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Dobavitelj" @@ -6220,7 +6233,7 @@ msgid "Account n°" msgstr "Konto št." #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Prosta referenca" @@ -6230,7 +6243,9 @@ msgstr "Prosta referenca" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Konti terjatev in obveznosti" @@ -6337,7 +6352,7 @@ msgid "Filter by" msgstr "Filtriraj po" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "Vnesli ste napačen izraz \"%(...)s\" v vaš model!" @@ -6387,7 +6402,7 @@ msgid "Number of Days" msgstr "Število dni" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6536,7 +6551,7 @@ msgid "Models" msgstr "Modeli" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6713,7 +6728,7 @@ msgid "You cannot create journal items on closed account." msgstr "Ni možno knjižiti na konto,ki je zaprt." #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "konto na liniji ne pripada podjetju iz glave računa." @@ -6734,7 +6749,7 @@ msgid "The related account currency if not equal to the company one." msgstr "Valuta konta ni enaka privzeti valuti podjetja." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "Po meni" @@ -6761,7 +6776,7 @@ msgid "Internal Transfers Account" msgstr "Konto internih transferjev" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "Preverite , če je izbran dnevnik." @@ -6787,7 +6802,7 @@ msgid "Power" msgstr "Napajanje" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "Ni možno generirati neuporabljene šifre dnevnika." @@ -6863,12 +6878,12 @@ msgstr "" "podrejene davke." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6948,7 +6963,9 @@ msgstr "Ne morete spremeniti podjetja , za konto , ki že ima vknjižbe." #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Vrnitev dobavitelju" @@ -7093,7 +7110,7 @@ msgstr "Statistika analitičnih vnosov" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Postavke: " @@ -7205,7 +7222,7 @@ msgstr "Ne morete odstraniti konta , ki vsebuje vknjižbe" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Napaka!" @@ -7432,7 +7449,7 @@ msgstr "" "Izbrana valuta , mora biti enaka tudi na privzetih kontih." #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7510,7 +7527,7 @@ msgid "Done" msgstr "Končano" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7805,7 +7822,7 @@ msgstr "Poročila" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7871,7 +7888,7 @@ msgid "Use model" msgstr "Model uporabe" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7927,7 +7944,7 @@ msgid "Root/View" msgstr "Osnova/Pogled" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "OPEJ" @@ -7996,7 +8013,7 @@ msgid "Maturity Date" msgstr "Datum zapadlosti" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Dnevnik prodaje" @@ -8007,7 +8024,7 @@ msgid "Invoice Tax" msgstr "Davek računa" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Ni številke kosa" @@ -8050,7 +8067,7 @@ msgid "Sales Properties" msgstr "Lastnosti prodaje" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -8075,7 +8092,7 @@ msgstr "Za" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Nastavitev valute" @@ -8108,7 +8125,7 @@ msgid "May" msgstr "Maj" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "Davki so določeni , vendar jih ni na postavkah računa!" @@ -8149,7 +8166,7 @@ msgstr "Vknjiži temeljnico" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Kupec" @@ -8165,7 +8182,7 @@ msgstr "Naziv poročila" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Gotovina" @@ -8334,6 +8351,7 @@ msgstr "Stalno" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Opozorilo!" @@ -8401,7 +8419,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Izberite valuto na računu" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Račun nima postavk!" @@ -8424,7 +8442,7 @@ msgid "Tax Use In" msgstr "Uporaba davka v" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8434,7 +8452,7 @@ msgstr "" "Pričakovani saldo (%.2f) je različen od izračunanega (%.2f)" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Postavke na kontu nimajo pravilnega statusa." @@ -8478,7 +8496,7 @@ msgid "Associated Partner" msgstr "Povezani partner" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Najprej morate izbrati partnerja!" @@ -8559,13 +8577,13 @@ msgstr "" "davkov." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Dnevnik vračil dobaviteljem" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "Določite številčno zaporedje" @@ -8814,7 +8832,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "${object.company_id.name} Račun (Ref ${object.number or 'n/a'})" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8922,7 +8940,7 @@ msgid "The partner account used for this invoice." msgstr "Partner na računu" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Davek %.2f%%" @@ -8940,7 +8958,7 @@ msgid "Payment Term Line" msgstr "Postavka plačilnih pogojev" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Dnevnik nakupov" @@ -9112,7 +9130,7 @@ msgid "Journal Name" msgstr "Naziv dnevnika" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Vnos \"%s\" ni veljaven!" @@ -9161,7 +9179,7 @@ msgid "" msgstr "Vrednost v drugi valuti" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "Vknjižba (%s) za skupni konto je bila potrjena." @@ -9223,7 +9241,7 @@ msgid "Reconciled entries" msgstr "Usklajene postavke" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "Napačen model!" @@ -9245,7 +9263,7 @@ msgid "Print Account Partner Balance" msgstr "Izpis stanja partnerja" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9281,7 +9299,7 @@ msgstr "neznano" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Dnevnik otvoritev" @@ -9380,7 +9398,7 @@ msgid "Unit of Currency" msgstr "Enota valute" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Dnevnik vračil kupcem" @@ -9446,13 +9464,13 @@ msgid "Purchase Tax(%)" msgstr "Nabavni davek(%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Ustvarite postavke računa" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9467,7 +9485,7 @@ msgid "Display Detail" msgstr "Podrobnosti" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "SCNJ" @@ -9639,8 +9657,8 @@ msgid "Receivable Account" msgstr "Konto terjatev" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "Podjetje na postavkah mora biti isto." @@ -9741,7 +9759,7 @@ msgid "Move" msgstr "Prenos" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9837,7 +9855,7 @@ msgid "Balance :" msgstr "Stanje:" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "Ni možno opraviti vknjižba za različna podjetja." @@ -9928,7 +9946,7 @@ msgid "Immediate Payment" msgstr "Takojšne plačilo" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr " Skupni protikonto" @@ -10017,7 +10035,7 @@ msgid "Unreconciled" msgstr "Neusklajeno" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Napačna skupna vsota!" @@ -10102,7 +10120,7 @@ msgid "Comparison" msgstr "Primerjava" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10196,7 +10214,7 @@ msgid "Journal Entry Model" msgstr "Model dnevnika" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "Začetno obdobje mora biti pred končnim." @@ -10496,6 +10514,7 @@ msgstr "Odpri za uskladitev z izpiski" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10511,7 +10530,9 @@ msgstr "Odpri za uskladitev z izpiski" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10520,6 +10541,7 @@ msgstr "Odpri za uskladitev z izpiski" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10611,7 +10633,7 @@ msgid "" msgstr "Če odprete transakcije , morate preveriti povezane transakcije" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "Ni možno spremeniti davka!" @@ -10680,8 +10702,10 @@ msgstr "Davčno območje konta" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Račun dobavitelja" @@ -10767,8 +10791,10 @@ msgid "" msgstr "Vrsta konta" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "S premiki" @@ -10863,7 +10889,7 @@ msgid "Entries Sorted by" msgstr "Urejeno po" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10952,6 +10978,8 @@ msgstr "Iskanje računa" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Vrnitev" @@ -11024,7 +11052,7 @@ msgid "Manual Invoice Taxes" msgstr "Ročno zaračunan davek" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "Plačilni pogoji dobavitelja nimajo vrstic." diff --git a/addons/account/i18n/sq.po b/addons/account/i18n/sq.po index ff7b6abfdd4..5b222624f2b 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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "E Mbetur" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "Shënimet e Modelit të Llogarisë" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2802,21 +2810,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3004,7 +3011,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3017,7 +3024,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3033,8 +3040,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3194,7 +3201,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3287,7 +3294,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3350,8 +3357,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3607,7 +3614,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3622,7 +3629,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3674,7 +3681,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3822,7 +3829,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3891,9 +3898,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3982,7 +3993,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3991,8 +4002,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4145,7 +4158,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4216,8 +4229,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4247,7 +4260,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4449,7 +4462,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4514,8 +4527,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4578,7 +4591,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4644,7 +4657,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4698,7 +4711,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4788,7 +4801,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4803,7 +4816,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4869,7 +4882,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4943,7 +4956,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5112,7 +5125,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5284,7 +5297,7 @@ msgid "Target Moves" msgstr "Lëvizjet e Drejtuara" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5365,7 +5378,7 @@ msgid "Internal Name" msgstr "Emri i Brendshëm" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5437,7 +5450,7 @@ msgid "Compute Code (if type=code)" msgstr "Kodi kompjuterik (nëse type=code)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5565,7 +5578,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5596,7 +5609,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5891,7 +5904,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5942,14 +5955,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5975,7 +5988,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5995,7 +6008,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -6005,7 +6018,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6109,7 +6124,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6157,7 +6172,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6303,7 +6318,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6475,7 +6490,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6496,7 +6511,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6523,7 +6538,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6549,7 +6564,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6620,12 +6635,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6703,7 +6718,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6846,7 +6863,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6955,7 +6972,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7176,7 +7193,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7247,7 +7264,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7532,7 +7549,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7595,7 +7612,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7646,7 +7663,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7713,7 +7730,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7724,7 +7741,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7763,7 +7780,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7788,7 +7805,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7820,7 +7837,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7861,7 +7878,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7877,7 +7894,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8044,6 +8061,7 @@ msgstr "Fikse" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8111,7 +8129,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8134,7 +8152,7 @@ msgid "Tax Use In" msgstr "Prdorimi i taksës në" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8142,7 +8160,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8186,7 +8204,7 @@ msgid "Associated Partner" msgstr "Partneri i Bashkuar" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8267,13 +8285,13 @@ msgstr "" "llogaritjes së taksave të ardhshme." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8516,7 +8534,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8617,7 +8635,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8635,7 +8653,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8804,7 +8822,7 @@ msgid "Journal Name" msgstr "Emri i Journal" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8852,7 +8870,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8913,7 +8931,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8935,7 +8953,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8969,7 +8987,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9064,7 +9082,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9130,13 +9148,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9149,7 +9167,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9308,8 +9326,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9410,7 +9428,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9504,7 +9522,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9595,7 +9613,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9684,7 +9702,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9769,7 +9787,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9856,7 +9874,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10155,6 +10173,7 @@ msgstr "Hape për pajtimin bankar" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10170,7 +10189,9 @@ msgstr "Hape për pajtimin bankar" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10179,6 +10200,7 @@ msgstr "Hape për pajtimin bankar" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10270,7 +10292,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10339,8 +10361,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10426,8 +10450,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10522,7 +10548,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10603,6 +10629,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10673,7 +10701,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/sr.po b/addons/account/i18n/sr.po index 02ef474653b..f585f6413f4 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-16 05:17+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:09+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -61,7 +61,7 @@ msgid "Residual" msgstr "Остатак" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -77,9 +77,9 @@ msgid "Import from invoice or payment" msgstr "Преузимање из рачуна или плаћања" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -131,15 +131,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -151,7 +151,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -333,7 +333,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -654,7 +654,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -665,13 +665,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -724,7 +724,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Konta potraživanja" @@ -762,7 +764,7 @@ msgid "Are you sure you want to create entries?" msgstr "Jeste sigurni da želite kreirati stavke?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -831,7 +833,7 @@ msgid "Type" msgstr "Tip" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -854,7 +856,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -926,7 +928,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1010,7 +1012,7 @@ msgid "Liability" msgstr "Obveza" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1081,10 +1083,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1208,7 +1210,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1513,15 +1515,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Sa saldom različitim od 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1744,8 +1748,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Račun" @@ -1820,7 +1826,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1972,36 +1978,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2015,8 +2021,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2058,7 +2064,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2130,7 +2136,7 @@ msgid "Analytic account" msgstr "Analitički konto" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2230,7 +2236,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Konta obveza" @@ -2535,7 +2543,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2556,7 +2564,7 @@ msgid "Main Sequence" msgstr "Glavna sekvenca" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2580,7 +2588,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2688,7 +2696,7 @@ msgid "Account Model Entries" msgstr "Stavke modela" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2805,21 +2813,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3007,7 +3014,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3020,7 +3027,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3036,8 +3043,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3196,7 +3203,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3294,7 +3301,7 @@ msgstr "" "kurs na datum. Dolazece transakcije uvek koriste vazeci kurs toga dana." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3357,8 +3364,8 @@ msgid "View" msgstr "Pregled" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3614,7 +3621,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3629,7 +3636,7 @@ msgid "Starting Balance" msgstr "Početni saldo" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3681,7 +3688,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3829,7 +3836,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3898,9 +3905,13 @@ msgid "VAT :" msgstr "PDV :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3991,7 +4002,7 @@ msgid "Chart of Accounts Template" msgstr "Predložak kontnog plana" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4000,8 +4011,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4157,7 +4170,7 @@ msgid "Name" msgstr "Ime" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4228,8 +4241,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4259,7 +4272,7 @@ msgid "Consolidated Children" msgstr "Konsolidirana konta" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4461,7 +4474,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4526,8 +4539,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4590,7 +4603,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4656,7 +4669,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4710,7 +4723,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4800,7 +4813,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4815,7 +4828,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4881,7 +4894,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4955,7 +4968,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5124,7 +5137,7 @@ msgid "Tax Application" msgstr "Poreska Aplikacija" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5296,7 +5309,7 @@ msgid "Target Moves" msgstr "Ciljna knjiženja" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5377,7 +5390,7 @@ msgid "Internal Name" msgstr "Interno ime" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5449,7 +5462,7 @@ msgid "Compute Code (if type=code)" msgstr "Izracunaj Kod ( if type= code) *programiranje" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5577,7 +5590,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5607,7 +5620,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5902,7 +5915,7 @@ msgid "Fixed Amount" msgstr "Fiksni iznos" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5953,14 +5966,14 @@ msgid "Child Accounts" msgstr "Podređena konta" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Otpis" @@ -5986,7 +5999,7 @@ msgstr "Prihod" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Dobavljač" @@ -6006,7 +6019,7 @@ msgid "Account n°" msgstr "Br. računa" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -6016,7 +6029,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Konta potraživanja i dugovanja partnera" @@ -6120,7 +6135,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6168,7 +6183,7 @@ msgid "Number of Days" msgstr "Broj Dana" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6314,7 +6329,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6486,7 +6501,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6507,7 +6522,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6534,7 +6549,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6560,7 +6575,7 @@ msgid "Power" msgstr "Eksponent" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6635,12 +6650,12 @@ msgstr "" "je vazan." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6718,7 +6733,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Povrat Dobavljaču" @@ -6863,7 +6880,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6974,7 +6991,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7195,7 +7212,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7266,7 +7283,7 @@ msgid "Done" msgstr "Gotovo" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7556,7 +7573,7 @@ msgstr "Izveštavanje" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7619,7 +7636,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7670,7 +7687,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7737,7 +7754,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7748,7 +7765,7 @@ msgid "Invoice Tax" msgstr "Porezi računa" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7787,7 +7804,7 @@ msgid "Sales Properties" msgstr "Karakteristike prodaje" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7812,7 +7829,7 @@ msgstr "Do" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7844,7 +7861,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7885,7 +7902,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Kupac" @@ -7901,7 +7918,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Gotovina" @@ -8071,6 +8088,7 @@ msgstr "Fiksno" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Upozorenje!" @@ -8138,7 +8156,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8161,7 +8179,7 @@ msgid "Tax Use In" msgstr "Primena poreza za" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8169,7 +8187,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8213,7 +8231,7 @@ msgid "Associated Partner" msgstr "Povezani partner" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8294,13 +8312,13 @@ msgstr "" "izračuna sledećeg poreza." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8543,7 +8561,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8644,7 +8662,7 @@ msgid "The partner account used for this invoice." msgstr "Konto partnera za ovu fakturu" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8662,7 +8680,7 @@ msgid "Payment Term Line" msgstr "Red uslova plaćanja" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8831,7 +8849,7 @@ msgid "Journal Name" msgstr "Naziv dnevnika" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8881,7 +8899,7 @@ msgstr "" "Iznos troskova u drugoj opcionoj valuti ako je ovo multi-valutni sadrzaj" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8942,7 +8960,7 @@ msgid "Reconciled entries" msgstr "Zatvorene stavke" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8964,7 +8982,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8998,7 +9016,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Dnevnik početnog stanja" @@ -9095,7 +9113,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9161,13 +9179,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9180,7 +9198,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9339,8 +9357,8 @@ msgid "Receivable Account" msgstr "Konto potraživanja" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9441,7 +9459,7 @@ msgid "Move" msgstr "Pomeri" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9535,7 +9553,7 @@ msgid "Balance :" msgstr "Saldo" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9626,7 +9644,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9715,7 +9733,7 @@ msgid "Unreconciled" msgstr "Otvoren" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9800,7 +9818,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9889,7 +9907,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10188,6 +10206,7 @@ msgstr "Otvoreno za zatvaranje banke" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10203,7 +10222,9 @@ msgstr "Otvoreno za zatvaranje banke" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10212,6 +10233,7 @@ msgstr "Otvoreno za zatvaranje banke" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10303,7 +10325,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10372,8 +10394,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Račun dobavljača" @@ -10459,8 +10483,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Sa prijenosima" @@ -10555,7 +10581,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10636,6 +10662,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Povrat novca" @@ -10706,7 +10734,7 @@ msgid "Manual Invoice Taxes" msgstr "Ručni porezi računa" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/sr@latin.po b/addons/account/i18n/sr@latin.po index 89db1c96863..26aff2508e3 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-16 05:21+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:14+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "Ostatak" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "Stavka Dnevnika \"%s\" nije validna" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "Uvezi iz računa ili plaćanja" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "Omogućuje skrivanje neaktivnih uslova plaćanja." #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "Upozorenje !" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -333,7 +333,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -654,7 +654,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -665,13 +665,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -724,7 +724,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Konta potraživanja" @@ -762,7 +764,7 @@ msgid "Are you sure you want to create entries?" msgstr "Jeste sigurni da želite kreirati stavke?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -831,7 +833,7 @@ msgid "Type" msgstr "Tip" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -854,7 +856,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -926,7 +928,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1010,7 +1012,7 @@ msgid "Liability" msgstr "Obveza" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1081,10 +1083,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1208,7 +1210,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1513,15 +1515,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Sa saldom različitim od 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1744,8 +1748,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Račun" @@ -1820,7 +1826,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1972,36 +1978,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2015,8 +2021,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2058,7 +2064,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2130,7 +2136,7 @@ msgid "Analytic account" msgstr "Analitički konto" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2230,7 +2236,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Konta obveza" @@ -2535,7 +2543,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2556,7 +2564,7 @@ msgid "Main Sequence" msgstr "Glavna sekvenca" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2580,7 +2588,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2688,7 +2696,7 @@ msgid "Account Model Entries" msgstr "Stavke modela" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2805,21 +2813,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3007,7 +3014,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3020,7 +3027,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3036,8 +3043,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3196,7 +3203,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3294,7 +3301,7 @@ msgstr "" "kurs na datum. Dolazece transakcije uvek koriste vazeci kurs toga dana." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3357,8 +3364,8 @@ msgid "View" msgstr "Pregled" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3614,7 +3621,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3629,7 +3636,7 @@ msgid "Starting Balance" msgstr "Početni saldo" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3681,7 +3688,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3829,7 +3836,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3898,9 +3905,13 @@ msgid "VAT :" msgstr "PDV :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3991,7 +4002,7 @@ msgid "Chart of Accounts Template" msgstr "Predložak kontnog plana" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4000,8 +4011,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4157,7 +4170,7 @@ msgid "Name" msgstr "Ime" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4228,8 +4241,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4259,7 +4272,7 @@ msgid "Consolidated Children" msgstr "Konsolidirana konta" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4461,7 +4474,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4526,8 +4539,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4590,7 +4603,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4656,7 +4669,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4710,7 +4723,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4800,7 +4813,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4815,7 +4828,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4881,7 +4894,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4955,7 +4968,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5124,7 +5137,7 @@ msgid "Tax Application" msgstr "Poreska Aplikacija" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5296,7 +5309,7 @@ msgid "Target Moves" msgstr "Ciljna knjiženja" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5377,7 +5390,7 @@ msgid "Internal Name" msgstr "Interno ime" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5449,7 +5462,7 @@ msgid "Compute Code (if type=code)" msgstr "Izracunaj Kod ( if type= code) *programiranje" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5577,7 +5590,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5607,7 +5620,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5902,7 +5915,7 @@ msgid "Fixed Amount" msgstr "Fiksni iznos" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5953,14 +5966,14 @@ msgid "Child Accounts" msgstr "Podređena konta" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Otpis" @@ -5986,7 +5999,7 @@ msgstr "Prihod" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Dobavljač" @@ -6006,7 +6019,7 @@ msgid "Account n°" msgstr "Br. računa" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -6016,7 +6029,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Konta potraživanja i dugovanja partnera" @@ -6120,7 +6135,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6168,7 +6183,7 @@ msgid "Number of Days" msgstr "Broj Dana" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6314,7 +6329,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6486,7 +6501,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6507,7 +6522,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6534,7 +6549,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6560,7 +6575,7 @@ msgid "Power" msgstr "Eksponent" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6635,12 +6650,12 @@ msgstr "" "je vazan." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6718,7 +6733,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Povrat Dobavljaču" @@ -6863,7 +6880,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6974,7 +6991,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7195,7 +7212,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7266,7 +7283,7 @@ msgid "Done" msgstr "Gotovo" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7556,7 +7573,7 @@ msgstr "Izveštavanje" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7619,7 +7636,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7670,7 +7687,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7737,7 +7754,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7748,7 +7765,7 @@ msgid "Invoice Tax" msgstr "Porezi računa" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7787,7 +7804,7 @@ msgid "Sales Properties" msgstr "Karakteristike prodaje" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7812,7 +7829,7 @@ msgstr "Do" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7844,7 +7861,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7885,7 +7902,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Kupac" @@ -7901,7 +7918,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Gotovina" @@ -8071,6 +8088,7 @@ msgstr "Fiksno" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Upozorenje!" @@ -8138,7 +8156,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8161,7 +8179,7 @@ msgid "Tax Use In" msgstr "Primena poreza za" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8169,7 +8187,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8213,7 +8231,7 @@ msgid "Associated Partner" msgstr "Povezani partner" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8294,13 +8312,13 @@ msgstr "" "izračuna sledećeg poreza." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8543,7 +8561,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8644,7 +8662,7 @@ msgid "The partner account used for this invoice." msgstr "Konto partnera za ovu fakturu" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8662,7 +8680,7 @@ msgid "Payment Term Line" msgstr "Red uslova plaćanja" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8831,7 +8849,7 @@ msgid "Journal Name" msgstr "Naziv dnevnika" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8881,7 +8899,7 @@ msgstr "" "Iznos troskova u drugoj opcionoj valuti ako je ovo multi-valutni sadrzaj" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8942,7 +8960,7 @@ msgid "Reconciled entries" msgstr "Zatvorene stavke" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8964,7 +8982,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8998,7 +9016,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Dnevnik početnog stanja" @@ -9095,7 +9113,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9161,13 +9179,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9180,7 +9198,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9339,8 +9357,8 @@ msgid "Receivable Account" msgstr "Konto potraživanja" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9441,7 +9459,7 @@ msgid "Move" msgstr "Pomeri" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9535,7 +9553,7 @@ msgid "Balance :" msgstr "Saldo" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9626,7 +9644,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9715,7 +9733,7 @@ msgid "Unreconciled" msgstr "Otvoren" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9800,7 +9818,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9889,7 +9907,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10188,6 +10206,7 @@ msgstr "Otvoreno za zatvaranje banke" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10203,7 +10222,9 @@ msgstr "Otvoreno za zatvaranje banke" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10212,6 +10233,7 @@ msgstr "Otvoreno za zatvaranje banke" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10303,7 +10325,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10372,8 +10394,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Račun dobavljača" @@ -10459,8 +10483,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Sa prijenosima" @@ -10555,7 +10581,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10636,6 +10662,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Povrat novca" @@ -10706,7 +10734,7 @@ msgid "Manual Invoice Taxes" msgstr "Ručni porezi računa" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/sv.po b/addons/account/i18n/sv.po index 4b704acbfaa..1cdb152cf0f 100644 --- a/addons/account/i18n/sv.po +++ b/addons/account/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-16 05:18+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:10+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -59,7 +59,7 @@ msgid "Residual" msgstr "Kvarvarande" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "Journalposten %s är inte giltig" @@ -75,9 +75,9 @@ msgid "Import from invoice or payment" msgstr "Importera från fakturor eller betalningar" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -130,15 +130,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -150,7 +150,7 @@ msgid "Warning!" msgstr "Varning!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "Övrig journal" @@ -342,7 +342,7 @@ msgid "Allow multi currencies" msgstr "Tillåt flera valutor" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "Du måste definiera objektjournal för '%s' journalen!" @@ -663,7 +663,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "Period saknas eller flera perioder finns för det givna datumet." @@ -674,13 +674,13 @@ msgid "Report of the Sales by Account Type" msgstr "Försäljningskonto per kontotyp" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "SAJ" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -735,7 +735,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Kundfordringskonton" @@ -775,7 +777,7 @@ msgid "Are you sure you want to create entries?" msgstr "Är du säker på att du vill skapa verifikat?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -844,7 +846,7 @@ msgid "Type" msgstr "Typ" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -869,7 +871,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Leverantörsfakturor och öppna transaktioner" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -941,7 +943,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1025,7 +1027,7 @@ msgid "Liability" msgstr "Skuld" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "Vänligen definiera ordningen på journalen knuten till fakturan." @@ -1099,10 +1101,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1228,7 +1230,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Bank" @@ -1535,15 +1537,17 @@ msgid "%s (copy)" msgstr "%s (kopia)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "Med balans skilt från 0" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1768,8 +1772,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Faktura" @@ -1844,7 +1850,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1996,36 +2002,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2039,8 +2045,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Fel!" @@ -2082,7 +2088,7 @@ msgid "period close" msgstr "periodavslut" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2154,7 +2160,7 @@ msgid "Analytic account" msgstr "Objektkonto" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Vänligen kontrollera att ett konto är definierat i journalen." @@ -2254,7 +2260,9 @@ msgstr "Tillgångshantering" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Skuldkonton" @@ -2567,7 +2575,7 @@ msgid "Create an Account Based on this Template" msgstr "Skapa ett konto baserat på denna mall" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2588,7 +2596,7 @@ msgid "Main Sequence" msgstr "Huvudsekvens" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2614,7 +2622,7 @@ msgid "Fiscal Positions" msgstr "Skatteregion" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2722,7 +2730,7 @@ msgid "Account Model Entries" msgstr "Account Model Entries" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "EXJ" @@ -2839,21 +2847,20 @@ msgid "Accounts" msgstr "Konton" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Konfigurationsfel!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -3047,7 +3054,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3060,7 +3067,7 @@ msgid "Sales by Account" msgstr "Försäljning per konto" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3076,8 +3083,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3242,7 +3249,7 @@ msgid "Fiscal Position" msgstr "Skatteregion" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3342,7 +3349,7 @@ msgstr "" "använda kursdatum. Inkommande transaktioner använder alltid det kursdatum." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3405,8 +3412,8 @@ msgid "View" msgstr "Vy" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3677,7 +3684,7 @@ msgstr "" "transaktioner att ha samma referens som verifikatet i övrigt." #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3692,7 +3699,7 @@ msgid "Starting Balance" msgstr "Ingående balans" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "No Partner Defined !" @@ -3746,7 +3753,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3896,7 +3903,7 @@ msgid "Period Length (days)" msgstr "Periodlängd (dagar)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3965,9 +3972,13 @@ msgid "VAT :" msgstr "Moms:" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4058,7 +4069,7 @@ msgid "Chart of Accounts Template" msgstr "Förlaga för kontoplan" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4069,8 +4080,10 @@ msgstr "" "\"%s\" bygger på företagets betalningsvillkor! Vänligen ange företag på det!" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4230,7 +4243,7 @@ msgid "Name" msgstr "Namn" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "Inga icke konfigurerade bolag !" @@ -4303,8 +4316,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "Du kan inte använda ett inaktivt konto." @@ -4334,7 +4347,7 @@ msgid "Consolidated Children" msgstr "Consolidated Children" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4543,7 +4556,7 @@ msgid "Cancel the Selected Invoices" msgstr "Avbryt de valda fakturorna" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "Du måste definiera objektjournal för '%s' journalen!" @@ -4610,8 +4623,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4674,7 +4687,7 @@ msgid "Account Base Code" msgstr "Kontobaskod" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4741,7 +4754,7 @@ msgid "Statement from invoice or payment" msgstr "Utdrag från faktura eller betalning" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4795,7 +4808,7 @@ msgid "Bank statements are entered in the system." msgstr "Kontoutdrag är registrerade" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Stäm av avskrivning" @@ -4888,7 +4901,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4903,7 +4916,7 @@ msgid "Based On" msgstr "Baserad på" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -4969,7 +4982,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "Inköpsmoms %.2f%%" @@ -5043,7 +5056,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "Övr" @@ -5215,7 +5228,7 @@ msgid "Tax Application" msgstr "Tax Application" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5392,7 +5405,7 @@ msgid "Target Moves" msgstr "Vald affärshändelse" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5477,7 +5490,7 @@ msgid "Internal Name" msgstr "Internt namn" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5549,7 +5562,7 @@ msgid "Compute Code (if type=code)" msgstr "Beräkna kod (if type=code)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5680,7 +5693,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5710,7 +5723,7 @@ msgid "Amount Computation" msgstr "Beloppsberäkning" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -6009,7 +6022,7 @@ msgid "Fixed Amount" msgstr "Fast belopp" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -6060,14 +6073,14 @@ msgid "Child Accounts" msgstr "Underliggande konton" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Transaktions namn (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Avskrivning" @@ -6093,7 +6106,7 @@ msgstr "Intäkter" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Leverantör" @@ -6113,7 +6126,7 @@ msgid "Account n°" msgstr "Konto Nr" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Meddelande" @@ -6123,7 +6136,9 @@ msgstr "Meddelande" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Fordrings- och skuldkonton" @@ -6232,7 +6247,7 @@ msgid "Filter by" msgstr "Filtrera efter" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "Du har fel uttryck \"%(...)s\" i din mall !" @@ -6280,7 +6295,7 @@ msgid "Number of Days" msgstr "Antal dagar" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6430,7 +6445,7 @@ msgid "Models" msgstr "Modeller" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6606,7 +6621,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6627,7 +6642,7 @@ msgid "The related account currency if not equal to the company one." msgstr "Det relaterade kontots valuta är inte den samma som företagets." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6654,7 +6669,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6680,7 +6695,7 @@ msgid "Power" msgstr "Kraft" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "Kan inte generera en oanvänd journalkod." @@ -6756,12 +6771,12 @@ msgstr "" "children. In this case, the evaluation order is important." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6848,7 +6863,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Återbetalning till leverantör" @@ -6993,7 +7010,7 @@ msgstr "Objektstatistik" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Verifikat: " @@ -7106,7 +7123,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Fel !" @@ -7337,7 +7354,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7416,7 +7433,7 @@ msgid "Done" msgstr "Klar" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7712,7 +7729,7 @@ msgstr "Rapporter" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7778,7 +7795,7 @@ msgid "Use model" msgstr "Använd mall" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7829,7 +7846,7 @@ msgid "Root/View" msgstr "Root-vy" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "OPEJ" @@ -7898,7 +7915,7 @@ msgid "Maturity Date" msgstr "Förfallodag" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Försäljningsjournal" @@ -7909,7 +7926,7 @@ msgid "Invoice Tax" msgstr "Fakturaskatt" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Stycknummer saknas !" @@ -7953,7 +7970,7 @@ msgid "Sales Properties" msgstr "Försäljningsegenskaper" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7978,7 +7995,7 @@ msgstr "Till" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Valutajusteringar" @@ -8012,7 +8029,7 @@ msgid "May" msgstr "Maj" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "Globala skatter definierade, men de saknas på fakturaraderna !" @@ -8053,7 +8070,7 @@ msgstr "Bokför verifikat" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Kund" @@ -8069,7 +8086,7 @@ msgstr "Rapportnamn" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Kontant" @@ -8239,6 +8256,7 @@ msgstr "Fast" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Warning !" @@ -8306,7 +8324,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Välj valuta för fakturan" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Inga faktura rader !" @@ -8329,7 +8347,7 @@ msgid "Tax Use In" msgstr "Aktuell moms" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8339,7 +8357,7 @@ msgstr "" "Det förväntade saldot (%.2f) avviker från det beräknade. (% .2f)" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Kontots transaktioner är inte giltiga." @@ -8383,7 +8401,7 @@ msgid "Associated Partner" msgstr "Associerade företag" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "You must first select a partner !" @@ -8463,13 +8481,13 @@ msgstr "" "Satt om skatten måste ingå i beloppet för nästa steg i skatteberäkningen." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "Inköpskreditjournal" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8716,7 +8734,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "${object.company_id.name}-faktura (Ref ${object.number or 'n/a'})" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8825,7 +8843,7 @@ msgid "The partner account used for this invoice." msgstr "Företagskonton använt för denna faktura" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Skatt %.2f%%" @@ -8843,7 +8861,7 @@ msgid "Payment Term Line" msgstr "Payment Term Line" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "Inköpsjournal" @@ -9014,7 +9032,7 @@ msgid "Journal Name" msgstr "Journalnamn" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Verifikat \"%s\" är inte giltigt !" @@ -9064,7 +9082,7 @@ msgstr "" "post." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -9125,7 +9143,7 @@ msgid "Reconciled entries" msgstr "Avstämda transaktioner" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "Fel mall !" @@ -9147,7 +9165,7 @@ msgid "Print Account Partner Balance" msgstr "Skriv ut företagsbalansen" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9186,7 +9204,7 @@ msgstr "okänd" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "Öppna transaktionsjournal" @@ -9283,7 +9301,7 @@ msgid "Unit of Currency" msgstr "Valutaenhet" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "Kreditjournal" @@ -9349,13 +9367,13 @@ msgid "Purchase Tax(%)" msgstr "Inköpsmoms(%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Vänligen skapa några fakturarader." #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9368,7 +9386,7 @@ msgid "Display Detail" msgstr "Visa detaljer" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "SCNJ" @@ -9529,8 +9547,8 @@ msgid "Receivable Account" msgstr "Kundfordringskonto" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9631,7 +9649,7 @@ msgid "Move" msgstr "Affärshändelse" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9727,7 +9745,7 @@ msgid "Balance :" msgstr "Balans:" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9818,7 +9836,7 @@ msgid "Immediate Payment" msgstr "Omedelbar betalning" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9914,7 +9932,7 @@ msgid "Unreconciled" msgstr "Oavstämd" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Bristande total !" @@ -10006,7 +10024,7 @@ msgid "Comparison" msgstr "Jämförelse" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10095,7 +10113,7 @@ msgid "Journal Entry Model" msgstr "Verifikatmall" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10397,6 +10415,7 @@ msgstr "Öppna för bankavstämning" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10412,7 +10431,9 @@ msgstr "Öppna för bankavstämning" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10421,6 +10442,7 @@ msgstr "Öppna för bankavstämning" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10516,7 +10538,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "Kunde inte ändra moms!" @@ -10585,8 +10607,10 @@ msgstr "Kontots skatteregion" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Leverantörsfaktura" @@ -10676,8 +10700,10 @@ msgstr "" "konton (för debet/kredit-beräkningar ), stängt för avlutade konton." #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Med affärshändelser" @@ -10772,7 +10798,7 @@ msgid "Entries Sorted by" msgstr "Poster sorterade på" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10853,6 +10879,8 @@ msgstr "Sök faktura" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Återbetalning" @@ -10923,7 +10951,7 @@ msgid "Manual Invoice Taxes" msgstr "Manuell fakturaskatt" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/ta.po b/addons/account/i18n/ta.po index 622241f0b51..d208f610310 100644 --- a/addons/account/i18n/ta.po +++ b/addons/account/i18n/ta.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2010-09-01 06:55+0000\n" -"Last-Translator: ஆமாச்சு \n" +"Last-Translator: ஆமாச்சு \n" "Language-Team: Tamil \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-16 05:18+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:10+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "எச்சரிக்கை!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "உட் பெயர்" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8049,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/te.po b/addons/account/i18n/te.po index fbaccae7167..71773e63df1 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-16 05:18+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:10+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "రకం" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "అప్పు" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "పేరు" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "స్థిర మొత్తం" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "ఆదాయం" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "రోజుల సంఖ్య" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "పొరపాటు!" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "పూర్తయ్యింది" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "నగదు" @@ -8032,6 +8049,7 @@ msgstr "స్ఠిర" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "హెచ్చరిక !" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "రావాల్సిన ఖాతా" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/th.po b/addons/account/i18n/th.po index a642dbffe7c..972fb85587b 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-16 05:18+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:11+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "มูลค่าซาก" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "คำเตือน!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -309,7 +309,7 @@ msgstr "" #. module: account #: field:account.config.settings,module_account_budget:0 msgid "Budget management" -msgstr "" +msgstr "การจัดการงบประมาณ" #. module: account #: view:product.template:0 @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "บัญชีลูกหนี้" @@ -751,7 +753,7 @@ msgstr "รายงานบัญชีแยกประเภททั่ว #. module: account #: view:account.invoice:0 msgid "Re-Open" -msgstr "" +msgstr "เปิดอีกครั้ง" #. module: account #: view:account.use.model:0 @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "ประเภท" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -871,7 +873,7 @@ msgstr "" #. module: account #: view:account.invoice:0 msgid "Send by Email" -msgstr "" +msgstr "ส่งทางอีเมล์" #. module: account #: help:account.central.journal,amount_currency:0 @@ -905,7 +907,7 @@ msgstr "กันยายน" #. module: account #: selection:account.subscription,period_type:0 msgid "days" -msgstr "days" +msgstr "วัน" #. module: account #: help:account.account.template,nocreate:0 @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "ธนาคาร" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "ใบกำกับสินค้า/ใบแจ้งหนี้" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "ปิดงวด" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "วิเคราะห์บัญชี" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "บัญชี" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "การตั้งค่าผิดพลาด" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "แสดงตัวอย่าง" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "ชื่อเรียกภายใน" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8049,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "การเตือน" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" @@ -11006,3 +11034,6 @@ msgstr "" #~ msgid "Voucher Management" #~ msgstr "การจัดการ Voucher" + +#~ msgid "Cancel Invoice" +#~ msgstr "ยกเลิก Invoice" diff --git a/addons/account/i18n/tlh.po b/addons/account/i18n/tlh.po index df5889ae438..983bc728154 100644 --- a/addons/account/i18n/tlh.po +++ b/addons/account/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-16 05:18+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:11+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -57,7 +57,7 @@ msgid "Residual" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -73,9 +73,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -127,15 +127,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -147,7 +147,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -329,7 +329,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -650,7 +650,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -661,13 +661,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -720,7 +720,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -758,7 +760,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -827,7 +829,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -850,7 +852,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -922,7 +924,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1006,7 +1008,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1077,10 +1079,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1204,7 +1206,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1509,15 +1511,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1740,8 +1744,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1816,7 +1822,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1968,36 +1974,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2011,8 +2017,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2054,7 +2060,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2126,7 +2132,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2226,7 +2232,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2531,7 +2539,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2552,7 +2560,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2576,7 +2584,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2684,7 +2692,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2796,21 +2804,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2998,7 +3005,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3011,7 +3018,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3027,8 +3034,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3187,7 +3194,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3280,7 +3287,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3343,8 +3350,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3600,7 +3607,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3615,7 +3622,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3667,7 +3674,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3815,7 +3822,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3884,9 +3891,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3975,7 +3986,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3984,8 +3995,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4138,7 +4151,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4209,8 +4222,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4240,7 +4253,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4442,7 +4455,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4507,8 +4520,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4571,7 +4584,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4637,7 +4650,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4691,7 +4704,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4781,7 +4794,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4796,7 +4809,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4862,7 +4875,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4936,7 +4949,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5105,7 +5118,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5277,7 +5290,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5358,7 +5371,7 @@ msgid "Internal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5430,7 +5443,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5558,7 +5571,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5586,7 +5599,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5881,7 +5894,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5932,14 +5945,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5965,7 +5978,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5985,7 +5998,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5995,7 +6008,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6099,7 +6114,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6147,7 +6162,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6293,7 +6308,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6465,7 +6480,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6486,7 +6501,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6513,7 +6528,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6539,7 +6554,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6610,12 +6625,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6693,7 +6708,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6836,7 +6853,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6945,7 +6962,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7166,7 +7183,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7237,7 +7254,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7522,7 +7539,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7585,7 +7602,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7636,7 +7653,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7703,7 +7720,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7714,7 +7731,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7753,7 +7770,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7778,7 +7795,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7810,7 +7827,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7851,7 +7868,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7867,7 +7884,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8031,6 +8048,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8098,7 +8116,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8121,7 +8139,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8129,7 +8147,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8173,7 +8191,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8252,13 +8270,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8501,7 +8519,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8602,7 +8620,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8620,7 +8638,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8789,7 +8807,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8837,7 +8855,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8898,7 +8916,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8920,7 +8938,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8954,7 +8972,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9049,7 +9067,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9115,13 +9133,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9134,7 +9152,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9293,8 +9311,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9395,7 +9413,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9489,7 +9507,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9580,7 +9598,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9669,7 +9687,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9754,7 +9772,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9841,7 +9859,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10140,6 +10158,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10155,7 +10174,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10164,6 +10185,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10255,7 +10277,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10324,8 +10346,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10411,8 +10435,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10507,7 +10533,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10588,6 +10614,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10658,7 +10686,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/tr.po b/addons/account/i18n/tr.po index 80f353953d0..c3e55b1dd76 100644 --- a/addons/account/i18n/tr.po +++ b/addons/account/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-16 05:18+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:11+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -40,7 +40,7 @@ msgstr "" #. module: account #: view:account.move.reconcile:0 msgid "Journal Entry Reconcile" -msgstr "Günlük Kaydı Uzlaştır" +msgstr "Yevmiye Kaydı Uzlaştır" #. module: account #: view:account.account:0 @@ -60,10 +60,10 @@ msgid "Residual" msgstr "Kalan" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." -msgstr "Günlük maddesi \"%s\" geçerli değildir." +msgstr "Yevmiye maddesi \"%s\" geçerli değildir." #. module: account #: model:ir.model,name:account.model_report_aged_receivable @@ -76,9 +76,9 @@ msgid "Import from invoice or payment" msgstr "Fatura ya da ödemeden içeaktar" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "Hatalı Hesap!" @@ -134,15 +134,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -154,10 +154,10 @@ msgid "Warning!" msgstr "Uyarı!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" -msgstr "Çeşitli Günlük" +msgstr "Çeşitli Yevmiye" #. module: account #: code:addons/account/wizard/account_open_closed_fiscalyear.py:39 @@ -167,8 +167,8 @@ msgid "" "which is set after generating opening entries from 'Generate Opening " "Entries'." msgstr "" -"'Açılış Maddelerini Oluştur' dan açılış girişlerini oluşturduktan sonra bu " -"Mali Yıl için 'Yıl Sonu Kayıtları Günlüğü'nü ayarlamalısınız." +"'Açılış Girişlerini Oluştur' dan açılış girişlerini oluşturduktan sonra bu " +"Mali Yıl için 'Yıl Sonu Kayıtları Yevmiyesini' ayarlamalısınız." #. module: account #: field:account.fiscal.position.account,account_src_id:0 @@ -187,13 +187,12 @@ msgid "" "

\n" " " msgstr "" -"

\\n\n" -" Bir mali dönem eklemek için tıklayın.\\n\n" -"

\\n\n" -" Bir hesap dönemi genel olarak bir ay ya da üç aylıktır. Bu\\" -"n\n" -" genelde vergi beyanı dönemlerine rastlar.\\n\n" -"

\\n\n" +"

\n" +" Bir mali dönem eklemek için tıklayın.\n" +"

\n" +" Bir hesap dönemi genel olarak bir ay ya da üç aylıktır. Bu\n" +" genelde vergi beyanı dönemlerine rastlar.\n" +"

\n" " " #. module: account @@ -218,8 +217,8 @@ msgid "" "invoice) to create analytic entries, OpenERP will look for a matching " "journal of the same type." msgstr "" -"Analitik günlüğün tipini verir. Bir belge için (ör: fatura) analitik günlük " -"kalemleri oluşturmak gerektiğinde, OpenERP aynı tipe uyan günlük defteri " +"Analitik günlüğün tipini verir. Bir belge için (ör: fatura) analitik yevmiye " +"kalemleri oluşturmak gerektiğinde, OpenERP aynı tipe uyan yevmiye defteri " "arayacaktır." #. module: account @@ -247,7 +246,7 @@ msgstr "Hareket kalemi uzlaştırmasını seç" #. module: account #: model:process.transition,note:account.process_transition_supplierentriesreconcile0 msgid "Accounting entries are an input of the reconciliation." -msgstr "Muhasebe kayıtları uzlaştırmanın girdileridir." +msgstr "Muhasebe kayıtları uzlaştırmanın bir girdisidir." #. module: account #: model:ir.ui.menu,name:account.menu_finance_management_belgian_reports @@ -321,16 +320,16 @@ msgid "" "

\n" " " msgstr "" -"

\\n\n" -" Müşteri iadesi oluşturmak için tıklayın. \\n\n" +"

\n" +" Müşteri iadesi oluşturmak için tıklayın. \n" "

\\n\n" " İade bir faturayı kısmi ya da tamamen alacak olarak müşteri " -"hesabına kaydeder.\\n\n" -"

\\n\n" -" Elle bir müşteri iadesi oluşturmak yerine\\n\n" +"hesabına kaydeder.\n" +"

\n" +" Elle bir müşteri iadesi oluşturmak yerine\n" " ilgili müşteri faturalarından da doğrudan " -"oluşturabilirsiniz.\\n\n" -"

\\n\n" +"oluşturabilirsiniz.\n" +"

\n" " " #. module: account @@ -374,10 +373,10 @@ msgid "Allow multi currencies" msgstr "Çok para birimine izin ver" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" -msgstr "'%s' Tipinde bir analitik günlük tanımlamalısınız!" +msgstr "'%s' Tipinde bir analitik yevmiye tanımlamalısınız!" #. module: account #: selection:account.entries.report,month:0 @@ -564,7 +563,7 @@ msgstr "Karşılaştırmayı Aç" #: model:ir.model,name:account.model_account_journal #: field:validate.account.move,journal_id:0 msgid "Journal" -msgstr "Günlük" +msgstr "Yevmiye" #. module: account #: model:ir.model,name:account.model_account_invoice_confirm @@ -574,7 +573,7 @@ msgstr "Seçili faturaları doğrula" #. module: account #: field:account.addtmpl.wizard,cparent_id:0 msgid "Parent target" -msgstr "Ana hedef" +msgstr "Üst hedef" #. module: account #: help:account.invoice.line,sequence:0 @@ -584,7 +583,7 @@ msgstr "Faturayı gösterirken bu satırın sırasını verir." #. module: account #: field:account.bank.statement,account_id:0 msgid "Account used in this journal" -msgstr "Bu günlükte kullanılan hesap" +msgstr "Bu yevmiyede kullanılan hesap" #. module: account #: help:account.aged.trial.balance,chart_account_id:0 @@ -602,7 +601,7 @@ msgstr "Bu günlükte kullanılan hesap" #: help:account.vat.declaration,chart_account_id:0 #: help:accounting.report,chart_account_id:0 msgid "Select Charts of Accounts" -msgstr "Hesap Planı seçin" +msgstr "Hesap Planı Seçin" #. module: account #: model:ir.model,name:account.model_account_invoice_refund @@ -653,7 +652,7 @@ msgstr "Uzlaştırılacak birşey yok" #. module: account #: field:account.config.settings,decimal_precision:0 msgid "Decimal precision on journal entries" -msgstr "Günlük kayıtları için ondalık hassasiyeti" +msgstr "Yevmiye kayıtları için ondalık doğruluğu" #. module: account #: selection:account.config.settings,period:0 @@ -664,7 +663,7 @@ msgstr "3 Aylık" #. module: account #: field:ir.sequence,fiscal_ids:0 msgid "Sequences" -msgstr "Diziler" +msgstr "Sıralamalar" #. module: account #: field:account.financial.report,account_report_id:0 @@ -679,7 +678,7 @@ msgid "" "Specified journal does not have any account move entries in draft state for " "this period." msgstr "" -"Belirtilen günlükte bu dönem için taslak durumunda hiç hesap hareketi yok." +"Belirtilen yevmiyede bu dönem için taslak durumunda hiç hesap hareketi yok." #. module: account #: view:account.fiscal.position:0 @@ -690,7 +689,7 @@ msgstr "Vergi Eşleştirmesi" #. module: account #: report:account.central.journal:0 msgid "Centralized Journal" -msgstr "Merkezi Günlük" +msgstr "Merkezi Yevmiye" #. module: account #: sql_constraint:account.sequence.fiscalyear:0 @@ -710,7 +709,7 @@ msgid "Profit Account" msgstr "Kâr Hesabı" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -722,13 +721,13 @@ msgid "Report of the Sales by Account Type" msgstr "Hesap Tipine Göre Satış Raporu" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "SAG" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "Bundan farklı para birimli hareket oluşturulamaz .." @@ -761,14 +760,15 @@ msgstr "Açılış Kayıtları Dönemi" #. module: account #: model:ir.model,name:account.model_account_journal_period msgid "Journal Period" -msgstr "Günlük Dönemi" +msgstr "Yevmiye Dönemi" #. module: account #: constraint:account.move:0 msgid "" "You cannot create more than one move per period on a centralized journal." msgstr "" -"Merkezi günlük üzerinde bir dönem için birden fazla hareket oluşturamazsınız." +"Merkezi yevmiye üzerinde bir dönem için birden fazla hareket " +"oluşturamazsınız." #. module: account #: help:account.tax,account_analytic_paid_id:0 @@ -787,7 +787,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Alacak Hesapları" @@ -808,8 +810,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 "" -"Günlük maddesi tarihi tanımlı dönem içinde değil. Ya tarihi " -"değiştirmelisiniz ya da günlük ayarlarından bu kısıtlamayı kaldırmalısınız." +"Yevmiye maddesi tarihi tanımlı dönem içinde değil. Ya tarihi " +"değiştirmelisiniz ya da yevmiye ayarlarından bu kısıtlamayı kaldırmalısınız." #. module: account #: model:ir.model,name:account.model_account_report_general_ledger @@ -827,10 +829,10 @@ msgid "Are you sure you want to create entries?" msgstr "Kayıt oluşturmak istediğinizden emin misiniz?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." -msgstr "Fatura Kısmen ödendi: Ödenen: %s%s Toplam: %s%s (kalan: %s%s)." +msgstr "Fatura Kısmen ödendi: %s%s nın %s%s (kalan %s%s)." #. module: account #: view:account.invoice:0 @@ -898,13 +900,13 @@ msgid "Type" msgstr "Tip" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" "Click on compute button." msgstr "" -"Vergiler eksiktir!\\n\n" +"Vergiler eksiktir!\n" "Hesapla düğmesine basın." #. module: account @@ -923,7 +925,7 @@ msgid "Supplier Invoices And Refunds" msgstr "Tedarikçi Faturaları ve İadeleri" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "Kayıt zaten uzlaştırılmış." @@ -938,7 +940,7 @@ msgstr "Uzlaşma kaldırma" #. module: account #: model:ir.model,name:account.model_account_analytic_journal_report msgid "Account Analytic Journal" -msgstr "Analitik Günlük Hesabı" +msgstr "Analitik Yevmiye Hesabı" #. module: account #: view:account.invoice:0 @@ -997,19 +999,19 @@ msgid "" " " msgstr "" "

\n" -" Hiç günlük maddesi bulunamadı.\n" +" Hiç yevmiye maddesi bulunamadı.\n" "

\n" " " #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " " opening/closing fiscal " "year process." msgstr "" -"Mali yıl çılış/kapanış işlemlerince oluşturulan günlük maddelerinin " +"Mali yıl çılış/kapanış işlemlerince oluşturulan yevmiye maddelerinin " "uzlaşmasını kaldırmazsınız." #. module: account @@ -1048,7 +1050,7 @@ msgstr "Vade" #. module: account #: field:account.config.settings,purchase_journal_id:0 msgid "Purchase journal" -msgstr "Satınalma günlüğü" +msgstr "Satınalma Yevmiyesi" #. module: account #: model:mail.message.subtype,description:account.mt_invoice_paid @@ -1088,10 +1090,10 @@ msgid "Liability" msgstr "Borç" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." -msgstr "Bu faturayla ilgili günlüğe lütfen bir sıra tanımlayın." +msgstr "Bu faturayla ilgili yevmiyeye lütfen bir sıra tanımlayın." #. module: account #: view:account.entries.report:0 @@ -1101,7 +1103,7 @@ msgstr "Gelişmiş Süzgeçler..." #. module: account #: model:ir.ui.menu,name:account.menu_account_central_journal msgid "Centralizing Journal" -msgstr "Merkezileştirme Günlüğü" +msgstr "Merkezileştirme Yevmiyesi" #. module: account #: selection:account.journal,type:0 @@ -1162,14 +1164,14 @@ msgid "Features" msgstr "Özellikler" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" -msgstr "Analitik Günlük Yok !" +msgstr "Analitik Yevmiye Yok !" #. module: account #: report:account.partner.balance:0 @@ -1259,7 +1261,7 @@ msgstr "İade " #: code:addons/account/account_analytic_line.py:90 #, python-format msgid "There is no expense account defined for this product: \"%s\" (id:%d)." -msgstr "Bu ürün için gider hesabı tanımlanmamıştır: \"%s\" (id:%d)" +msgstr "Bu ürün için gider hesabı tanımlanmamıştır: \"%s\" (id:%d)." #. module: account #: view:account.tax:0 @@ -1281,7 +1283,7 @@ msgstr "Nakit Kasalar" #. module: account #: field:account.config.settings,sale_refund_journal_id:0 msgid "Sale refund journal" -msgstr "Satış iade günlüğü" +msgstr "Satış iade yevmiyesi" #. module: account #: model:ir.actions.act_window,help:account.action_view_bank_statement_tree @@ -1303,12 +1305,11 @@ msgstr "" "

\n" " Yeni kasa defteri oluşturmak için tıklayın.\n" "

\n" -" Bir Yazar Kasa nakit günlüklerinizdeki nakit kayıtlarını " +" Bir Kasa Defteri nakit yevmiyelerinizi ve nakit kayıtlarını " "yönetmenizi\n" -" sağlar. Bu özellik, nakit ödemelerinizi günlük olarak kolay " +" sağlar. Bu özellik, nakit ödemelerinizi yevmiye olarak kolay " "bir şekilde\n" -" takip etmenizi sağlar. Kasanızdaki madeni paraları girebilir " -"ve\n" +" izlemenizi sağlar. Kasanızdaki madeni paraları girebilir ve\n" " kasanıza para giriş çıkışı olduğunda kayıtları yapar.\n" "

\n" " " @@ -1316,7 +1317,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "Banka" @@ -1334,7 +1335,7 @@ msgstr "İadeler" #. module: account #: model:process.transition,name:account.process_transition_confirmstatementfromdraft0 msgid "Confirm statement" -msgstr "Hesap Özeti onayla" +msgstr "Hesap Özeti Onayla" #. module: account #: view:account.tax:0 @@ -1415,7 +1416,7 @@ msgstr "Şablon" #. module: account #: selection:account.analytic.journal,type:0 msgid "Situation" -msgstr "Durum" +msgstr "Durumu" #. module: account #: help:account.move.line,move_id:0 @@ -1583,7 +1584,7 @@ msgstr "Fatura sırası" #. module: account #: model:ir.model,name:account.model_account_entries_report msgid "Journal Items Analysis" -msgstr "Günlük Maddeleri Analizi" +msgstr "Yevmiye Maddeleri Analizi" #. module: account #: model:ir.ui.menu,name:account.next_id_22 @@ -1628,21 +1629,23 @@ msgid "%s (copy)" msgstr "%s (kopya)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: 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 a eşit olmayan bakiyeli" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" "on journal \"%s\"." msgstr "" -"\"%s\" günlüğünde tanımlı borç hesabı \n" +"\"%s\" yevmiyesinde tanımlı borç hesabı \n" "yoktur." #. module: account @@ -1668,7 +1671,7 @@ msgstr "Madde Sayısı" #. module: account #: field:account.automatic.reconcile,max_amount:0 msgid "Maximum write-off amount" -msgstr "Silinecek en yüksek Borç tutarı" +msgstr "Silinecek en Yüksek Borç Tutarı" #. module: account #. openerp-web @@ -1799,7 +1802,7 @@ msgstr "Banka Hesap Özeti Ara" #. module: account #: view:account.move.line:0 msgid "Unposted Journal Items" -msgstr "İşlenmemiş Günlük Maddeleri" +msgstr "İşlenmemiş Yevmiye Maddeleri" #. module: account #: view:account.chart.template:0 @@ -1861,7 +1864,7 @@ msgstr "" "

\n" " Yeni bir hesap tipi tanımlamak için tıklayın.\n" "

\n" -" Hesap tipi bir hesabın her günlük defterinde nasıl " +" Hesap tipi bir hesabın her yevmiye defterinde nasıl " "kullanıldığını\n" " belirlemek için kullanılır. Hesap tipindeki erteleme " "yöntemi\n" @@ -1877,8 +1880,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Fatura" @@ -1960,7 +1965,7 @@ msgstr "" "olmalı." #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "Bazı girişler zaten uzlaştırılmıştır." @@ -2006,7 +2011,7 @@ msgid "" "If the active field is set to False, it will allow you to hide the journal " "period without removing it." msgstr "" -"Eğer etkin kutusu seçili değilse, Günlük dönemini silmeden gizlemenizi " +"Eğer etkin kutusu seçili değilse, Yevmiye dönemini silmeden gizlemenizi " "sağlayacaktır." #. module: account @@ -2038,7 +2043,7 @@ msgstr "Son Kapanış Bakiyesi" #. module: account #: model:ir.model,name:account.model_account_common_journal_report msgid "Account Common Journal Report" -msgstr "Ortak Günlük Hesap Raporu" +msgstr "Ortak Yevmiye Hesap Raporu" #. module: account #: selection:account.partner.balance,display_partner:0 @@ -2121,36 +2126,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2164,8 +2169,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "Hata!" @@ -2216,13 +2221,13 @@ msgid "period close" msgstr "dönem kapat" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " "modify its company field." msgstr "" -"Bu günlük hali hazırda bu dönem için maddeler içerdiğinden, şirket alanını " +"Bu yevmiye hali hazırda bu dönem için maddeler içerdiğinden, şirket alanını " "değiştiremezsiniz." #. module: account @@ -2275,7 +2280,7 @@ msgstr "Varsayılan şirket para birimi" #: field:account.invoice,move_name:0 #: field:account.move.line,move_id:0 msgid "Journal Entry" -msgstr "Günlük Kaydı" +msgstr "Yevmiye Kaydı" #. module: account #: view:account.invoice:0 @@ -2293,7 +2298,7 @@ msgstr "Hazine Analizi" #. module: account #: model:ir.actions.report.xml,name:account.account_journal_sale_purchase msgid "Sale/Purchase Journal" -msgstr "Satış/Satınalma Günlüğü" +msgstr "Satış/Satınalma Yevmiyesi" #. module: account #: view:account.analytic.account:0 @@ -2302,7 +2307,7 @@ msgid "Analytic account" msgstr "Analitik hesap" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "Lütfen bu günlükte bir hesabın tanımlandığını doğrulayın." @@ -2316,13 +2321,13 @@ msgstr "Geçerli" #: field:account.bank.statement,message_follower_ids:0 #: field:account.invoice,message_follower_ids:0 msgid "Followers" -msgstr "Takipçiler" +msgstr "İzleyiciler" #. module: account #: model:ir.actions.act_window,name:account.action_account_print_journal #: model:ir.model,name:account.model_account_print_journal msgid "Account Print Journal" -msgstr "Hesap Yazdırma Günlüğü" +msgstr "Hesap Yazdırma Yevmiyesi" #. module: account #: model:ir.model,name:account.model_product_category @@ -2335,7 +2340,8 @@ msgstr "Ürün Kategorisi" msgid "" "You cannot change the type of account to '%s' type as it contains journal " "items!" -msgstr "Günlük maddeleri içerdiğinden hesap tipini '%s' e değiştiremezsiniz!" +msgstr "" +"Yevmiye maddeleri içerdiğinden hesap tipini '%s' e değiştiremezsiniz!" #. module: account #: model:ir.model,name:account.model_account_aged_trial_balance @@ -2352,7 +2358,7 @@ msgstr "Mali Yıl Kapat" #: code:addons/account/static/src/xml/account_move_line_quickadd.xml:14 #, python-format msgid "Journal :" -msgstr "Günlük :" +msgstr "Yevmiye :" #. module: account #: sql_constraint:account.fiscal.position.tax:0 @@ -2404,7 +2410,9 @@ msgstr "Varlık yönetimi" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "Borç Hesapları" @@ -2416,9 +2424,9 @@ msgid "" "currency. You should remove the secondary currency on the account or select " "a multi-currency view on the journal." msgstr "" -"günlük kaydınızın seçili hesabı farklı bir para biriminde işlemi zorluyor.Bu " -"şekilde giriş yapmak için ya hesaptan para birimini kaldırın ya da günlük " -"görünüm tipini çoklu-para birimi olarak seçin." +"yevmiye kaydınızın seçili hesabı farklı bir para biriminde işlemi " +"zorluyor.Bu şekilde giriş yapmak için ya hesaptan para birimini kaldırın ya " +"da yevmiye görünüm tipini çoklu-para birimi olarak seçin." #. module: account #: view:account.invoice:0 @@ -2437,7 +2445,7 @@ msgstr "" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a sale journal." -msgstr "Bir satış günlüğüne bağlı Analitik Günlük Maddeleri." +msgstr "Bir satış günlüğüne bağlı Analitik Yevmiye Maddeleri." #. module: account #: selection:account.financial.report,style_overwrite:0 @@ -2538,7 +2546,7 @@ msgstr "30 Net Gün" #: code:addons/account/account_cash_statement.py:256 #, python-format msgid "You do not have rights to open this %s journal !" -msgstr "Bu %s günlüğünü açmak için yetkiniz yok !" +msgstr "Bu %s yevmiyeyi açmak için yetkiniz yok !" #. module: account #: model:res.groups,name:account.group_supplier_inv_check_total @@ -2707,7 +2715,7 @@ msgid "" "You cannot change the type of account from 'Closed' to any other type as it " "contains journal items!" msgstr "" -"Günlük maddeleri içeren herhangi bir hesabı 'Kapalı' dan farklı bir türe " +"Yevmiye maddeleri içeren herhangi bir hesabı 'Kapalı' dan farklı bir türe " "değiştiremezsiniz!" #. module: account @@ -2721,7 +2729,7 @@ msgid "Create an Account Based on this Template" msgstr "Bu şablon temelinde bir hesap oluştur" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2747,13 +2755,13 @@ msgid "Main Sequence" msgstr "Ana Sıra" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " "related journal items." msgstr "" -"Bir banka hesap özetini silmek için, öncelikle ilişkili günlük maddelerini " +"Bir banka hesap özetini silmek için, öncelikle ilişkili yevmiye maddelerini " "silmek için ekstreyi iptal etmelisiniz." #. module: account @@ -2773,10 +2781,10 @@ msgid "Fiscal Positions" msgstr "Mali Durumlar" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." -msgstr "Kapalı olan %s%s hesabında günlük maddeleri oluşturmazsınız." +msgstr "Kapalı olan %s%s hesabında yevmiye maddeleri oluşturmazsınız." #. module: account #: field:account.period.close,sure:0 @@ -2881,7 +2889,7 @@ msgid "Account Model Entries" msgstr "Muhasebe Model Kayıtları" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "EXJ" @@ -2916,15 +2924,16 @@ msgid "" " " msgstr "" "

\n" -" Günlük kaydı oluşturmak için tıklayın.\n" +" Yevmiye kaydı oluşturmak için tıklayın.\n" "

\n" -" Bir Günlük kaydı birden fazla günlük maddesi içerebilir,\n" -" her günlük maddesi borç ya da alacak tarafında bir " +" Bir Yevmiye kaydı birden fazla Yevmiye maddesi içerebilir,\n" +" her yevmiye maddesi borç ya da alacak tarafında bir " "harekettir.\n" "

\n" " OpenERP otomatik olarak her muhasebe dökümanı (fatura, " -"iade,tedarikçi ödemesi, banka ekstresi vb) için bir günlük kaydı oluşturur.\n" -" Yani normal çetrefilli hareketler haricinde günlük kaydı " +"iade,tedarikçi ödemesi, banka ekstresi vb) için bir yevmiye kaydı " +"oluşturur.\n" +" Yani normal çetrefilli hareketler haricinde yevmiye kaydı " "oluşturmanıza\n" " gerek kalmaz.\n" "

\n" @@ -3011,24 +3020,23 @@ msgid "Accounts" msgstr "Hesaplar" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "Yapılandırma Hatası!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." -msgstr "Hesap özeti %s onaylandı, günlük maddeleri oluşturuldu." +msgstr "Hesap özeti %s onaylandı, yevmiye maddeleri oluşturuldu." #. module: account #: field:account.invoice.report,price_average:0 @@ -3207,9 +3215,9 @@ msgid "" "Note that journal entries that are automatically created by the system are " "always skipping that state." msgstr "" -"Yeni günlük kayıtlarının 'taslak' durumuna geçmeden elle doğrulama " +"Yeni yevmiye kayıtlarının 'taslak' durumuna geçmeden elle doğrulama " "olmaksızın 'işlenmiş duruma' doğrudan gitmesi içi bu kutuyu işaretleyin. Not " -"sistem tarafından oluşturulan günlük kayıtları otomatikman taslak durumunu " +"sistem tarafından oluşturulan yevmiye kayıtları otomatikman taslak durumunu " "atlar." #. module: account @@ -3234,7 +3242,7 @@ msgstr "" "onaylanamadı." #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "Aynı şirkete ait olan dönemler seçmelisiniz." @@ -3247,10 +3255,10 @@ msgid "Sales by Account" msgstr "Hesaba göre Satışlar" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." -msgstr "İşlenmiş günlük girişini \"%s\" silemezsiniz!" +msgstr "İşlenmiş yevmiye girişini \"%s\" silemezsiniz!" #. module: account #: view:account.invoice:0 @@ -3260,15 +3268,15 @@ msgstr "Muhasebe Dönemi" #. module: account #: field:account.config.settings,sale_journal_id:0 msgid "Sale journal" -msgstr "Satış günlüğü" +msgstr "Satış Yevmiyesi" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" -msgstr "'%s' Günlüğünde bir analitik günlük tanımlamalısınız!" +msgstr "'%s' Yevmiyesinde bir analitik yevmiye tanımlamalısınız!" #. module: account #: code:addons/account/account.py:781 @@ -3277,7 +3285,7 @@ msgid "" "This journal already contains items, therefore you cannot modify its company " "field." msgstr "" -"Bu günlük hali hazırda maddeler içerdiğinden şirket alanını " +"Bu yevmiye hali hazırda maddeler içerdiğinden şirket alanını " "değiştiremezseniz." #. module: account @@ -3287,7 +3295,7 @@ msgid "" "You need an Opening journal with centralisation checked to set the initial " "balance." msgstr "" -"İlk bakiyeyi ayarlamak için merkezileştirmesi işaretli bir Açılış günlğüğne " +"İlk bakiyeyi ayarlamak için merkezileştirmesi işaretli bir Açılış yevmiye " "gereksiniminiz var!" #. module: account @@ -3434,7 +3442,7 @@ msgid "Fiscal Position" msgstr "Mali Durum" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3516,7 +3524,7 @@ msgstr "Vergi Şablonu Listesi" #. module: account #: model:ir.ui.menu,name:account.menu_account_print_sale_purchase_journal msgid "Sale/Purchase Journals" -msgstr "Satış/Satınalma Günlükleri" +msgstr "Satış/Satınalma Yevmiyeler" #. module: account #: help:account.account,currency_mode:0 @@ -3534,7 +3542,7 @@ msgstr "" "kullanmalısınız. Gelen hareketler her zaman tarihteki kuru kullanılır." #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "Hesap şablonu için ana kod bulunmuyor." @@ -3565,7 +3573,7 @@ msgstr "Daima" msgid "" "Full accounting features: journals, legal statements, chart of accounts, etc." msgstr "" -"Tüm muhasebe özellikleri: günlükler, yasal ekstreler, hesap planları, vb." +"Tüm muhasebe özellikleri: yevmiyeler, yasal ekstreler, hesap planları, vb." #. module: account #: view:account.analytic.line:0 @@ -3598,8 +3606,8 @@ msgid "View" msgstr "Görünüm" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3825,8 +3833,8 @@ msgid "" "This wizard will validate all journal entries of a particular journal and " "period. Once journal entries are validated, you can not update them anymore." msgstr "" -"Bu sihirbaz belirli bir günlük ve dönemdeki bütün günlük kayıtlarını " -"onaylar. Günlük kayıtları onaylandığında kayıtları artık güncelleyemezsiniz." +"Bu sihirbaz belirli bir yevmiye ve dönemdeki bütün yevmiye kayıtlarını " +"onaylar. Yevmiye kayıtları onaylandığında kayıtları artık güncelleyemezsiniz." #. module: account #: model:ir.actions.act_window,name:account.action_account_chart_template_form @@ -3857,15 +3865,15 @@ msgid "" " 'Unreconciled' will copy only the journal items that were unreconciled on " "the first day of the new fiscal year." msgstr "" -"Burada, bu türe ait tüm hesapların yıl sonu günlük girişlerinin " +"Burada, bu türe ait tüm hesapların yıl sonu yevmiye girişlerinin " "oluşturulmasında kullanılacak yöntemi ayarlayın.\n" "\n" " 'Yok' hiçbir şey yapılmayacak demektir.\n" " 'Bakiye' genel olarak nakit hesaplar için kullanılacaktır.\n" -" 'Ayrıntı' bir önceki yıla ait varolan günlük maddelerini kopyalayacaktır, " +" 'Ayrıntı' bir önceki yıla ait varolan yevmiye maddelerini kopyalayacaktır, " "hatta uzlaştırılmış olanları da.\n" " 'Uzlaştırılmamış' yeni mali yılın ilk gününde yalnızca uzlaştırılmamış " -"günlük maddelerini kopyalayacaktır." +"yevmiye maddelerini kopyalayacaktır." #. module: account #: view:account.tax.template:0 @@ -3904,7 +3912,7 @@ msgstr "Gider hesabını kullanmak için boş bırak" #: model:ir.ui.menu,name:account.menu_journals #: model:ir.ui.menu,name:account.menu_journals_report msgid "Journals" -msgstr "Günlükler" +msgstr "Yevmiyeler" #. module: account #: field:account.partner.reconcile.process,to_reconcile:0 @@ -3952,15 +3960,15 @@ msgstr "" "kendisiyle aynı referansa sahip olmasını sağlar." #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " "centralized counterpart box in the related journal from the configuration " "menu." msgstr "" -"Merkezden kontrollü günlükte bir fatura oluşturamazsınız. Yapılandırma " -"menüsünden ilgili günlüğün karşılık gelen kutudan işareti kaldırın." +"Merkezden kontrollü yevmiyede bir fatura oluşturamazsınız. Yapılandırma " +"menüsünden ilgili yevmiyeye karşılık gelen kutudan işareti kaldırın." #. module: account #: field:account.bank.statement,balance_start:0 @@ -3969,7 +3977,7 @@ msgid "Starting Balance" msgstr "Açılış Bakiyesi" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "Tanımlı İş Ortağı Yok !" @@ -3993,8 +4001,8 @@ msgid "" "You cannot create journal items with a secondary currency without recording " "both 'currency' and 'amount currency' field." msgstr "" -"İkincil bir para birimiyle günlük maddeleri oluşturmak için hem döviz hem de " -"döviz tutarı alanlarını doldurmalısınız." +"İkincil bir para birimiyle yevmiye maddeleri oluşturmak için hem döviz hem " +"de döviz tutarı alanlarını doldurmalısınız." #. module: account #: field:account.financial.report,display_detail:0 @@ -4029,7 +4037,7 @@ msgstr "" "mesajındaki \"Paypal ile öde\" butonunu kullanarak yapabilirler." #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4037,9 +4045,9 @@ msgid "" "You can create one in the menu: \n" "Configuration/Journals/Journals." msgstr "" -"Bu şirket için %s tipinde bir hesap günlüğü bulunamadı.\n" +"Bu şirket için %s tipinde bir hesap yevmiyesi bulunamadı.\n" "\n" -"Ayarlar/Finansal Muhasebe/Hesaplar/Günlükler menüsünden\n" +"Ayarlar/Finansal Muhasebe/Hesaplar/yevmiyeler menüsünden\n" "bir tane yaratabilirsiniz." #. module: account @@ -4064,7 +4072,7 @@ msgstr "Vergi Tablosu" #. module: account #: view:account.journal:0 msgid "Search Account Journal" -msgstr "Günlük Hesabı Ara" +msgstr "Hesap Yevmiyesi Ara" #. module: account #: model:ir.actions.act_window,name:account.action_invoice_tree_pending_invoice @@ -4104,7 +4112,7 @@ msgid "" "All selected journal entries will be validated and posted. It means you " "won't be able to modify their accounting fields anymore." msgstr "" -"Seçilen bütün Günlük kayıtları doğrulanacak ve işlenecektir. Bu da; hesap " +"Seçilen bütün yevmiye kayıtları doğrulanacak ve işlenecektir. Bu da; hesap " "alanlarında bir daha değişiklik yapamayacağınız anlamına gelir." #. module: account @@ -4115,7 +4123,7 @@ msgid "" "please select a period and a journal in the context." msgstr "" "Açılış bakiyesini hesaplamak için yeterli bilgi sağlayamadınız, lütfen bu " -"durumda bir dönem ve günlük seçin." +"durumda bir dönem ve yevmiye seçin." #. module: account #: model:ir.actions.report.xml,name:account.account_transfers @@ -4171,9 +4179,9 @@ msgstr "" "

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

\n" " Müşterilerinizle yaptığınız mesajlaşmalar otomatik olarak " @@ -4206,20 +4214,20 @@ msgid "Period Length (days)" msgstr "Dönem Süresi (gün)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" "First you should set the journal to allow cancelling entries." msgstr "" "Bu günlüğe ait işlenmiş bir kaydı değiştiremezsiniz !\n" -"Bunu yapmak istiyorsanız günlüğü kayıtları iptal edilesine izin vermesi için " -"ayarlamalısınız." +"Bunu yapmak istiyorsanız yevmiyesi kayıtları iptal edilesine izin vermesi " +"için ayarlamalısınız." #. module: account #: model:ir.actions.act_window,name:account.action_account_print_sale_purchase_journal msgid "Print Sale/Purchase Journal" -msgstr "Satış/Satınalma günlüğü yazdır" +msgstr "Satış/Satınalma Yevmiyesi Yazdır" #. module: account #: view:account.installer:0 @@ -4239,7 +4247,7 @@ msgid "" "There is no fiscal year defined for this date.\n" "Please create one from the configuration of the accounting menu." msgstr "" -"Bu tarih için tanımlanan mali yıl yok!\n" +"Bu tarih için tanımlanan mali yıl yok.\n" "Muhasebe ayarlarından yeni bir dönem oluşturun ." #. module: account @@ -4262,7 +4270,7 @@ msgstr "Vergi Kodu Tutarı" #. module: account #: view:account.move.line:0 msgid "Unreconciled Journal Items" -msgstr "Uzlaştırılmamış Günlük Maddeleri" +msgstr "Uzlaştırılmamış Yevmiye Maddeleri" #. module: account #: selection:account.account.type,close_method:0 @@ -4281,9 +4289,13 @@ msgid "VAT :" msgstr "KDV :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4372,7 +4384,7 @@ msgid "Chart of Accounts Template" msgstr "Hesap Planı Şablonu" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4383,8 +4395,10 @@ msgstr "" "koşulu baz alınarak oluşturulur. Lütfen hangi iş ortağı olduğunu belirtiniz." #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4545,7 +4559,7 @@ msgid "Name" msgstr "Adı" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "Yapılandırılmamış şirket yok!" @@ -4564,7 +4578,7 @@ msgstr "Yürürlük Tarihi" #: code:addons/account/wizard/account_fiscalyear_close.py:100 #, python-format msgid "The journal must have default credit and debit account." -msgstr "Günlüğün varsayılan alacak ve borç hesapları olmalı." +msgstr "Yemiyenin varsayılan alacak ve borç hesapları olmalı." #. module: account #: model:ir.actions.act_window,name:account.action_bank_tree @@ -4586,7 +4600,7 @@ msgstr "Mesajlar ve İletişim Geçmişi" #. module: account #: help:account.journal,analytic_journal_id:0 msgid "Journal for analytic entries" -msgstr "Analitik kayıtlar için günlük" +msgstr "Analitik kayıtlar için yevmiye" #. module: account #: constraint:account.aged.trial.balance:0 @@ -4618,8 +4632,8 @@ msgstr "" "istemiyorsanız bu kutuyu işaretleyin." #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "Etkin olmayan hesabı kullanamazsınız." @@ -4641,7 +4655,7 @@ msgstr "Muhasebe" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current year" -msgstr "Geçerli yıl içindeki dönemli Günlük Kayıtları" +msgstr "Geçerli yıl içindeki dönemli Yevmiye Kayıtları" #. module: account #: field:account.account,child_consol_ids:0 @@ -4649,7 +4663,7 @@ msgid "Consolidated Children" msgstr "Birleştirilen Alt Hesaplar" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4678,7 +4692,7 @@ msgid "" "counterpart." msgstr "" "Burada en iyi yöntem, her mali yılın açılış girişleri için ayrı günlükleri " -"kullanmaktır. Bu günlüğü tanımlarken öntanımlı borç/alacak hesaplarını, " +"kullanmaktır. Bu yevmiyeyi tanımlarken öntanımlı borç/alacak hesaplarını, " "hesap tipi olarak 'situation' ve bir merkezileştirmiş karşılık hesabıyla " "seçin." @@ -4804,12 +4818,12 @@ msgstr "" #. module: account #: view:account.move.line:0 msgid "Posted Journal Items" -msgstr "İşlenmiş Günlük Maddeleri" +msgstr "İşlenmiş Yevmiye Maddeleri" #. module: account #: field:account.move.line,blocked:0 msgid "No Follow-up" -msgstr "Takip yok" +msgstr "İzleme Yok" #. module: account #: view:account.tax.template:0 @@ -4828,8 +4842,8 @@ msgid "" "9.99 EUR, whereas a decimal precision of 4 will allow journal entries like: " "0.0231 EUR." msgstr "" -"Örneğin ondalık hassasiyeti 2 olarak ayarlandığında günlük kayıtları 9.99 " -"TRL, yanısıra ondalık hassasiyeti olarak 4 kullanıldığında günlük kayıtları " +"Örneğin ondalık doğruluğu 2 olarak ayarlandığında yevmiye kayıtları 9.99 " +"TRL, yanısıra ondalık doğruluğu olarak 4 kullanıldığında yevmiye kayıtları " "2.0345 TRL olur" #. module: account @@ -4865,10 +4879,10 @@ msgid "Cancel the Selected Invoices" msgstr "Seçilen Faturaları İptal Et" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" -msgstr "'%s' günlüğüne bir analitik günlük atamalısınız!" +msgstr "'%s' yevmiyesine bir analitik yevmiye atamalısınız!" #. module: account #: model:process.transition,note:account.process_transition_supplieranalyticcost0 @@ -4902,7 +4916,7 @@ msgstr "" "

\n" " Eğer OpenERP muhasebe uygulaması kullanıyorsanız, banka " "hesabıyla \n" -" ilgili günlükler ve muhasebe hesapları da otomatik olarak " +" ilgili yevmiyeler ve muhasebe hesapları da otomatik olarak " "oluşturulacaktır.\n" "

\n" " " @@ -4938,7 +4952,7 @@ msgstr "Ay" #: code:addons/account/account.py:668 #, python-format msgid "You cannot change the code of account which contains journal items!" -msgstr "Günlük maddeleri içerdiğinden hesap kodunu değiştiremezsiniz!" +msgstr "Yevmiye maddeleri içerdiğinden hesap kodunu değiştiremezsiniz!" #. module: account #: field:account.config.settings,purchase_sequence_prefix:0 @@ -4946,8 +4960,8 @@ msgid "Supplier invoice sequence" msgstr "Tedarikçi faturası sıra no" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4970,7 +4984,7 @@ msgstr "Paypal Hesabı" #. module: account #: view:account.entries.report:0 msgid "Acc.Type" -msgstr "Hes.Tipi" +msgstr "Hes.Türü" #. module: account #: selection:account.journal,type:0 @@ -5011,7 +5025,7 @@ msgid "Account Base Code" msgstr "Hesap Ana Kodu" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -5078,7 +5092,7 @@ msgid "Statement from invoice or payment" msgstr "Fatura ya da ödemeden ekstre" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -5134,7 +5148,7 @@ msgid "Bank statements are entered in the system." msgstr "Banka hesap özetleri sisteme girilmiştir." #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "Borç Silme Uzlaştır" @@ -5158,7 +5172,7 @@ msgstr "Görünebilir mi?" #. module: account #: model:ir.model,name:account.model_account_journal_select msgid "Account Journal Select" -msgstr "Günlük Hesabı Seç" +msgstr "Yevmiye Hesabı Seç" #. module: account #: view:account.tax.template:0 @@ -5169,7 +5183,7 @@ msgstr "Alacak Dekontları" #: view:account.move.line:0 #: model:ir.actions.act_window,name:account.action_account_manual_reconcile msgid "Journal Items to Reconcile" -msgstr "Uzlaştırılacak Günlük Maddeleri" +msgstr "Uzlaştırılacak Yevmiye Maddeleri" #. module: account #: model:ir.model,name:account.model_account_tax_template @@ -5230,7 +5244,7 @@ msgstr "" "Ana hesabı farklı şirkete ait hesap oluşturamazsınız." #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -5238,9 +5252,9 @@ msgid "" "You can create one in the menu: \n" "Configuration\\Journals\\Journals." msgstr "" -"Bu şirket için %s tipinde bir hesap günlüğü bulunamadı.\n" +"Bu şirket için %s tipinde bir hesap yevmiyesi bulunamadı.\n" "\n" -"Ayarlar/Günlükler/günlükler menüsünden\n" +"Ayarlar/Yevmiler/yevmiyeler menüsünden\n" "bir tane yaratabilirsiniz." #. module: account @@ -5249,7 +5263,7 @@ msgid "Based On" msgstr "Buna göre" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -5257,7 +5271,7 @@ msgstr "ECNJ" #. module: account #: model:ir.model,name:account.model_account_analytic_cost_ledger_journal_report msgid "Account Analytic Cost Ledger For Journal Report" -msgstr "Günlük Raporları için Analitik Maliyet Defteri" +msgstr "Yevmiye Raporları için Analitik Maliyet Defteri" #. module: account #: model:ir.actions.act_window,name:account.action_model_form @@ -5317,7 +5331,7 @@ msgstr "" "ekler." #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "Satınalma Vergisi %.2f%%" @@ -5349,7 +5363,7 @@ msgstr "Onaylandı" #. module: account #: report:account.invoice:0 msgid "Cancelled Invoice" -msgstr "İptal Fatura" +msgstr "İptal edilmiş fatura" #. module: account #: view:account.invoice:0 @@ -5380,7 +5394,7 @@ msgstr "Fatura " #. module: account #: field:account.chart.template,property_account_income:0 msgid "Income Account on Product Template" -msgstr "Ürün Şablonundaki gelir hesabı" +msgstr "Ürün Şablonundaki Gelir Hesabı" #. module: account #: help:account.journal.period,state:0 @@ -5389,12 +5403,12 @@ msgid "" "printed it comes to 'Printed' status. When all transactions are done, it " "comes in 'Done' status." msgstr "" -"Günlük dönemi oluşturulduğunda, durum 'Taslak' tır. Bir rapor " +"Yevmiye dönemi oluşturulduğunda, durum 'Taslak' tır. Bir rapor " "yazdırıldığındadurum 'Yazdırılmış' halini alır. Bütün hareketler " "tamamalandığında durum 'Tamamlandı' halini alır." #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "ÇEŞİTLİ" @@ -5476,7 +5490,7 @@ msgstr "Faturalandı" #. module: account #: view:account.move:0 msgid "Posted Journal Entries" -msgstr "İşlenmiş Günlük Kayıtları" +msgstr "İşlenmiş Yevmiye Kayıtları" #. module: account #: view:account.use.model:0 @@ -5549,7 +5563,7 @@ msgstr "Açılış Dönemi" #. module: account #: view:account.move:0 msgid "Journal Entries to Review" -msgstr "Gözden Geçirilecek Günlük Kayıtları" +msgstr "Gözden Geçirilecek Yevmiye Kayıtları" #. module: account #: selection:res.company,tax_calculation_rounding_method:0 @@ -5568,7 +5582,7 @@ msgid "Tax Application" msgstr "Vergi Uygulaması" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5621,7 +5635,7 @@ msgstr "Hesap Tipine göre Bakiye" #: code:addons/account/account_cash_statement.py:301 #, python-format msgid "There is no %s Account on the journal %s." -msgstr "Günlük %s de %s hesabı yok." +msgstr "Yevmiye %s de %s hesabı yok." #. module: account #: model:res.groups,name:account.group_account_user @@ -5661,7 +5675,7 @@ msgstr "Hareketler" #: field:account.bank.statement,details_ids:0 #: view:account.journal:0 msgid "CashBox Lines" -msgstr "Kasa Kutusu Kalemleri" +msgstr "NakitKasa Kalemleri" #. module: account #: model:ir.model,name:account.model_account_vat_declaration @@ -5675,7 +5689,7 @@ msgid "" "but not accounting (Journal Items, Chart of Accounts, ...)" msgstr "" "Eğer bu kutuyu işaretlemezseniz faturalama & ödemeler yapabilirsiniz, ama " -"muhasebe (Günlük Maddeleri, HesapPlanları, ...) yapamazsınız." +"muhasebe (Yevmiye Maddeleri, HesapPlanları, ...) yapamazsınız." #. module: account #: view:account.period:0 @@ -5747,7 +5761,7 @@ msgid "Target Moves" msgstr "Hedef Hareketler" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5833,7 +5847,7 @@ msgid "Internal Name" msgstr "İç Ad" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5841,7 +5855,7 @@ msgid "" "sequence manually for this piece." msgstr "" "Bu parça için otomatik sıra numarası oluşturulamıyor.\n" -"Günlük tanımından olan bir sıra no seçin ya da bu parça için yeni bir sıra " +"Yevmiye tanımından olan bir sıra no seçin ya da bu parça için yeni bir sıra " "no oluşturun." #. module: account @@ -5908,7 +5922,7 @@ msgid "Compute Code (if type=code)" msgstr "Kodu hesapla (eğer tip=kod ise)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -6001,7 +6015,7 @@ msgstr "" #. module: account #: field:account.journal,update_posted:0 msgid "Allow Cancelling Entries" -msgstr "Kayıtları iptale izin ver" +msgstr "Kayıtları İptale İzin ver" #. module: account #: code:addons/account/wizard/account_use_model.py:44 @@ -6046,10 +6060,10 @@ msgid "Recompute taxes and total" msgstr "Vergileri ve toplamı yeniden hesapla" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." -msgstr "Bu dönem için kayıtları olan bir günlüğü değiştirip/silemezsiniz." +msgstr "Bu dönem için kayıtları olan bir yevmiyeyi değiştirip/silemezsiniz." #. module: account #: field:account.tax.template,include_base_amount:0 @@ -6076,11 +6090,11 @@ msgid "Amount Computation" msgstr "Tutar Hesaplaması" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" -"Kapanmış bir dönemde (%s) günlük %s kayıtlara ekleme/değiştirme " +"Kapanmış bir dönemde (%s) yevmiye %s kayıtlara ekleme/değiştirme " "yapamazsınız." #. module: account @@ -6124,7 +6138,7 @@ msgstr "Ortak Hesap Hesap Raporu" #: selection:account.period,state:0 #: selection:report.invoice.created,state:0 msgid "Open" -msgstr "Aç" +msgstr "Açık" #. module: account #: view:account.config.settings:0 @@ -6177,7 +6191,7 @@ msgstr "Son 15 günde oluşturulan faturaların raporu" #. module: account #: field:account.fiscalyear,end_journal_period_id:0 msgid "End of Year Entries Journal" -msgstr "Yıl Sonu Girişleri Günlüğü" +msgstr "Yıl Sonu Girişleri Yevmiyesi" #. module: account #: view:account.invoice:0 @@ -6374,7 +6388,7 @@ msgstr "Borç Silme ile Uzlaştır" #. module: account #: constraint:account.move.line:0 msgid "You cannot create journal items on an account of type view." -msgstr "Görünüm tipindeki hesaplarda günlük maddeleri oluşturamazsınız." +msgstr "Görünüm tipindeki hesaplarda yevmiye maddeleri oluşturamazsınız." #. module: account #: selection:account.payment.term.line,value:0 @@ -6383,7 +6397,7 @@ msgid "Fixed Amount" msgstr "Sabit Tutar" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "Vergiyi değiştiremezsiniz, Kalemleri silip yeniden oluşturmalısınız." @@ -6397,13 +6411,13 @@ msgstr "Otomatik Uzlaştırma Hesabı" #: view:account.move:0 #: view:account.move.line:0 msgid "Journal Item" -msgstr "Günlük Maddesi" +msgstr "Yevmiye Maddesi" #. 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 "AçılIş Girişleri Oluştur" +msgstr "Açılış Girişleri Oluştur" #. module: account #: help:account.tax,type:0 @@ -6426,7 +6440,7 @@ msgstr "Oluşturma Tarihi" #: 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 "Analitik Günlükler" +msgstr "Analitik Yevmiler" #. module: account #: field:account.account,child_id:0 @@ -6434,14 +6448,14 @@ msgid "Child Accounts" msgstr "Alt Hesaplar" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "Hareket adı (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Borç Silme" @@ -6467,7 +6481,7 @@ msgstr "Gelir" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Tedarikçi" @@ -6487,7 +6501,7 @@ msgid "Account n°" msgstr "Hesap n°" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "Serbest Referans" @@ -6497,7 +6511,9 @@ msgstr "Serbest Referans" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "Alacak ve Borç Hesapları" @@ -6618,7 +6634,7 @@ msgid "Filter by" msgstr "Buna göre Süz" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "Modelinizde hatalı deyim \"%(...)s\" var!" @@ -6649,7 +6665,7 @@ msgstr "Fatura Vergi Hesabı" #: 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 "Genel Günlük Hesabı" +msgstr "Genel Yevmiye Hesabı" #. module: account #: help:account.move,state:0 @@ -6660,7 +6676,7 @@ msgid "" "created by the system on document validation (invoices, bank statements...) " "and will be created in 'Posted' status." msgstr "" -"Elle oluşturulan bütün yeni günlük kayıtları genelde 'İşlenmemiş' " +"Elle oluşturulan bütün yeni yevmiye kayıtları genelde 'İşlenmemiş' " "durumundadır, fakat gerekli ayarları yaparak kayıtların durumunu sistem " "tarafından otomatik oluşturulmuş kayıtları gibi 'İşlenmiş'e doğrudan " "dönmesini sağlayabilirsiniz." @@ -6671,13 +6687,13 @@ msgid "Number of Days" msgstr "Gün Sayısı" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " "belong to chart of accounts \"%s\"." msgstr "" -"Bu günlük kaydını doğrulayamazsınız, çünkü \"%s\" hesabı \"%s\" hesap " +"Bu yevmiye kaydını doğrulayamazsınız, çünkü \"%s\" hesabı \"%s\" hesap " "planına dahil değildir!" #. module: account @@ -6722,7 +6738,7 @@ msgstr "Döviz Cinsinden Bilanço" #. module: account #: field:account.journal.period,name:0 msgid "Journal-Period Name" -msgstr "Günlük-Dönemi Adı" +msgstr "Yevmiye-Dönemi Adı" #. module: account #: field:account.invoice.tax,factor_base:0 @@ -6732,7 +6748,7 @@ msgstr "Matrah Kodu için çarpan katsayısı" #. module: account #: help:account.journal,company_id:0 msgid "Company related to this journal" -msgstr "Bu günlükle ilişkili şirket" +msgstr "Bu yevmiyeyle ilişkili şirket" #. module: account #: help:account.config.settings,group_multi_currency:0 @@ -6767,7 +6783,7 @@ msgid "" "This journal will be created automatically for this bank account when you " "save the record" msgstr "" -"Bu banka hesabı için günlük bu kayıt saklandığında otomatik olarak " +"Bu banka hesabı için yevmiye bu kayıt saklandığında otomatik olarak " "oluşturulacaktır" #. module: account @@ -6823,7 +6839,7 @@ msgid "Models" msgstr "Modeller" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -7007,10 +7023,10 @@ msgstr "Alacak" #. module: account #: constraint:account.move.line:0 msgid "You cannot create journal items on closed account." -msgstr "Kapalı hesapta günlük maddeleri oluşturamazsınız." +msgstr "Kapalı hesapta yevmiye maddeleri oluşturamazsınız." #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -7025,7 +7041,7 @@ msgstr "Diğer Bilgiler" #. module: account #: field:account.journal,default_credit_account_id:0 msgid "Default Credit Account" -msgstr "Varsayılan Kredi Hesabı" +msgstr "Varsayılan Alacak Hesabı" #. module: account #: help:account.analytic.line,currency_id:0 @@ -7033,7 +7049,7 @@ msgid "The related account currency if not equal to the company one." msgstr "İlgili hesabın para birimi şirketinkine eşit değil ise." #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "Özel" @@ -7046,7 +7062,7 @@ msgstr "Geçerli" #. module: account #: field:account.journal,cashbox_line_ids:0 msgid "CashBox" -msgstr "Kasa Kutusu" +msgstr "NakitKasa" #. module: account #: model:account.account.type,name:account.account_type_cash_equity @@ -7060,10 +7076,10 @@ msgid "Internal Transfers Account" msgstr "İç Transferler Hesabı" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" -msgstr "Banka Hesap Özetinde 'Günlük' alanının ayarlandığından emin olun" +msgstr "Banka Hesap Özetinde 'Yevmiye' alanının ayarlandığından emin olun" #. module: account #: selection:account.tax,type:0 @@ -7078,7 +7094,7 @@ msgstr "Genelde yuvarla" #. module: account #: selection:account.report.general.ledger,sortby:0 msgid "Journal & Partner" -msgstr "Günlük & İş Ortağı" +msgstr "Yevmiye & İş Ortağı" #. module: account #: field:account.automatic.reconcile,power:0 @@ -7086,10 +7102,10 @@ msgid "Power" msgstr "Güç" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." -msgstr "Kullanılmayan bir günlük kodu oluşturulamaz." +msgstr "Kullanılmayan bir yevmiye kodu oluşturulamaz." #. module: account #: view:project.account.analytic.line:0 @@ -7168,12 +7184,12 @@ msgstr "" "kullanıldığında sıralama önemlidir." #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -7187,7 +7203,7 @@ msgstr "Kullanıcı Hatası!" #. module: account #: view:account.open.closed.fiscalyear:0 msgid "Discard" -msgstr "Gözardı et" +msgstr "Vazgeç" #. module: account #: selection:account.account,type:0 @@ -7200,7 +7216,7 @@ msgstr "Likidite" #: 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 "Analitik Günlük Maddeleri" +msgstr "Analitik Yevmiye Maddeleri" #. module: account #: field:account.config.settings,has_default_company:0 @@ -7214,7 +7230,7 @@ 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 "" -"Bu sihirbaz, seçili mali yıla ait yıl sonu günlük kayıtlarını " +"Bu sihirbaz, seçili mali yıla ait yıl sonu yevmiye kayıtlarını " "oluşturacaktır. Bu sihirbazı aynı mali yıl için birçok kez " "çalıştırabilirsiniz. Sadece eski kayıtları yenileriyle değiştirecektir." @@ -7239,7 +7255,7 @@ msgstr "" #. module: account #: sql_constraint:account.journal:0 msgid "The name of the journal must be unique per company !" -msgstr "Günlük adı her şirkette eşsiz olmalı !" +msgstr "Yevmiye adı her şirkette eşsiz olmalı !" #. module: account #: field:account.account.template,nocreate:0 @@ -7253,14 +7269,16 @@ msgid "" "You cannot change the owner company of an account that already contains " "journal items." msgstr "" -"Hali hazırda günlük maddeleri içeren bir hesabın sahibi şirketi " +"Hali hazırda yevmiye maddeleri içeren bir hesabın sahibi şirketi " "değiştiremezsiniz." #. module: account #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Tedarikçi İadesi" @@ -7343,7 +7361,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 "Analitik Günlük" +msgstr "Analitik Yevmiye" #. module: account #: view:account.entries.report:0 @@ -7412,7 +7430,7 @@ msgstr "Analitik Kayıt İstatistikleri" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "Kayıtlar: " @@ -7485,7 +7503,7 @@ msgstr "Python Kodu" #. module: account #: view:account.entries.report:0 msgid "Journal Entries with period in current period" -msgstr "Geçerli dönemin içindeki döneme ait günlük kayıtları" +msgstr "Geçerli dönemin içindeki döneme ait yevmiye kayıtları" #. module: account #: help:account.journal,update_posted:0 @@ -7493,8 +7511,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 "" -"Bu günlükle ilişkili kayıtların ya da bu günlükle ilişkili faturaların iptal " -"edilmesine izin vermek istiyorsanız bu kutuyu işaretleyin" +"Bu yevmiyeyle ilişkili kayıtların ya da bu yevmiyeyle ilişkili faturaların " +"iptal edilmesine izin vermek istiyorsanız bu kutuyu işaretleyin" #. module: account #: view:account.fiscalyear.close:0 @@ -7522,11 +7540,11 @@ msgstr "Toplam İşlemler" #: code:addons/account/account.py:636 #, python-format msgid "You cannot remove an account that contains journal items." -msgstr "Günlük maddeleri içeren bir hesabı kaldıramazsınız." +msgstr "Yevmiye maddeleri içeren bir hesabı kaldıramazsınız." #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "Hata !" @@ -7566,7 +7584,7 @@ msgstr "Elle" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Cancel: create refund and reconcile" -msgstr "İptal: İade oluştur ve uzlaştır" +msgstr "İptal: iade oluştur ve uzlaştır" #. module: account #: code:addons/account/wizard/account_report_aged_partner_balance.py:58 @@ -7613,7 +7631,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 "Günlük Kayıtları" +msgstr "Yevmiye Kayıtları" #. module: account #: code:addons/account/wizard/account_invoice_refund.py:147 @@ -7664,12 +7682,12 @@ msgstr "Tüm Kayıtlar" #. module: account #: constraint:account.move.reconcile:0 msgid "You can only reconcile journal items with the same partner." -msgstr "Günlük maddelerini sadece aynı iş ortağı için uzlaştırabilirsiniz." +msgstr "Yevmiye maddelerini sadece aynı iş ortağı için uzlaştırabilirsiniz." #. module: account #: view:account.journal.select:0 msgid "Journal Select" -msgstr "Günlük Seç" +msgstr "Yevmiye Seç" #. module: account #: view:account.bank.statement:0 @@ -7710,7 +7728,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 "" -"Günlük kaydı konusunda kararsızsanız ve bir muhasebe uzmanı tarafından " +"Yevmiye kaydı konusunda kararsızsanız ve bir muhasebe uzmanı tarafından " "'incelenmeli' notunu düşmek istiyorsanız bu kutuyu işaretleyin." #. module: account @@ -7759,7 +7777,7 @@ msgstr "" "Seçilen para birimi varsayılan hesapların para birimiyle aynı olmalı." #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7771,7 +7789,7 @@ msgid "" "\n" "e.g. My model on %(date)s" msgstr "" -"Aşağıdaki etiketleri kullanarak modelin adında yıl, ay, ve tarih " +"Aşağıdaki etiketleri kullanarak modelin adına yıl, ay, ve tarih " "ekleyebilirsiniz:\n" "\n" "%(year)s: Yıl tanımlamak için \n" @@ -7840,7 +7858,7 @@ msgid "Done" msgstr "Yapıldı" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7870,7 +7888,7 @@ msgstr "" "Eskimiş İş Ortağı Bakiyeleri, alacaklarınızın aralıklarla gösterildiği daha " "ayrıntılı bir rapordur. Rapor açılırken, OpenERP şirket adını, mali dönemi " "ve incelenecek aralık ölçüsünü (gün sayısı olarak) sorar. Sonra OpenERP " -"döneme göre alacak bakiyesi listesini hesaplar. 30 günlük bir aralığı " +"döneme göre alacak bakiyesi listesini hesaplar. 30 yevmiye bir aralığı " "incelemek isterseniz, OpenERP, son yıla, son iki yıla, v.s. göre " "alacaklıların incelemesini oluşturur. " @@ -7957,7 +7975,7 @@ msgstr "Hesap Vergi Şablonu" #. module: account #: view:account.journal.select:0 msgid "Are you sure you want to open Journal Entries?" -msgstr "Günlük Kayıtlarını açmak istediğinizden emin misiniz?" +msgstr "Yevmiye Kayıtlarını açmak istediğinizden emin misiniz?" #. module: account #: view:account.state.open:0 @@ -8039,7 +8057,7 @@ msgstr "Bu müşterinin size toplam borç tutarı" #. module: account #: view:account.move.line:0 msgid "Unbalanced Journal Items" -msgstr "Denk olmayan Günlük Maddeleri" +msgstr "Denk olmayan Yevmiye Maddeleri" #. module: account #: model:ir.actions.act_window,name:account.open_account_charts_modules @@ -8068,7 +8086,7 @@ msgid "" "new counterpart but will share the same counterpart. This is used in fiscal " "year closing." msgstr "" -"Bu günlüğe ait her girişin yeni bir karşıt oluşturmayacağını ancak aynı " +"Bu yevmiyeye ait her girişin yeni bir karşıt oluşturmayacağını ancak aynı " "karşıtı paylaşacağını belirtmek için bu kutuyu işaretleyin. Bu, mali yıl " "kapanışlarında kullanılır." @@ -8145,7 +8163,7 @@ msgstr "Raporlama" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -8160,7 +8178,7 @@ msgstr "Sözleşmeler/Analitik Hesaplar" #: view:account.journal:0 #: field:res.partner.bank,journal_id:0 msgid "Account Journal" -msgstr "Hesap Günlüğü" +msgstr "Hesap Yevmiyesi" #. module: account #: field:account.config.settings,tax_calculation_rounding_method:0 @@ -8216,13 +8234,13 @@ msgid "Use model" msgstr "Model kullan" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" "on journal \"%s\"." msgstr "" -"\"%s\" günlüğünde tanımlı varsayılan \n" +"\"%s\" yevmiyesinde tanımlı varsayılan \n" "kredi hesabı yok" #. module: account @@ -8287,7 +8305,7 @@ msgid "Root/View" msgstr "Kök/Görünüm" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "OPEJ" @@ -8342,7 +8360,7 @@ msgid "" "This field is used for payable and receivable journal entries. You can put " "the limit date for the payment of this line." msgstr "" -"Bu alan borç ve alacak günlük kayıtları için kullanılır. Bu kaleme ait " +"Bu alan borç ve alacak yevmiye kayıtları için kullanılır. Bu kaleme ait " "ödemeye ödeme sınırlama tarihi koyabilirsiniz." #. module: account @@ -8356,10 +8374,10 @@ msgid "Maturity Date" msgstr "Vade Tarihi" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" -msgstr "Satış Günlüğü" +msgstr "Satış Yevmiyesi" #. module: account #: model:ir.model,name:account.model_account_invoice_tax @@ -8367,7 +8385,7 @@ msgid "Invoice Tax" msgstr "Fatura Vergisi" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "Parça numarası yok !" @@ -8396,7 +8414,7 @@ msgstr "" #. module: account #: view:account.move:0 msgid "Unposted Journal Entries" -msgstr "İşlenmemiş Günlük Kayıtları" +msgstr "İşlenmemiş Yevmiye Kayıtları" #. module: account #: help:account.invoice.refund,date:0 @@ -8413,7 +8431,7 @@ msgid "Sales Properties" msgstr "Satış Özellikleri" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -8435,11 +8453,11 @@ msgstr "Ödenecek toplam tutar:" #: field:account.analytic.chart,to_date:0 #: field:project.account.analytic.line,to_date:0 msgid "To" -msgstr "Kime" +msgstr "Bitiş" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "Para Birimi Ayarı" @@ -8473,7 +8491,7 @@ msgid "May" msgstr "Mayıs" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -8509,14 +8527,14 @@ msgstr "Alacak dekontu sırası" #: view:validate.account.move:0 #: view:validate.account.move.lines:0 msgid "Post Journal Entries" -msgstr "Günlük Kayıtlarını İşle" +msgstr "Yevmiye Kayıtlarını İşle" #. module: account #: selection:account.bank.statement.line,type:0 #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Müşteri" @@ -8532,7 +8550,7 @@ msgstr "Rapor Adı" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Nakit" @@ -8573,7 +8591,7 @@ msgstr "Paypal hesabı" #. module: account #: selection:account.print.journal,sort_selection:0 msgid "Journal Entry Number" -msgstr "Günlük Kaydı Numarası" +msgstr "Yevmiye Kayıt Numarası" #. module: account #: view:account.financial.report:0 @@ -8598,7 +8616,7 @@ msgstr "cash.box.in" #. module: account #: help:account.invoice,move_id:0 msgid "Link to the automatically generated Journal Items." -msgstr "Otomatik oluşturulan Günlük Maddelerine bağla." +msgstr "Otomatik oluşturulan Yevmiye Maddelerine bağla." #. module: account #: model:ir.model,name:account.model_account_config_settings @@ -8680,7 +8698,7 @@ msgstr "" #. module: account #: model:ir.model,name:account.model_account_cashbox_line msgid "CashBox Line" -msgstr "Kasa Kalemi" +msgstr "NakitKasa Kalemi" #. module: account #: field:account.installer,charts:0 @@ -8706,6 +8724,7 @@ msgstr "Sabitlendi" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Uyarı !" @@ -8773,7 +8792,7 @@ msgid "Select a currency to apply on the invoice" msgstr "Bu faturaya uygulanacak para birimini seçin" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "Hiç Fatura Kalemi Yok !" @@ -8797,7 +8816,7 @@ msgid "Tax Use In" msgstr "Kullanılan Vergi" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8807,7 +8826,7 @@ msgstr "" "Beklenen bakiye (%.2f) hesaplanandan farklıdır. (%.2f)" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "Hesap Kayıt kalemleri geçerli durumda değil." @@ -8827,7 +8846,7 @@ msgstr "Otomatik kayıt" msgid "" "Check this box if this account allows reconciliation of journal items." msgstr "" -"Bu hesap günlük maddelerinin uzlaştırılmasına izin veriyorsa bu kutuyu " +"Bu hesap yevmiye maddelerinin uzlaştırılmasına izin veriyorsa bu kutuyu " "işaretleyin." #. module: account @@ -8853,7 +8872,7 @@ msgid "Associated Partner" msgstr "İlişkili İş Ortağı" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Önce bir iş ortağı seçmelisiniz !" @@ -8861,7 +8880,7 @@ msgstr "Önce bir iş ortağı seçmelisiniz !" #. module: account #: field:account.invoice,comment:0 msgid "Additional Information" -msgstr "Ek Bilgi" +msgstr "Ek Bilgisi" #. module: account #: field:account.invoice.report,residual:0 @@ -8899,7 +8918,7 @@ msgstr "Faturanın durumu Açıktır" #: field:account.subscription,state:0 #: field:report.invoice.created,state:0 msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. module: account #: report:account.analytic.account.cost_ledger:0 @@ -8934,16 +8953,16 @@ msgstr "" "edilmeyeceğini ayarlayın." #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" -msgstr "Satınalma İade Günlüğü" +msgstr "Satınalma İade Yevmiyesi" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." -msgstr "Günlük için lütfen bir sıra tanımlayın." +msgstr "Yevmiye için lütfen bir sıra tanımlayın." #. module: account #: help:account.tax.template,amount:0 @@ -8963,7 +8982,7 @@ msgstr "Fatura Tarihine göre Grupla" #. module: account #: help:account.journal,user_id:0 msgid "The user responsible for this journal" -msgstr "Bu günlükten sorumlu kullanıcı" +msgstr "Bu yevmiyeden sorumlu kullanıcı" #. module: account #: help:account.config.settings,module_account_followup:0 @@ -9034,7 +9053,7 @@ msgstr "Genel Raporlama" #. module: account #: field:account.move.line.reconcile.writeoff,journal_id:0 msgid "Write-Off Journal" -msgstr "Borç Silme Günlüğü" +msgstr "Borç Silme Yevmiyesi" #. module: account #: field:account.chart.template,property_account_income_categ:0 @@ -9068,7 +9087,7 @@ 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 "" -"Bu sihirbaz seçilen mali yıl için yıl sonu kapanış günlük kayıtlarını " +"Bu sihirbaz seçilen mali yıl için yıl sonu kapanış yevmiye kayıtlarını " "kaldırır. Not: bu sihirbazı aynı mali yıl için istediğiniz kadar " "çalıştırabilirsiniz." @@ -9130,7 +9149,7 @@ msgid "" "associated partner" msgstr "" "İlşikili iş ortağıyla ilgili bir ihtilaf sözkonusu ise bu kutuyu " -"işaretleyerek bu günlük maddesine not düşebilirsiniz" +"işaretleyerek bu yevmiye maddesine not düşebilirsiniz" #. module: account #: field:account.move.line,reconcile_partial_id:0 @@ -9199,13 +9218,13 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "${object.company_id.name} Fatura (Ref ${object.number or 'n/a'})" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " "Controls' on the related journal." msgstr "" -"Bu günlükte bu genel hesabı kullanamazsınız, ilgili günlükteki 'Kayıt " +"Bu yevmiyede bu genel hesabı kullanamazsınız, ilgili yevmiye 'Kayıt " "Denetimleri' sekmesini denetleyin." #. module: account @@ -9268,15 +9287,15 @@ msgid "" " " msgstr "" "

\n" -" Bir günlük oluşturmak için tıklayın.\n" +" Bir yevmiye oluşturmak için tıklayın.\n" "

\n" -" Günlükler şirketiniz ile ilgili bütün muhasebe " +" Yevmiyeler şirketiniz ile ilgili bütün muhasebe " "hareketlerinin\n" " kaydedilmesinde kullanılır.\n" "

\n" " Normal bir şirkette her ödeme yöntemi(nakit, çek, bankalar) " "için\n" -" ayrı bir günlük, satış ve satın alma günlükleri.\n" +" ayrı bir yevmiye, satış ve satın alma yevmiyeleri.\n" "

\n" " " @@ -9288,7 +9307,7 @@ msgstr "Mali Yıl Kapatma durumu" #. module: account #: field:account.invoice.refund,journal_id:0 msgid "Refund Journal" -msgstr "İade Günlüğü" +msgstr "İade Yevmiyesi" #. module: account #: report:account.account.balance:0 @@ -9306,7 +9325,7 @@ msgstr "Buna göre Süz" msgid "" "In order to close a period, you must first post related journal entries." msgstr "" -"Bir dönemi kapatmak için önce ilgili günlük kayıtlarını işlemelisiniz." +"Bir dönemi kapatmak için önce ilgili yevmiye kayıtlarını işlemelisiniz." #. module: account #: view:account.entries.report:0 @@ -9321,7 +9340,7 @@ msgid "The partner account used for this invoice." msgstr "Bu fatura için kullanılan iş ortağı hesabı." #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "Vergi %.2f%%" @@ -9339,10 +9358,10 @@ msgid "Payment Term Line" msgstr "Ödeme Koşulu Kalemi" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" -msgstr "Satınalma Günlüğü" +msgstr "Satınalma Yevmiyesi" #. module: account #: field:account.invoice,amount_untaxed:0 @@ -9357,7 +9376,7 @@ msgstr "Vergi Bildirimi Yazdır" #. module: account #: view:account.model.line:0 msgid "Journal Entry Model Line" -msgstr "Günlük Kaydı Model Kalemi" +msgstr "Yevmiye Kaydı Model Kalemi" #. module: account #: view:account.invoice:0 @@ -9385,7 +9404,7 @@ msgid "" "The residual amount on a receivable or payable of a journal entry expressed " "in the company currency." msgstr "" -"Bir günlük kaydının, şirket para biriminde, alacak ya da borç kısmındaki " +"Bir yevmiye kaydının, şirket para biriminde, alacak ya da borç kısmındaki " "kalan tutar." #. module: account @@ -9397,7 +9416,7 @@ msgstr "İstatistikler" #: field:account.analytic.chart,from_date:0 #: field:project.account.analytic.line,from_date:0 msgid "From" -msgstr "Kimden" +msgstr "Başlama" #. module: account #: help:accounting.report,debit_credit:0 @@ -9520,10 +9539,10 @@ msgstr "Analitik Maliyetler" #: report:account.general.journal:0 #: field:account.journal,name:0 msgid "Journal Name" -msgstr "Günlük Adı" +msgstr "Yevmiye Adı" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "Kayıt \"%s\" geçersizdir !" @@ -9576,7 +9595,7 @@ msgstr "" "belirtilir." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "Merkezileştirme için (% s) hesap hareketi onaylanmıştır!" @@ -9618,8 +9637,8 @@ msgid "" "created. If you leave that field empty, it will use the same journal as the " "current invoice." msgstr "" -"Oluşturulacak alacak dekontu için kullanılacak günlüğü seçebilirsiniz. Eğer " -"boş bırakırsanız fatura ile aynı günlük kullanılır." +"Oluşturulacak alacak dekontu için kullanılacak yevmiyesi seçebilirsiniz. " +"Eğer boş bırakırsanız fatura ile aynı yevmiye kullanılır." #. module: account #: help:account.bank.statement.line,sequence:0 @@ -9639,7 +9658,7 @@ msgid "Reconciled entries" msgstr "Uzlaştırılmış kayıtlar" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "Yanlış model !" @@ -9661,7 +9680,7 @@ msgid "Print Account Partner Balance" msgstr "İş Ortağı Hesap Bakiyesini Yazdır" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9703,10 +9722,10 @@ msgstr "bilinmeyen" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" -msgstr "Açılış Girişleri Günlüğü" +msgstr "Açılış Giriş Yevmiyeleri" #. module: account #: model:process.transition,note:account.process_transition_customerinvoice0 @@ -9717,7 +9736,7 @@ msgstr "Taslak faturalar denetledi, doğrulandı ve yazdırıldı." #: field:account.bank.statement,message_is_follower:0 #: field:account.invoice,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takpçi" +msgstr "Bir İzleyicidir" #. module: account #: view:account.move:0 @@ -9756,7 +9775,7 @@ msgstr "" #: code:addons/account/account.py:634 #, python-format msgid "You cannot deactivate an account that contains journal items." -msgstr "Günlük maddeleri içeren bir hesabın etkinliğini kaldıramazsınız." +msgstr "Yevmiye maddeleri içeren bir hesabın etkinliğini kaldıramazsınız." #. module: account #: selection:account.tax,applicable_type:0 @@ -9766,7 +9785,7 @@ msgstr "Python Koduyla Verilmiş" #. module: account #: field:account.analytic.journal,code:0 msgid "Journal Code" -msgstr "Günlük Kodu" +msgstr "Yevmiye Kodu" #. module: account #: view:account.invoice:0 @@ -9783,7 +9802,7 @@ msgstr "Kayıt Kalemleri" #. module: account #: model:ir.actions.act_window,name:account.action_open_journal_button msgid "Open Journal" -msgstr "Günlüğü Aç" +msgstr "Yevmiyeyi Aç" #. module: account #: report:account.analytic.account.journal:0 @@ -9803,10 +9822,10 @@ msgid "Unit of Currency" msgstr "Para Birimi" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" -msgstr "Satış İadesi Günlüğü" +msgstr "Satış İadesi Yevmiyesi" #. module: account #: view:account.move:0 @@ -9824,7 +9843,7 @@ msgid "" " of accounts." msgstr "" "Taslak faturalar onaylandığında artık faturaları değiştiremeyeceksiniz.\n" -" Faturalar özgün numara alacak ve günlük maddeleri\n" +" Faturalar özgün numara alacak ve yevmiye maddeleri\n" " hesap planınızda oluşturulacaktır." #. module: account @@ -9840,7 +9859,7 @@ msgstr "Mali yıl ve dönemlerin durumlarını kapat" #. module: account #: field:account.config.settings,purchase_refund_journal_id:0 msgid "Purchase refund journal" -msgstr "Satınalma iade günlüğü" +msgstr "Satınalma iade yevmiyesi" #. module: account #: view:account.analytic.line:0 @@ -9872,13 +9891,13 @@ msgid "Purchase Tax(%)" msgstr "Satınalma Vergisi(%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "Lütfen birkaç fatura kalemi oluşturun." #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9893,7 +9912,7 @@ msgid "Display Detail" msgstr "Ayrıntı Görüntüle" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "SCNJ" @@ -9933,7 +9952,7 @@ msgstr "" "* 'Açık' durumunda faturaya numara verilmiştir ve muhasebe kayıtları " "yapılmıştır, fatura ödenene kadar durumu açık kalacaktır.\n" "* 'Kapalı' durumu faturanın ödemesi yapıldığında otomatik olarak kapalı " -"durumuna geçer. İlgili günlük kayıtları uzlaştırılabilir ya da " +"durumuna geçer. İlgili yevmiye kayıtları uzlaştırılabilir ya da " "uzlaştırılamaz.\n" "* 'İptal' durumu ise kullanıcının iptal ettiği faturalara verilir." @@ -9988,7 +10007,7 @@ msgstr "Başlangıç Dönemi" #. module: account #: model:ir.actions.report.xml,name:account.account_central_journal msgid "Central Journal" -msgstr "Merkezi Günlük" +msgstr "Merkezi Yevmiye" #. module: account #: field:account.aged.trial.balance,direction_selection:0 @@ -10071,8 +10090,8 @@ msgid "Receivable Account" msgstr "Alacak Hesabı" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -10175,11 +10194,11 @@ msgid "Move" msgstr "Hareket" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" -msgstr "Geçersiz Eylem!" +msgstr "Geçersiz İşlem!" #. module: account #: view:account.bank.statement:0 @@ -10210,7 +10229,7 @@ msgstr "" #. module: account #: report:account.overdue:0 msgid "There is nothing due with this customer." -msgstr "Bu müşteri için hiç vadesi gelen yok." +msgstr "Bu müşteri için hiç vadesi gelen ödeme yok." #. module: account #: help:account.tax,account_paid_id:0 @@ -10244,7 +10263,7 @@ msgid "" "You have to define the bank account\n" "in the journal definition for reconciliation." msgstr "" -"Uzlaştırma için günlük tanımında\n" +"Uzlaştırma için yevmiye tanımında\n" "banka hesabını tanımlamalısınız." #. module: account @@ -10253,7 +10272,7 @@ msgid "" "This field contains the information related to the numbering of the journal " "entries of this journal." msgstr "" -"Bu alan, bu günlüğe ait günlük girişleri numaralarının verilmesiyle ilgili " +"Bu alan, bu günlüğe ait yevmiye girişleri numaralarının verilmesiyle ilgili " "bilgi içerir." #. module: account @@ -10278,7 +10297,7 @@ msgid "Balance :" msgstr "Bakiye :" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "Farklı şirketler için hareketler oluşturulamıyor." @@ -10369,7 +10388,7 @@ msgid "Immediate Payment" msgstr "Peşin Ödeme" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr " Merkezileştirme" @@ -10383,11 +10402,11 @@ msgid "" "journals. Select 'Opening/Closing Situation' for entries generated for new " "fiscal years." msgstr "" -"Müşteri faturaları günlükleri için 'Satış'ı, tedarikçi faturaları günlükleri " -"için 'Satınalma' yı seçin. Müşteri ya da tedarikçi ödemelerinde kullanılan " -"günlükler için 'Kasa' ya da 'Banka' yı seçin. Çeşitli işlemlerin günlükleri " -"için 'Genel' i seçin. Oluşturulan yeni mali döneme ait girişler için " -"'Açılış/Kapanış Durumu' nu seçin." +"Müşteri faturaları yevmiyeleri için 'Satış'ı, tedarikçi faturaları " +"yevmiyeleriiçin 'Satınalma' yı seçin. Müşteri ya da tedarikçi ödemelerinde " +"kullanılan yevmiyeler için 'Kasa' ya da 'Banka' yı seçin. Çeşitli işlemlerin " +"yevmiyeleri için 'Genel' i seçin. Oluşturulan yeni mali döneme ait girişler " +"için 'Açılış/Kapanış Durumu' nu seçin." #. module: account #: view:account.subscription:0 @@ -10441,8 +10460,8 @@ 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 "" -"Faturanın ödenmiş olduğunu ve faturanın günlük kaydının bir ya da daha fazla " -"ödeme ile uzlaştırıldığını gösterir." +"Faturanın ödenmiş olduğunu ve faturanın yevmiye kaydının bir ya da daha " +"fazla ödeme ile uzlaştırıldığını gösterir." #. module: account #: view:account.invoice:0 @@ -10465,7 +10484,7 @@ msgid "Unreconciled" msgstr "Uzlaştırılmamış" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "Hatalı Toplam !" @@ -10528,8 +10547,8 @@ msgid "" "Selected invoice(s) cannot be cancelled as they are already in 'Cancelled' " "or 'Done' state." msgstr "" -"Seçili fatura(lar) halihazırda 'İptal edildi' ya da 'Yapıldı' durumunda " -"olduğundan iptal edilemez." +"Seçili fatura(lar) zaten 'İptal edildi' ya da 'Yapıldı' durumunda olduğundan " +"iptal edilemez." #. module: account #: report:account.analytic.account.quantity_cost_ledger:0 @@ -10551,7 +10570,7 @@ msgstr "Kod/Tarih" #: model:ir.model,name:account.model_account_move_line #: model:ir.ui.menu,name:account.menu_action_account_moves_all msgid "Journal Items" -msgstr "Günlük Maddeleri" +msgstr "Yevmiye Maddeleri" #. module: account #: view:accounting.report:0 @@ -10559,7 +10578,7 @@ msgid "Comparison" msgstr "Karşılaştırma" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -10567,9 +10586,9 @@ msgid "" "%s." msgstr "" "Onaylanmış bir kayıt için bu değişikliği yapamazsınız! Yalnızca bazı geçerli " -"olmayan alanları değiştirebilirsiniz ya da önce günlük kaydından uzlaşmayı " -"kaldırmalısınız\\n\n" -"%s" +"olmayan alanları değiştirebilirsiniz ya da önce yevmiye kaydından uzlaşmayı " +"kaldırmalısınız\n" +"%s." #. module: account #: help:account.config.settings,module_account_budget:0 @@ -10639,7 +10658,7 @@ msgstr "Hesap Hareketini Doğrula" #: report:account.vat.declaration:0 #: field:report.account.receivable,credit:0 msgid "Credit" -msgstr "Kredi" +msgstr "Alacak" #. module: account #: view:account.invoice:0 @@ -10654,10 +10673,10 @@ msgstr "Genel Günlükler" #. module: account #: view:account.model:0 msgid "Journal Entry Model" -msgstr "Günlük Kayıt Modeli" +msgstr "Yevmiye Kayıt Modeli" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "Başlangıç dönemi bitiş döneminden önce olmalı." @@ -10666,7 +10685,7 @@ msgstr "Başlangıç dönemi bitiş döneminden önce olmalı." #: field:account.invoice,number:0 #: field:account.move,name:0 msgid "Number" -msgstr "Sayı" +msgstr "Numarası" #. module: account #: report:account.analytic.account.journal:0 @@ -10791,7 +10810,7 @@ msgid "" "and is the process of transferring debit and credit amounts from a journal " "of original entry to a ledger book." msgstr "" -"Günlük doğrulama işlemi, 'deftere işleme' olarak da anılır ve bir günlükte " +"Yevmiye doğrulama işlemi, 'deftere işleme' olarak da anılır ve bir yevmiyede " "girilen borç/alacak tutarlarının deftere aktarılması işlemidir." #. module: account @@ -10915,7 +10934,7 @@ msgstr "Gerçekleşmemiş Kazanç ya da Zarar" #: view:account.move:0 #: view:account.move.line:0 msgid "States" -msgstr "Durumlar" +msgstr "Durumu" #. module: account #: help:product.category,property_account_income_categ:0 @@ -10959,6 +10978,7 @@ msgstr "Banka Uzlaştırması için Aç" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10974,7 +10994,9 @@ msgstr "Banka Uzlaştırması için Aç" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10983,6 +11005,7 @@ msgstr "Banka Uzlaştırması için Aç" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -11080,7 +11103,7 @@ msgstr "" "dışı bırakılmayacağı için o işleme bağlı bütün eylemleri de doğrulamalısınız." #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "Vergi değiştirilemiyor!" @@ -11088,7 +11111,7 @@ msgstr "Vergi değiştirilemiyor!" #. module: account #: constraint:account.bank.statement:0 msgid "The journal and period chosen have to belong to the same company." -msgstr "Seçilen günlük ve dönem aynı şirkete ait olmalıdır." +msgstr "Seçilen yevmiye ve dönem aynı şirkete ait olmalıdır." #. module: account #: view:account.invoice:0 @@ -11103,7 +11126,7 @@ msgstr "Dönem Sonu" #. module: account #: sql_constraint:account.journal:0 msgid "The code of the journal must be unique per company !" -msgstr "Günlük kodu her şirket için eşsiz olmalı." +msgstr "Yevmiye kodu her şirket için eşsiz olmalı." #. module: account #: model:ir.actions.act_window,help:account.action_account_invoice_report_all @@ -11136,7 +11159,7 @@ msgstr "Fatura durumu Yapıldı." #. module: account #: field:account.config.settings,module_account_followup:0 msgid "Manage customer payment follow-ups" -msgstr "Müşteri ödemeleri takibini yönet" +msgstr "Müşteri ödeme izlemelerini yönet" #. module: account #: model:ir.model,name:account.model_report_account_sales @@ -11153,8 +11176,10 @@ msgstr "Hesapların Mali Durumu" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Tedarikçi Faturası" @@ -11227,7 +11252,7 @@ msgstr "Aralık" #. module: account #: view:account.analytic.line:0 msgid "Analytic Journal Items related to a purchase journal." -msgstr "Bir satınalma günlüğü ile ilişkili Analitik Günlük Maddeleri" +msgstr "Bir satınalma yevmiyesi ile ilişkili Analitik Yevmiye Maddeleri" #. module: account #: help:account.account,type:0 @@ -11239,14 +11264,16 @@ msgid "" "computations), closed for depreciated accounts." msgstr "" "'İç Tür' farklı hesap türlerindeki olan özellikler için kullanılır: görünüm " -"günlük maddelerini alamaz, birleştirme (konsolidasyon) çok şirketli " +"yevmiye maddelerini alamaz, birleştirme (konsolidasyon) çok şirketli " "hesaplarının birleştirilmelerinin alt hesapları için, borç/alacak iş ortağı " "hesapları için (borç/alacak hesaplamaları) , kapalı değer düşmesi hesapları " "için." #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "Hareketlerle" @@ -11318,7 +11345,7 @@ msgstr "Faturalama" #: view:account.account:0 #: view:account.analytic.account:0 msgid "Parent Account" -msgstr "Ana Hesap" +msgstr "Üst Hesap" #. module: account #: view:report.account.receivable:0 @@ -11341,7 +11368,7 @@ msgid "Entries Sorted by" msgstr "Kayıtlar buna göre Sıralandı" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -11407,7 +11434,7 @@ msgid "" " " msgstr "" "

\n" -" Doldurmak istediğiniz günlüğü ve dönemi seçin.\n" +" Doldurmak istediğiniz yevmiyeyi ve dönemi seçin.\n" "

\n" " Bu ekran muhasebeciler tarafından OpenERP'ye hızlı kayıt " "girmek\n" @@ -11434,7 +11461,7 @@ msgstr "Daha fazla hesap planı şablonu yükle" #: report:account.general.journal:0 #: model:ir.actions.report.xml,name:account.account_general_journal msgid "General Journal" -msgstr "Genel Günlük" +msgstr "Genel Yevmiye" #. module: account #: view:account.invoice:0 @@ -11445,6 +11472,8 @@ msgstr "Fatura Ara" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "İade" @@ -11519,7 +11548,7 @@ msgid "Manual Invoice Taxes" msgstr "Elle Vergi Girilen Fatura" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "Tedarikçi ödeme koşulunda ödeme koşulu kalemi yok!" @@ -11571,7 +11600,7 @@ msgid "" "If the active field is set to False, it will allow you to hide the analytic " "journal without removing it." msgstr "" -"Eğer etkin kutusu Yanlışa ayarlıysa, analitik günlüğü silmeden gizlemenizi " +"Eğer etkin kutusu Yanlışa ayarlıysa, analitik yevmiyeyi silmeden gizlemenizi " "sağlayacaktır." #. module: account @@ -11619,7 +11648,7 @@ msgstr "Banka Hesabı" #: 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 "Merkezi Hesap Günlüğü" +msgstr "Merkezi Hesap Yevmiyesi" #. module: account #: report:account.overdue:0 @@ -11634,7 +11663,7 @@ msgstr "Gelecek" #. module: account #: view:account.move.line:0 msgid "Search Journal Items" -msgstr "Günlük Maddelerini Ara" +msgstr "Yevmiye Maddelerini Ara" #. module: account #: help:account.tax,base_sign:0 @@ -11675,7 +11704,7 @@ msgstr "" #. module: account #: selection:account.config.settings,tax_calculation_rounding_method:0 msgid "Round per line" -msgstr "Satır Satırı Yuvarla" +msgstr "Satır Satır Yuvarla" #. module: account #: help:account.move.line,amount_residual_currency:0 @@ -11807,9 +11836,6 @@ msgstr "" #~ msgid "Print Journal" #~ msgstr "Yevmiye Yazdır" -#~ msgid "Cancel Invoice" -#~ msgstr "Faturayı İptalet" - #~ msgid "Required" #~ msgstr "Gerekli" @@ -15291,3 +15317,6 @@ msgstr "" #~ msgid "Other Configuration" #~ msgstr "Diğer Yapılandırma" + +#~ msgid "Cancel Invoice" +#~ msgstr "Fatura İptal Et" diff --git a/addons/account/i18n/ug.po b/addons/account/i18n/ug.po index cf63053d43c..e3c49895789 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-16 05:18+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:11+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "ئاشقىنى" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "ئىچكى ئىسمى" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8049,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/uk.po b/addons/account/i18n/uk.po index 96cfa5ccfc2..3ae8f2eff94 100644 --- a/addons/account/i18n/uk.po +++ b/addons/account/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-16 05:18+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:11+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -57,7 +57,7 @@ msgid "Residual" msgstr "Залишковий" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -73,9 +73,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -127,15 +127,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -147,7 +147,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -329,7 +329,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -650,7 +650,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -661,13 +661,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -720,7 +720,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "Рахунки дебіторів" @@ -758,7 +760,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -827,7 +829,7 @@ msgid "Type" msgstr "Тип" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -850,7 +852,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -922,7 +924,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1006,7 +1008,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1077,10 +1079,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1204,7 +1206,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1509,15 +1511,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1740,8 +1744,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "Інвойс" @@ -1816,7 +1822,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1968,36 +1974,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2011,8 +2017,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2054,7 +2060,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2126,7 +2132,7 @@ msgid "Analytic account" msgstr "Аналітичний рахунок" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2226,7 +2232,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2531,7 +2539,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2552,7 +2560,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2576,7 +2584,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2684,7 +2692,7 @@ msgid "Account Model Entries" msgstr "Записи моделі обліку" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2796,21 +2804,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2998,7 +3005,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3011,7 +3018,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3027,8 +3034,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3187,7 +3194,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3280,7 +3287,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3343,8 +3350,8 @@ msgid "View" msgstr "Перегляд" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3600,7 +3607,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3615,7 +3622,7 @@ msgid "Starting Balance" msgstr "Початковий баланс" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3667,7 +3674,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3815,7 +3822,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3884,9 +3891,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3975,7 +3986,7 @@ msgid "Chart of Accounts Template" msgstr "Шаблон Плану Рахунків" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3984,8 +3995,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4138,7 +4151,7 @@ msgid "Name" msgstr "Назва" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4209,8 +4222,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4240,7 +4253,7 @@ msgid "Consolidated Children" msgstr "Об'єднати Дочірні" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4442,7 +4455,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4507,8 +4520,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4571,7 +4584,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4637,7 +4650,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4691,7 +4704,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4781,7 +4794,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4796,7 +4809,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4862,7 +4875,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4936,7 +4949,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5105,7 +5118,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5277,7 +5290,7 @@ msgid "Target Moves" msgstr "Цільові кроки" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5358,7 +5371,7 @@ msgid "Internal Name" msgstr "Внутрішня назва" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5430,7 +5443,7 @@ msgid "Compute Code (if type=code)" msgstr "Код розрахунку (якщо тип=код)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5558,7 +5571,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5586,7 +5599,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5881,7 +5894,7 @@ msgid "Fixed Amount" msgstr "Фіксована сума" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5932,14 +5945,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "Списати" @@ -5965,7 +5978,7 @@ msgstr "Дохід" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "Постачальник" @@ -5985,7 +5998,7 @@ msgid "Account n°" msgstr "№ рахунку" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5995,7 +6008,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6099,7 +6114,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6147,7 +6162,7 @@ msgid "Number of Days" msgstr "Кількість днів" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6293,7 +6308,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6465,7 +6480,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6486,7 +6501,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6513,7 +6528,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6539,7 +6554,7 @@ msgid "Power" msgstr "Степінь" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6610,12 +6625,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6693,7 +6708,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "Повернення постачальнику" @@ -6836,7 +6853,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6945,7 +6962,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7166,7 +7183,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7237,7 +7254,7 @@ msgid "Done" msgstr "Завершено" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7525,7 +7542,7 @@ msgstr "Звіти" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7588,7 +7605,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7639,7 +7656,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7706,7 +7723,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "Журнал продажів" @@ -7717,7 +7734,7 @@ msgid "Invoice Tax" msgstr "Податок інвойса" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7756,7 +7773,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7781,7 +7798,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7813,7 +7830,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7854,7 +7871,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "Покупець" @@ -7870,7 +7887,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "Каса" @@ -8034,6 +8051,7 @@ msgstr "Фіксований" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "Попередження !" @@ -8101,7 +8119,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8124,7 +8142,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8132,7 +8150,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8176,7 +8194,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "Ви повинні спочатку вибрати партнера !" @@ -8255,13 +8273,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8504,7 +8522,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8605,7 +8623,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8623,7 +8641,7 @@ msgid "Payment Term Line" msgstr "Рядок термінів оплати" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8792,7 +8810,7 @@ msgid "Journal Name" msgstr "Назва журналу" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8840,7 +8858,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8901,7 +8919,7 @@ msgid "Reconciled entries" msgstr "Вивірені проводки" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8923,7 +8941,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8957,7 +8975,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9052,7 +9070,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9118,13 +9136,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9137,7 +9155,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9296,8 +9314,8 @@ msgid "Receivable Account" msgstr "Рахунок Дебіторської Заборгованості" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9398,7 +9416,7 @@ msgid "Move" msgstr "Переміщення" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9492,7 +9510,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9583,7 +9601,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9672,7 +9690,7 @@ msgid "Unreconciled" msgstr "Незвірений" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9757,7 +9775,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9844,7 +9862,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10143,6 +10161,7 @@ msgstr "Відкрити для звірки з банком" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10158,7 +10177,9 @@ msgstr "Відкрити для звірки з банком" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10167,6 +10188,7 @@ msgstr "Відкрити для звірки з банком" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10258,7 +10280,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10327,8 +10349,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "Інвойс постачальника" @@ -10414,8 +10438,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10510,7 +10536,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10591,6 +10617,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "Повернення" @@ -10661,7 +10689,7 @@ msgid "Manual Invoice Taxes" msgstr "Ручні податки інвойса" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/ur.po b/addons/account/i18n/ur.po index aa771834696..484ad7da7db 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-16 05:19+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:11+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8049,7 @@ msgstr "" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/vi.po b/addons/account/i18n/vi.po index 66b82d479b2..398501619a2 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-06-30 05:55+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:11+0000\n" +"X-Generator: Launchpad (build 16753)\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 beaeb00ddea..ba4e5abb6cf 100644 --- a/addons/account/i18n/zh_CN.po +++ b/addons/account/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-06-08 05:52+0000\n" -"X-Generator: Launchpad (build 16667)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:13+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -25,7 +25,7 @@ msgstr "系统支付" #: sql_constraint:account.fiscal.position.account:0 msgid "" "An account fiscal position could be defined only once time on same accounts." -msgstr "在一个科目上只能设置一个应税设定" +msgstr "在一个科目上只能设置一个替换规则。" #. module: account #: help:account.tax.code,sequence:0 @@ -130,10 +130,10 @@ msgstr "如果设置为false,该付款条款将会被隐藏。" #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 #: code:addons/account/account.py:1058 -#: code:addons/account/account_invoice.py:817 #: code:addons/account/account_invoice.py:820 #: code:addons/account/account_invoice.py:823 -#: code:addons/account/account_invoice.py:1542 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 #: code:addons/account/account_move_line.py:771 #: code:addons/account/account_move_line.py:824 @@ -348,7 +348,7 @@ msgid "Allow multi currencies" msgstr "允许多种货币" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "你必须定义一个类型为 '%s'的成本凭证簿!" @@ -360,7 +360,7 @@ msgstr "你必须定义一个类型为 '%s'的成本凭证簿!" #: selection:report.account.sales,month:0 #: selection:report.account_type.sales,month:0 msgid "June" -msgstr "6" +msgstr "6月" #. module: account #: code:addons/account/wizard/account_automatic_reconcile.py:148 @@ -442,7 +442,7 @@ msgstr "" #. module: account #: help:account.bank.statement.line,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "发起人到受益人的信息" #. module: account #. openerp-web @@ -462,7 +462,7 @@ msgstr "科目一览表模板" #. module: account #: selection:account.invoice.refund,filter_refund:0 msgid "Modify: create refund, reconcile and create a new draft invoice" -msgstr "" +msgstr "修改:创建退款,核销并创建一个新的发票草稿" #. module: account #: help:account.config.settings,tax_calculation_rounding_method:0 @@ -528,7 +528,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 @@ -548,7 +548,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 @@ -617,7 +617,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 @@ -745,7 +745,9 @@ msgstr "设置辅助核算项,用于退款时发票上默认税科目。如果 #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "应收款科目" @@ -783,7 +785,7 @@ msgid "Are you sure you want to create entries?" msgstr "你确定创建分录?" #. module: account -#: code:addons/account/account_invoice.py:1358 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "发票已经支付:%s%s ,总额: %s%s (剩余:%s%s )。" @@ -852,7 +854,7 @@ msgid "Type" msgstr "类型" #. module: account -#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -1035,7 +1037,7 @@ msgid "Liability" msgstr "负债" #. module: account -#: code:addons/account/account_invoice.py:896 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "请为这张发票对应的凭证簿选择编号规则" @@ -1108,8 +1110,8 @@ msgstr "特性" #. module: account #: code:addons/account/account.py:2346 #: code:addons/account/account_bank_statement.py:424 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:772 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1547,8 +1549,10 @@ msgid "%s (copy)" msgstr "%s (副本)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" @@ -1642,7 +1646,7 @@ msgstr "# 分录 " msgid "" "By unchecking the active field, you may hide a fiscal position without " "deleting it." -msgstr "如不勾选该项,可以隐藏而不删除此应税条件" +msgstr "如不勾选该项,可以隐藏而不删除此替换规则。" #. module: account #: model:ir.model,name:account.model_temp_range @@ -1685,7 +1689,7 @@ msgstr "定期分录" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_template msgid "Template for Fiscal Position" -msgstr "财务结构模板" +msgstr "替换规则模板" #. module: account #: view:account.subscription:0 @@ -1780,7 +1784,7 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 -#: code:addons/account/account_invoice.py:1154 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice #, python-format @@ -2033,9 +2037,9 @@ msgstr "" #: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:896 -#: code:addons/account/account_invoice.py:930 -#: code:addons/account/account_invoice.py:1121 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 #: code:addons/account/account_move_line.py:579 #: code:addons/account/account_move_line.py:828 #: code:addons/account/account_move_line.py:851 @@ -2232,7 +2236,7 @@ msgstr "流水帐" #. module: account #: sql_constraint:account.fiscal.position.tax:0 msgid "A tax fiscal position could be defined only once time on same taxes." -msgstr "同样的税 上面一次只能定义一个财务结构。" +msgstr "同样的税上面一次只能定义一个税务替换规则。" #. module: account #: view:account.tax:0 @@ -2277,7 +2281,9 @@ msgstr "固定资产管理" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "应付款科目" @@ -2582,7 +2588,7 @@ msgid "Create an Account Based on this Template" msgstr "基于此模板创建科目" #. module: account -#: code:addons/account/account_invoice.py:930 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2624,7 +2630,7 @@ msgstr "付款条款" #: model:ir.actions.act_window,name:account.action_account_fiscal_position_form #: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form msgid "Fiscal Positions" -msgstr "财务结构" +msgstr "替换规则" #. module: account #: code:addons/account/account_move_line.py:579 @@ -2851,11 +2857,11 @@ msgstr "科目" #. module: account #: code:addons/account/account.py:3541 #: code:addons/account/account_bank_statement.py:405 -#: code:addons/account/account_invoice.py:504 -#: code:addons/account/account_invoice.py:606 -#: code:addons/account/account_invoice.py:621 -#: code:addons/account/account_invoice.py:629 -#: code:addons/account/account_invoice.py:654 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 #: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" @@ -3088,7 +3094,7 @@ msgstr "销售分类帐" #. module: account #: code:addons/account/account.py:2346 -#: code:addons/account/account_invoice.py:772 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3244,10 +3250,10 @@ msgstr "盈利或亏损" #: model:ir.model,name:account.model_account_fiscal_position #: field:res.partner,property_account_position:0 msgid "Fiscal Position" -msgstr "财务结构" +msgstr "替换规则" #. module: account -#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3407,7 +3413,7 @@ msgstr "视图" #. module: account #: code:addons/account/account.py:3460 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3668,7 +3674,7 @@ msgid "" msgstr "如果您指定其它名称,它创建的凭证或分录将用报表名相同的名称。这使得报表它自己关联相似的分录。" #. module: account -#: code:addons/account/account_invoice.py:1013 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3683,7 +3689,7 @@ msgid "Starting Balance" msgstr "期初余额" #. module: account -#: code:addons/account/account_invoice.py:1462 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "未定义业务伙伴!" @@ -3952,9 +3958,13 @@ msgid "VAT :" msgstr "增值税 :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4054,8 +4064,10 @@ msgstr "" "请在业务伙伴里定义它" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4310,7 +4322,7 @@ msgid "Consolidated Children" msgstr "合并子科目" #. module: account -#: code:addons/account/account_invoice.py:570 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4579,8 +4591,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:607 -#: code:addons/account/account_invoice.py:622 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4853,7 +4865,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:655 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -5177,7 +5189,7 @@ msgid "Tax Application" msgstr "税适用" #. module: account -#: code:addons/account/account_invoice.py:919 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5502,7 +5514,7 @@ msgid "Compute Code (if type=code)" msgstr "计算代码(如果类型=代码)" #. module: account -#: code:addons/account/account_invoice.py:505 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5902,7 +5914,7 @@ msgstr "" #: view:account.fiscal.position.template:0 #: field:account.fiscal.position.template,name:0 msgid "Fiscal Position Template" -msgstr "财务结构模板" +msgstr "替换规则模版" #. module: account #: view:account.invoice:0 @@ -6037,7 +6049,7 @@ msgstr "收入" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:387 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "供应商" @@ -6057,7 +6069,7 @@ msgid "Account n°" msgstr "科目编码" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "无限制的单号" @@ -6067,7 +6079,9 @@ msgstr "无限制的单号" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "应收款与应付款科目" @@ -6234,7 +6248,7 @@ msgstr "报表" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax_template msgid "Template Tax Fiscal Position" -msgstr "税务的模板" +msgstr "税务替换规则的模板" #. module: account #: help:account.tax,name:0 @@ -6293,7 +6307,7 @@ msgstr "生成循环分录" #. module: account #: report:account.invoice:0 msgid "Fiscal Position Remark :" -msgstr "财务状况备注:" +msgstr "替换规则备注:" #. module: account #: view:analytic.entries.report:0 @@ -6365,7 +6379,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1121 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6537,7 +6551,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:630 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6686,7 +6700,7 @@ msgstr "序列字段用于税从低到高排序, 如果税中有子税这排序 #: code:addons/account/account.py:1453 #: code:addons/account/account.py:1482 #: code:addons/account/account.py:1489 -#: code:addons/account/account_invoice.py:1012 +#: code:addons/account/account_invoice.py:1015 #: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 @@ -6765,7 +6779,7 @@ msgstr "你不能修改已经存在凭证的公司帐户。" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 -#: code:addons/account/account_invoice.py:1157 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 #, python-format msgid "Supplier Refund" @@ -7174,7 +7188,7 @@ msgstr "科目核销" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_tax msgid "Taxes Fiscal Position" -msgstr "税负" +msgstr "税负替换规则" #. module: account #: report:account.general.ledger:0 @@ -7896,7 +7910,7 @@ msgid "May" msgstr "5" #. module: account -#: code:addons/account/account_invoice.py:817 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "定义了全局税,但发票行中没有!" @@ -7937,7 +7951,7 @@ msgstr "登账" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:385 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "客户" @@ -8185,7 +8199,7 @@ msgid "Select a currency to apply on the invoice" msgstr "在发票上选择合适的币别" #. module: account -#: code:addons/account/account_invoice.py:898 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "没有发票明细" @@ -8262,7 +8276,7 @@ msgid "Associated Partner" msgstr "相关业务伙伴" #. module: account -#: code:addons/account/account_invoice.py:1462 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "你必须首先选择一个业务伙伴!" @@ -8452,7 +8466,7 @@ msgstr "已调整的余额" #: model:ir.actions.act_window,name:account.action_account_fiscal_position_template_form #: model:ir.ui.menu,name:account.menu_action_account_fiscal_position_form_template msgid "Fiscal Position Templates" -msgstr "财务结构模板" +msgstr "替换规则模板" #. module: account #: view:account.entries.report:0 @@ -8744,7 +8758,7 @@ msgstr "到期日期" #: model:ir.ui.menu,name:account.menu_account_supplier #: model:ir.ui.menu,name:account.menu_finance_payables msgid "Suppliers" -msgstr "供应商列表" +msgstr "供应商" #. module: account #: view:account.journal:0 @@ -9208,7 +9222,7 @@ msgid "Purchase Tax(%)" msgstr "进项税(%)" #. module: account -#: code:addons/account/account_invoice.py:898 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "请创建发票明细。" @@ -9764,7 +9778,7 @@ msgid "Unreconciled" msgstr "反核销" #. module: account -#: code:addons/account/account_invoice.py:919 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "坏的合计!" @@ -10237,6 +10251,7 @@ msgstr "开始银行对账" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10252,7 +10267,9 @@ msgstr "开始银行对账" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10261,6 +10278,7 @@ msgstr "开始银行对账" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10414,14 +10432,14 @@ msgstr "销售科目的报表" #. module: account #: model:ir.model,name:account.model_account_fiscal_position_account msgid "Accounts Fiscal Position" -msgstr "财务结构" +msgstr "替换规则" #. module: account #: report:account.invoice:0 #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 -#: code:addons/account/account_invoice.py:1155 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 #, python-format @@ -10511,8 +10529,10 @@ msgstr "" "内部类型用于对不同类型的科目进行控制:视图科目不能做凭证,合并科目用于在多公司合并中指定子科目,应收应付科目用于业务伙伴,关闭科目用于不再使用的科目。" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "进展" @@ -10607,7 +10627,7 @@ msgid "Entries Sorted by" msgstr "排序依据:" #. module: account -#: code:addons/account/account_invoice.py:1543 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10688,7 +10708,7 @@ msgstr "搜索发票" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:1156 +#: code:addons/account/account_invoice.py:1159 #, python-format msgid "Refund" msgstr "红字发票" @@ -10731,7 +10751,7 @@ msgstr "使凭证行生效" #: help:res.partner,property_account_position:0 msgid "" "The fiscal position will determine taxes and accounts used for the partner." -msgstr "" +msgstr "替换规则将决定合作伙伴说使用的税和科目" #. module: account #: model:process.node,note:account.process_node_supplierpaidinvoice0 @@ -10760,7 +10780,7 @@ msgid "Manual Invoice Taxes" msgstr "手动的发票税(非主营业务纳税)" #. module: account -#: code:addons/account/account_invoice.py:570 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "供应商付款条件没有包含付款条件行" diff --git a/addons/account/i18n/zh_HK.po b/addons/account/i18n/zh_HK.po index 88a00f1eeb7..e16b5a50e17 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-16 05:19+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:11+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -58,7 +58,7 @@ msgid "Residual" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "" @@ -74,9 +74,9 @@ msgid "Import from invoice or payment" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "" @@ -128,15 +128,15 @@ msgstr "" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -148,7 +148,7 @@ msgid "Warning!" msgstr "" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "" @@ -330,7 +330,7 @@ msgid "Allow multi currencies" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "" @@ -651,7 +651,7 @@ msgid "Profit Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "" @@ -662,13 +662,13 @@ msgid "Report of the Sales by Account Type" msgstr "" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -721,7 +721,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "" @@ -759,7 +761,7 @@ msgid "Are you sure you want to create entries?" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "" @@ -828,7 +830,7 @@ msgid "Type" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -851,7 +853,7 @@ msgid "Supplier Invoices And Refunds" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "" @@ -923,7 +925,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1007,7 +1009,7 @@ msgid "Liability" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "" @@ -1078,10 +1080,10 @@ msgid "Features" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1205,7 +1207,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "" @@ -1510,15 +1512,17 @@ msgid "%s (copy)" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.partner.balance,display_partner:0 #: selection:account.report.general.ledger,display_account:0 msgid "With balance is not equal to 0" msgstr "" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1741,8 +1745,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "" @@ -1817,7 +1823,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "" @@ -1969,36 +1975,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2012,8 +2018,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "" @@ -2055,7 +2061,7 @@ msgid "period close" msgstr "" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2127,7 +2133,7 @@ msgid "Analytic account" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "" @@ -2227,7 +2233,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "" @@ -2532,7 +2540,7 @@ msgid "Create an Account Based on this Template" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2553,7 +2561,7 @@ msgid "Main Sequence" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2577,7 +2585,7 @@ msgid "Fiscal Positions" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "" @@ -2685,7 +2693,7 @@ msgid "Account Model Entries" msgstr "" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "" @@ -2797,21 +2805,20 @@ msgid "Accounts" msgstr "" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "" @@ -2999,7 +3006,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "" @@ -3012,7 +3019,7 @@ msgid "Sales by Account" msgstr "" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "" @@ -3028,8 +3035,8 @@ msgid "Sale journal" msgstr "" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3188,7 +3195,7 @@ msgid "Fiscal Position" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3281,7 +3288,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "" @@ -3344,8 +3351,8 @@ msgid "View" msgstr "" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "" @@ -3601,7 +3608,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3616,7 +3623,7 @@ msgid "Starting Balance" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "" @@ -3668,7 +3675,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3816,7 +3823,7 @@ msgid "Period Length (days)" msgstr "" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3885,9 +3892,13 @@ msgid "VAT :" msgstr "" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -3976,7 +3987,7 @@ msgid "Chart of Accounts Template" msgstr "" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -3985,8 +3996,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4139,7 +4152,7 @@ msgid "Name" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "" @@ -4210,8 +4223,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "" @@ -4241,7 +4254,7 @@ msgid "Consolidated Children" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4443,7 +4456,7 @@ msgid "Cancel the Selected Invoices" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "" @@ -4508,8 +4521,8 @@ msgid "Supplier invoice sequence" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4572,7 +4585,7 @@ msgid "Account Base Code" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4638,7 +4651,7 @@ msgid "Statement from invoice or payment" msgstr "" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4692,7 +4705,7 @@ msgid "Bank statements are entered in the system." msgstr "" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "" @@ -4782,7 +4795,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4797,7 +4810,7 @@ msgid "Based On" msgstr "" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "" @@ -4863,7 +4876,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "" @@ -4937,7 +4950,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "" @@ -5106,7 +5119,7 @@ msgid "Tax Application" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5278,7 +5291,7 @@ msgid "Target Moves" msgstr "" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5359,7 +5372,7 @@ msgid "Internal Name" msgstr "內部名稱" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5431,7 +5444,7 @@ msgid "Compute Code (if type=code)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5559,7 +5572,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5587,7 +5600,7 @@ msgid "Amount Computation" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5882,7 +5895,7 @@ msgid "Fixed Amount" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5933,14 +5946,14 @@ msgid "Child Accounts" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "" @@ -5966,7 +5979,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "" @@ -5986,7 +5999,7 @@ msgid "Account n°" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "" @@ -5996,7 +6009,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "" @@ -6100,7 +6115,7 @@ msgid "Filter by" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "" @@ -6148,7 +6163,7 @@ msgid "Number of Days" msgstr "" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6294,7 +6309,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6466,7 +6481,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6487,7 +6502,7 @@ msgid "The related account currency if not equal to the company one." msgstr "" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6514,7 +6529,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6540,7 +6555,7 @@ msgid "Power" msgstr "" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "" @@ -6611,12 +6626,12 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6694,7 +6709,9 @@ msgstr "" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "" @@ -6837,7 +6854,7 @@ msgstr "" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "" @@ -6946,7 +6963,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "" @@ -7167,7 +7184,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7238,7 +7255,7 @@ msgid "Done" msgstr "" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7523,7 +7540,7 @@ msgstr "" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7586,7 +7603,7 @@ msgid "Use model" msgstr "" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7637,7 +7654,7 @@ msgid "Root/View" msgstr "" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "" @@ -7704,7 +7721,7 @@ msgid "Maturity Date" msgstr "" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "" @@ -7715,7 +7732,7 @@ msgid "Invoice Tax" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "" @@ -7754,7 +7771,7 @@ msgid "Sales Properties" msgstr "" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7779,7 +7796,7 @@ msgstr "" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "" @@ -7811,7 +7828,7 @@ msgid "May" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "" @@ -7852,7 +7869,7 @@ msgstr "" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "" @@ -7868,7 +7885,7 @@ msgstr "" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "" @@ -8032,6 +8049,7 @@ msgstr "固定" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "警告!" @@ -8099,7 +8117,7 @@ msgid "Select a currency to apply on the invoice" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "" @@ -8122,7 +8140,7 @@ msgid "Tax Use In" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8130,7 +8148,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "" @@ -8174,7 +8192,7 @@ msgid "Associated Partner" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "" @@ -8253,13 +8271,13 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8502,7 +8520,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8603,7 +8621,7 @@ msgid "The partner account used for this invoice." msgstr "" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "" @@ -8621,7 +8639,7 @@ msgid "Payment Term Line" msgstr "" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "" @@ -8790,7 +8808,7 @@ msgid "Journal Name" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "" @@ -8838,7 +8856,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8899,7 +8917,7 @@ msgid "Reconciled entries" msgstr "" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "" @@ -8921,7 +8939,7 @@ msgid "Print Account Partner Balance" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -8955,7 +8973,7 @@ msgstr "" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "" @@ -9050,7 +9068,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "" @@ -9116,13 +9134,13 @@ msgid "Purchase Tax(%)" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9135,7 +9153,7 @@ msgid "Display Detail" msgstr "" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "" @@ -9294,8 +9312,8 @@ msgid "Receivable Account" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9396,7 +9414,7 @@ msgid "Move" msgstr "" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9490,7 +9508,7 @@ msgid "Balance :" msgstr "" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9581,7 +9599,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9670,7 +9688,7 @@ msgid "Unreconciled" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "" @@ -9755,7 +9773,7 @@ msgid "Comparison" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9842,7 +9860,7 @@ msgid "Journal Entry Model" msgstr "" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10141,6 +10159,7 @@ msgstr "" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10156,7 +10175,9 @@ msgstr "" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10165,6 +10186,7 @@ msgstr "" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10256,7 +10278,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10325,8 +10347,10 @@ msgstr "" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "" @@ -10412,8 +10436,10 @@ msgid "" msgstr "" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "" @@ -10508,7 +10534,7 @@ msgid "Entries Sorted by" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10589,6 +10615,8 @@ msgstr "" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "" @@ -10659,7 +10687,7 @@ msgid "Manual Invoice Taxes" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account/i18n/zh_TW.po b/addons/account/i18n/zh_TW.po index 2f34ed5c7d2..af97ceeb7a8 100644 --- a/addons/account/i18n/zh_TW.po +++ b/addons/account/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-16 05:20+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:13+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account #: model:process.transition,name:account.process_transition_supplierreconcilepaid0 @@ -57,7 +57,7 @@ msgid "Residual" msgstr "餘額" #. module: account -#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:369 #, python-format msgid "Journal item \"%s\" is not valid." msgstr "借貸項\"%s\"無效" @@ -73,9 +73,9 @@ msgid "Import from invoice or payment" msgstr "從發票或支付款導入" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "Bad Account!" msgstr "壞帳!" @@ -129,15 +129,15 @@ msgstr "如果設置為false,該付款條件將會被隱藏。" #: code:addons/account/account.py:641 #: code:addons/account/account.py:686 #: code:addons/account/account.py:781 -#: code:addons/account/account.py:1049 -#: code:addons/account/account_invoice.py:788 -#: code:addons/account/account_invoice.py:791 -#: code:addons/account/account_invoice.py:794 -#: code:addons/account/account_invoice.py:1514 +#: code:addons/account/account.py:1058 +#: code:addons/account/account_invoice.py:820 +#: code:addons/account/account_invoice.py:823 +#: code:addons/account/account_invoice.py:826 +#: code:addons/account/account_invoice.py:1545 #: code:addons/account/account_move_line.py:98 -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 +#: code:addons/account/account_move_line.py:864 #: code:addons/account/wizard/account_fiscalyear_close.py:62 #: code:addons/account/wizard/account_invoice_state.py:44 #: code:addons/account/wizard/account_invoice_state.py:68 @@ -149,7 +149,7 @@ msgid "Warning!" msgstr "警告!" #. module: account -#: code:addons/account/account.py:3159 +#: code:addons/account/account.py:3197 #, python-format msgid "Miscellaneous Journal" msgstr "雜項日記帳" @@ -338,7 +338,7 @@ msgid "Allow multi currencies" msgstr "允許多幣別" #. module: account -#: code:addons/account/account_invoice.py:74 +#: code:addons/account/account_invoice.py:77 #, python-format msgid "You must define an analytic journal of type '%s'!" msgstr "你必須定義一個類型為 '%s'的輔助核算帳簿!" @@ -659,7 +659,7 @@ msgid "Profit Account" msgstr "盈餘科目" #. module: account -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1156 #, python-format msgid "No period found or more than one period found for the given date." msgstr "根據輸入的日期沒有找到期間或找到了多個期間" @@ -670,13 +670,13 @@ msgid "Report of the Sales by Account Type" msgstr "銷售報表的科目類型" #. module: account -#: code:addons/account/account.py:3163 +#: code:addons/account/account.py:3201 #, python-format msgid "SAJ" msgstr "SAJ" #. module: account -#: code:addons/account/account.py:1553 +#: code:addons/account/account.py:1591 #, python-format msgid "Cannot create move with currency different from .." msgstr "" @@ -731,7 +731,9 @@ msgstr "" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:297 +#: code:addons/account/report/account_partner_ledger.py:272 #, python-format msgid "Receivable Accounts" msgstr "應收帳款科目" @@ -769,7 +771,7 @@ msgid "Are you sure you want to create entries?" msgstr "你確定要建立分錄?" #. module: account -#: code:addons/account/account_invoice.py:1330 +#: code:addons/account/account_invoice.py:1361 #, python-format msgid "Invoice partially paid: %s%s of %s%s (%s%s remaining)." msgstr "發票金額已部分給付: %s%s of %s%s (餘額 %s%s )." @@ -838,7 +840,7 @@ msgid "Type" msgstr "類型" #. module: account -#: code:addons/account/account_invoice.py:794 +#: code:addons/account/account_invoice.py:826 #, python-format msgid "" "Taxes are missing!\n" @@ -861,7 +863,7 @@ msgid "Supplier Invoices And Refunds" msgstr "供應商發票和退款" #. module: account -#: code:addons/account/account_move_line.py:854 +#: code:addons/account/account_move_line.py:851 #, python-format msgid "Entry is already reconciled." msgstr "分錄已經調節完畢。" @@ -937,7 +939,7 @@ msgstr "" " " #. module: account -#: code:addons/account/account.py:1639 +#: code:addons/account/account.py:1677 #, python-format msgid "" "You cannot unreconcile journal items if they has been generated by the " @@ -1021,7 +1023,7 @@ msgid "Liability" msgstr "負債" #. module: account -#: code:addons/account/account_invoice.py:867 +#: code:addons/account/account_invoice.py:899 #, python-format msgid "Please define sequence on the journal related to this invoice." msgstr "請為這張發票對應的帳簿選擇編號規則" @@ -1092,10 +1094,10 @@ msgid "Features" msgstr "功能" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_bank_statement.py:423 -#: code:addons/account/account_invoice.py:74 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_bank_statement.py:424 +#: code:addons/account/account_invoice.py:77 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "No Analytic Journal !" @@ -1219,7 +1221,7 @@ msgstr "" #. module: account #: model:account.account.type,name:account.data_account_type_bank #: selection:account.bank.accounts.wizard,account_type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Bank" msgstr "銀行" @@ -1526,15 +1528,17 @@ msgid "%s (copy)" msgstr "%s(副本)" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: 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" #. module: account -#: code:addons/account/account.py:1445 +#: code:addons/account/account.py:1483 #, python-format msgid "" "There is no default debit account defined \n" @@ -1759,8 +1763,10 @@ msgstr "" #: view:account.invoice:0 #: view:account.invoice.report:0 #: field:account.move.line,invoice:0 +#: code:addons/account/account_invoice.py:1157 #: model:ir.model,name:account.model_account_invoice #: model:res.request.link,name:account.req_link_invoice +#, python-format msgid "Invoice" msgstr "發票" @@ -1835,7 +1841,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:857 +#: code:addons/account/account_move_line.py:854 #, python-format msgid "Some entries are already reconciled." msgstr "部分分錄已調節完畢。" @@ -1989,36 +1995,36 @@ msgstr "" #: code:addons/account/account.py:634 #: code:addons/account/account.py:636 #: code:addons/account/account.py:930 -#: code:addons/account/account.py:1062 -#: code:addons/account/account.py:1064 -#: code:addons/account/account.py:1103 -#: code:addons/account/account.py:1283 -#: code:addons/account/account.py:1297 -#: code:addons/account/account.py:1320 -#: code:addons/account/account.py:1327 -#: code:addons/account/account.py:1549 -#: code:addons/account/account.py:1553 -#: code:addons/account/account.py:1639 -#: code:addons/account/account.py:2320 -#: code:addons/account/account.py:2640 -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:1071 +#: code:addons/account/account.py:1073 +#: code:addons/account/account.py:1116 +#: code:addons/account/account.py:1319 +#: code:addons/account/account.py:1333 +#: code:addons/account/account.py:1356 +#: code:addons/account/account.py:1363 +#: code:addons/account/account.py:1587 +#: code:addons/account/account.py:1591 +#: code:addons/account/account.py:1677 +#: code:addons/account/account.py:2358 +#: code:addons/account/account.py:2678 +#: code:addons/account/account.py:3465 #: code:addons/account/account_analytic_line.py:89 #: code:addons/account/account_analytic_line.py:98 -#: code:addons/account/account_bank_statement.py:367 -#: code:addons/account/account_bank_statement.py:380 -#: code:addons/account/account_bank_statement.py:418 +#: code:addons/account/account_bank_statement.py:368 +#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:419 #: code:addons/account/account_cash_statement.py:256 #: code:addons/account/account_cash_statement.py:300 -#: code:addons/account/account_invoice.py:867 -#: code:addons/account/account_invoice.py:901 -#: code:addons/account/account_invoice.py:1091 -#: code:addons/account/account_move_line.py:578 -#: code:addons/account/account_move_line.py:831 +#: code:addons/account/account_invoice.py:899 +#: code:addons/account/account_invoice.py:933 +#: code:addons/account/account_invoice.py:1124 +#: code:addons/account/account_move_line.py:579 +#: code:addons/account/account_move_line.py:828 +#: code:addons/account/account_move_line.py:851 #: code:addons/account/account_move_line.py:854 -#: code:addons/account/account_move_line.py:857 -#: code:addons/account/account_move_line.py:1122 -#: code:addons/account/account_move_line.py:1124 -#: code:addons/account/account_move_line.py:1159 +#: code:addons/account/account_move_line.py:1119 +#: code:addons/account/account_move_line.py:1121 +#: code:addons/account/account_move_line.py:1156 #: code:addons/account/report/common_report_header.py:92 #: code:addons/account/wizard/account_change_currency.py:38 #: code:addons/account/wizard/account_change_currency.py:59 @@ -2032,8 +2038,8 @@ msgstr "" #: code:addons/account/wizard/account_report_common.py:158 #: code:addons/account/wizard/account_report_common.py:164 #: code:addons/account/wizard/account_use_model.py:44 -#: code:addons/account/wizard/pos_box.py:32 -#: code:addons/account/wizard/pos_box.py:36 +#: code:addons/account/wizard/pos_box.py:31 +#: code:addons/account/wizard/pos_box.py:35 #, python-format msgid "Error!" msgstr "錯誤!" @@ -2082,7 +2088,7 @@ msgid "period close" msgstr "關閉一個會計期間" #. module: account -#: code:addons/account/account.py:1049 +#: code:addons/account/account.py:1058 #, python-format msgid "" "This journal already contains items for this period, therefore you cannot " @@ -2154,7 +2160,7 @@ msgid "Analytic account" msgstr "輔助核算項目" #. module: account -#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_bank_statement.py:406 #, python-format msgid "Please verify that an account is defined in the journal." msgstr "請確認在帳簿中的科目已定義。" @@ -2254,7 +2260,9 @@ msgstr "資產管理" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:299 +#: code:addons/account/report/account_partner_ledger.py:274 #, python-format msgid "Payable Accounts" msgstr "應付帳款科目" @@ -2559,7 +2567,7 @@ msgid "Create an Account Based on this Template" msgstr "根據這個範本建立使用者" #. module: account -#: code:addons/account/account_invoice.py:901 +#: code:addons/account/account_invoice.py:933 #, python-format msgid "" "Cannot create the invoice.\n" @@ -2580,7 +2588,7 @@ msgid "Main Sequence" msgstr "主序列" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #, python-format msgid "" "In order to delete a bank statement, you must first cancel it to delete " @@ -2604,7 +2612,7 @@ msgid "Fiscal Positions" msgstr "財務結構" #. module: account -#: code:addons/account/account_move_line.py:578 +#: code:addons/account/account_move_line.py:579 #, python-format msgid "You cannot create journal items on a closed account %s %s." msgstr "無法在已關閉的帳目新增日記帳項目%s %s。" @@ -2712,7 +2720,7 @@ msgid "Account Model Entries" msgstr "科目模型分錄" #. module: account -#: code:addons/account/account.py:3164 +#: code:addons/account/account.py:3202 #, python-format msgid "EXJ" msgstr "EXJ" @@ -2826,21 +2834,20 @@ msgid "Accounts" msgstr "科目" #. module: account -#: code:addons/account/account.py:3503 -#: code:addons/account/account_bank_statement.py:404 -#: code:addons/account/account_invoice.py:378 -#: code:addons/account/account_invoice.py:484 -#: code:addons/account/account_invoice.py:582 -#: code:addons/account/account_invoice.py:597 -#: code:addons/account/account_invoice.py:605 -#: code:addons/account/account_invoice.py:627 -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account.py:3541 +#: code:addons/account/account_bank_statement.py:405 +#: code:addons/account/account_invoice.py:507 +#: code:addons/account/account_invoice.py:609 +#: code:addons/account/account_invoice.py:624 +#: code:addons/account/account_invoice.py:632 +#: code:addons/account/account_invoice.py:657 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "Configuration Error!" msgstr "設置錯誤!" #. module: account -#: code:addons/account/account_bank_statement.py:433 +#: code:addons/account/account_bank_statement.py:434 #, python-format msgid "Statement %s confirmed, journal items were created." msgstr "確認表單 %s, 日記帳項目已建立。" @@ -3030,7 +3037,7 @@ msgid "" msgstr "無法確認所選發票,因為它們不是在'草稿' 或'備考'狀態。" #. module: account -#: code:addons/account/account.py:1062 +#: code:addons/account/account.py:1071 #, python-format msgid "You should choose the periods that belong to the same company." msgstr "您應選擇歸屬於同一家公司的期間。" @@ -3043,7 +3050,7 @@ msgid "Sales by Account" msgstr "銷售科目" #. module: account -#: code:addons/account/account.py:1411 +#: code:addons/account/account.py:1449 #, python-format msgid "You cannot delete a posted journal entry \"%s\"." msgstr "無法刪除已登帳之日記帳分錄\"%s\"。" @@ -3059,8 +3066,8 @@ msgid "Sale journal" msgstr "銷售日記帳" #. module: account -#: code:addons/account/account.py:2308 -#: code:addons/account/account_invoice.py:744 +#: code:addons/account/account.py:2346 +#: code:addons/account/account_invoice.py:775 #: code:addons/account/account_move_line.py:195 #, python-format msgid "You have to define an analytic journal on the '%s' journal!" @@ -3219,7 +3226,7 @@ msgid "Fiscal Position" msgstr "財務結構" #. module: account -#: code:addons/account/account_invoice.py:791 +#: code:addons/account/account_invoice.py:823 #, python-format msgid "" "Tax base different!\n" @@ -3315,7 +3322,7 @@ msgstr "" "將選擇要兌換貨幣的當前匯率。在大多數國家法定為「平均」,但只有少數軟件系統能夠管理。 所以如果你要導入另一個軟件系統,你可能需要使用當日匯率。" #. module: account -#: code:addons/account/account.py:2640 +#: code:addons/account/account.py:2678 #, python-format msgid "There is no parent code for the template account." msgstr "該範本科目無父項代碼。" @@ -3378,8 +3385,8 @@ msgid "View" msgstr "視圖" #. module: account -#: code:addons/account/account.py:3422 -#: code:addons/account/account_bank.py:95 +#: code:addons/account/account.py:3460 +#: code:addons/account/account_bank.py:94 #, python-format msgid "BNK" msgstr "BNK" @@ -3640,7 +3647,7 @@ msgid "" msgstr "如果您指定其它名稱,它建立的憑證或分錄將用報表名相同的名稱。這使得報表它自己關聯相似的分錄。" #. module: account -#: code:addons/account/account_invoice.py:984 +#: code:addons/account/account_invoice.py:1016 #, python-format msgid "" "You cannot create an invoice on a centralized journal. Uncheck the " @@ -3655,7 +3662,7 @@ msgid "Starting Balance" msgstr "期初餘額" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "No Partner Defined !" msgstr "未定義業務夥伴!" @@ -3707,7 +3714,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:535 +#: code:addons/account/account_move_line.py:536 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -3855,7 +3862,7 @@ msgid "Period Length (days)" msgstr "期間(天數)" #. module: account -#: code:addons/account/account.py:1327 +#: code:addons/account/account.py:1363 #, python-format msgid "" "You cannot modify a posted entry of this journal.\n" @@ -3926,9 +3933,13 @@ msgid "VAT :" msgstr "增值稅 :" #. module: account +#: report:account.account.balance:0 #: report:account.central.journal:0 #: view:account.config.settings:0 +#: report:account.general.journal:0 #: report:account.general.ledger:0 +#: report:account.general.ledger_landscape:0 +#: report:account.journal.period.print:0 #: report:account.partner.balance:0 #: report:account.third_party_ledger:0 #: report:account.third_party_ledger_other:0 @@ -4017,7 +4028,7 @@ msgid "Chart of Accounts Template" msgstr "科目一覽表模組" #. module: account -#: code:addons/account/account.py:2320 +#: code:addons/account/account.py:2358 #, python-format msgid "" "Maturity date of entry line generated by model line '%s' of model '%s' is " @@ -4028,8 +4039,10 @@ msgstr "" "請在業務夥伴裡定義它" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 #: selection:account.tax,type_tax_use:0 #: selection:account.tax.template,type_tax_use:0 @@ -4182,7 +4195,7 @@ msgid "Name" msgstr "名稱" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "No unconfigured company !" msgstr "不應有未設定完成的公司!" @@ -4253,8 +4266,8 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1061 -#: code:addons/account/account_move_line.py:1146 +#: code:addons/account/account_move_line.py:1058 +#: code:addons/account/account_move_line.py:1143 #, python-format msgid "You cannot use an inactive account." msgstr "無法使用未啓用的帳戶。" @@ -4284,7 +4297,7 @@ msgid "Consolidated Children" msgstr "合併子科目" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #: code:addons/account/wizard/account_invoice_refund.py:146 #, python-format msgid "Insufficient Data!" @@ -4486,7 +4499,7 @@ msgid "Cancel the Selected Invoices" msgstr "取消選定的發票" #. module: account -#: code:addons/account/account_bank_statement.py:423 +#: code:addons/account/account_bank_statement.py:424 #, python-format msgid "You have to assign an analytic journal on the '%s' journal!" msgstr "必須分配一個輔助核算輔助核算帳簿給\"%s\"帳簿" @@ -4555,8 +4568,8 @@ msgid "Supplier invoice sequence" msgstr "供應商發票序號" #. module: account -#: code:addons/account/account_invoice.py:583 -#: code:addons/account/account_invoice.py:598 +#: code:addons/account/account_invoice.py:610 +#: code:addons/account/account_invoice.py:625 #, python-format msgid "" "Cannot find a chart of account, you should create one from Settings\\" @@ -4619,7 +4632,7 @@ msgid "Account Base Code" msgstr "稅基編碼" #. module: account -#: code:addons/account/account_move_line.py:867 +#: code:addons/account/account_move_line.py:864 #, python-format msgid "" "You have to provide an account for the write off/exchange difference entry." @@ -4685,7 +4698,7 @@ msgid "Statement from invoice or payment" msgstr "發票或付款清單" #. module: account -#: code:addons/account/installer.py:94 +#: code:addons/account/installer.py:115 #, python-format msgid "" "There is currently no company without chart of account. The wizard will " @@ -4739,7 +4752,7 @@ msgid "Bank statements are entered in the system." msgstr "把銀行對帳單輸入到系統中。" #. module: account -#: code:addons/account/wizard/account_reconcile.py:121 +#: code:addons/account/wizard/account_reconcile.py:122 #, python-format msgid "Reconcile Writeoff" msgstr "調節時核銷" @@ -4829,7 +4842,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:627 +#: code:addons/account/account_invoice.py:658 #, python-format msgid "" "Cannot find any account journal of %s type for this company.\n" @@ -4844,7 +4857,7 @@ msgid "Based On" msgstr "基於" #. module: account -#: code:addons/account/account.py:3166 +#: code:addons/account/account.py:3204 #, python-format msgid "ECNJ" msgstr "ECNJ" @@ -4910,7 +4923,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3356 +#: code:addons/account/account.py:3394 #, python-format msgid "Purchase Tax %.2f%%" msgstr "採購稅 %.2f%%" @@ -4984,7 +4997,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:3167 +#: code:addons/account/account.py:3205 #, python-format msgid "MISC" msgstr "雜項" @@ -5153,7 +5166,7 @@ msgid "Tax Application" msgstr "稅適用" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "" "Please verify the price of the invoice !\n" @@ -5325,7 +5338,7 @@ msgid "Target Moves" msgstr "目標" #. module: account -#: code:addons/account/account.py:1416 +#: code:addons/account/account.py:1454 #, python-format msgid "" "Move cannot be deleted if linked to an invoice. (Invoice: %s - Move ID:%s)" @@ -5406,7 +5419,7 @@ msgid "Internal Name" msgstr "內部名稱" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "" "Cannot create an automatic sequence for this piece.\n" @@ -5478,7 +5491,7 @@ msgid "Compute Code (if type=code)" msgstr "計算代碼(如果類型=代碼)" #. module: account -#: code:addons/account/account_invoice.py:485 +#: code:addons/account/account_invoice.py:508 #, python-format msgid "" "Cannot find a chart of accounts for this company, you should create one." @@ -5606,7 +5619,7 @@ msgid "Recompute taxes and total" msgstr "" #. module: account -#: code:addons/account/account.py:1103 +#: code:addons/account/account.py:1116 #, python-format msgid "You cannot modify/delete a journal with entries for this period." msgstr "" @@ -5634,7 +5647,7 @@ msgid "Amount Computation" msgstr "計算金額" #. module: account -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "You can not add/modify entries in a closed period %s of journal %s." msgstr "" @@ -5929,7 +5942,7 @@ msgid "Fixed Amount" msgstr "固定金額" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "You cannot change the tax, you should remove and recreate lines." msgstr "" @@ -5980,14 +5993,14 @@ msgid "Child Accounts" msgstr "子科目" #. module: account -#: code:addons/account/account_move_line.py:1120 +#: code:addons/account/account_move_line.py:1117 #, python-format msgid "Move name (id): %s (%s)" msgstr "會計憑證號 (id): %s (%s)" #. module: account #: view:account.move.line.reconcile:0 -#: code:addons/account/account_move_line.py:882 +#: code:addons/account/account_move_line.py:879 #, python-format msgid "Write-Off" msgstr "補差額" @@ -6013,7 +6026,7 @@ msgstr "收入" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:355 +#: code:addons/account/account_invoice.py:390 #, python-format msgid "Supplier" msgstr "供應商" @@ -6033,7 +6046,7 @@ msgid "Account n°" msgstr "科目編碼" #. module: account -#: code:addons/account/account_invoice.py:92 +#: code:addons/account/account_invoice.py:95 #, python-format msgid "Free Reference" msgstr "無限制的單號" @@ -6043,7 +6056,9 @@ msgstr "無限制的單號" #: selection:account.common.partner.report,result_selection:0 #: selection:account.partner.balance,result_selection:0 #: selection:account.partner.ledger,result_selection:0 +#: report:account.third_party_ledger:0 #: code:addons/account/report/account_partner_balance.py:301 +#: code:addons/account/report/account_partner_ledger.py:276 #, python-format msgid "Receivable and Payable Accounts" msgstr "應收帳款與應付帳款科目" @@ -6147,7 +6162,7 @@ msgid "Filter by" msgstr "篩選" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "You have a wrong expression \"%(...)s\" in your model !" msgstr "模型中存在錯誤的表達式 \"%(...)s\"" @@ -6195,7 +6210,7 @@ msgid "Number of Days" msgstr "天數" #. module: account -#: code:addons/account/account.py:1321 +#: code:addons/account/account.py:1357 #, python-format msgid "" "You cannot validate this journal entry because account \"%s\" does not " @@ -6343,7 +6358,7 @@ msgid "Models" msgstr "" #. module: account -#: code:addons/account/account_invoice.py:1091 +#: code:addons/account/account_invoice.py:1124 #, python-format msgid "" "You cannot cancel an invoice which is partially paid. You need to " @@ -6515,7 +6530,7 @@ msgid "You cannot create journal items on closed account." msgstr "" #. module: account -#: code:addons/account/account_invoice.py:606 +#: code:addons/account/account_invoice.py:633 #, python-format msgid "Invoice line account's company and invoice's compnay does not match." msgstr "" @@ -6536,7 +6551,7 @@ msgid "The related account currency if not equal to the company one." msgstr "如果不是同一公司, 相關科目的幣別" #. module: account -#: code:addons/account/installer.py:48 +#: code:addons/account/installer.py:69 #, python-format msgid "Custom" msgstr "" @@ -6563,7 +6578,7 @@ msgid "Internal Transfers Account" msgstr "" #. module: account -#: code:addons/account/wizard/pos_box.py:33 +#: code:addons/account/wizard/pos_box.py:32 #, python-format msgid "Please check that the field 'Journal' is set on the Bank Statement" msgstr "" @@ -6589,7 +6604,7 @@ msgid "Power" msgstr "強制" #. module: account -#: code:addons/account/account.py:3427 +#: code:addons/account/account.py:3465 #, python-format msgid "Cannot generate an unused journal code." msgstr "不能生成一個未使用的憑證代碼。" @@ -6660,12 +6675,12 @@ msgid "" msgstr "序列欄位用於稅從低到高排序, 如果稅中有子稅這排序是重要的" #. module: account -#: code:addons/account/account.py:1410 -#: code:addons/account/account.py:1415 -#: code:addons/account/account.py:1444 -#: code:addons/account/account.py:1451 -#: code:addons/account/account_invoice.py:983 -#: code:addons/account/account_move_line.py:1008 +#: code:addons/account/account.py:1448 +#: code:addons/account/account.py:1453 +#: code:addons/account/account.py:1482 +#: code:addons/account/account.py:1489 +#: code:addons/account/account_invoice.py:1015 +#: code:addons/account/account_move_line.py:1005 #: code:addons/account/wizard/account_automatic_reconcile.py:148 #: code:addons/account/wizard/account_fiscalyear_close.py:88 #: code:addons/account/wizard/account_fiscalyear_close.py:99 @@ -6743,7 +6758,9 @@ msgstr "你不能修改已經存在借貸項的公司帳戶。" #: report:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1160 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Refund" msgstr "供應商折讓" @@ -6886,7 +6903,7 @@ msgstr "輔助核算統計" #. module: account #: code:addons/account/account_analytic_line.py:142 -#: code:addons/account/account_move_line.py:958 +#: code:addons/account/account_move_line.py:955 #, python-format msgid "Entries: " msgstr "分錄: " @@ -6995,7 +7012,7 @@ msgstr "" #. module: account #: code:addons/account/account.py:1024 -#: code:addons/account/account_move_line.py:1108 +#: code:addons/account/account_move_line.py:1105 #, python-format msgid "Error !" msgstr "錯誤!" @@ -7217,7 +7234,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account.py:2266 +#: code:addons/account/account.py:2304 #, python-format msgid "" "You can specify year, month and date in the name of the model using the " @@ -7295,7 +7312,7 @@ msgid "Done" msgstr "完成" #. module: account -#: code:addons/account/account.py:1283 +#: code:addons/account/account.py:1319 #, python-format msgid "" "You cannot validate a non-balanced entry.\n" @@ -7582,7 +7599,7 @@ msgstr "報表" #. module: account #. openerp-web -#: code:addons/account/account_move_line.py:783 +#: code:addons/account/account_move_line.py:780 #: code:addons/account/static/src/js/account_move_reconciliation.js:90 #, python-format msgid "Warning" @@ -7645,7 +7662,7 @@ msgid "Use model" msgstr "使用模型" #. module: account -#: code:addons/account/account.py:1452 +#: code:addons/account/account.py:1490 #, python-format msgid "" "There is no default credit account defined \n" @@ -7696,7 +7713,7 @@ msgid "Root/View" msgstr "根/視圖" #. module: account -#: code:addons/account/account.py:3168 +#: code:addons/account/account.py:3206 #, python-format msgid "OPEJ" msgstr "OPEJ" @@ -7763,7 +7780,7 @@ msgid "Maturity Date" msgstr "到期日期" #. module: account -#: code:addons/account/account.py:3155 +#: code:addons/account/account.py:3193 #, python-format msgid "Sales Journal" msgstr "銷售帳簿" @@ -7774,7 +7791,7 @@ msgid "Invoice Tax" msgstr "發票稅" #. module: account -#: code:addons/account/account_move_line.py:1188 +#: code:addons/account/account_move_line.py:1185 #, python-format msgid "No piece number !" msgstr "沒會計期間!" @@ -7815,7 +7832,7 @@ msgid "Sales Properties" msgstr "銷售屬性" #. module: account -#: code:addons/account/account.py:3503 +#: code:addons/account/account.py:3541 #, python-format msgid "" "You have to set a code for the bank account defined on the selected chart of " @@ -7840,7 +7857,7 @@ msgstr "到" #. module: account #: selection:account.move.line,centralisation:0 -#: code:addons/account/account.py:1503 +#: code:addons/account/account.py:1541 #, python-format msgid "Currency Adjustment" msgstr "匯兌損益調整" @@ -7872,7 +7889,7 @@ msgid "May" msgstr "5" #. module: account -#: code:addons/account/account_invoice.py:788 +#: code:addons/account/account_invoice.py:820 #, python-format msgid "Global taxes defined, but they are not in invoice lines !" msgstr "定義了全局稅,但發票行中沒有!" @@ -7913,7 +7930,7 @@ msgstr "登帳" #: view:account.config.settings:0 #: view:account.invoice:0 #: view:account.invoice.report:0 -#: code:addons/account/account_invoice.py:353 +#: code:addons/account/account_invoice.py:388 #, python-format msgid "Customer" msgstr "客戶" @@ -7929,7 +7946,7 @@ msgstr "報表名稱" #: selection:account.bank.accounts.wizard,account_type:0 #: selection:account.entries.report,type:0 #: selection:account.journal,type:0 -#: code:addons/account/account.py:3054 +#: code:addons/account/account.py:3092 #, python-format msgid "Cash" msgstr "現金" @@ -8093,6 +8110,7 @@ msgstr "固定" #: code:addons/account/account.py:653 #: code:addons/account/account.py:656 #: code:addons/account/account.py:668 +#: code:addons/account/account.py:1031 #, python-format msgid "Warning !" msgstr "警告 !" @@ -8160,7 +8178,7 @@ msgid "Select a currency to apply on the invoice" msgstr "在發票上選擇合適的幣別" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "No Invoice Lines !" msgstr "沒有發票明細" @@ -8183,7 +8201,7 @@ msgid "Tax Use In" msgstr "稅用在" #. module: account -#: code:addons/account/account_bank_statement.py:381 +#: code:addons/account/account_bank_statement.py:382 #, python-format msgid "" "The statement balance is incorrect !\n" @@ -8193,7 +8211,7 @@ msgstr "" "預期的餘額是(%.2f),現在算出來的是(%.2f)" #. module: account -#: code:addons/account/account_bank_statement.py:419 +#: code:addons/account/account_bank_statement.py:420 #, python-format msgid "The account entries lines are not in valid state." msgstr "這分錄明細不是在有效的狀態" @@ -8237,7 +8255,7 @@ msgid "Associated Partner" msgstr "相關業務夥伴" #. module: account -#: code:addons/account/account_invoice.py:1434 +#: code:addons/account/account_invoice.py:1465 #, python-format msgid "You must first select a partner !" msgstr "你必須首先選擇一個業務夥伴!" @@ -8316,13 +8334,13 @@ msgid "" msgstr "如果在計算未來的稅前這稅額必須包含在稅基金額裡,請設置" #. module: account -#: code:addons/account/account.py:3158 +#: code:addons/account/account.py:3196 #, python-format msgid "Purchase Refund Journal" msgstr "進貨退回帳簿" #. module: account -#: code:addons/account/account.py:1297 +#: code:addons/account/account.py:1333 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -8565,7 +8583,7 @@ msgid "${object.company_id.name} Invoice (Ref ${object.number or 'n/a'})" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1213 +#: code:addons/account/account_move_line.py:1210 #, python-format msgid "" "You cannot use this general account in this journal, check the tab 'Entry " @@ -8668,7 +8686,7 @@ msgid "The partner account used for this invoice." msgstr "這發票用這業務夥伴科目" #. module: account -#: code:addons/account/account.py:3353 +#: code:addons/account/account.py:3391 #, python-format msgid "Tax %.2f%%" msgstr "稅 %.2f%%" @@ -8686,7 +8704,7 @@ msgid "Payment Term Line" msgstr "付款條件明細" #. module: account -#: code:addons/account/account.py:3156 +#: code:addons/account/account.py:3194 #, python-format msgid "Purchase Journal" msgstr "採購帳簿" @@ -8855,7 +8873,7 @@ msgid "Journal Name" msgstr "帳簿名稱" #. module: account -#: code:addons/account/account_move_line.py:832 +#: code:addons/account/account_move_line.py:829 #, python-format msgid "Entry \"%s\" is not valid !" msgstr "分錄\"%s\"無效!" @@ -8903,7 +8921,7 @@ msgid "" msgstr "如果它是一個多貨幣憑證,這金額表示一個可選的其它貨幣金額." #. module: account -#: code:addons/account/account_move_line.py:1009 +#: code:addons/account/account_move_line.py:1006 #, python-format msgid "The account move (%s) for centralisation has been confirmed." msgstr "" @@ -8964,7 +8982,7 @@ msgid "Reconciled entries" msgstr "調節分錄" #. module: account -#: code:addons/account/account.py:2296 +#: code:addons/account/account.py:2334 #, python-format msgid "Wrong model !" msgstr "模型有誤!" @@ -8986,7 +9004,7 @@ msgid "Print Account Partner Balance" msgstr "列印業務夥伴餘額" #. module: account -#: code:addons/account/account_move_line.py:1124 +#: code:addons/account/account_move_line.py:1121 #, python-format msgid "" "You cannot do this modification on a reconciled entry. You can just change " @@ -9022,7 +9040,7 @@ msgstr "未知的" #. module: account #: field:account.fiscalyear.close,journal_id:0 -#: code:addons/account/account.py:3160 +#: code:addons/account/account.py:3198 #, python-format msgid "Opening Entries Journal" msgstr "帳簿的開帳分錄" @@ -9117,7 +9135,7 @@ msgid "Unit of Currency" msgstr "" #. module: account -#: code:addons/account/account.py:3157 +#: code:addons/account/account.py:3195 #, python-format msgid "Sales Refund Journal" msgstr "銷貨折讓帳簿" @@ -9183,13 +9201,13 @@ msgid "Purchase Tax(%)" msgstr "進項稅(%)" #. module: account -#: code:addons/account/account_invoice.py:869 +#: code:addons/account/account_invoice.py:901 #, python-format msgid "Please create some invoice lines." msgstr "請建立發票明細。" #. module: account -#: code:addons/account/wizard/pos_box.py:37 +#: code:addons/account/wizard/pos_box.py:36 #, python-format msgid "" "Please check that the field 'Internal Transfers Account' is set on the " @@ -9202,7 +9220,7 @@ msgid "Display Detail" msgstr "顯示明細" #. module: account -#: code:addons/account/account.py:3165 +#: code:addons/account/account.py:3203 #, python-format msgid "SCNJ" msgstr "SCNJ" @@ -9361,8 +9379,8 @@ msgid "Receivable Account" msgstr "應收帳款科目" #. module: account -#: code:addons/account/account_move_line.py:774 -#: code:addons/account/account_move_line.py:827 +#: code:addons/account/account_move_line.py:771 +#: code:addons/account/account_move_line.py:824 #, python-format msgid "To reconcile the entries company should be the same for all entries." msgstr "" @@ -9463,7 +9481,7 @@ msgid "Move" msgstr "憑證" #. module: account -#: code:addons/account/account_bank_statement.py:477 +#: code:addons/account/account_bank_statement.py:478 #: code:addons/account/wizard/account_period_close.py:51 #, python-format msgid "Invalid Action!" @@ -9557,7 +9575,7 @@ msgid "Balance :" msgstr "餘額:" #. module: account -#: code:addons/account/account.py:1549 +#: code:addons/account/account.py:1587 #, python-format msgid "Cannot create moves for different companies." msgstr "" @@ -9648,7 +9666,7 @@ msgid "Immediate Payment" msgstr "" #. module: account -#: code:addons/account/account.py:1464 +#: code:addons/account/account.py:1502 #, python-format msgid " Centralisation" msgstr "" @@ -9739,7 +9757,7 @@ msgid "Unreconciled" msgstr "反核銷" #. module: account -#: code:addons/account/account_invoice.py:890 +#: code:addons/account/account_invoice.py:922 #, python-format msgid "Bad total !" msgstr "壞的合計!" @@ -9826,7 +9844,7 @@ msgid "Comparison" msgstr "比較" #. module: account -#: code:addons/account/account_move_line.py:1122 +#: code:addons/account/account_move_line.py:1119 #, python-format msgid "" "You cannot do this modification on a confirmed entry. You can just change " @@ -9913,7 +9931,7 @@ msgid "Journal Entry Model" msgstr "帳簿分錄模型" #. module: account -#: code:addons/account/account.py:1064 +#: code:addons/account/account.py:1073 #, python-format msgid "Start period should precede then end period." msgstr "" @@ -10212,6 +10230,7 @@ msgstr "開啟銀行核銷" #. module: account #: field:account.account,company_id:0 +#: report:account.account.balance:0 #: field:account.aged.trial.balance,company_id:0 #: field:account.analytic.journal,company_id:0 #: field:account.balance.report,company_id:0 @@ -10227,7 +10246,9 @@ msgstr "開啟銀行核銷" #: field:account.entries.report,company_id:0 #: field:account.fiscal.position,company_id:0 #: field:account.fiscalyear,company_id:0 +#: report:account.general.journal:0 #: field:account.general.journal,company_id:0 +#: report:account.general.ledger_landscape:0 #: field:account.installer,company_id:0 #: field:account.invoice,company_id:0 #: field:account.invoice.line,company_id:0 @@ -10236,6 +10257,7 @@ msgstr "開啟銀行核銷" #: field:account.invoice.tax,company_id:0 #: field:account.journal,company_id:0 #: field:account.journal.period,company_id:0 +#: report:account.journal.period.print:0 #: field:account.model,company_id:0 #: field:account.move,company_id:0 #: field:account.move.line,company_id:0 @@ -10327,7 +10349,7 @@ msgid "" msgstr "" #. module: account -#: code:addons/account/account_move_line.py:1059 +#: code:addons/account/account_move_line.py:1056 #, python-format msgid "Unable to change tax!" msgstr "" @@ -10396,8 +10418,10 @@ msgstr "財務結構" #: view:account.invoice:0 #: selection:account.invoice,type:0 #: selection:account.invoice.report,type:0 +#: code:addons/account/account_invoice.py:1158 #: model:process.process,name:account.process_process_supplierinvoiceprocess0 #: selection:report.invoice.created,type:0 +#, python-format msgid "Supplier Invoice" msgstr "供應商發票" @@ -10484,8 +10508,10 @@ msgstr "" "內部類型用於對不同類型的科目進行控制:視圖科目不能做憑證,合併科目用於在多公司合併中指定子科目,應收應付科目用於業務夥伴,關閉科目用於不再使用的科目。" #. module: account +#: report:account.account.balance:0 #: selection:account.balance.report,display_account:0 #: selection:account.common.account.report,display_account:0 +#: report:account.general.ledger_landscape:0 #: selection:account.report.general.ledger,display_account:0 msgid "With movements" msgstr "進展" @@ -10580,7 +10606,7 @@ msgid "Entries Sorted by" msgstr "排序依據:" #. module: account -#: code:addons/account/account_invoice.py:1515 +#: code:addons/account/account_invoice.py:1546 #, python-format msgid "" "The selected unit of measure is not compatible with the unit of measure of " @@ -10661,6 +10687,8 @@ msgstr "搜索發票" #: report:account.invoice:0 #: view:account.invoice:0 #: view:account.invoice.report:0 +#: code:addons/account/account_invoice.py:1159 +#, python-format msgid "Refund" msgstr "折讓" @@ -10731,7 +10759,7 @@ msgid "Manual Invoice Taxes" msgstr "手動的發票稅(非主營業務納稅)" #. module: account -#: code:addons/account/account_invoice.py:550 +#: code:addons/account/account_invoice.py:573 #, python-format msgid "The payment term of supplier does not have a payment term line." msgstr "" diff --git a/addons/account_accountant/i18n/ar.po b/addons/account_accountant/i18n/ar.po index 2ca2cfbd5df..69a5a6c535a 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 315c2ee469c..50c9d58a4d6 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 57ab5b14f93..2e7a54ad6fe 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 65191d8e34d..299599941b1 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 b45c0fd5ce9..558c6b8d669 100644 --- a/addons/account_accountant/i18n/bs.po +++ b/addons/account_accountant/i18n/bs.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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "" +msgstr "Otvori meni računovodstva" #~ msgid "" #~ "\n" diff --git a/addons/account_accountant/i18n/ca.po b/addons/account_accountant/i18n/ca.po index 132bfc22980..ec4f1a8f0da 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 4172b418a9f..d07fe1d1fa3 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 0b2d606b335..8217604bb31 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 9ccaaaf580b..7524ab201b7 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 0f6f11e9206..cffa98957f3 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 3c1b7ee32be..eb350729df8 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 464caf962a9..4e405cfcb21 100644 --- a/addons/account_accountant/i18n/es.po +++ b/addons/account_accountant/i18n/es.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-05 19:57+0000\n" -"Last-Translator: Santi (Pexego) \n" +"Last-Translator: Santi Argüeso(Pexego) \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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 57c8f045a12..00af8c630e4 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 f12ff15e063..746d380e71f 100644 --- a/addons/account_accountant/i18n/es_CR.po +++ b/addons/account_accountant/i18n/es_CR.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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: account_accountant diff --git a/addons/account_accountant/i18n/es_DO.po b/addons/account_accountant/i18n/es_DO.po index 1c69938d12f..184a2b29324 100644 --- a/addons/account_accountant/i18n/es_DO.po +++ b/addons/account_accountant/i18n/es_DO.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-11-29 20:23+0000\n" -"Last-Translator: Jose Ernesto Mendez \n" +"Last-Translator: Open Business Solutions, SRL. \n" "Language-Team: Spanish (Dominican Republic) \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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 07d81de8a28..45ec10e5bd5 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 253aa4d53b7..8d26fc335b6 100644 --- a/addons/account_accountant/i18n/es_MX.po +++ b/addons/account_accountant/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 41fd507d986..1d57eadc200 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 9145b5dbc63..235aafbfcac 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 5f1c5af1f84..12760666e80 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 8a8d487a12c..c61de059df2 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 0642a54eee8..fff19bce476 100644 --- a/addons/account_accountant/i18n/fr.po +++ b/addons/account_accountant/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 d2d841e8302..ec8194f53f5 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 9d2d3854369..5f1553ee45a 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 8b8a68a57ec..a5db12e6b6c 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 a05862022e2..e20ee386904 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 9176d6342a0..770b3a220d4 100644 --- a/addons/account_accountant/i18n/hu.po +++ b/addons/account_accountant/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 b3d0656b8a5..1d59ee76995 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 122a581647d..8609be9fd03 100644 --- a/addons/account_accountant/i18n/it.po +++ b/addons/account_accountant/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-11-28 19:50+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 1da9c374c7f..bbad2494be5 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-07-31 05:16+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 6554e9e79fb..f2dfb445b15 100644 --- a/addons/account_accountant/i18n/ko.po +++ b/addons/account_accountant/i18n/ko.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2011-05-10 14:38+0000\n" -"Last-Translator: Gang Sung-jin \n" +"Last-Translator: Sungjin Gang \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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 a5325f185f5..407f289f744 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 ecd2fbd8655..e42a094925d 100644 --- a/addons/account_accountant/i18n/lt.po +++ b/addons/account_accountant/i18n/lt.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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "" +msgstr "Atverti apskaitos meniu" #~ msgid "" #~ "\n" diff --git a/addons/account_accountant/i18n/lv.po b/addons/account_accountant/i18n/lv.po index 347ea5013a8..aa358ed4eca 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 03dbf6bbe55..d77c3389b5c 100644 --- a/addons/account_accountant/i18n/mk.po +++ b/addons/account_accountant/i18n/mk.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2013-02-25 14:55+0000\n" -"Last-Translator: Софче Димитријева \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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 d72a2dc5198..2e7abe19003 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 62f729882dd..bc3525304a9 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 b9f0812c7cf..0f91d441a09 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 668f12a5152..468fba8d92d 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 c06a7f7e64c..fce177aa6cb 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 4e900fdeb1b..7c8a94333c5 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 3aca02629fd..1795104c7ea 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 8b748ab1969..9d2a1f3a8d8 100644 --- a/addons/account_accountant/i18n/pt_BR.po +++ b/addons/account_accountant/i18n/pt_BR.po @@ -15,13 +15,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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "Abrir Menu de Contabilidade" +msgstr "Abra o menu de Contabilidade" #~ msgid "Accountant" #~ msgstr "Contador" diff --git a/addons/account_accountant/i18n/ro.po b/addons/account_accountant/i18n/ro.po index 25b972f4366..cd402c6d72a 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 c144136b8dc..cb410e005ad 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 ea10b90ce3c..b7753d72444 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 59bc032e763..c6516d44b2b 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 ced7b023367..2fd3f24bcfb 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 28209016799..ea4500ee96f 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 635c1917d39..625ca80aa96 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 6fadf354f61..df3630cdda3 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 cd4f4b00311..65088bbb9a0 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 93b99bbd49c..7a6fc79eaa5 100644 --- a/addons/account_accountant/i18n/th.po +++ b/addons/account_accountant/i18n/th.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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "" +msgstr "เปิด เมนูบัญชี" #~ msgid "Accountant" #~ msgstr "ผู้ทำบัญชี" diff --git a/addons/account_accountant/i18n/tr.po b/addons/account_accountant/i18n/tr.po index 02e9331e00a..96751c87d83 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 3b3fe041df2..11f3c0299de 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 a34c7e21edc..2e36615174b 100644 --- a/addons/account_accountant/i18n/vi.po +++ b/addons/account_accountant/i18n/vi.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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "" +msgstr "Mở menu kế toán" #~ msgid "Accountant" #~ msgstr "Kế toán viên" diff --git a/addons/account_accountant/i18n/zh_CN.po b/addons/account_accountant/i18n/zh_CN.po index ecc12d62ad8..9c6c7d5e56a 100644 --- a/addons/account_accountant/i18n/zh_CN.po +++ b/addons/account_accountant/i18n/zh_CN.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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_accountant #: model:ir.actions.client,name:account_accountant.action_client_account_menu msgid "Open Accounting Menu" -msgstr "开启财务菜单" +msgstr "打开会计菜单" #~ msgid "Accountant" #~ msgstr "会计人员管理" diff --git a/addons/account_accountant/i18n/zh_TW.po b/addons/account_accountant/i18n/zh_TW.po index 57b62525197..dc0e9b04c57 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 a1a978a6e94..68932de61bf 100644 --- a/addons/account_analytic_analysis/i18n/ar.po +++ b/addons/account_analytic_analysis/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -350,6 +350,7 @@ msgid "" msgstr "العقد في نظام أوبن إي أر بي هو حساب تحليلي لشريك لك." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/bg.po b/addons/account_analytic_analysis/i18n/bg.po index 73ffbf7e1ac..6ecebcb17bd 100644 --- a/addons/account_analytic_analysis/i18n/bg.po +++ b/addons/account_analytic_analysis/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -344,6 +344,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/bs.po b/addons/account_analytic_analysis/i18n/bs.po index 861136a74ab..242b584530b 100644 --- a/addons/account_analytic_analysis/i18n/bs.po +++ b/addons/account_analytic_analysis/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -345,6 +345,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/ca.po b/addons/account_analytic_analysis/i18n/ca.po index c476f2dd32a..8ce64460672 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -345,6 +345,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/cs.po b/addons/account_analytic_analysis/i18n/cs.po index 2e2e6caa70d..f45d245833f 100644 --- a/addons/account_analytic_analysis/i18n/cs.po +++ b/addons/account_analytic_analysis/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -99,7 +99,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -342,6 +342,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/da.po b/addons/account_analytic_analysis/i18n/da.po index d9a367282ff..75e45fb5a58 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -100,7 +100,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -343,6 +343,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/de.po b/addons/account_analytic_analysis/i18n/de.po index 8cb15939537..06b7ac53b6b 100644 --- a/addons/account_analytic_analysis/i18n/de.po +++ b/addons/account_analytic_analysis/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Summe abgerechneter Arbeitszeiten" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Auftragspositionen von %s" @@ -367,6 +367,7 @@ msgid "" msgstr "Ein Vertrag ist ein Kundenprojekt mit Kostenstelle" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Aufträge" diff --git a/addons/account_analytic_analysis/i18n/el.po b/addons/account_analytic_analysis/i18n/el.po index a80f0069149..71d3a94f733 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -347,6 +347,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/en_GB.po b/addons/account_analytic_analysis/i18n/en_GB.po index 51acf03df75..fdbd2cba860 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -107,7 +107,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Sum of timesheet lines invoiced for this contract." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Sales Order Lines of %s" @@ -373,6 +373,7 @@ msgstr "" "A contract in OpenERP is an analytic account having a partner set on it." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Sales Orders" diff --git a/addons/account_analytic_analysis/i18n/es.po b/addons/account_analytic_analysis/i18n/es.po index 6edc665e86f..4481e10f7bf 100644 --- a/addons/account_analytic_analysis/i18n/es.po +++ b/addons/account_analytic_analysis/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -105,7 +105,7 @@ msgstr "" "Suma de las líneas de las hojas de servicios facturadas para este contrato" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Líneas del pedido de venta de %s" @@ -369,6 +369,7 @@ msgstr "" "Un contrato en OpenERP es una cuenta analítica que tiene un cliente asignado." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Pedidos de venta" diff --git a/addons/account_analytic_analysis/i18n/es_AR.po b/addons/account_analytic_analysis/i18n/es_AR.po index bbc944a474e..dc84669bff5 100644 --- a/addons/account_analytic_analysis/i18n/es_AR.po +++ b/addons/account_analytic_analysis/i18n/es_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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -344,6 +344,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/es_CR.po b/addons/account_analytic_analysis/i18n/es_CR.po index 4dddf07a516..d7ada5c107b 100644 --- a/addons/account_analytic_analysis/i18n/es_CR.po +++ b/addons/account_analytic_analysis/i18n/es_CR.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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: account_analytic_analysis @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -352,6 +352,7 @@ msgstr "" "Un contrato en OpenERP es una cuenta analítica que tiene un cliente asignado." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/es_EC.po b/addons/account_analytic_analysis/i18n/es_EC.po index 8d21363248c..7cbb76ab794 100644 --- a/addons/account_analytic_analysis/i18n/es_EC.po +++ b/addons/account_analytic_analysis/i18n/es_EC.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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -351,6 +351,7 @@ msgstr "" "Un contrato en OpenERP es una cuenta analítica que tiene un cliente asignado." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/es_MX.po b/addons/account_analytic_analysis/i18n/es_MX.po index 04dd5bd9ff0..53706fa5c1f 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -109,7 +109,7 @@ msgstr "" "Suma de las lineas de la hoja de trabajo facturadas para este contrato." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -377,6 +377,7 @@ msgstr "" "Un contrato en OpenERP es una cuenta analítica que tiene un cliente asignado." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Orden de Venta" diff --git a/addons/account_analytic_analysis/i18n/es_PY.po b/addons/account_analytic_analysis/i18n/es_PY.po index 0fc7d959c39..167e789575e 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -345,6 +345,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/et.po b/addons/account_analytic_analysis/i18n/et.po index 936e5ce1244..a06c5266967 100644 --- a/addons/account_analytic_analysis/i18n/et.po +++ b/addons/account_analytic_analysis/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -100,7 +100,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -343,6 +343,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/fa.po b/addons/account_analytic_analysis/i18n/fa.po index 0a792d53ab2..13d24ebcfab 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -100,7 +100,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -343,6 +343,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/fi.po b/addons/account_analytic_analysis/i18n/fi.po index de2f6705571..e71a03b2edb 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -348,6 +348,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/fr.po b/addons/account_analytic_analysis/i18n/fr.po index ac625e8cb31..9c5271ef65e 100644 --- a/addons/account_analytic_analysis/i18n/fr.po +++ b/addons/account_analytic_analysis/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Total du temps passé facturé pour ce contrat." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Lignes de commandes de %s" @@ -146,6 +146,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquer pour créer un nouveau contrat.\n" +"

\n" +" Vous trouverez ici les contrats à renouveler car leur\n" +" date de fin est échue ou que la charge de travail déjà\n" +" fournie est supérieure au maximum autorisée.\n" +"

\n" +" OpenERP positionne automatiquement les contrats à renouveler " +"en état\n" +" d'attente. Après négociation, le vendeur doit clore ou " +"renouveler les\n" +" contrats en attente.\n" +"

\n" +" " #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -358,6 +372,7 @@ msgstr "" "Un contrat dans OpenERP est un compte analytique associé à un partenaire." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Commandes" @@ -457,6 +472,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour créer un nouveau contract.\n" +"

\n" +" Utilisez les contrats pour suivre les tâches, les " +"incidents, les feuilles de temps ou la facturation basée sur le travail " +"réalisé, les dépenses et/ou les commandes de vente. OpenERP gérera " +"automatiquement les alertes de renouvellement des contrats pour le bon " +"vendeur.\n" +"

\n" +" " #. module: account_analytic_analysis #: field:account.analytic.account,toinvoice_total:0 diff --git a/addons/account_analytic_analysis/i18n/gl.po b/addons/account_analytic_analysis/i18n/gl.po index 46af589e2be..7ce11dac16a 100644 --- a/addons/account_analytic_analysis/i18n/gl.po +++ b/addons/account_analytic_analysis/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -103,7 +103,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -346,6 +346,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/gu.po b/addons/account_analytic_analysis/i18n/gu.po index 018583c830d..6b81a205d22 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -351,6 +351,7 @@ msgid "" msgstr "OpenERPમાં કરાર એટલે કે વિશ્લેષણાત્મક ખાતું જેમાં સહ-ભાગીદાર હોય." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/hr.po b/addons/account_analytic_analysis/i18n/hr.po index 262b6cbb688..0f802841b59 100644 --- a/addons/account_analytic_analysis/i18n/hr.po +++ b/addons/account_analytic_analysis/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -344,6 +344,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Prodajni nalozi" diff --git a/addons/account_analytic_analysis/i18n/hu.po b/addons/account_analytic_analysis/i18n/hu.po index efa5d907cc9..f22f75fbae3 100644 --- a/addons/account_analytic_analysis/i18n/hu.po +++ b/addons/account_analytic_analysis/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -107,7 +107,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Ennek a szerződéshez tartozó időkimutatás számlázott sorai." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Megrendelés sorok ebből %s" @@ -152,6 +152,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson új szerződés létrehozásához.\n" +"

\n" +" Itt találhatók a frissítendő szerződések, melyeknek a " +"lejárati\n" +" ideje túllépett, vagy a belelőlt energia nagyobb mint a\n" +" maximum megengedett.\n" +"

\n" +" OpenERP automatikusan frissítésre állítja a függőben\n" +" lévőket. A tárgyalás után, az értékesítőnek le kell zárnia " +"vagy meg \n" +" kell újítania a fügőben lévő szerződéseket.\n" +"

\n" +" " #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -234,7 +248,7 @@ msgstr "Nincs mit számlázni, hozzon létre" #. module: account_analytic_analysis #: model:res.groups,name:account_analytic_analysis.group_template_required msgid "Mandatory use of templates in contracts" -msgstr "" +msgstr "Kizárólag sablonok használhatóak a szerződésekhez" #. module: account_analytic_analysis #: field:account.analytic.account,hours_quantity:0 @@ -325,6 +339,8 @@ msgid "" "Number of time (hours/days) (from journal of type 'general') that can be " "invoiced if you invoice based on analytic account." msgstr "" +"Idő mennyisége (órák/napok) (Az 'általános' típusú naplóból) melyek " +"számlázhatóak, ha a számlázás a gyüjtőkódon alapszik." #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -360,6 +376,7 @@ msgstr "" "kapcsoltak." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Vevői megrendelések" @@ -401,6 +418,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson szerződés sablon létrehozásához.\n" +"

\n" +" Sablonokat használ a szerződések/projektek " +"elképzelésénak kialakításához, \n" +" melyeket az értékesítő kiválaszthat és gyorsan " +"beállíthat a szerződés\n" +" feltételeihez és részleteihez.\n" +"

\n" +" " #. module: account_analytic_analysis #: model:ir.model,name:account_analytic_analysis.model_account_analytic_analysis_summary_user diff --git a/addons/account_analytic_analysis/i18n/id.po b/addons/account_analytic_analysis/i18n/id.po index 0ac1114040d..a2b765813da 100644 --- a/addons/account_analytic_analysis/i18n/id.po +++ b/addons/account_analytic_analysis/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -99,7 +99,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -342,6 +342,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/it.po b/addons/account_analytic_analysis/i18n/it.po index 0bda88b3898..a851fdc4960 100644 --- a/addons/account_analytic_analysis/i18n/it.po +++ b/addons/account_analytic_analysis/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -105,7 +105,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Somma delle linee timesheet fatturate di questo contratto." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Linea ordine di vendita di %s" @@ -371,6 +371,7 @@ msgstr "" "Un contratto in OpenERP è un conto analitico associato ad un partner." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Ordini di Vendita" diff --git a/addons/account_analytic_analysis/i18n/ja.po b/addons/account_analytic_analysis/i18n/ja.po index 842adf79ac5..6bfd8f33a0b 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -100,7 +100,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -343,6 +343,7 @@ msgid "" msgstr "OpenERpの契約はその上にパートナのセットを持つ分析アカウントです。" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/ko.po b/addons/account_analytic_analysis/i18n/ko.po index c9635cb1db6..13035fdb3fa 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -100,7 +100,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -343,6 +343,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/lt.po b/addons/account_analytic_analysis/i18n/lt.po index aca06131694..ea5593e050e 100644 --- a/addons/account_analytic_analysis/i18n/lt.po +++ b/addons/account_analytic_analysis/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -344,6 +344,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/lv.po b/addons/account_analytic_analysis/i18n/lv.po index 3a4f78bcf41..8fb1afdb4ec 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -347,6 +347,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/mk.po b/addons/account_analytic_analysis/i18n/mk.po index dd2c74d27a6..beb7514f800 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -30,7 +30,7 @@ msgstr "Групирај По..." #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "To Invoice" -msgstr "За фактурирање" +msgstr "Да се фактурира" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -48,7 +48,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 @@ -94,15 +94,15 @@ 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 #: help:account.analytic.account,timesheet_ca_invoiced:0 msgid "Sum of timesheet lines invoiced for this contract." -msgstr "" +msgstr "Сума на фактурирани ставки од временската таблица за овој договор." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Ставки од налози за продажба на %s" @@ -118,7 +118,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 @@ -128,7 +128,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 @@ -152,10 +152,10 @@ msgstr "" " Кликнете овде за да дефинирате нов договор.\n" "

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

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

\n" " " @@ -174,7 +174,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 @@ -185,13 +185,13 @@ msgstr "Очекувано" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contracts not assigned" -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 @@ -224,7 +224,8 @@ msgstr "Реален процент на маржа (%)" #: 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 @@ -232,6 +233,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 @@ -241,7 +244,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 #: field:account.analytic.account,hours_quantity:0 @@ -262,7 +265,7 @@ msgstr "Резиме на часови по месец" #: 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 @@ -325,7 +328,7 @@ msgstr "Договори што чекаат на обновување" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Timesheets" -msgstr "Работни часови" +msgstr "Распореди" #. module: account_analytic_analysis #: help:account.analytic.account,hours_qtt_non_invoiced:0 @@ -333,8 +336,8 @@ 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 #: view:account.analytic.account:0 @@ -344,7 +347,7 @@ 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 @@ -354,7 +357,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 @@ -368,6 +371,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Налози за продажба" @@ -376,6 +380,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 @@ -384,9 +390,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 @@ -407,6 +412,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 @@ -424,6 +438,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 @@ -437,7 +453,7 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,revenue_per_hour:0 msgid "Revenue per Time (real)" -msgstr "" +msgstr "Приход по време (реално)" #. module: account_analytic_analysis #: model:ir.actions.act_window,help:account_analytic_analysis.action_account_analytic_overdue_all @@ -454,6 +470,17 @@ msgid "" "

\n" " " msgstr "" +"

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

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

\n" +" " #. module: account_analytic_analysis #: field:account.analytic.account,toinvoice_total:0 @@ -505,6 +532,16 @@ msgid "" "

\n" " " msgstr "" +"

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

\n" +" " #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_non_invoiced:0 @@ -543,12 +580,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 @@ -569,7 +606,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 @@ -579,13 +616,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 #: view:account.analytic.account:0 @@ -598,6 +635,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 @@ -607,7 +646,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 @@ -615,6 +654,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 @@ -626,12 +667,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_analysis/i18n/mn.po b/addons/account_analytic_analysis/i18n/mn.po index 242bf558f84..d8c924b99c3 100644 --- a/addons/account_analytic_analysis/i18n/mn.po +++ b/addons/account_analytic_analysis/i18n/mn.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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -103,7 +103,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Энэ гэрээнд нэхэмжлэгдсэн цагийн хуудсын мөрийн нийлбэр" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "%s-н Борлуулалтын Захиалгын Мөрүүд" @@ -118,7 +118,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 @@ -366,6 +366,7 @@ msgid "" msgstr "OpenERP-д гэрээ нь харилцагч бүхий шинжилгээний данс юм." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Борлуулалтын захиалгууд" diff --git a/addons/account_analytic_analysis/i18n/nb.po b/addons/account_analytic_analysis/i18n/nb.po index e7a28c78415..e5c6896cdfe 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Summen av timeliste linjer fakturert for denne kontrakten." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -355,6 +355,7 @@ msgstr "" "En kontrakt i OpenERP er et analytisk konto med en partner sett på den." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Salgsordre." diff --git a/addons/account_analytic_analysis/i18n/nl.po b/addons/account_analytic_analysis/i18n/nl.po index 52afaf67d1e..29d586be46c 100644 --- a/addons/account_analytic_analysis/i18n/nl.po +++ b/addons/account_analytic_analysis/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -106,7 +106,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Totaal aan urenstaatregels gefactureerd voor dit contract" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Verkooporderregels van %s" @@ -374,6 +374,7 @@ msgstr "" "Een contract in OpenERP is een kostenplaats met een gekoppelde relatie." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Verkooporders" diff --git a/addons/account_analytic_analysis/i18n/nl_BE.po b/addons/account_analytic_analysis/i18n/nl_BE.po index 50122bc8f38..3d6d04ae8bc 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -100,7 +100,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -343,6 +343,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/oc.po b/addons/account_analytic_analysis/i18n/oc.po index b9eee924707..60f5b103cd8 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -100,7 +100,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -343,6 +343,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/pl.po b/addons/account_analytic_analysis/i18n/pl.po index 850b8d37dd6..7e336634f16 100644 --- a/addons/account_analytic_analysis/i18n/pl.po +++ b/addons/account_analytic_analysis/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -104,7 +104,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Suma pozycji kart czasu pracy zafakturowanych dla tej umowy." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -364,6 +364,7 @@ msgid "" msgstr "Umowa w OpenERP jest kontem analitycznym z ustawionym partnerem." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Zamówienia sprzedaży" diff --git a/addons/account_analytic_analysis/i18n/pt.po b/addons/account_analytic_analysis/i18n/pt.po index 50e150e1fd9..3616ecf9147 100644 --- a/addons/account_analytic_analysis/i18n/pt.po +++ b/addons/account_analytic_analysis/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -355,6 +355,7 @@ msgstr "" "sobre ele." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Ordens de venda" diff --git a/addons/account_analytic_analysis/i18n/pt_BR.po b/addons/account_analytic_analysis/i18n/pt_BR.po index f565520def5..5192a6389d9 100644 --- a/addons/account_analytic_analysis/i18n/pt_BR.po +++ b/addons/account_analytic_analysis/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -106,7 +106,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Total de linhas da planilha de horas faturadas para este contrato." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Linhas do Pedido de Vendas de %s" @@ -371,6 +371,7 @@ msgstr "" "nela." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Pedidos de Vendas" diff --git a/addons/account_analytic_analysis/i18n/ro.po b/addons/account_analytic_analysis/i18n/ro.po index 2b8dafdef78..73893fd55e2 100644 --- a/addons/account_analytic_analysis/i18n/ro.po +++ b/addons/account_analytic_analysis/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -107,7 +107,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Suma liniilor fiselor de pontaj facturate pentru acest contract." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Liniile Comenzii de Vanzare de %s" @@ -375,6 +375,7 @@ msgstr "" "Un contract in OpenERP este un cont analitic care are setat un partener." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Comenzi de Vanzari" diff --git a/addons/account_analytic_analysis/i18n/ru.po b/addons/account_analytic_analysis/i18n/ru.po index 30313796af9..bb18460b8de 100644 --- a/addons/account_analytic_analysis/i18n/ru.po +++ b/addons/account_analytic_analysis/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-06-20 05:17+0000\n" -"X-Generator: Launchpad (build 16673)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -323,7 +323,7 @@ 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 @@ -611,7 +611,7 @@ 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_analysis/i18n/sl.po b/addons/account_analytic_analysis/i18n/sl.po index 27cb5c638ba..99f6726f6bb 100644 --- a/addons/account_analytic_analysis/i18n/sl.po +++ b/addons/account_analytic_analysis/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "Vsota postavk časovnice , zaračunanih za to pogodbo." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Vrstice prodajnega naloga %s" @@ -352,6 +352,7 @@ msgid "" msgstr "Pogodba pomeni analitični konto z dodeljenim partnerjem." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Prodajni nalogi" diff --git a/addons/account_analytic_analysis/i18n/sq.po b/addons/account_analytic_analysis/i18n/sq.po index 05a78fe56a0..9d08af94585 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -100,7 +100,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -343,6 +343,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/sr.po b/addons/account_analytic_analysis/i18n/sr.po index 56050beba06..97b3288bd56 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -346,6 +346,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/sr@latin.po b/addons/account_analytic_analysis/i18n/sr@latin.po index 4d79b0e1b11..242f6a866c6 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -102,7 +102,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -352,6 +352,7 @@ msgstr "" "Ugovor u OpenERP-u je analitički konto sa partnerom koji mu je pripisan." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/sv.po b/addons/account_analytic_analysis/i18n/sv.po index aa157658ec2..f24fa704814 100644 --- a/addons/account_analytic_analysis/i18n/sv.po +++ b/addons/account_analytic_analysis/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -101,7 +101,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -351,6 +351,7 @@ msgstr "" "Ett avtal i OpenERP är ett objektkonto med ett företag knutet till sig." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/tlh.po b/addons/account_analytic_analysis/i18n/tlh.po index 2c22e7c57cf..87fddc00c2c 100644 --- a/addons/account_analytic_analysis/i18n/tlh.po +++ b/addons/account_analytic_analysis/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -99,7 +99,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -342,6 +342,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/tr.po b/addons/account_analytic_analysis/i18n/tr.po index 0afb1bdeef1..3232df7c2fb 100644 --- a/addons/account_analytic_analysis/i18n/tr.po +++ b/addons/account_analytic_analysis/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -24,7 +24,7 @@ msgstr "Faturalacak sipariş yok, oluştur" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Group By..." -msgstr "Grupla..." +msgstr "Grupla İle..." #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -108,7 +108,7 @@ msgstr "" "Bu sözleşmeye ait faturalandırılan zaman çizelgesi kalemlerinin toplamı." #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "Satış Siparişi Kalemlerinin %s" @@ -128,7 +128,7 @@ msgstr "Analitik Hesap" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Partner" -msgstr "Cari" +msgstr "İş Ortağı" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -190,7 +190,7 @@ msgstr "Beklenen" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Contracts not assigned" -msgstr "atanmamış sözleşmeler" +msgstr "Atanmamış sözleşmeler" #. module: account_analytic_analysis #: help:account.analytic.account,theorical_margin:0 @@ -200,7 +200,7 @@ msgstr "Şu formül kullanılarak hesaplandı: Teorik Gelir - Toplam Maliyet." #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_invoiced:0 msgid "Invoiced Time" -msgstr "Faturalandırılmış Zaman" +msgstr "Faturalanmış Zaman" #. module: account_analytic_analysis #: field:account.analytic.account,fix_price_to_invoice:0 @@ -237,7 +237,7 @@ msgid "" "computes quantities on all journal of type 'general'." msgstr "" "Analitik hesap için harcadığınız saat sayısı (zaman çizelgesinden). 'genel' " -"tipindeki bütün günlüklerdeki miktarlar hesaplanır." +"tipindeki bütün yevmiyelerdeki miktarlar hesaplanır." #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -283,7 +283,7 @@ msgstr "Müşteri Şözleşmeleri" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Parent" -msgstr "Ana" +msgstr "Üst" #. module: account_analytic_analysis #: field:account.analytic.account,month_ids:0 @@ -340,7 +340,7 @@ msgid "" "invoiced if you invoice based on analytic account." msgstr "" "Analiz hesabına göre faturalandırıyorsanız faturalandırılacak zaman sayısı " -"(saat/gün)(günlük tipi 'genel'den) ." +"(saat/gün)(yevmiye tipi 'genel'den) ." #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -355,7 +355,7 @@ msgstr "Gecikmiş Miktarlar" #. module: account_analytic_analysis #: view:account.analytic.account:0 msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. module: account_analytic_analysis #: field:account.analytic.account,ca_theorical:0 @@ -376,6 +376,7 @@ msgstr "" "hesabıdır." #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "Satış Siparişleri" @@ -476,10 +477,10 @@ msgstr "" "

\n" " Yeni bir sözleşme oluşturmak için tıklayın.\n" "

\n" -" Sözleşmeleri görevleri, zaman çizelgelerini ya da " -"yapılan iş üzerine kesilen\n" -" faturaları, harcamaları ya da satış siparişlerini takip " -"etmek için kullanabilirsiniz.\n" +" Görevleri, zaman çizelgelerini ya da yapılan iş üzerine " +"kesilen faturaları,\n" +" harcamaları ya da satış siparişlerini izlemek için " +"sözleşmeleri kullanabilirsiniz.\n" " OpenERP sözleşmelerin yenilenmesi için ilgili satış " "temsilcisini otomatik olarak\n" " uyaracaktır.\n" @@ -547,7 +548,7 @@ msgstr "" #. module: account_analytic_analysis #: field:account.analytic.account,hours_qtt_non_invoiced:0 msgid "Uninvoiced Time" -msgstr "Faturalandırılmamış Zaman" +msgstr "Faturalanmamış Zaman" #. module: account_analytic_analysis #: view:account.analytic.account:0 diff --git a/addons/account_analytic_analysis/i18n/uk.po b/addons/account_analytic_analysis/i18n/uk.po index 890025ffd93..222ac7f4be4 100644 --- a/addons/account_analytic_analysis/i18n/uk.po +++ b/addons/account_analytic_analysis/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -99,7 +99,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -342,6 +342,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/vi.po b/addons/account_analytic_analysis/i18n/vi.po index 5b6c608ac9f..dbbcade9978 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -100,7 +100,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -343,6 +343,7 @@ msgid "" msgstr "" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_analysis/i18n/zh_CN.po b/addons/account_analytic_analysis/i18n/zh_CN.po index a0d53dfa783..543b6f014ee 100644 --- a/addons/account_analytic_analysis/i18n/zh_CN.po +++ b/addons/account_analytic_analysis/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -99,7 +99,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "合同已开票的计工单行的汇总" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "%s 的销售订单行" @@ -344,6 +344,7 @@ msgid "" msgstr "OpenERP中的合同是指一个被指定了业务伙伴的成本科目。" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "销售订单" diff --git a/addons/account_analytic_analysis/i18n/zh_TW.po b/addons/account_analytic_analysis/i18n/zh_TW.po index d62f7d3b1c9..ebfceb2a70e 100644 --- a/addons/account_analytic_analysis/i18n/zh_TW.po +++ b/addons/account_analytic_analysis/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_analysis #: view:account.analytic.account:0 @@ -99,7 +99,7 @@ msgid "Sum of timesheet lines invoiced for this contract." msgstr "" #. module: account_analytic_analysis -#: code:addons/account_analytic_analysis/account_analytic_analysis.py:466 +#: code:addons/account_analytic_analysis/account_analytic_analysis.py:464 #, python-format msgid "Sales Order Lines of %s" msgstr "" @@ -342,6 +342,7 @@ msgid "" msgstr "OpenERP中的合約是指一個被指定了業務夥伴的成本科目。" #. module: account_analytic_analysis +#: view:account.analytic.account:0 #: model:ir.actions.act_window,name:account_analytic_analysis.action_sales_order msgid "Sales Orders" msgstr "" diff --git a/addons/account_analytic_default/i18n/ar.po b/addons/account_analytic_default/i18n/ar.po index 98d16cf2b3d..c1c5a6b6bdc 100644 --- a/addons/account_analytic_default/i18n/ar.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 e30fe1094e4..0346963874c 100644 --- a/addons/account_analytic_default/i18n/bg.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 52ff020c3cd..9635ec3df26 100644 --- a/addons/account_analytic_default/i18n/bs.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 3b537c54d23..83da925039f 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 5ecf8a0bbff..687be540936 100644 --- a/addons/account_analytic_default/i18n/cs.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 4167a2c16df..acf8153b052 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 d457dbb44db..c6b10b8ec5b 100644 --- a/addons/account_analytic_default/i18n/de.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 8b2b1e398a4..52178874f74 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 444471a2ad7..f0c1469c9f8 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 8362fd07f05..31c7d8faa99 100644 --- a/addons/account_analytic_default/i18n/es.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 47798b1c815..48c055c7440 100644 --- a/addons/account_analytic_default/i18n/es_AR.po +++ b/addons/account_analytic_default/i18n/es_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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 1700aaaaeb9..bd583b48f53 100644 --- a/addons/account_analytic_default/i18n/es_CR.po +++ b/addons/account_analytic_default/i18n/es_CR.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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: account_analytic_default diff --git a/addons/account_analytic_default/i18n/es_EC.po b/addons/account_analytic_default/i18n/es_EC.po index 20fc9aee338..392db8d1362 100644 --- a/addons/account_analytic_default/i18n/es_EC.po +++ b/addons/account_analytic_default/i18n/es_EC.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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 c97dba75ce9..c55e7ecc8db 100644 --- a/addons/account_analytic_default/i18n/es_MX.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 ce19920d754..3139eb1334c 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 c23f457ce34..8904b90eb59 100644 --- a/addons/account_analytic_default/i18n/et.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 574af4c2afe..99a35949525 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 7e5e22d8d9b..e93bfe1d167 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 d688825739b..e7d68bf264b 100644 --- a/addons/account_analytic_default/i18n/fr.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 d3789b17f50..5b18a47746d 100644 --- a/addons/account_analytic_default/i18n/gl.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 3ae51533745..e0a5fca7493 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 699569a4318..f403cd5bb77 100644 --- a/addons/account_analytic_default/i18n/hr.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 3696114dee2..019916e3186 100644 --- a/addons/account_analytic_default/i18n/hu.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner @@ -31,7 +31,7 @@ msgstr "Csoportosítás" #. module: account_analytic_default #: help:account.analytic.default,date_stop:0 msgid "Default end date for this Analytic Account." -msgstr "" +msgstr "Alapértelmezett befejező dátum ehhez a gyüjtőkódhoz." #. module: account_analytic_default #: help:account.analytic.default,product_id:0 @@ -40,6 +40,10 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "product, it will automatically take this as an analytic account)" msgstr "" +"Válasszon terméket ami az alapértelmezett gyüjttőkódban meghatározott " +"gyűjtőkódot fogja használni (pl. ennek a terméknek a kiválasztásakor " +"létrehoz új vevői számlát vagy megrendelést, amit automatikusan mint " +"gyűjtókódot vesz figyelembe)" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_stock_picking @@ -64,6 +68,10 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "partner, it will automatically take this as an analytic account)" msgstr "" +"Válasszon partnert aki az alapértelmezett gyüjttőkódban meghatározott " +"gyűjtőkódot fogja használni (pl. ennek a terméknek a kiválasztásakor " +"létrehoz új vevői számlát vagy megrendelést, amit automatikusan mint " +"gyűjtókódot vesz figyelembe)" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -104,6 +112,8 @@ msgstr "Sorszám" msgid "" "Select a user which will use analytic account specified in analytic default." msgstr "" +"Válasszon felhasználót aki az alapértelmezett gyüjttőkódban meghatározott " +"gyűjtőkódot fogja használni" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_invoice_line @@ -117,6 +127,10 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "company, it will automatically take this as an analytic account)" msgstr "" +"Válasszon vállalatot aki az alapértelmezett gyüjttőkódban meghatározott " +"gyűjtőkódot fogja használni (pl. ennek a terméknek a kiválasztásakor " +"létrehoz új vevői számlát vagy megrendelést, amit automatikusan mint " +"gyűjtókódot vesz figyelembe)" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -132,7 +146,7 @@ msgstr "Analitikus felosztás" #. module: account_analytic_default #: help:account.analytic.default,date_start:0 msgid "Default start date for this Analytic Account." -msgstr "" +msgstr "Alapértelmezett indulási dátum ehhez a gyüjtőkódhoz." #. module: account_analytic_default #: view:account.analytic.default:0 diff --git a/addons/account_analytic_default/i18n/id.po b/addons/account_analytic_default/i18n/id.po index 68c7c41f589..43992ee358d 100644 --- a/addons/account_analytic_default/i18n/id.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 e81a42087b4..20951ba8895 100644 --- a/addons/account_analytic_default/i18n/it.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 39291e5ee42..8d3ded4f005 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 890660df62c..266b8d4fc78 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 7a650b0eaea..6395360aa5e 100644 --- a/addons/account_analytic_default/i18n/lt.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner @@ -31,7 +31,7 @@ msgstr "" #. module: account_analytic_default #: help:account.analytic.default,date_stop:0 msgid "Default end date for this Analytic Account." -msgstr "" +msgstr "Numatytoji pabaigos data šiai analitinei sąskaitai." #. module: account_analytic_default #: help:account.analytic.default,product_id:0 @@ -40,16 +40,19 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "product, it will automatically take this as an analytic account)" msgstr "" +"Pasirinkite produktą, kuris naudos numatytąją analitinę sąskaitą (pvz. " +"kuriant sąskaitą faktūrą ar užsakymą ir pasirinkus šį produktą, bus " +"automatiškai pasirenkama numatytoji analitinė sąskaita)" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_stock_picking msgid "Picking List" -msgstr "" +msgstr "Siunta" #. module: account_analytic_default #: view:account.analytic.default:0 msgid "Conditions" -msgstr "" +msgstr "Sąlygos" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -64,6 +67,9 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "partner, it will automatically take this as an analytic account)" msgstr "" +"Pasirinkite partnerį, kuris naudos numatytąją analitinę sąskaitą (pvz. " +"kuriant sąskaitą faktūrą ar užsakymą ir pasirinkus šį partnerį, bus " +"automatiškai pasirenkama numatytoji analitinė sąskaita)" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -92,7 +98,7 @@ msgstr "Pabaigos data" #: model:ir.actions.act_window,name:account_analytic_default.action_analytic_default_list #: model:ir.ui.menu,name:account_analytic_default.menu_analytic_default_list msgid "Analytic Defaults" -msgstr "" +msgstr "Numatytosios analitinės sąskaitos" #. module: account_analytic_default #: field:account.analytic.default,sequence:0 @@ -103,12 +109,12 @@ msgstr "Seka" #: help:account.analytic.default,user_id:0 msgid "" "Select a user which will use analytic account specified in analytic default." -msgstr "" +msgstr "Pasirinkite naudotoją, kuris naudos numatytąją analitinę sąskaitą." #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_invoice_line msgid "Invoice Line" -msgstr "" +msgstr "Sąskaitos faktūros eilutė" #. module: account_analytic_default #: help:account.analytic.default,company_id:0 @@ -117,12 +123,15 @@ msgid "" "default (e.g. create new customer invoice or Sales order if we select this " "company, it will automatically take this as an analytic account)" msgstr "" +"Pasirinkite įmonę, kuri naudos numatytąją analitinę sąskaitą (pvz. kuriant " +"sąskaitą faktūrą ar užsakymą ir pasirinkus šią įmonę, bus automatiškai " +"pasirenkama numatytoji analitinė sąskaita)" #. module: account_analytic_default #: view:account.analytic.default:0 #: field:account.analytic.default,analytic_id:0 msgid "Analytic Account" -msgstr "" +msgstr "Analitinė sąskaita" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_analytic_default @@ -132,7 +141,7 @@ msgstr "" #. module: account_analytic_default #: help:account.analytic.default,date_start:0 msgid "Default start date for this Analytic Account." -msgstr "" +msgstr "Numatytoji pradžios data šiai analitinei sąskaitai." #. module: account_analytic_default #: view:account.analytic.default:0 @@ -154,12 +163,12 @@ msgstr "Pradžios data" #: help:account.analytic.default,sequence:0 msgid "" "Gives the sequence order when displaying a list of analytic distribution" -msgstr "" +msgstr "Eilės tvarka, pagal kurią išdėstomas analitinio paskirstymo sąrašas." #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_sale_order_line msgid "Sales Order Line" -msgstr "" +msgstr "Pardavimo užsakymo eilutė" #~ msgid "Seq" #~ msgstr "Seka" diff --git a/addons/account_analytic_default/i18n/lv.po b/addons/account_analytic_default/i18n/lv.po index 75e7b96f8da..165042a796c 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 509460f8fb8..4672ac4e07f 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner @@ -32,7 +32,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 +45,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 +81,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 +123,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 +133,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_default/i18n/mn.po b/addons/account_analytic_default/i18n/mn.po index 53ce058fda2..de2a5e2fbb4 100644 --- a/addons/account_analytic_default/i18n/mn.po +++ b/addons/account_analytic_default/i18n/mn.po @@ -14,15 +14,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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_product #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_user msgid "Analytic Rules" -msgstr "Аналитик дүрмүүд" +msgstr "Шинжилгээний дүрмүүд" #. module: account_analytic_default #: view:account.analytic.default:0 @@ -99,7 +99,7 @@ msgstr "Дуусах огноо" #: model:ir.actions.act_window,name:account_analytic_default.action_analytic_default_list #: model:ir.ui.menu,name:account_analytic_default.menu_analytic_default_list msgid "Analytic Defaults" -msgstr "Аналитик үндсэн утгууд" +msgstr "Шинжилгээний анхны утгууд" #. module: account_analytic_default #: field:account.analytic.default,sequence:0 @@ -134,7 +134,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 diff --git a/addons/account_analytic_default/i18n/nb.po b/addons/account_analytic_default/i18n/nb.po index ecbf50ca0b8..444c6aead75 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 1a6af27587c..eb5c2923540 100644 --- a/addons/account_analytic_default/i18n/nl.po +++ b/addons/account_analytic_default/i18n/nl.po @@ -13,15 +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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_product #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_user msgid "Analytic Rules" -msgstr "Kostenplaats regels" +msgstr "Kostenplaatsregels" #. module: account_analytic_default #: view:account.analytic.default:0 diff --git a/addons/account_analytic_default/i18n/nl_BE.po b/addons/account_analytic_default/i18n/nl_BE.po index 86fed1b535a..f310f936c61 100644 --- a/addons/account_analytic_default/i18n/nl_BE.po +++ b/addons/account_analytic_default/i18n/nl_BE.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-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 911243b40a7..3e82917b4a0 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 891671c1d45..450c07ba8bf 100644 --- a/addons/account_analytic_default/i18n/pl.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 895982afb79..5bcb2533552 100644 --- a/addons/account_analytic_default/i18n/pt.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 96a4484a928..b49a5d90549 100644 --- a/addons/account_analytic_default/i18n/pt_BR.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 20cfa9b2047..cab1781c55a 100644 --- a/addons/account_analytic_default/i18n/ro.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 5199a8cfe2a..0425a9466a1 100644 --- a/addons/account_analytic_default/i18n/ru.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner @@ -132,7 +132,7 @@ 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 diff --git a/addons/account_analytic_default/i18n/sk.po b/addons/account_analytic_default/i18n/sk.po index 639d99315a3..072cd0b28de 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 1a65fe37840..ee5cee557a9 100644 --- a/addons/account_analytic_default/i18n/sl.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 3c1bdd4481b..fabdb21b4ff 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 fc8c47f7794..c2c86446f14 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 bdd239b047b..6c8150cd265 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 9d7f0122cee..7522ee68810 100644 --- a/addons/account_analytic_default/i18n/sv.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 91ee0486605..94bcecf62b7 100644 --- a/addons/account_analytic_default/i18n/tlh.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 909c72c2d17..3265c14de51 100644 --- a/addons/account_analytic_default/i18n/tr.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner @@ -154,12 +154,12 @@ msgstr "Hesaplar" #: view:account.analytic.default:0 #: field:account.analytic.default,partner_id:0 msgid "Partner" -msgstr "Ortak" +msgstr "İş Ortağı" #. module: account_analytic_default #: field:account.analytic.default,date_start:0 msgid "Start Date" -msgstr "Baş. Tarihi" +msgstr "Başlama Tarihi" #. module: account_analytic_default #: help:account.analytic.default,sequence:0 diff --git a/addons/account_analytic_default/i18n/uk.po b/addons/account_analytic_default/i18n/uk.po index cdb3191a5a9..a8f855a1a76 100644 --- a/addons/account_analytic_default/i18n/uk.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 9a4f8a14d60..a74682c131a 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 6ec397e5a57..fa481132459 100644 --- a/addons/account_analytic_default/i18n/zh_CN.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_default #: model:ir.actions.act_window,name:account_analytic_default.analytic_rule_action_partner @@ -103,7 +103,7 @@ msgstr "序列" #: help:account.analytic.default,user_id:0 msgid "" "Select a user which will use analytic account specified in analytic default." -msgstr "" +msgstr "选择一个用户用在辅助核算科目指定的默认值" #. module: account_analytic_default #: model:ir.model,name:account_analytic_default.model_account_invoice_line diff --git a/addons/account_analytic_default/i18n/zh_TW.po b/addons/account_analytic_default/i18n/zh_TW.po index 44d896a812e..07163642f21 100644 --- a/addons/account_analytic_default/i18n/zh_TW.po +++ b/addons/account_analytic_default/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 840e371559a..8d299994bf8 100644 --- a/addons/account_analytic_plans/i18n/ar.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 31cd759a3b3..7d0481a987c 100644 --- a/addons/account_analytic_plans/i18n/bg.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 dbebd224b64..aef6451e901 100644 --- a/addons/account_analytic_plans/i18n/bs.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 2ee45149e58..11b7471cec3 100644 --- a/addons/account_analytic_plans/i18n/ca.po +++ b/addons/account_analytic_plans/i18n/ca.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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 cdcc05e3a03..310f8db562c 100644 --- a/addons/account_analytic_plans/i18n/cs.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 266fe65b24f..834193ba14e 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 87e05a93fee..d55cf2d6cec 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 a7215ac15cc..72eca5ee4be 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 c8fc268b57d..a7616ee6032 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 37eb444d6b5..5dcd60a8214 100644 --- a/addons/account_analytic_plans/i18n/es.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 0e446ae7178..ba51de4c472 100644 --- a/addons/account_analytic_plans/i18n/es_AR.po +++ b/addons/account_analytic_plans/i18n/es_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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 f362e8183a9..ca6f478c7aa 100644 --- a/addons/account_analytic_plans/i18n/es_CR.po +++ b/addons/account_analytic_plans/i18n/es_CR.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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: account_analytic_plans diff --git a/addons/account_analytic_plans/i18n/es_EC.po b/addons/account_analytic_plans/i18n/es_EC.po index 58886bc334f..a2cddbe108b 100644 --- a/addons/account_analytic_plans/i18n/es_EC.po +++ b/addons/account_analytic_plans/i18n/es_EC.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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 98a5abde243..271cfae9ea1 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 f679548bde4..07f087735c5 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 d19597e8b8a..355e7390356 100644 --- a/addons/account_analytic_plans/i18n/et.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #~ msgid "Printing date:" #~ msgstr "Trükkimise kuupäev:" diff --git a/addons/account_analytic_plans/i18n/fa.po b/addons/account_analytic_plans/i18n/fa.po index f84ebd2a132..41b966cee86 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 46364d7482c..8ae4fe805c5 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 f30ca53d74c..2d35f16af38 100644 --- a/addons/account_analytic_plans/i18n/fr.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 48a3de24706..f40c8da008a 100644 --- a/addons/account_analytic_plans/i18n/gl.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 d205a604b1a..531f012d97e 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 a30a995b22e..bac3f312d44 100644 --- a/addons/account_analytic_plans/i18n/hr.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 cf15e0e9554..8bac817b12f 100644 --- a/addons/account_analytic_plans/i18n/hu.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -48,7 +48,7 @@ msgstr "Arány (%)" #: code:addons/account_analytic_plans/account_analytic_plans.py:234 #, python-format msgid "The total should be between %s and %s." -msgstr "" +msgstr "A teljes összegnek ez %s és ez %s közöttinek kell lennie." #. module: account_analytic_plans #: view:account.analytic.plan:0 @@ -132,7 +132,7 @@ msgstr "Ne mutassa az üres sorokat" #: code:addons/account_analytic_plans/wizard/account_crossovered_analytic.py:61 #, python-format msgid "There are no analytic lines related to account %s." -msgstr "" +msgstr "Nincsenek a %s számlához kapcsolódó elemző/analitikai sorok." #. module: account_analytic_plans #: field:account.analytic.plan.instance,account3_ids:0 @@ -143,12 +143,12 @@ msgstr "3.gyűjtőkód azonosító" #: view:account.crossovered.analytic:0 #: view:analytic.plan.create.model:0 msgid "or" -msgstr "" +msgstr "vagy" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_analytic_line msgid "Analytic Line" -msgstr "" +msgstr "Gyűjtőkód tételsor" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -282,7 +282,7 @@ msgstr "Bankkivonat sor" #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:41 #, python-format msgid "Error!" -msgstr "" +msgstr "Hiba!" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -298,7 +298,7 @@ msgstr "" #: code:addons/account_analytic_plans/wizard/account_crossovered_analytic.py:61 #, python-format msgid "User Error!" -msgstr "" +msgstr "Felhasználói hiba!" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account6_ids:0 @@ -316,7 +316,7 @@ msgstr "Gyűjtőnapló" #: 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 "Kérem adjon meg nevet és kódot a mdell elmentése előtt." #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -348,7 +348,7 @@ msgstr "Napló" #: 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 "Egy elemző/analitikus naplót meg kell határozni a '%s' naplón." #. module: account_analytic_plans #: code:addons/account_analytic_plans/account_analytic_plans.py:342 @@ -376,7 +376,7 @@ msgstr "Számlasor" #: code:addons/account_analytic_plans/wizard/analytic_plan_create_model.py:41 #, python-format msgid "There is no analytic plan defined." -msgstr "" +msgstr "Nem lett meghatározva elemző/analitikai terv." #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_bank_statement @@ -403,7 +403,7 @@ msgstr "Analitikus felosztás" #: code:addons/account_analytic_plans/account_analytic_plans.py:221 #, python-format msgid "A model with this name and code already exists." -msgstr "" +msgstr "Ezzel a névvel és kóddal már létezik modell." #. module: account_analytic_plans #: help:account.analytic.plan.line,root_analytic_id:0 diff --git a/addons/account_analytic_plans/i18n/id.po b/addons/account_analytic_plans/i18n/id.po index b231c0e54ce..9015fa80b79 100644 --- a/addons/account_analytic_plans/i18n/id.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 b6f42c3b5f9..a677471ca43 100644 --- a/addons/account_analytic_plans/i18n/it.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 b52f4d1f772..288266880ed 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 85c0ad752b3..317e1fec0d4 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 39e2f5156f4..e06129c4dfe 100644 --- a/addons/account_analytic_plans/i18n/lt.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 cb098921a28..fd8bd7b1e56 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 d8faf9c3fbd..fa81c7db9b2 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -33,7 +33,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 +65,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 +76,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 +91,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 +106,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 +133,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 +164,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 +190,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 +202,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 +217,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 +234,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 +244,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 +254,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 +264,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 +304,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 +317,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 +327,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 +349,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 +377,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 +398,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_analytic_plans/i18n/mn.po b/addons/account_analytic_plans/i18n/mn.po index d9eaa9e8fc4..d6f2442a12e 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -76,7 +76,7 @@ msgstr "Analytic Instance Line" #. module: account_analytic_plans #: view:account.analytic.plan.instance.line:0 msgid "Analytic Distribution Lines" -msgstr "Analytic Distribution Lines" +msgstr "Шинжилгээний Тархалтын Мөрүүд" #. module: account_analytic_plans #: view:account.crossovered.analytic:0 @@ -96,7 +96,7 @@ msgstr "Төлөвлөгөөний дугаар" #. 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 @@ -106,12 +106,12 @@ msgstr "Дансны нэр" #. module: account_analytic_plans #: view:account.analytic.plan.instance.line:0 msgid "Analytic Distribution Line" -msgstr "Analytic Distribution Line" +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 @@ -169,7 +169,7 @@ msgstr "Analytic Account :" #. module: account_analytic_plans #: view:analytic.plan.create.model:0 msgid "Save This Distribution as a Model" -msgstr "Save This Distribution as a Model" +msgstr "Энэ Тархалтыг Загвар Болгож Хадгалах" #. module: account_analytic_plans #: view:account.analytic.plan.line:0 @@ -197,7 +197,7 @@ msgstr "Default Entries" #: field:account.analytic.plan,plan_ids:0 #: field:account.journal,plan_id:0 msgid "Analytic Plans" -msgstr "Аналитик төлөвлөгөө" +msgstr "Шижилгээний төлөвлөгөө" #. module: account_analytic_plans #: report:account.analytic.account.crossovered.analytic:0 @@ -234,7 +234,7 @@ msgstr "Root Account" #: view:analytic.plan.create.model:0 #, python-format msgid "Distribution Model Saved" -msgstr "Distribution Model Saved" +msgstr "Тархалтын Загвар Хадгалагдлаа" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_analytic_plan_instance @@ -244,7 +244,7 @@ msgstr "Шинжилгээний Төлөвлөгөөний Тухайн тох #. module: account_analytic_plans #: model:ir.actions.act_window,name:account_analytic_plans.account_analytic_instance_model_open msgid "Distribution Models" -msgstr "Distribution Models" +msgstr "Тархалтын Загварууд" #. module: account_analytic_plans #: view:analytic.plan.create.model:0 @@ -387,7 +387,7 @@ msgstr "Банкны тайлан" #. module: account_analytic_plans #: field:account.analytic.plan.instance.line,analytic_account_id:0 msgid "Analytic Account" -msgstr "Аналитик Данс" +msgstr "Шинжилгээний Данс" #. module: account_analytic_plans #: field:account.analytic.default,analytics_id:0 @@ -398,7 +398,7 @@ 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 diff --git a/addons/account_analytic_plans/i18n/nb.po b/addons/account_analytic_plans/i18n/nb.po index 02609ad891f..4646d8cf0fa 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 a1461375455..3f2097e7360 100644 --- a/addons/account_analytic_plans/i18n/nl.po +++ b/addons/account_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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -206,7 +206,7 @@ msgstr "Perc(%)" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_account_move_line msgid "Journal Items" -msgstr "Boekingen" +msgstr "Boekingsregels" #. module: account_analytic_plans #: model:ir.model,name:account_analytic_plans.model_analytic_plan_create_model diff --git a/addons/account_analytic_plans/i18n/nl_BE.po b/addons/account_analytic_plans/i18n/nl_BE.po index eed58230298..dbe4b5ffc23 100644 --- a/addons/account_analytic_plans/i18n/nl_BE.po +++ b/addons/account_analytic_plans/i18n/nl_BE.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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 ef2afc6c3bd..db261f81434 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 ad2d53da281..69ab21cbc2c 100644 --- a/addons/account_analytic_plans/i18n/pl.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 0c53bd845c4..a05c0e73b90 100644 --- a/addons/account_analytic_plans/i18n/pt.po +++ b/addons/account_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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 bb55189f436..3477a7a796b 100644 --- a/addons/account_analytic_plans/i18n/pt_BR.po +++ b/addons/account_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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 @@ -452,9 +452,6 @@ msgstr "Linha do Pedido de Vendas" msgid "From Date" msgstr "Data Inicial" -#~ msgid "Invalid XML for View Architecture!" -#~ msgstr "Invalido XML para Arquitetura da View" - #, python-format #~ msgid "A model having this name and code already exists !" #~ msgstr "Um modelo com esse nome e código já existe !" @@ -473,6 +470,9 @@ msgstr "Data Inicial" #~ msgid "Error" #~ msgstr "Erro" +#~ msgid "Invalid XML for View Architecture!" +#~ msgstr "XML Inválido para a Visão de Arquitetura!" + #~ msgid "" #~ "This module allows to use several analytic plans, according to the general " #~ "journal,\n" @@ -542,6 +542,9 @@ msgstr "Data Inicial" #~ msgid "Select Information" #~ msgstr "Selecione Informação" +#~ msgid "Currency:" +#~ msgstr "Moeda:" + #, python-format #~ msgid "Please put a name and a code before saving the model !" #~ msgstr "Por favor, ponha um nome e um código antes de salvar o modelo !" @@ -553,6 +556,9 @@ msgstr "Data Inicial" #~ msgid "OK" #~ msgstr "OK" +#~ msgid "Period from" +#~ msgstr "Período de" + #~ msgid "Analytic Distribution's models" #~ msgstr "Modelos de Distribuição Analítica" @@ -561,6 +567,9 @@ msgstr "Data Inicial" #~ msgstr "" #~ "Este modelo de distribuição foi salvo. Você poderá reutilizá-lo mais tarde." +#~ msgid "Printing date:" +#~ msgstr "Data de impressão:" + #~ msgid "" #~ "The Object name must start with x_ and not contain any special character !" #~ msgstr "" @@ -731,3 +740,6 @@ msgstr "Data Inicial" #~ msgid "You can not create analytic line on view account." #~ msgstr "Você não pode criar uma linha analítica em conta de visualização" + +#~ msgid "to" +#~ msgstr "para" diff --git a/addons/account_analytic_plans/i18n/ro.po b/addons/account_analytic_plans/i18n/ro.po index c749673f5e1..13f21bd24f2 100644 --- a/addons/account_analytic_plans/i18n/ro.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 29cb3ea910f..b29fefce109 100644 --- a/addons/account_analytic_plans/i18n/ru.po +++ b/addons/account_analytic_plans/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-06-01 05:16+0000\n" -"X-Generator: Launchpad (build 16660)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 5908fd1f75f..a6de657e5f0 100644 --- a/addons/account_analytic_plans/i18n/sl.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 320607b2223..272ddcdb222 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 4ab819762fe..ffbb988170b 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 9852ec6fe5d..02f1a1ae724 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 d2111fb04b2..1a829035a56 100644 --- a/addons/account_analytic_plans/i18n/sv.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 552f3cb906b..ca3fbcb972b 100644 --- a/addons/account_analytic_plans/i18n/tlh.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 07cb0a820c3..5c235111ec5 100644 --- a/addons/account_analytic_plans/i18n/tr.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_analytic_plans #: field:account.analytic.plan.instance,account4_ids:0 diff --git a/addons/account_analytic_plans/i18n/uk.po b/addons/account_analytic_plans/i18n/uk.po index 71861003be0..c11c58bb652 100644 --- a/addons/account_analytic_plans/i18n/uk.po +++ b/addons/account_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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 d26ff1de49d..c2b5fd329b1 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 8d3a78536a2..32302d2e664 100644 --- a/addons/account_analytic_plans/i18n/zh_CN.po +++ b/addons/account_analytic_plans/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 6bcd1f5425f..937d9077577 100644 --- a/addons/account_analytic_plans/i18n/zh_TW.po +++ b/addons/account_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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 fcd9ab75fb3..6b40196943c 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 d8bd57ad7b5..47d2f60dcf8 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 c3b7397b2a9..abeea33bc2d 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 6a056afd7c0..1645e7cca4b 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 847066ee076..7d3fbd5a39e 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 5111383f237..e29b8bac38c 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 81d2e4a1436..dc4204776b2 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 9f9c8b2f1a1..15dee9ccb3d 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 28764724e98..a7b23cfc924 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 b7e0d077cdd..7c27585e8a1 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: account_anglo_saxon diff --git a/addons/account_anglo_saxon/i18n/es_EC.po b/addons/account_anglo_saxon/i18n/es_EC.po index 0a253c74e1d..9b4d9329f62 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 8f9f2997400..243749318c7 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 456ece2ed9d..00a87af4fcc 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 7f3ffea6a9a..73cc8f1f0d4 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 e14885c072b..96b3e2a8ace 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 d8ce3dfeade..e3c7497d28f 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 bf3817f1c8d..63e5bbc909d 100644 --- a/addons/account_anglo_saxon/i18n/fr.po +++ b/addons/account_anglo_saxon/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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 89ff94f7cc0..d157ba3d77c 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 be6c0e12b67..34f457c8032 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 31ea35ee862..2e5e9ec45f1 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 3f9018d108e..d7faf34d97a 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 02ed2e3b072..83192f3211b 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 5b78fb6db3a..895f0ad8f0c 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 711fd207a05..0991ffe423e 100644 --- a/addons/account_anglo_saxon/i18n/it.po +++ b/addons/account_anglo_saxon/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-13 22:40+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 0e6043ffbe8..cb7d5679338 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 8ed6f141ea5..00d983ddba7 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 a4f6196d630..dc595f1d1fb 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_anglo_saxon #: model:ir.model,name:account_anglo_saxon.model_product_category @@ -41,7 +41,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 +60,5 @@ msgid "" "This account will be used to value price difference between purchase price " "and cost price." msgstr "" +"Оваа сметка ќе се користи за да се вреднува разликата на цента помеѓу " +"набавната цена и цената на чинење." diff --git a/addons/account_anglo_saxon/i18n/mn.po b/addons/account_anglo_saxon/i18n/mn.po index 43fe5c6e4e5..81c2c0a47c7 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 3ad31474989..803934402ff 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 b0d2c3d8d5a..9c465db3172 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 5af9d25b07f..feb3dff3af1 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 ee7d29b0d8d..f5b7a7b1ce8 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 8a5e56f5806..34229119f38 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 533f089ba61..dcfb8b72781 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 56e2f3de7c0..2b266b58308 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 e6ef0ec11af..9137c56c928 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 d5b99d99311..bda4c77ae7f 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 e046087ea73..0d9695d94e6 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 eddc5d24f36..c991a4093da 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 8077128fa03..411c1781109 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 31898f5da17..aeb97ecad2e 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 520630a54d9..37fa07974c2 100644 --- a/addons/account_anglo_saxon/i18n/ta.po +++ b/addons/account_anglo_saxon/i18n/ta.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-09-01 06:55+0000\n" -"Last-Translator: ஆமாச்சு \n" +"Last-Translator: ஆமாச்சு \n" "Language-Team: Tamil \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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 82ebcf713e7..becb11fcbec 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 ede7ed5854d..1b82fa1fd3b 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 16504cf0517..1b062ae422d 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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 fabec666121..932c50ba8dd 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -705,7 +705,7 @@ msgid "Amount of Depreciation Lines" msgstr "قيمة خطوط الأستهلاك" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "إنشاء حركات الأصول" diff --git a/addons/account_asset/i18n/ca.po b/addons/account_asset/i18n/ca.po index d70b342678f..87327cd8e2d 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/cs.po b/addons/account_asset/i18n/cs.po index 1b5b7cd222e..c57a15f7bac 100644 --- a/addons/account_asset/i18n/cs.po +++ b/addons/account_asset/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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\n" #. module: account_asset @@ -706,7 +706,7 @@ msgid "Amount of Depreciation Lines" msgstr "Částka odpisových řádků" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Vytvořit pohyby majetku" diff --git a/addons/account_asset/i18n/da.po b/addons/account_asset/i18n/da.po index 3232de8892c..605a24cfc06 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/de.po b/addons/account_asset/i18n/de.po index ac238f16696..ea7111c9b40 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -732,7 +732,7 @@ msgid "Amount of Depreciation Lines" msgstr "Betrag der Abschreibungen" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Erzeugte Anlagenbuchungen" diff --git a/addons/account_asset/i18n/en_GB.po b/addons/account_asset/i18n/en_GB.po index 8fb8729b4bc..902e68a3b2d 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -200,7 +200,7 @@ msgstr "Depreciation Entry" #: view:asset.asset.report:0 #: field:asset.asset.report,nbr:0 msgid "# of Depreciation Lines" -msgstr "# of Depreciation Lines" +msgstr "No. of Depreciation Lines" #. module: account_asset #: field:account.asset.asset,method_period:0 @@ -289,7 +289,7 @@ msgid "" "Prorata temporis can be applied only for time method \"number of " "depreciations\"." msgstr "" -"Prorata temporis can be applied only for time method \"number of " +"Pro rata temporis can be applied only for time method \"number of " "depreciations\"." #. module: account_asset @@ -539,7 +539,7 @@ msgstr "General" #: field:account.asset.asset,prorata:0 #: field:account.asset.category,prorata:0 msgid "Prorata Temporis" -msgstr "Prorata Temporis" +msgstr "Pro rata Temporis" #. module: account_asset #: model:ir.model,name:account_asset.model_account_invoice @@ -728,7 +728,7 @@ msgid "Amount of Depreciation Lines" msgstr "Amount of Depreciation Lines" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Created Asset Moves" @@ -774,3 +774,141 @@ msgstr "Confirm Asset" #: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_tree msgid "Asset Hierarchy" msgstr "Asset Hierarchy" + +#~ msgid "Sequence of the depreciation" +#~ msgstr "Sequence of the depreciation" + +#~ msgid "Other Information" +#~ msgstr "Other Information" + +#~ msgid "Invalid BBA Structured Communication !" +#~ msgstr "Invalid BBA Structured Communication !" + +#~ msgid "Wrong credit or debit value in accounting entry !" +#~ msgstr "Wrong credit or debit value in accounting entry !" + +#~ msgid "Depreciation Amount" +#~ msgstr "Depreciation Amount" + +#~ msgid "" +#~ "This wizard will post the depreciation lines of running assets that belong " +#~ "to the selected period." +#~ msgstr "" +#~ "This wizard will post the depreciation lines of running assets that belong " +#~ "to the selected period." + +#~ msgid "Calculates Depreciation within specified interval" +#~ msgstr "Calculates Depreciation within specified interval" + +#~ msgid "State here the time during 2 depreciations, in months" +#~ msgstr "State here the time during 2 depreciations, in months" + +#~ msgid "Gross value " +#~ msgstr "Gross value " + +#~ msgid "Error ! You can not create recursive assets." +#~ msgstr "Error ! You cannot create recursive assets." + +#~ msgid "Month" +#~ msgstr "Month" + +#~ msgid "Assets purchased in current year" +#~ msgstr "Assets purchased in current year" + +#~ 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 "" +#~ "The date of your Journal Entry is not in the defined period! You should " +#~ "change the date or remove this constraint from the journal." + +#~ msgid "" +#~ "The selected account of your Journal Entry forces to provide a secondary " +#~ "currency. You should remove the secondary currency on the account or select " +#~ "a multi-currency view on the journal." +#~ msgstr "" +#~ "The selected account of your Journal Entry forces to provide a secondary " +#~ "currency. You should remove the secondary currency on the account or select " +#~ "a multi-currency view on the journal." + +#~ msgid "State" +#~ msgstr "State" + +#~ msgid "Modify asset" +#~ msgstr "Modify asset" + +#~ msgid "Compute assets" +#~ msgstr "Compute assets" + +#~ msgid "Asset durations to modify" +#~ msgstr "Asset durations to modify" + +#~ msgid "" +#~ "Choose the method to use to compute the amount of depreciation lines.\n" +#~ " * Linear: Calculated on basis of: Gross Value / Number of Depreciations\n" +#~ " * Degressive: Calculated on basis of: Remaining Value * Degressive Factor" +#~ msgstr "" +#~ "Choose the method to use to compute the amount of depreciation lines.\n" +#~ " * Linear: Calculated on basis of: Gross Value / Number of Depreciations\n" +#~ " * Degressive: Calculated on basis of: Remaining Value * Degressive Factor" + +#~ msgid "Analytic information" +#~ msgstr "Analytic information" + +#~ msgid "Review Asset Categories" +#~ msgstr "Review Asset Categories" + +#~ msgid "Close asset" +#~ msgstr "Close asset" + +#~ msgid "Invoice Number must be unique per Company!" +#~ msgstr "Invoice Number must be unique per Company!" + +#~ msgid "Month-1" +#~ msgstr "Month-1" + +#~ msgid "Assets purchased in current month" +#~ msgstr "Assets purchased in current month" + +#~ msgid "" +#~ "When an asset is created, the state is 'Draft'.\n" +#~ "If the asset is confirmed, the state goes in 'Running' and the depreciation " +#~ "lines can be posted in the accounting.\n" +#~ "You can manually close an asset when the depreciation is over. If the last " +#~ "line of depreciation is posted, the asset automatically goes in that state." +#~ msgstr "" +#~ "When an asset is created, the state is 'Draft'.\n" +#~ "If the asset is confirmed, the state goes in 'Running' and the depreciation " +#~ "lines can be posted in the accounting.\n" +#~ "You can manually close an asset when the depreciation is over. If the last " +#~ "line of depreciation is posted, the asset automatically goes in that state." + +#~ msgid "Company must be the same for its related account and period." +#~ msgstr "Company must be the same for its related account and period." + +#~ msgid "You can not create journal items on an account of type view." +#~ msgstr "You cannot create journal items on an account of type view." + +#~ msgid "Amount to Depreciate" +#~ msgstr "Amount to Depreciate" + +#~ msgid "Accounting information" +#~ msgstr "Accounting information" + +#~ msgid "" +#~ "From this report, you can have an overview on all depreciation. The tool " +#~ "search can also be used to personalise your Assets reports and so, match " +#~ "this analysis to your needs;" +#~ msgstr "" +#~ "From this report, you can have an overview on all depreciation. The tool " +#~ "search can also be used to personalise your Assets reports and so, match " +#~ "this analysis to your needs;" + +#~ msgid "Assets purchased in last month" +#~ msgstr "Assets purchased in last month" + +#~ msgid "Post Depreciation Lines" +#~ msgstr "Post Depreciation Lines" + +#~ msgid "You can not create journal items on closed account." +#~ msgstr "You cannot create journal items on a closed account." diff --git a/addons/account_asset/i18n/es.po b/addons/account_asset/i18n/es.po index 6e56020d608..89e4a79432e 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -289,8 +289,8 @@ msgid "" "Prorata temporis can be applied only for time method \"number of " "depreciations\"." msgstr "" -"Prorata temporis puede ser aplicado solo para método de tiempo \"numero de " -"amortizaciones\"" +"El prorrateo de tiempo sólo se puede utilizar para el método de tiempo " +"\"numero de amortizaciones\"" #. module: account_asset #: field:account.asset.depreciation.line,remaining_value:0 @@ -540,7 +540,7 @@ msgstr "General" #: field:account.asset.asset,prorata:0 #: field:account.asset.category,prorata:0 msgid "Prorata Temporis" -msgstr "Tiempo prorateado" +msgstr "Tiempo prorrateado" #. module: account_asset #: model:ir.model,name:account_asset.model_account_invoice @@ -727,7 +727,7 @@ msgid "Amount of Depreciation Lines" msgstr "Importe de las líneas de amortización" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Movimientos de activos creados" diff --git a/addons/account_asset/i18n/es_AR.po b/addons/account_asset/i18n/es_AR.po index 99fc92a886a..a35ad33bd25 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/es_CR.po b/addons/account_asset/i18n/es_CR.po index ef841d754ad..290887b7dd2 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: account_asset @@ -713,7 +713,7 @@ msgid "Amount of Depreciation Lines" msgstr "Importe de las líneas de amortización" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Movimientos de activos creados" diff --git a/addons/account_asset/i18n/es_EC.po b/addons/account_asset/i18n/es_EC.po index 5c1f50184d9..46b54f2a363 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -712,7 +712,7 @@ msgid "Amount of Depreciation Lines" msgstr "Importe de las líneas de depreciación" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Movimientos de activos creados" diff --git a/addons/account_asset/i18n/es_MX.po b/addons/account_asset/i18n/es_MX.po index b510f97a370..b0270fc018d 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -726,7 +726,7 @@ msgid "Amount of Depreciation Lines" msgstr "Importe de las líneas de amortización" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Movimientos de activos creados" diff --git a/addons/account_asset/i18n/et.po b/addons/account_asset/i18n/et.po index d42d63552d4..e2ceec3f015 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/fi.po b/addons/account_asset/i18n/fi.po index 93b8d38393e..1a4f807c0ab 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/fr.po b/addons/account_asset/i18n/fr.po index f32a8bdb42c..d01b8beb4a7 100755 --- a/addons/account_asset/i18n/fr.po +++ b/addons/account_asset/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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -731,7 +731,7 @@ msgid "Amount of Depreciation Lines" msgstr "Montant des lignes d'amortissement" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Écritures d'amortissement créées" diff --git a/addons/account_asset/i18n/gu.po b/addons/account_asset/i18n/gu.po index 33a5bfb9596..8210eb3c490 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/hr.po b/addons/account_asset/i18n/hr.po index cdcd970ff0d..2d1454f32a2 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "Iznos stavaka amortizacije" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Stvorena knjiženja imovine" diff --git a/addons/account_asset/i18n/hu.po b/addons/account_asset/i18n/hu.po index 19f50232515..b58d3d367ec 100644 --- a/addons/account_asset/i18n/hu.po +++ b/addons/account_asset/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-08-23 05:01+0000\n" -"X-Generator: Launchpad (build 16737)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 e55ea5039b3..13c8ac765d2 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/it.po b/addons/account_asset/i18n/it.po index d7567af4299..973e18a60ad 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -733,7 +733,7 @@ msgid "Amount of Depreciation Lines" msgstr "Importo delle Righe d'Ammortamento" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Movimenti Immobilizzazioni Creati" diff --git a/addons/account_asset/i18n/ja.po b/addons/account_asset/i18n/ja.po index 436e902a6d7..2fefda88efe 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -699,7 +699,7 @@ msgid "Amount of Depreciation Lines" msgstr "減価償却行の金額" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "作成済資産の移動" diff --git a/addons/account_asset/i18n/ko.po b/addons/account_asset/i18n/ko.po index 1185333020b..a87b503c59b 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 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/lt.po b/addons/account_asset/i18n/lt.po index 85d578241af..2a29b336318 100644 --- a/addons/account_asset/i18n/lt.po +++ b/addons/account_asset/i18n/lt.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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 msgid "Assets in draft and open states" -msgstr "" +msgstr "Ilgalaikio turto juodraščiai bei vykdomi" #. module: account_asset #: field:account.asset.category,method_end:0 @@ -32,22 +32,22 @@ msgstr "Pabaigos data" #. module: account_asset #: field:account.asset.asset,value_residual:0 msgid "Residual Value" -msgstr "" +msgstr "Likutinė vertė" #. module: account_asset #: field:account.asset.category,account_expense_depreciation_id:0 msgid "Depr. Expense Account" -msgstr "" +msgstr "Nusidėv. sąnaudų sąskaita" #. module: account_asset #: view:asset.asset.report:0 msgid "Group By..." -msgstr "" +msgstr "Grupuoti pagal..." #. module: account_asset #: field:asset.asset.report,gross_value:0 msgid "Gross Amount" -msgstr "" +msgstr "Įsigijimo kaina" #. module: account_asset #: view:account.asset.asset:0 @@ -58,7 +58,7 @@ msgstr "" #: field:asset.asset.report,asset_id:0 #: model:ir.model,name:account_asset.model_account_asset_asset msgid "Asset" -msgstr "" +msgstr "Ilg. turtas" #. module: account_asset #: help:account.asset.asset,prorata:0 @@ -67,12 +67,13 @@ msgid "" "Indicates that the first depreciation entry for this asset have to be done " "from the purchase date instead of the first January" msgstr "" +"Skaičiuoti nusidėvėjimą nuo pirkimo datos, o ne nuo finansinių metų pradžios" #. module: account_asset #: selection:account.asset.asset,method:0 #: selection:account.asset.category,method:0 msgid "Linear" -msgstr "" +msgstr "Tiesinis" #. module: account_asset #: field:account.asset.asset,company_id:0 @@ -80,24 +81,24 @@ msgstr "" #: view:asset.asset.report:0 #: field:asset.asset.report,company_id:0 msgid "Company" -msgstr "" +msgstr "Įmonė" #. module: account_asset #: view:asset.modify:0 msgid "Modify" -msgstr "" +msgstr "Pakeisti" #. module: account_asset #: selection:account.asset.asset,state:0 #: view:asset.asset.report:0 #: selection:asset.asset.report,state:0 msgid "Running" -msgstr "" +msgstr "Veikiantis" #. module: account_asset #: view:account.asset.asset:0 msgid "Set to Draft" -msgstr "" +msgstr "Nustatyti kaip juodraštį" #. module: account_asset #: view:asset.asset.report:0 @@ -105,24 +106,24 @@ msgstr "" #: model:ir.model,name:account_asset.model_asset_asset_report #: model:ir.ui.menu,name:account_asset.menu_action_asset_asset_report msgid "Assets Analysis" -msgstr "" +msgstr "Ilagalaikio turto analizė" #. module: account_asset #: field:asset.modify,name:0 msgid "Reason" -msgstr "" +msgstr "Priežastis" #. module: account_asset #: field:account.asset.asset,method_progress_factor:0 #: field:account.asset.category,method_progress_factor:0 msgid "Degressive Factor" -msgstr "" +msgstr "Nusidėvėjimo procentas" #. module: account_asset #: model:ir.actions.act_window,name:account_asset.action_account_asset_asset_list_normal #: model:ir.ui.menu,name:account_asset.menu_action_account_asset_asset_list_normal msgid "Asset Categories" -msgstr "" +msgstr "Ilgalaikio turto kategorijos" #. module: account_asset #: view:account.asset.asset:0 @@ -130,30 +131,30 @@ msgstr "" #: field:account.move.line,entry_ids:0 #: model:ir.actions.act_window,name:account_asset.act_entries_open msgid "Entries" -msgstr "" +msgstr "Įrašai" #. module: account_asset #: view:account.asset.asset:0 #: field:account.asset.asset,depreciation_line_ids:0 msgid "Depreciation Lines" -msgstr "" +msgstr "Nusidėvėjimo eilutės" #. 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 "Tai suma iki kurios gali būti nudėvėtas ilgalaikis turtas." #. module: account_asset #: help:account.asset.asset,method_period:0 msgid "The amount of time between two depreciations, in months" -msgstr "" +msgstr "Laikotarpis mėnesiais tarp dviejų nusidėvėjimų" #. module: account_asset #: field:account.asset.depreciation.line,depreciation_date:0 #: view:asset.asset.report:0 #: field:asset.asset.report,depreciation_date:0 msgid "Depreciation Date" -msgstr "" +msgstr "Nusidėvėjimo data" #. module: account_asset #: constraint:account.asset.asset:0 @@ -163,7 +164,7 @@ msgstr "" #. module: account_asset #: field:asset.asset.report,posted_value:0 msgid "Posted Amount" -msgstr "" +msgstr "Užregistruota suma" #. module: account_asset #: view:account.asset.asset:0 @@ -173,12 +174,12 @@ msgstr "" #: model:ir.ui.menu,name:account_asset.menu_finance_assets #: model:ir.ui.menu,name:account_asset.menu_finance_config_assets msgid "Assets" -msgstr "" +msgstr "Ilgalaikis turtas" #. module: account_asset #: field:account.asset.category,account_depreciation_id:0 msgid "Depreciation Account" -msgstr "" +msgstr "Nusidėvėjimo sąskaita" #. module: account_asset #: view:account.asset.asset:0 @@ -187,28 +188,28 @@ msgstr "" #: view:asset.modify:0 #: field:asset.modify,note:0 msgid "Notes" -msgstr "" +msgstr "Pastabos" #. module: account_asset #: field:account.asset.depreciation.line,move_id:0 msgid "Depreciation Entry" -msgstr "" +msgstr "Operacija" #. module: account_asset #: view:asset.asset.report:0 #: field:asset.asset.report,nbr:0 msgid "# of Depreciation Lines" -msgstr "" +msgstr "# nusidėvėjimo įrašų" #. module: account_asset #: field:account.asset.asset,method_period:0 msgid "Number of Months in a Period" -msgstr "" +msgstr "Mėnesių skaičius per periodą" #. module: account_asset #: view:asset.asset.report:0 msgid "Assets in draft state" -msgstr "" +msgstr "Ilgalaikio turto juodraščiai" #. module: account_asset #: field:account.asset.asset,method_end:0 @@ -216,70 +217,70 @@ msgstr "" #: selection:account.asset.category,method_time:0 #: selection:account.asset.history,method_time:0 msgid "Ending Date" -msgstr "" +msgstr "Pabaigos data" #. module: account_asset #: field:account.asset.asset,code:0 msgid "Reference" -msgstr "" +msgstr "Numeris" #. module: account_asset #: view:account.asset.asset:0 msgid "Account Asset" -msgstr "" +msgstr "Ilgalaikio turto sąskaita" #. module: account_asset #: model:ir.actions.act_window,name:account_asset.action_asset_depreciation_confirmation_wizard #: model:ir.ui.menu,name:account_asset.menu_asset_depreciation_confirmation_wizard msgid "Compute Assets" -msgstr "" +msgstr "Skaičiuoti nusidėvėjimą" #. module: account_asset #: field:account.asset.category,method_period:0 #: field:account.asset.history,method_period:0 #: field:asset.modify,method_period:0 msgid "Period Length" -msgstr "" +msgstr "Periodo ilgis" #. module: account_asset #: selection:account.asset.asset,state:0 #: view:asset.asset.report:0 #: selection:asset.asset.report,state:0 msgid "Draft" -msgstr "" +msgstr "Juodraštis" #. module: account_asset #: view:asset.asset.report:0 msgid "Date of asset purchase" -msgstr "" +msgstr "Ilgalaikio turto pirkimo data" #. module: account_asset #: view:account.asset.asset:0 msgid "Change Duration" -msgstr "" +msgstr "Keisti laikotarpį" #. module: account_asset #: help:account.asset.asset,method_number:0 #: help:account.asset.category,method_number:0 #: help:account.asset.history,method_number:0 msgid "The number of depreciations needed to depreciate your asset" -msgstr "" +msgstr "Nusidėvėjimų skaičius per kuriuos nudėvimas ilgalaikis turtas" #. module: account_asset #: view:account.asset.category:0 msgid "Analytic Information" -msgstr "" +msgstr "Analitinė informacija" #. module: account_asset #: field:account.asset.category,account_analytic_id:0 msgid "Analytic account" -msgstr "" +msgstr "Analitinė sąskaita" #. module: account_asset #: field:account.asset.asset,method:0 #: field:account.asset.category,method:0 msgid "Computation Method" -msgstr "" +msgstr "Skaičiavimo metodas" #. module: account_asset #: constraint:account.asset.asset:0 @@ -291,7 +292,7 @@ msgstr "" #. module: account_asset #: field:account.asset.depreciation.line,remaining_value:0 msgid "Next Period Depreciation" -msgstr "" +msgstr "Likutinė vertė" #. module: account_asset #: help:account.asset.history,method_period:0 @@ -303,12 +304,12 @@ msgstr "" #: model:ir.actions.act_window,name:account_asset.action_asset_modify #: model:ir.model,name:account_asset.model_asset_modify msgid "Modify Asset" -msgstr "" +msgstr "Pakeisti ilgalaikio turto nusidėvėjimo laikotarpį" #. module: account_asset #: field:account.asset.asset,salvage_value:0 msgid "Salvage Value" -msgstr "" +msgstr "Likvidacinė kaina" #. module: account_asset #: field:account.asset.asset,category_id:0 @@ -316,23 +317,23 @@ msgstr "" #: field:account.invoice.line,asset_category_id:0 #: view:asset.asset.report:0 msgid "Asset Category" -msgstr "" +msgstr "Ilgalaikio turto kategorija" #. module: account_asset #: view:account.asset.asset:0 msgid "Assets in closed state" -msgstr "" +msgstr "Uždarytos ilgalaikio turto kortelės" #. module: account_asset #: field:account.asset.asset,parent_id:0 msgid "Parent Asset" -msgstr "" +msgstr "Tėvinis ilgalaikis turtas" #. module: account_asset #: view:account.asset.history:0 #: model:ir.model,name:account_asset.model_account_asset_history msgid "Asset history" -msgstr "" +msgstr "Ilgalaikio turto istorija" #. module: account_asset #: view:account.asset.category:0 @@ -342,17 +343,17 @@ msgstr "" #. module: account_asset #: view:asset.modify:0 msgid "months" -msgstr "" +msgstr "mėnesiai" #. module: account_asset #: model:ir.model,name:account_asset.model_account_invoice_line msgid "Invoice Line" -msgstr "" +msgstr "Sąskaitos faktūros eilutė" #. module: account_asset #: view:account.asset.asset:0 msgid "Depreciation Board" -msgstr "" +msgstr "Nusidėvėjimo lenta" #. module: account_asset #: field:asset.asset.report,unposted_value:0 @@ -364,20 +365,20 @@ msgstr "" #: field:account.asset.category,method_time:0 #: field:account.asset.history,method_time:0 msgid "Time Method" -msgstr "" +msgstr "Laikotarpio metodas" #. module: account_asset #: view:asset.depreciation.confirmation.wizard:0 #: view:asset.modify:0 msgid "or" -msgstr "" +msgstr "arba" #. module: account_asset #: field:account.asset.asset,note:0 #: field:account.asset.category,note:0 #: field:account.asset.history,note:0 msgid "Note" -msgstr "" +msgstr "Pastaba" #. module: account_asset #: help:account.asset.history,method_time:0 @@ -388,6 +389,12 @@ msgid "" "Ending Date: Choose the time between 2 depreciations and the date the " "depreciations won't go beyond." msgstr "" +"Metodas naudojamas paskaičiuoti datas ir kartus, per kiek nusidėvės " +"ilgalaikis turtas.\n" +"Periodų skaičius: Fiksuotas kartų skaičius ir laikotarpis tarp dviejų " +"nusidėvėjimo skaičiavimų.\n" +"Pabaigos data: Pasirinkite laikotarpį tarp dviejų nusidėvėjimo skaičiavimų " +"ir turtas bus nudėvėtas iki šios datos." #. module: account_asset #: help:account.asset.asset,method_time:0 @@ -400,16 +407,22 @@ msgid "" " * Ending Date: Choose the time between 2 depreciations and the date the " "depreciations won't go beyond." msgstr "" +"Pasirinkite metodą naudojamą paskaičiuoti datas ir kartus, per kiek " +"nusidėvės ilgalaikis turtas.\n" +" * Periodų skaičius: Fiksuotas kartų skaičius ir laikotarpis tarp dviejų " +"nusidėvėjimo skaičiavimų.\n" +" * Pabaigos data: Pasirinkite laikotarpį tarp dviejų nusidėvėjimo " +"skaičiavimų ir turtas bus nudėvėtas iki šios datos." #. module: account_asset #: view:asset.asset.report:0 msgid "Assets in running state" -msgstr "" +msgstr "Naudojamas ilgalaikis turtas" #. module: account_asset #: view:account.asset.asset:0 msgid "Closed" -msgstr "" +msgstr "Uždaryta" #. module: account_asset #: help:account.asset.asset,state:0 @@ -425,18 +438,18 @@ msgstr "" #: field:account.asset.asset,state:0 #: field:asset.asset.report,state:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: account_asset #: field:account.asset.asset,partner_id:0 #: field:asset.asset.report,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Partneris" #. module: account_asset #: view:asset.asset.report:0 msgid "Posted depreciation lines" -msgstr "" +msgstr "Užregistruoti nusidėvėjimo DK įrašai" #. module: account_asset #: field:account.asset.asset,child_ids:0 @@ -446,33 +459,33 @@ msgstr "" #. module: account_asset #: view:asset.asset.report:0 msgid "Date of depreciation" -msgstr "" +msgstr "Nusidėvėjimo data" #. module: account_asset #: field:account.asset.history,user_id:0 msgid "User" -msgstr "" +msgstr "Naudotojas" #. module: account_asset #: field:account.asset.category,account_asset_id:0 msgid "Asset Account" -msgstr "" +msgstr "Ilgalaikio turto sąskaita" #. module: account_asset #: view:asset.asset.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "Išplėstiniai filtrai..." #. module: account_asset #: view:account.asset.asset:0 #: view:asset.depreciation.confirmation.wizard:0 msgid "Compute" -msgstr "" +msgstr "Skaičiuoti" #. module: account_asset #: view:account.asset.history:0 msgid "Asset History" -msgstr "" +msgstr "Ilgalaikio turto istorija" #. module: account_asset #: model:ir.model,name:account_asset.model_asset_depreciation_confirmation_wizard @@ -482,7 +495,7 @@ msgstr "" #. module: account_asset #: field:account.asset.asset,active:0 msgid "Active" -msgstr "" +msgstr "Aktyvus" #. module: account_asset #: field:account.asset.depreciation.line,parent_state:0 @@ -492,28 +505,28 @@ msgstr "" #. module: account_asset #: field:account.asset.depreciation.line,name:0 msgid "Depreciation Name" -msgstr "" +msgstr "Pavadinimas" #. module: account_asset #: view:account.asset.asset:0 #: field:account.asset.asset,history_ids:0 msgid "History" -msgstr "" +msgstr "Istorija" #. module: account_asset #: view:asset.depreciation.confirmation.wizard:0 msgid "Compute Asset" -msgstr "" +msgstr "Skaičiuoti nusidėvėjimą" #. module: account_asset #: field:asset.depreciation.confirmation.wizard,period_id:0 msgid "Period" -msgstr "" +msgstr "Periodas" #. module: account_asset #: view:account.asset.asset:0 msgid "General" -msgstr "" +msgstr "Bendra" #. module: account_asset #: field:account.asset.asset,prorata:0 @@ -524,47 +537,47 @@ msgstr "" #. module: account_asset #: model:ir.model,name:account_asset.model_account_invoice msgid "Invoice" -msgstr "" +msgstr "Sąskaita-faktūra" #. module: account_asset #: view:account.asset.asset:0 msgid "Set to Close" -msgstr "" +msgstr "Užbaigti vykdymą" #. module: account_asset #: view:asset.depreciation.confirmation.wizard:0 #: view:asset.modify:0 msgid "Cancel" -msgstr "" +msgstr "Atšaukti" #. module: account_asset #: selection:account.asset.asset,state:0 #: selection:asset.asset.report,state:0 msgid "Close" -msgstr "" +msgstr "Uždaryta" #. module: account_asset #: model:ir.model,name:account_asset.model_account_move_line msgid "Journal Items" -msgstr "" +msgstr "DK įrašai" #. module: account_asset #: view:asset.modify:0 msgid "Asset Durations to Modify" -msgstr "" +msgstr "Pakeisti ilgalaikio turto nusidėvėjimo laikotarpį" #. module: account_asset #: field:account.asset.asset,purchase_date:0 #: view:asset.asset.report:0 #: field:asset.asset.report,purchase_date:0 msgid "Purchase Date" -msgstr "" +msgstr "Pirkimo data" #. module: account_asset #: selection:account.asset.asset,method:0 #: selection:account.asset.category,method:0 msgid "Degressive" -msgstr "" +msgstr "Dvigubo balanso" #. module: account_asset #: help:asset.depreciation.confirmation.wizard,period_id:0 @@ -572,56 +585,58 @@ msgid "" "Choose the period for which you want to automatically post the depreciation " "lines of running assets" msgstr "" +"Pasirinkite periodą, kuriame užregistruoti naudojamo ilgalaikio turto " +"nusidėvėjimą DK įrašus" #. module: account_asset #: view:account.asset.asset:0 msgid "Current" -msgstr "" +msgstr "Naudojami" #. module: account_asset #: view:account.asset.category:0 msgid "Depreciation Method" -msgstr "" +msgstr "Nusidėvėjimo metodas" #. module: account_asset #: field:account.asset.depreciation.line,amount:0 msgid "Current Depreciation" -msgstr "" +msgstr "Nusidėvėjimas" #. module: account_asset #: field:account.asset.asset,name:0 msgid "Asset Name" -msgstr "" +msgstr "Ilgalaikio turto pavadinimas" #. module: account_asset #: field:account.asset.category,open_asset:0 msgid "Skip Draft State" -msgstr "" +msgstr "Patvirtinti automatiškai" #. module: account_asset #: view:account.asset.category:0 msgid "Depreciation Dates" -msgstr "" +msgstr "Nusidėvėjimo datos" #. module: account_asset #: field:account.asset.asset,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Valiuta" #. module: account_asset #: field:account.asset.category,journal_id:0 msgid "Journal" -msgstr "" +msgstr "Žurnalas" #. module: account_asset #: field:account.asset.history,name:0 msgid "History name" -msgstr "" +msgstr "Pavadinimas" #. module: account_asset #: field:account.asset.depreciation.line,depreciated_value:0 msgid "Amount Already Depreciated" -msgstr "" +msgstr "Nudėvėta" #. module: account_asset #: help:account.asset.asset,method:0 @@ -631,13 +646,16 @@ msgid "" " * Linear: Calculated on basis of: Gross Value / Number of Depreciations\n" " * Degressive: Calculated on basis of: Residual Value * Degressive Factor" msgstr "" +"Pasirinkite metodą naudojamą nusidėvėjimo eilučių skaičiavimui.\n" +" * Tiesinis: Skaičiuojama pagal: Įsigijimo kaina / Periodų skaičius\n" +" * Dvigubo balanso: Skaičiuojama: Likutinė vertė * Nusidėvėjimo procentas" #. module: account_asset #: field:account.asset.depreciation.line,move_check:0 #: view:asset.asset.report:0 #: field:asset.asset.report,move_check:0 msgid "Posted" -msgstr "" +msgstr "Užregistruota" #. module: account_asset #: model:ir.actions.act_window,help:account_asset.action_asset_asset_report @@ -655,12 +673,12 @@ msgstr "" #. module: account_asset #: field:account.asset.asset,purchase_value:0 msgid "Gross Value" -msgstr "" +msgstr "Įsigijimo kaina" #. module: account_asset #: field:account.asset.category,name:0 msgid "Name" -msgstr "" +msgstr "Pavadinimas" #. module: account_asset #: help:account.asset.category,open_asset:0 @@ -668,11 +686,13 @@ msgid "" "Check this if you want to automatically confirm the assets of this category " "when created by invoices." msgstr "" +"Ilgalaikis turtas sukurtas iš sąskaitos faktūros ir priklausantis šiai " +"kategorijai bus automatiškai patvirtintas." #. module: account_asset #: field:asset.asset.report,name:0 msgid "Year" -msgstr "" +msgstr "Metai" #. module: account_asset #: model:ir.model,name:account_asset.model_account_asset_depreciation_line @@ -684,16 +704,16 @@ msgstr "" #: field:asset.asset.report,asset_category_id:0 #: model:ir.model,name:account_asset.model_account_asset_category msgid "Asset category" -msgstr "" +msgstr "Ilgalaikio turto kategorija" #. module: account_asset #: view:asset.asset.report:0 #: field:asset.asset.report,depreciation_value:0 msgid "Amount of Depreciation Lines" -msgstr "" +msgstr "Nusidėvėjusi vertė" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" @@ -701,17 +721,17 @@ msgstr "" #. module: account_asset #: field:account.asset.depreciation.line,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Seka" #. module: account_asset #: help:account.asset.category,method_period:0 msgid "State here the time between 2 depreciations, in months" -msgstr "" +msgstr "Laikotarpis tarp dviejų nusidėvėjimų, mėnesiais" #. module: account_asset #: field:account.asset.history,date:0 msgid "Date" -msgstr "" +msgstr "Data" #. module: account_asset #: field:account.asset.asset,method_number:0 @@ -722,20 +742,20 @@ msgstr "" #: selection:account.asset.history,method_time:0 #: field:asset.modify,method_number:0 msgid "Number of Depreciations" -msgstr "" +msgstr "Periodų skaičius" #. module: account_asset #: view:account.asset.asset:0 msgid "Create Move" -msgstr "" +msgstr "Sukurti įrašus" #. module: account_asset #: view:account.asset.asset:0 msgid "Confirm Asset" -msgstr "" +msgstr "Patvirtinti ilgalaikį turtą" #. module: account_asset #: 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 "Ilgalaikio turto hierarchija" diff --git a/addons/account_asset/i18n/mk.po b/addons/account_asset/i18n/mk.po index 1f08c8620d2..5d603b9cf46 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -32,7 +32,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 +67,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 +143,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,13 +194,13 @@ msgstr "Белешки" #. module: account_asset #: field:account.asset.depreciation.line,move_id:0 msgid "Depreciation Entry" -msgstr "Запис за амортизација" +msgstr "Внес за амортизација" #. module: account_asset #: 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 @@ -290,6 +290,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 @@ -329,7 +331,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 @@ -392,11 +394,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 @@ -409,11 +411,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 @@ -456,7 +464,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 @@ -466,7 +474,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 @@ -492,7 +500,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 @@ -534,7 +542,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 @@ -566,7 +574,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 @@ -671,7 +679,7 @@ msgid "" " " msgstr "" "

\n" -" Од овој извештај имате преглед на сите обезвреднувања. \n" +" Од овој извештај имате преглед на сите амортизации. \n" " Алатката за пребарување може да се користи за персонализирање " "на\n" " извештаите за средствата за да одговара на анализите што вам ви " @@ -722,10 +730,10 @@ msgid "Amount of Depreciation Lines" msgstr "Износ на ставките за амортизација" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" -msgstr "" +msgstr "Креирани движења на средство" #. module: account_asset #: field:account.asset.depreciation.line,sequence:0 diff --git a/addons/account_asset/i18n/mn.po b/addons/account_asset/i18n/mn.po index 91e55e7a698..395c1796cf7 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -723,7 +723,7 @@ msgid "Amount of Depreciation Lines" msgstr "Элэгдлийн мөрүүдийн дүн" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Үүсгэгдсэн Хөрөнгийн Хөдөлгөөнүүд" @@ -768,7 +768,7 @@ 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 "Хөрөнгийн Шатлал" #~ msgid "Review Asset Categories" #~ msgstr "Хөрөнгийн ангилалыг дахин харах" diff --git a/addons/account_asset/i18n/nb.po b/addons/account_asset/i18n/nb.po index de87533a58c..c1672ac8629 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -711,7 +711,7 @@ msgid "Amount of Depreciation Lines" msgstr "Størrelsen på avskrivningene linjer" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Opprettet eiendel trekk." diff --git a/addons/account_asset/i18n/nl.po b/addons/account_asset/i18n/nl.po index bfadaa0dba9..6e243ef81d2 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -569,7 +569,7 @@ msgstr "Afsluiten" #. module: account_asset #: model:ir.model,name:account_asset.model_account_move_line msgid "Journal Items" -msgstr "Boekingen" +msgstr "Boekingsregels" #. module: account_asset #: view:asset.modify:0 @@ -732,7 +732,7 @@ msgid "Amount of Depreciation Lines" msgstr "Bedrag aan afschrijvingsregels" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Maak activa mutaties" diff --git a/addons/account_asset/i18n/nl_BE.po b/addons/account_asset/i18n/nl_BE.po index 3413cf38ac8..74f716add3f 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-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -724,7 +724,7 @@ msgid "Amount of Depreciation Lines" msgstr "Aantal afschrijvingslijnen" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Gemaakte investeringsboekingen" diff --git a/addons/account_asset/i18n/pl.po b/addons/account_asset/i18n/pl.po index 007c65e0f23..8177909c8da 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -37,7 +37,7 @@ msgstr "Wartość pozostała" #. module: account_asset #: field:account.asset.category,account_expense_depreciation_id:0 msgid "Depr. Expense Account" -msgstr "Konto umorzenia" +msgstr "Konto amortyzacji" #. module: account_asset #: view:asset.asset.report:0 @@ -178,7 +178,7 @@ msgstr "Środki trwałe" #. module: account_asset #: field:account.asset.category,account_depreciation_id:0 msgid "Depreciation Account" -msgstr "Konto amortyzacji" +msgstr "Konto umorzenia" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/pt.po b/addons/account_asset/i18n/pt.po index 76162329c3c..77f45c735ef 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -713,7 +713,7 @@ msgid "Amount of Depreciation Lines" msgstr "Quantidade de linhas de depreciação" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Movimento de ativos criados" diff --git a/addons/account_asset/i18n/pt_BR.po b/addons/account_asset/i18n/pt_BR.po index 17094692595..ffe7ce5f475 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -727,7 +727,7 @@ msgid "Amount of Depreciation Lines" msgstr "Quantidade de Linhas de Depreciação" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Movimentação de Bens" diff --git a/addons/account_asset/i18n/ro.po b/addons/account_asset/i18n/ro.po index 4e0363a89e4..a7fb1a4ad88 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -731,7 +731,7 @@ msgid "Amount of Depreciation Lines" msgstr "Suma Liniilor Devalorizarii" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Miscari de active create" diff --git a/addons/account_asset/i18n/ru.po b/addons/account_asset/i18n/ru.po index d6bc83aacb5..1d8e0313f0e 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-06-01 05:16+0000\n" -"X-Generator: Launchpad (build 16660)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -697,10 +697,10 @@ msgid "Amount of Depreciation Lines" msgstr "Сумма по позициям амортизации" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" -msgstr "" +msgstr "Созданные операции по активам" #. module: account_asset #: field:account.asset.depreciation.line,sequence:0 diff --git a/addons/account_asset/i18n/sl.po b/addons/account_asset/i18n/sl.po index 188f701aab5..a0cd346438e 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -713,7 +713,7 @@ msgid "Amount of Depreciation Lines" msgstr "Vrednost amortizacijskih postavk" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Kreirane vknjižbe osnovnega sredstva" diff --git a/addons/account_asset/i18n/sr@latin.po b/addons/account_asset/i18n/sr@latin.po index 54d81791f73..4fa27cef536 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/sv.po b/addons/account_asset/i18n/sv.po index 1bf58855317..b6c93a38b59 100755 --- a/addons/account_asset/i18n/sv.po +++ b/addons/account_asset/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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -710,7 +710,7 @@ msgid "Amount of Depreciation Lines" msgstr "Antal avskrivningsrader" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Skapade tillgångsändringar" diff --git a/addons/account_asset/i18n/th.po b/addons/account_asset/i18n/th.po index cd7967a5eb2..d45c6bf706c 100644 --- a/addons/account_asset/i18n/th.po +++ b/addons/account_asset/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-07-25 05:13+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 4593ec68032..a1455cafc98 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -726,7 +726,7 @@ msgid "Amount of Depreciation Lines" msgstr "Amortisman Satırları Tutarı" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "Oluşturulan Demirbaş Hareketleri" diff --git a/addons/account_asset/i18n/vi.po b/addons/account_asset/i18n/vi.po index b137f24d29c..d3bda6953fa 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -693,7 +693,7 @@ msgid "Amount of Depreciation Lines" msgstr "" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "" diff --git a/addons/account_asset/i18n/zh_CN.po b/addons/account_asset/i18n/zh_CN.po index aca22a8c9fb..86886fb4ca8 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -263,7 +263,7 @@ msgstr "修改周期" #: help:account.asset.category,method_number:0 #: help:account.asset.history,method_number:0 msgid "The number of depreciations needed to depreciate your asset" -msgstr "" +msgstr "被折旧资产的折旧数量" #. module: account_asset #: view:account.asset.category:0 @@ -291,7 +291,7 @@ msgstr "等比折旧仅用于“折旧次数”的计时方式" #. module: account_asset #: field:account.asset.depreciation.line,remaining_value:0 msgid "Next Period Depreciation" -msgstr "" +msgstr "下个期间的折旧" #. module: account_asset #: help:account.asset.history,method_period:0 @@ -592,7 +592,7 @@ msgstr "折旧方法" #. module: account_asset #: field:account.asset.depreciation.line,amount:0 msgid "Current Depreciation" -msgstr "" +msgstr "当前折旧" #. module: account_asset #: field:account.asset.asset,name:0 @@ -699,7 +699,7 @@ msgid "Amount of Depreciation Lines" msgstr "折旧行金额" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "新建固定资产会计凭证" diff --git a/addons/account_asset/i18n/zh_TW.po b/addons/account_asset/i18n/zh_TW.po index d824a9ad4d6..ed696edac00 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_asset #: view:account.asset.asset:0 @@ -699,7 +699,7 @@ msgid "Amount of Depreciation Lines" msgstr "折舊明細的金額" #. module: account_asset -#: code:addons/account_asset/wizard/wizard_asset_compute.py:49 +#: code:addons/account_asset/wizard/wizard_asset_compute.py:50 #, python-format msgid "Created Asset Moves" msgstr "建立資產轉移" diff --git a/addons/account_bank_statement_extensions/i18n/ar.po b/addons/account_bank_statement_extensions/i18n/ar.po index d3230fc15fb..6c24d73e843 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/cs.po b/addons/account_bank_statement_extensions/i18n/cs.po index 4eef2acf03b..b67421fd390 100644 --- a/addons/account_bank_statement_extensions/i18n/cs.po +++ b/addons/account_bank_statement_extensions/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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 fec8dd92f3f..a7a7d6e750c 100644 --- a/addons/account_bank_statement_extensions/i18n/de.po +++ b/addons/account_bank_statement_extensions/i18n/de.po @@ -15,13 +15,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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Auftrageber oder Begünstigter" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 diff --git a/addons/account_bank_statement_extensions/i18n/en_GB.po b/addons/account_bank_statement_extensions/i18n/en_GB.po index 650724963b1..125338825c6 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 56dded2fea0..642c5a314ae 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 8d42b1ba620..3fefa2c39fc 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 d6a9619d17c..11f73a37309 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 1dea6446b5c..57c9996cb5c 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 ca8f56985cb..6c7602cded7 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 703ddc8d222..78f53d86cc2 100644 --- a/addons/account_bank_statement_extensions/i18n/fr.po +++ b/addons/account_bank_statement_extensions/i18n/fr.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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 msgid "Originator to Beneficiary Information" -msgstr "" +msgstr "Informations de l'initiateur au bénéficiaire" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -208,7 +208,7 @@ msgstr "Nom / Libellé" #. module: account_bank_statement_extensions #: field:account.bank.statement.line.global,name:0 msgid "OBI" -msgstr "" +msgstr "IAB" #. module: account_bank_statement_extensions #: selection:account.bank.statement.line.global,type:0 diff --git a/addons/account_bank_statement_extensions/i18n/gu.po b/addons/account_bank_statement_extensions/i18n/gu.po index 653807b7d8b..d9f277e4343 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 e8a51f9d5b3..b8d1aef99c9 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/hu.po b/addons/account_bank_statement_extensions/i18n/hu.po index a631c43ade0..bef80f33dac 100644 --- a/addons/account_bank_statement_extensions/i18n/hu.po +++ b/addons/account_bank_statement_extensions/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-05-06 05:40+0000\n" -"X-Generator: Launchpad (build 16598)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 b6a32420ecf..97b69c74a87 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 114cf379dbf..96c273fd136 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 55d719d004b..4b0eda739d0 100644 --- a/addons/account_bank_statement_extensions/i18n/mk.po +++ b/addons/account_bank_statement_extensions/i18n/mk.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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 +88,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 +99,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 +150,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 +160,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 +191,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 +248,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 +278,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 +304,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 +362,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_bank_statement_extensions/i18n/mn.po b/addons/account_bank_statement_extensions/i18n/mn.po index 03f11d2dba9..b6a5ccb8b05 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 @@ -158,7 +158,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 diff --git a/addons/account_bank_statement_extensions/i18n/nb.po b/addons/account_bank_statement_extensions/i18n/nb.po index b09f1cbbc63..c23603d941d 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 a2afd2fcde3..8c40b81bd99 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 26ee9631791..1878f889e97 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 375d1a537b3..8ef0ead7caf 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 c80230e0fe6..7a92ce61c2e 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 e82c0c757d0..c88e5dc142a 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 diff --git a/addons/account_bank_statement_extensions/i18n/ru.po b/addons/account_bank_statement_extensions/i18n/ru.po index 61b054e7563..36b3c98d2a9 100644 --- a/addons/account_bank_statement_extensions/i18n/ru.po +++ b/addons/account_bank_statement_extensions/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-08-06 04:47+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 40c5983d1ed..d51fc5469a4 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 a04c56e8bab..2a773038da2 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 fef21e53a8a..748c0f6c30d 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 c2f9ad07f4c..0197b40976f 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_bank_statement_extensions #: help:account.bank.statement.line.global,name:0 @@ -32,7 +32,7 @@ msgstr "Onaylandı" #: view:account.bank.statement:0 #: view:account.bank.statement.line:0 msgid "Glob. Id" -msgstr "Glob. Id" +msgstr "Gen. Id" #. module: account_bank_statement_extensions #: selection:account.bank.statement.line.global,type:0 @@ -64,7 +64,7 @@ msgstr "Değer Tarihi" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Group By..." -msgstr "Grupla..." +msgstr "Gruplandır..." #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -75,14 +75,14 @@ msgstr "Taslak" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Statement" -msgstr "Ekstre" +msgstr "Hesap özeti" #. 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 "Seçili ekstre kalemlerini onayla" +msgstr "Seçili hesap özeti kalemlerini onayla" #. module: account_bank_statement_extensions #: report:bank.statement.balance.report:0 @@ -93,7 +93,7 @@ msgstr "Banka Durumu Raporu" #. module: account_bank_statement_extensions #: view:cancel.statement.line:0 msgid "Cancel Lines" -msgstr "kalemleri İptal et" +msgstr "Kalemleri İptal et" #. module: account_bank_statement_extensions #: view:account.bank.statement.line.global:0 @@ -113,8 +113,8 @@ msgid "" "Delete operation not allowed. Please go to the associated bank " "statement in order to delete and/or modify bank statement line." msgstr "" -"Silme işlemine izin verilmemiş. Banka ekstre kalemini silmek/değiştirmek " -"için lütfen ilgili banka ekstresini açın." +"Silme işlemine izin verilmez. Banka hesap özeti kalemini silmek/değiştirmek " +"için lütfen ilgili banka hesap özetini açın." #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 @@ -124,12 +124,12 @@ msgstr "ya da" #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 msgid "Confirm Lines" -msgstr "kalemleri Onayla" +msgstr "Kalemleri Onayla" #. module: account_bank_statement_extensions #: view:account.bank.statement.line.global:0 msgid "Transactions" -msgstr "Hareketler" +msgstr "İşlemler" #. module: account_bank_statement_extensions #: field:account.bank.statement.line.global,type:0 @@ -145,17 +145,17 @@ msgstr "Günlük" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Confirmed Statement Lines." -msgstr "Onaylanmış ekstre kalemleri." +msgstr "Onaylanmış Hesap Özeti Kalemleri." #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Credit Transactions." -msgstr "Alacak hareketleri." +msgstr "Alacak İşlemleri." #. 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 "Seçili ekstre kalemlerini iptal et." +msgstr "Seçili hesap özeti kalemlerini iptal et." #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_number:0 @@ -176,28 +176,28 @@ msgstr "Tarih" #: view:account.bank.statement.line:0 #: field:account.bank.statement.line,globalisation_amount:0 msgid "Glob. Amount" -msgstr "Glob. Tutar" +msgstr "Gen. Tutar" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Debit Transactions." -msgstr "Borç hareketleri." +msgstr "Borç İşlemleri." #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Extended Filters..." -msgstr "Gelişmiş Filtreler..." +msgstr "Genişletişmiş Süzgeçler..." #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 msgid "Confirmed lines cannot be changed anymore." -msgstr "Onaylı kalemleri artık değiştirilemez." +msgstr "Onaylı kalemler artık değiştirilemez." #. module: account_bank_statement_extensions #: view:cancel.statement.line:0 msgid "Are you sure you want to cancel the selected Bank Statement lines ?" msgstr "" -"Seçili Banka ekstre kalemlerini iptal etmek istediğinizden emin misiniz?" +"Seçili Banka Hesap Özeti kalemlerini iptal etmek istediğinizden emin misiniz?" #. module: account_bank_statement_extensions #: report:bank.statement.balance.report:0 @@ -227,7 +227,7 @@ msgstr "El ile" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Bank Transaction" -msgstr "Banka hareketleri" +msgstr "Banka İşlemleri" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -242,7 +242,7 @@ msgstr "Tutar" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Fin.Account" -msgstr "Finans Hesabı" +msgstr "Fin.Hesabı" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,counterparty_currency:0 @@ -262,13 +262,13 @@ msgstr "Alt Kodlar" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Search Bank Transactions" -msgstr "Banka hareketleri ara" +msgstr "Banka İşlemi Ara" #. module: account_bank_statement_extensions #: view:confirm.statement.line:0 msgid "Are you sure you want to confirm the selected Bank Statement lines ?" msgstr "" -"Seçili Banka ekstre kalemlerini onaylamak istediğinizden emin misiniz?" +"Seçili Banka Hesap Özeti kalemlerini onaylamak istediğinizden emin misiniz?" #. module: account_bank_statement_extensions #: help:account.bank.statement.line,globalisation_id:0 @@ -276,22 +276,22 @@ msgid "" "Code to identify transactions belonging to the same globalisation level " "within a batch payment" msgstr "" -"Bir toplu ödemede aynı küreselleşme seviyesine ait işlemlerin tanımlama Kodu" +"Bir toplu ödemede aynı genelleştirme seviyesine ait işlemlerin tanımlama Kodu" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Draft Statement Lines." -msgstr "Taslak ekstre kalemleri" +msgstr "Taslak Hesap Özeti kalemleri" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Glob. Am." -msgstr "Glob. Am." +msgstr "Gen. Tut." #. module: account_bank_statement_extensions #: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement_line msgid "Bank Statement Line" -msgstr "Banka ekstre kalemi" +msgstr "Banka Hesap Özeti Kalemi" #. module: account_bank_statement_extensions #: field:account.bank.statement.line.global,code:0 @@ -311,12 +311,12 @@ msgstr "Banka Hesapları" #. module: account_bank_statement_extensions #: model:ir.model,name:account_bank_statement_extensions.model_account_bank_statement msgid "Bank Statement" -msgstr "Banka ekstresi" +msgstr "Banka Hesap Özeti" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Statement Line" -msgstr "Hesap Özeti Satırı" +msgstr "Hesap Özeti Kalemi" #. module: account_bank_statement_extensions #: sql_constraint:account.bank.statement.line.global:0 @@ -328,7 +328,7 @@ msgstr "Kod eşsiz olamlı!" #: 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 "Banka ekstre kalemleri" +msgstr "Banka Hesap Özeti Kalemleri" #. module: account_bank_statement_extensions #: code:addons/account_bank_statement_extensions/account_bank_statement.py:129 @@ -349,7 +349,7 @@ msgstr "İptal" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 msgid "Statement Lines" -msgstr "Ekstre kalemleri" +msgstr "Hesap Özeti Kalemleri" #. module: account_bank_statement_extensions #: view:account.bank.statement.line:0 @@ -359,7 +359,7 @@ msgstr "Toplam Tutar" #. module: account_bank_statement_extensions #: field:account.bank.statement.line,globalisation_id:0 msgid "Globalisation ID" -msgstr "Küreselleşme ID" +msgstr "Genelleştirme ID" #~ msgid "The RIB and/or IBAN is not valid" #~ msgstr "RIB ve/veya IBAN geçerli değil" diff --git a/addons/account_bank_statement_extensions/i18n/zh_CN.po b/addons/account_bank_statement_extensions/i18n/zh_CN.po index 25f27524ef0..91ca043e85e 100644 --- a/addons/account_bank_statement_extensions/i18n/zh_CN.po +++ b/addons/account_bank_statement_extensions/i18n/zh_CN.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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 @@ -204,7 +204,7 @@ msgstr "名称" #. module: account_bank_statement_extensions #: field:account.bank.statement.line.global,name:0 msgid "OBI" -msgstr "" +msgstr "OBI" #. module: account_bank_statement_extensions #: selection:account.bank.statement.line.global,type:0 diff --git a/addons/account_bank_statement_extensions/i18n/zh_TW.po b/addons/account_bank_statement_extensions/i18n/zh_TW.po index 4ff26f2a0f6..6ae74aaaef4 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 6a24ab59302..1d98711f25f 100644 --- a/addons/account_budget/i18n/ar.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 9430f7e7345..689fcf0e3c0 100644 --- a/addons/account_budget/i18n/bg.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 6f0ec313295..dbefa5ab3d7 100644 --- a/addons/account_budget/i18n/bs.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 bef64019461..91e02a21b0e 100644 --- a/addons/account_budget/i18n/ca.po +++ b/addons/account_budget/i18n/ca.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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 4d9ab187067..f12fe8dc1bb 100644 --- a/addons/account_budget/i18n/cs.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 ffb8e6294da..8584bd180e2 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 67384f36a6b..ada2299fc9b 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 30e9b2c0e73..e013be34e39 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 95e99e402c9..a085dd08333 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 913659239d2..bfb7131b9b6 100644 --- a/addons/account_budget/i18n/es.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 669eb086715..f6022b04a46 100644 --- a/addons/account_budget/i18n/es_AR.po +++ b/addons/account_budget/i18n/es_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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 7f7e9d0db93..480330ab4f1 100644 --- a/addons/account_budget/i18n/es_CR.po +++ b/addons/account_budget/i18n/es_CR.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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: account_budget diff --git a/addons/account_budget/i18n/es_EC.po b/addons/account_budget/i18n/es_EC.po index 50c978dbb21..2f6405abc2a 100644 --- a/addons/account_budget/i18n/es_EC.po +++ b/addons/account_budget/i18n/es_EC.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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 0152eabae9c..f4c4a082d12 100644 --- a/addons/account_budget/i18n/es_MX.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 850daae6e03..1cae599aca5 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 7e8ff9fe09d..bfa11a9e591 100644 --- a/addons/account_budget/i18n/et.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 bd6e905a476..bbb1902fcf5 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 46753523eff..3adc6f34387 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_budget #: view:account.budget.post:0 diff --git a/addons/account_budget/i18n/fr.po b/addons/account_budget/i18n/fr.po index 1544460d3fd..139da66d4e7 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -23,7 +23,7 @@ msgstr "" #: view:account.budget.crossvered.summary.report:0 #: view:account.budget.report:0 msgid "Select Dates Period" -msgstr "Sélectionnez la Période de Date" +msgstr "Sélectionnez la période" #. module: account_budget #: field:crossovered.budget,creating_user_id:0 @@ -39,7 +39,7 @@ msgstr "Confirmé" #: model:ir.actions.act_window,name:account_budget.open_budget_post_form #: model:ir.ui.menu,name:account_budget.menu_budget_post_form msgid "Budgetary Positions" -msgstr "Positions budgétaires" +msgstr "Postes budgétaires" #. module: account_budget #: report:account.budget:0 @@ -64,7 +64,7 @@ msgstr "Imprimer un résumé" #. module: account_budget #: field:crossovered.budget.lines,paid_date:0 msgid "Paid Date" -msgstr "Date de Paiement" +msgstr "Date de paiement" #. module: account_budget #: field:account.budget.analytic,date_to:0 @@ -90,7 +90,7 @@ msgstr "à" #: model:ir.actions.act_window,name:account_budget.action_account_budget_analytic #: model:ir.actions.act_window,name:account_budget.action_account_budget_crossvered_report msgid "Print Budgets" -msgstr "Imprimer les Budgets" +msgstr "Imprimer les budgets" #. module: account_budget #: report:account.budget:0 @@ -121,7 +121,7 @@ msgstr "État" #: code:addons/account_budget/account_budget.py:119 #, python-format msgid "The Budget '%s' has no accounts!" -msgstr "Le budget '%s' n'a pas de compte!" +msgstr "Le budget \"%s\" n'a pas de compte !" #. module: account_budget #: report:account.budget:0 @@ -187,7 +187,7 @@ msgstr "Total réel" #: view:crossovered.budget:0 #: field:crossovered.budget.lines,practical_amount:0 msgid "Practical Amount" -msgstr "Montant en Pratique" +msgstr "Montant réel" #. module: account_budget #: field:crossovered.budget,date_to:0 @@ -199,7 +199,7 @@ msgstr "Date de fin" #: 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 "Rapport de compte budgétaire pour le compte analytique" +msgstr "Rapport de budget pour le compte analytique" #. module: account_budget #: view:account.analytic.account:0 @@ -215,7 +215,7 @@ msgstr "Nom" #. module: account_budget #: model:ir.model,name:account_budget.model_crossovered_budget_lines msgid "Budget Line" -msgstr "Ligne budgétaire" +msgstr "Ligne de budget" #. module: account_budget #: report:account.budget:0 @@ -263,7 +263,7 @@ msgstr "Budgets" #. module: account_budget #: view:account.budget.crossvered.summary.report:0 msgid "This wizard is used to print summary of budgets" -msgstr "Cet assistant est utilisé pour imprimer un résumé des budgets" +msgstr "Cet assistant sert à imprimer un résumé des budgets" #. module: account_budget #: selection:crossovered.budget,state:0 @@ -285,7 +285,7 @@ msgstr "À approuver" #: field:crossovered.budget.lines,general_budget_id:0 #: model:ir.model,name:account_budget.model_account_budget_post msgid "Budgetary Position" -msgstr "Position budgétaire" +msgstr "Poste budgétaire" #. module: account_budget #: field:account.budget.analytic,date_from:0 @@ -325,7 +325,7 @@ msgstr "Imprimer" #: view:crossovered.budget:0 #: field:crossovered.budget.lines,theoritical_amount:0 msgid "Theoretical Amount" -msgstr "Montant Théorique" +msgstr "Montant théorique" #. module: account_budget #: view:account.budget.analytic:0 @@ -339,7 +339,7 @@ msgstr "ou" #: field:crossovered.budget.lines,analytic_account_id:0 #: model:ir.model,name:account_budget.model_account_analytic_account msgid "Analytic Account" -msgstr "Compte Analytique" +msgstr "Compte analytique" #. module: account_budget #: report:account.budget:0 @@ -412,7 +412,7 @@ msgstr "Comptes" #: 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 "Lignes de Budget" +msgstr "Lignes de budget" #. 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 dcb96e5f7f7..edf87c005df 100644 --- a/addons/account_budget/i18n/gl.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 917995592a5..f898e134004 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 48c9508ef4b..ed719c6fc29 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 3dc5c2cfbb4..7e8b04e2cfe 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 603ebb577aa..241fb76a8dd 100644 --- a/addons/account_budget/i18n/hr.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 0497b9bc47b..c5da0e9180d 100644 --- a/addons/account_budget/i18n/hu.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -367,6 +367,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" A költségvetés az a vállalata bevételeinek és/vagy " +"kiadásainak egy\n" +" jövőbeni időszakra vetített előrejelzése. A költségvetést " +"egyes pénzügyi\n" +" számlák és vagy elemző számlák határozzák meg (melyek " +"kifejezhetnek\n" +" projekteket, osztályokat, termék kategóriákat, stb.)\n" +"

\n" +" Annak nyomon követésével, hogy hová folyik a pénze, kevésbé\n" +" tud túlköltekezni, és könnyeben elérheti a pénzügyi\n" +" céljait. A költségvetés részletes előrejelzése az elemző " +"könyvelési\n" +" számlánkénti elvárt bevételével és a megadott időszakban " +"valóban\n" +" megvalósult bevételeken alapuló elemzések felügyelése.\n" +"

\n" +" " #. module: account_budget #: report:account.budget:0 diff --git a/addons/account_budget/i18n/id.po b/addons/account_budget/i18n/id.po index e5baec19618..01ced694be9 100644 --- a/addons/account_budget/i18n/id.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 403c58648e6..2cc73358ab8 100644 --- a/addons/account_budget/i18n/it.po +++ b/addons/account_budget/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-14 21:11+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 4dd1ba0298f..d48832fab4c 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-07-31 05:16+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 8a8a7ff3a14..45498556057 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 5c761030d08..f812c0d135e 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 dba52c798f7..0a4095cda07 100644 --- a/addons/account_budget/i18n/lt.po +++ b/addons/account_budget/i18n/lt.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 16:01+0000\n" -"Last-Translator: Andrius Preimantas \n" +"Last-Translator: Andrius Preimantas @ hbee \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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 ec7b886a270..156f0129095 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 3eabc04177e..aa1f3e3bb35 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -59,7 +59,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 @@ -199,7 +199,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 @@ -339,7 +339,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 #: report:account.budget:0 @@ -376,9 +376,8 @@ msgstr "" " оддели, категории на производи итн.)\n" "

\n" " Со следењето на вашите пари, помала е веројатноста да " -"преплатите\n" -" и поголема да ги постигнете финансисиките цели. Предвидете " -"го\n" +"потрошите повеќе и поголема да ги постигнете финансиските цели. " +"Предвидете го\n" " буџетот со поголема деталност околу приходите за аналитичка\n" " сметка и следење на еволуцијата врз база на вистинските " "остварувања\n" @@ -396,7 +395,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 @@ -410,7 +409,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_budget/i18n/mn.po b/addons/account_budget/i18n/mn.po index 327f03a76ed..31f2fe5012e 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -39,7 +39,7 @@ msgstr "Батлагдсан" #: model:ir.actions.act_window,name:account_budget.open_budget_post_form #: model:ir.ui.menu,name:account_budget.menu_budget_post_form msgid "Budgetary Positions" -msgstr "Төсөв төлөвлөлт" +msgstr "Төсвийн чиглэл" #. module: account_budget #: report:account.budget:0 @@ -285,7 +285,7 @@ msgstr "Батлах" #: field:crossovered.budget.lines,general_budget_id:0 #: model:ir.model,name:account_budget.model_account_budget_post msgid "Budgetary Position" -msgstr "Төсөв төлөвлөлт" +msgstr "Төсвийн чиглэл" #. module: account_budget #: field:account.budget.analytic,date_from:0 diff --git a/addons/account_budget/i18n/nb.po b/addons/account_budget/i18n/nb.po index ddbd48d31c8..6c0ecabe8b3 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 6bfe13b47f2..998ba775ef4 100644 --- a/addons/account_budget/i18n/nl.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -22,7 +22,7 @@ msgstr "" #: view:account.budget.crossvered.summary.report:0 #: view:account.budget.report:0 msgid "Select Dates Period" -msgstr "Kies datums periode" +msgstr "Kies datumperiode" #. module: account_budget #: field:crossovered.budget,creating_user_id:0 @@ -38,7 +38,7 @@ msgstr "Bevestigd" #: model:ir.actions.act_window,name:account_budget.open_budget_post_form #: model:ir.ui.menu,name:account_budget.menu_budget_post_form msgid "Budgetary Positions" -msgstr "Budgettaire posities" +msgstr "Budgetposten" #. module: account_budget #: report:account.budget:0 @@ -104,7 +104,7 @@ msgstr "Budget kruisanalyse" #. module: account_budget #: selection:crossovered.budget,state:0 msgid "Validated" -msgstr "Gevalideerd" +msgstr "Bevestigd" #. module: account_budget #: field:crossovered.budget.lines,percentage:0 @@ -153,7 +153,7 @@ msgstr "naar" #. module: account_budget #: view:crossovered.budget:0 msgid "Reset to Draft" -msgstr "Terugzetten naar Concept" +msgstr "Terugzetten naar concept" #. module: account_budget #: view:account.budget.post:0 @@ -284,7 +284,7 @@ msgstr "Nog goedkeuren" #: field:crossovered.budget.lines,general_budget_id:0 #: model:ir.model,name:account_budget.model_account_budget_post msgid "Budgetary Position" -msgstr "Budgettaire positie" +msgstr "Budgetposten" #. module: account_budget #: field:account.budget.analytic,date_from:0 diff --git a/addons/account_budget/i18n/nl_BE.po b/addons/account_budget/i18n/nl_BE.po index ff1ba274fdd..77865e1651c 100644 --- a/addons/account_budget/i18n/nl_BE.po +++ b/addons/account_budget/i18n/nl_BE.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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 027df686fb2..1a384fa8be0 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 a5b8841f8db..177983dac15 100644 --- a/addons/account_budget/i18n/pl.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -38,7 +38,7 @@ msgstr "Potwierdzone" #: model:ir.actions.act_window,name:account_budget.open_budget_post_form #: model:ir.ui.menu,name:account_budget.menu_budget_post_form msgid "Budgetary Positions" -msgstr "Pozycje budżetowe" +msgstr "Składniki budżetowe" #. module: account_budget #: report:account.budget:0 @@ -284,7 +284,7 @@ msgstr "Do aprobaty" #: field:crossovered.budget.lines,general_budget_id:0 #: model:ir.model,name:account_budget.model_account_budget_post msgid "Budgetary Position" -msgstr "Pozycja budżetu" +msgstr "Składnik budżetu" #. module: account_budget #: field:account.budget.analytic,date_from:0 diff --git a/addons/account_budget/i18n/pt.po b/addons/account_budget/i18n/pt.po index 1423558c25c..cbbc79dd57d 100644 --- a/addons/account_budget/i18n/pt.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 38779fd690a..184c9a62c38 100644 --- a/addons/account_budget/i18n/pt_BR.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -451,6 +451,10 @@ msgstr "Orçamentos Provisórios" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "Invalido XML para Arquitetura da View" +#, python-format +#~ msgid "Insufficient Data!" +#~ msgstr "Dados insuficientes" + #~ msgid "Dotations" #~ msgstr "Dotações" @@ -475,6 +479,12 @@ msgstr "Orçamentos Provisórios" #~ msgid "A/c No." #~ msgstr "No.Cta." +#, python-format +#~ msgid "No Dotations or Master Budget Expenses Found on Budget %s!" +#~ msgstr "" +#~ "Não encontrada a Dotação ou o Orçamento Master de Despesas para o Orçamento " +#~ "%s!" + #~ msgid "Period Budget" #~ msgstr "Orçamento do Período" diff --git a/addons/account_budget/i18n/ro.po b/addons/account_budget/i18n/ro.po index 2042daed84d..08d483eb9a9 100644 --- a/addons/account_budget/i18n/ro.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 387402a0e3b..c7c2e777569 100644 --- a/addons/account_budget/i18n/ru.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_budget #: view:account.budget.analytic:0 @@ -120,7 +120,7 @@ msgstr "Состояние" #: code:addons/account_budget/account_budget.py:119 #, python-format msgid "The Budget '%s' has no accounts!" -msgstr "" +msgstr "Бюджет '%s' не имеет счетов !" #. module: account_budget #: report:account.budget:0 @@ -229,7 +229,7 @@ msgstr "Бюджет" #. module: account_budget #: view:crossovered.budget:0 msgid "To Approve Budgets" -msgstr "" +msgstr "Утвердить бюджет" #. module: account_budget #: view:crossovered.budget:0 diff --git a/addons/account_budget/i18n/sl.po b/addons/account_budget/i18n/sl.po index 402b6e31efe..64c56a64eba 100644 --- a/addons/account_budget/i18n/sl.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 86f3e1ddbf4..cdde4a50cba 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 4acf2f20ba5..723be4d2413 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 941a411ed7b..aa4c6507629 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 fb3bf7c23df..f58e50ad59a 100644 --- a/addons/account_budget/i18n/sv.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 7874048fc92..593b2a77657 100644 --- a/addons/account_budget/i18n/tlh.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 466102b6e1a..695e23c369a 100644 --- a/addons/account_budget/i18n/tr.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_budget #: view:account.budget.analytic:0 diff --git a/addons/account_budget/i18n/uk.po b/addons/account_budget/i18n/uk.po index d78be638fd4..7d2cde754b3 100644 --- a/addons/account_budget/i18n/uk.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 1a063539696..e0ba302560d 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 6bbb0ca8f29..c3bb9f8b943 100644 --- a/addons/account_budget/i18n/zh_CN.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 61dfbe1cb60..d5396cc4f8b 100644 --- a/addons/account_budget/i18n/zh_TW.po +++ b/addons/account_budget/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 00e62f39e63..4b6f75247eb 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 747f223c263..98a742f41e4 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 61a5e146113..19fe0fe8a6f 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 26a04eac044..0852c56d0c5 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 1bb948499b0..3a5a2f4c4ef 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 8212c35d466..e602cb2e004 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 261b2b5262d..84f9e101a26 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 79872b27954..058aece2d34 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 36d930f4d26..dbcd046af6e 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 67dcbfd9d02..93c50af4894 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 4394fc7d531..f8528f62e15 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 75da00b10c2..5e3730fc537 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 9e607f50651..af0faa28dcf 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 27d3422ab18..729f95fb556 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: account_cancel diff --git a/addons/account_cancel/i18n/es_EC.po b/addons/account_cancel/i18n/es_EC.po index dfcc068a4f0..f05798e2f5f 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 a813009db01..1268882a2b2 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 15f8bfcebe1..61ac5703dc6 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 7f54fcf4afe..492ecd84c37 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 ed9ed08868d..79dac8f27e4 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 a5ddd548229..b761f9227f0 100644 --- a/addons/account_cancel/i18n/fr.po +++ b/addons/account_cancel/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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 80770ece238..918900556e2 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 0c608986421..bd57774b05b 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 1c964ed4ae6..a0ed2e8f6db 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 c852da9ac36..407a499a4c3 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 bab8304030f..ff1963d697b 100644 --- a/addons/account_cancel/i18n/hu.po +++ b/addons/account_cancel/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-04-05 05:37+0000\n" -"X-Generator: Launchpad (build 16550)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 5f2f04dac00..4300b7b50c3 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 49669baeda6..afc413bae2a 100644 --- a/addons/account_cancel/i18n/it.po +++ b/addons/account_cancel/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 19:46+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 2633c1fe104..3da2b068a4e 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 0fada8b6012..c5e97430c66 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 51f38c5d641..e2f650fe55a 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 751603fc823..15a8de3772a 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 816cd55496b..64b6880a2fa 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 565258605c2..a6a92cfa12c 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 951542fbb84..32fbd27476d 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 90bfd87ffbf..ee27c917ee8 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 c1873b0b4fd..fc09e6818e9 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 279eb922a62..0f57bd50bd4 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 75402c75648..253b0773b56 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 781b2bc5610..e70e76afc5b 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 20603f3eaa8..45dcc563b60 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 1ef6492edfe..33001fd036e 100644 --- a/addons/account_cancel/i18n/pt_BR.po +++ b/addons/account_cancel/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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 6adf2791aca..88669dc959b 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 77485b73c1a..35dfc78194a 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 748f0a3053c..3a124ab14de 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 04b7e213c5d..02ffabca0c4 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 1dd65353a80..8b7ed72d46c 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 804e48da484..284360f7f35 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 f3958c9fce3..c31df2e840a 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 6fe3b01cf78..c6a498d227c 100644 --- a/addons/account_cancel/i18n/ta.po +++ b/addons/account_cancel/i18n/ta.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2010-09-01 06:55+0000\n" -"Last-Translator: ஆமாச்சு \n" +"Last-Translator: ஆமாச்சு \n" "Language-Team: Tamil \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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/th.po b/addons/account_cancel/i18n/th.po index eabcc0814dd..a8f53912e2e 100644 --- a/addons/account_cancel/i18n/th.po +++ b/addons/account_cancel/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-05-16 05:12+0000\n" -"X-Generator: Launchpad (build 16626)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 8be33609c0f..92e05a3e10c 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_cancel #: view:account.invoice:0 diff --git a/addons/account_cancel/i18n/uk.po b/addons/account_cancel/i18n/uk.po index 5fbae627883..8f77b279738 100644 --- a/addons/account_cancel/i18n/uk.po +++ b/addons/account_cancel/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-08-02 05:38+0000\n" -"X-Generator: Launchpad (build 16718)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 89a7feb7942..569aa149692 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-07-01 05:14+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 5a62e356c38..272064eb554 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 fe3176caa13..63012230d52 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 e791c7c54c9..561012fdf33 100644 --- a/addons/account_chart/i18n/ar.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 d31c966ebe2..1f0667a73ce 100644 --- a/addons/account_chart/i18n/bg.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 0d92a6556c5..49447e1e166 100644 --- a/addons/account_chart/i18n/bs.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information @@ -24,4 +24,4 @@ msgstr "Ukloni minimalni kontni plan" #. module: account_chart #: model:ir.module.module,shortdesc:account_chart.module_meta_information msgid "Charts of Accounts" -msgstr "" +msgstr "Kontni plan" diff --git a/addons/account_chart/i18n/ca.po b/addons/account_chart/i18n/ca.po index 87fed8c266b..9e3bec17d72 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 7063d7233dc..1ec9c94394a 100644 --- a/addons/account_chart/i18n/cs.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 6bffa78de64..8ab5ddf2afc 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 a46cc4d3af7..bcbc4a8bf95 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 85aa787ffc6..1880dcd04ef 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 bd490568e83..81fbf9140f7 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 66d1cc7fc4b..7f0b8a24a9c 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 6061ea372b5..6dae23f4c76 100644 --- a/addons/account_chart/i18n/es_AR.po +++ b/addons/account_chart/i18n/es_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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 f119ba9fae5..5ac42ceef2f 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 45ef18bffbd..27f0f6e325f 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: account_chart diff --git a/addons/account_chart/i18n/es_EC.po b/addons/account_chart/i18n/es_EC.po index 06fc88f3a71..6f02a7819e2 100644 --- a/addons/account_chart/i18n/es_EC.po +++ b/addons/account_chart/i18n/es_EC.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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 8035b8a1cdf..bf2b50c9ea7 100644 --- a/addons/account_chart/i18n/es_MX.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 f8c2346b813..a1db3a456ec 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 a50100e4df6..8720e1da30f 100644 --- a/addons/account_chart/i18n/et.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 a7eed70c0a1..9e9548a27c1 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 895b60033d0..4114bd40e05 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 b08fb20735a..ce963693a7c 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 198d899f915..015a2279901 100644 --- a/addons/account_chart/i18n/fr.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 43ae6dc4345..58dc7fcb3d8 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 d76d1e45c38..5188037fd64 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 ce2a91d06a9..a9cbc7c13ae 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 3d359127db6..2a31e175a15 100644 --- a/addons/account_chart/i18n/hr.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 20f62de045e..551cf4daeda 100644 --- a/addons/account_chart/i18n/hu.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 7dec16c02ba..10508c5dd92 100644 --- a/addons/account_chart/i18n/id.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 e331dd18749..68dd7841863 100644 --- a/addons/account_chart/i18n/it.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 61497f75b7f..81eea5ca7c3 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 2456e6b2876..2af25a36616 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 33bba394f7c..4781417ad69 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 8467e209195..e4e52a56902 100644 --- a/addons/account_chart/i18n/lt.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 ecae603551f..6985c68a819 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 6fb26264a19..ff0a96f99e2 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 bc9ffdeb3a8..a3219999907 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 9e7502cfd77..f76261f2759 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 b9ceb02b2bf..2303a29ba7a 100644 --- a/addons/account_chart/i18n/nl.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 2d3cfa37ca0..3d29c7f7602 100644 --- a/addons/account_chart/i18n/nl_BE.po +++ b/addons/account_chart/i18n/nl_BE.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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 8f498048c58..3a2aa0c7d59 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 dffdbc5f3c3..8f553e97172 100644 --- a/addons/account_chart/i18n/pl.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 24498e6df82..3832e7f99f7 100644 --- a/addons/account_chart/i18n/pt.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 d8cbb502ad9..244c5df2e76 100644 --- a/addons/account_chart/i18n/pt_BR.po +++ b/addons/account_chart/i18n/pt_BR.po @@ -13,15 +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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_chart #: model:ir.module.module,description:account_chart.module_meta_information msgid "Remove minimal account chart" -msgstr "Remover plano de contas mínimo" +msgstr "Retirar plano de contas mínimo" #. module: account_chart #: model:ir.module.module,shortdesc:account_chart.module_meta_information msgid "Charts of Accounts" -msgstr "Plano de Contas" +msgstr "Planos de Contas" diff --git a/addons/account_chart/i18n/ro.po b/addons/account_chart/i18n/ro.po index c1b3a98ad68..616553030ca 100644 --- a/addons/account_chart/i18n/ro.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 0da9f51ea51..4bab2bf8814 100644 --- a/addons/account_chart/i18n/ru.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 8327579a5e5..1cac32711a0 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 82aa063fffe..4b603e0dc60 100644 --- a/addons/account_chart/i18n/sl.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 20a171b4c3c..9bab7d45575 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 53bb599db48..0a810b08601 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 ee621b57108..149e88b3e5a 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 9286a44f81f..55170fe157c 100644 --- a/addons/account_chart/i18n/sv.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 247ed3802d5..cc2c790a03c 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 94df384df0c..03893111695 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 91a10446b81..4a66d3b4532 100644 --- a/addons/account_chart/i18n/tr.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 4d5b6f68d33..026a19f3ed5 100644 --- a/addons/account_chart/i18n/uk.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 89bdf916f57..e38fedd1150 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 42fc8696005..3945e532211 100644 --- a/addons/account_chart/i18n/zh_CN.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 eb1c304faca..9976ebe1bff 100644 --- a/addons/account_chart/i18n/zh_TW.po +++ b/addons/account_chart/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 c07d586e1ba..3e5c1eff114 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/bs.po b/addons/account_check_writing/i18n/bs.po index 252798b016f..83e7b375f66 100644 --- a/addons/account_check_writing/i18n/bs.po +++ b/addons/account_check_writing/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-08-09 05:06+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 147c35bf4a9..fe0e6447d87 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 d9b678dd237..3cb5e9f81ed 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 5cfbd89687c..8db658d1d7d 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 20d0cca84c9..4406368f483 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 556abae21e4..c698e8091a2 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 c3b827d8f42..67725a419ce 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 e0499e30384..97f2ba744f6 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 d719f4da53e..e26be68cb62 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 de23aea7b9f..5ddd01f3364 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 e4428d2c96e..1b0f56695f8 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 b674dbef542..a341054ea5f 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 diff --git a/addons/account_check_writing/i18n/hu.po b/addons/account_check_writing/i18n/hu.po index 528cb4fed60..4463f0cfe2f 100644 --- a/addons/account_check_writing/i18n/hu.po +++ b/addons/account_check_writing/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-04-12 05:21+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 11bf5314025..b3cdbf5d7f8 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 f7f77dcb0d7..457f4089ac5 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 ee265e8166b..10157da3c2d 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 @@ -25,7 +25,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 +36,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 +45,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 +132,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 +150,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 +174,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 +201,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_check_writing/i18n/mn.po b/addons/account_check_writing/i18n/mn.po index da122c036b1..4e7151cbdc3 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 cb5806eed37..4e6b170579d 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 a5213eb32d5..3b507434429 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 91a0008610a..cdf4a69f8a2 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 66eacc8e492..7d2f5b6102a 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 462875b29e9..a56376cea86 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 b84ca947f43..bfff7580e5e 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 8e68dd7152a..e006cb4fbd4 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-06-04 05:20+0000\n" -"X-Generator: Launchpad (build 16660)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 e1f991478ef..bd185961175 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 4140b959921..0b0e52faaf8 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 07e53b33448..70e35af9878 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 938610c7a62..6cfc9a409e5 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 @@ -31,7 +31,7 @@ msgstr "Açık Bakiye" #: view:account.check.write:0 #: view:account.voucher:0 msgid "Print Check" -msgstr "Çeki yazdır" +msgstr "Çeki Yazdır" #. module: account_check_writing #: selection:res.company,check_layout:0 @@ -85,13 +85,13 @@ msgstr "Açıklama" #. module: account_check_writing #: model:ir.model,name:account_check_writing.model_account_journal msgid "Journal" -msgstr "Günlük" +msgstr "Yevmiye" #. module: account_check_writing #: model:ir.actions.act_window,name:account_check_writing.action_write_check #: model:ir.ui.menu,name:account_check_writing.menu_action_write_check msgid "Write Checks" -msgstr "Çekleri yaz" +msgstr "Çekleri Yazma" #. module: account_check_writing #: report:account.print.check.bottom:0 @@ -207,12 +207,12 @@ msgstr "Çek Yazdır (Üst)" #: report:account.print.check.middle:0 #: report:account.print.check.top:0 msgid "Check Amount" -msgstr "Çek tutarı" +msgstr "Çek Tutarı" #. module: account_check_writing #: model:ir.model,name:account_check_writing.model_account_voucher msgid "Accounting Voucher" -msgstr "Muhasebe makbuzu" +msgstr "Muhasebe Makbuzu" #. module: account_check_writing #: view:account.check.write:0 diff --git a/addons/account_check_writing/i18n/zh_CN.po b/addons/account_check_writing/i18n/zh_CN.po index 59bd10a21ad..343e245e399 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_check_writing #: selection:res.company,check_layout:0 @@ -56,13 +56,13 @@ msgstr "底部的支票" #. module: account_check_writing #: model:ir.actions.act_window,name:account_check_writing.action_account_check_write msgid "Print Check in Batch" -msgstr "" +msgstr "批量打印支票" #. module: account_check_writing #: code:addons/account_check_writing/wizard/account_check_batch_printing.py:59 #, python-format msgid "One of the printed check already got a number." -msgstr "" +msgstr "打印的支票已经获得一个号码" #. module: account_check_writing #: help:account.journal,allow_check_writing:0 @@ -109,7 +109,7 @@ msgstr "原始金额" #. module: account_check_writing #: field:res.company,check_layout:0 msgid "Check Layout" -msgstr "" +msgstr "支票布局" #. module: account_check_writing #: field:account.voucher,allow_check:0 @@ -180,12 +180,12 @@ msgstr "公司" #: code:addons/account_check_writing/wizard/account_check_batch_printing.py:59 #, python-format msgid "Error!" -msgstr "" +msgstr "错误!" #. module: account_check_writing #: help:account.check.write,check_number:0 msgid "The number of the next check number to be printed." -msgstr "" +msgstr "下个要被打印的支票号码" #. module: account_check_writing #: report:account.print.check.bottom:0 @@ -213,7 +213,7 @@ msgstr "手工凭证" #. module: account_check_writing #: view:account.check.write:0 msgid "or" -msgstr "" +msgstr "或" #. module: account_check_writing #: field:account.voucher,amount_in_word:0 @@ -223,22 +223,22 @@ msgstr "金额大写" #. module: account_check_writing #: model:ir.model,name:account_check_writing.model_account_check_write msgid "Prin Check in Batch" -msgstr "" +msgstr "批量打印支票" #. module: account_check_writing #: view:account.check.write:0 msgid "Cancel" -msgstr "" +msgstr "取消" #. module: account_check_writing #: field:account.check.write,check_number:0 msgid "Next Check Number" -msgstr "" +msgstr "下一个支票号" #. module: account_check_writing #: view:account.check.write:0 msgid "Check" -msgstr "" +msgstr "核对" #~ msgid "" #~ "The check payment form allows you to track the payment you do to your " diff --git a/addons/account_check_writing/i18n/zh_TW.po b/addons/account_check_writing/i18n/zh_TW.po index 300d7b8dfbc..8f6008fab52 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 8ec196555ae..6c53a2300a3 100644 --- a/addons/account_followup/i18n/ar.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "شركة" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "تاريخ الفاتورة" @@ -118,7 +118,7 @@ msgstr "أرسل المتابعات" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "المقدار" @@ -492,7 +492,7 @@ msgid "Follow Ups" msgstr "متابعات" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "لم يتم إرسال الرسالة لأن حقل عنوان الشريك فارغ" @@ -703,7 +703,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -949,7 +949,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "الوصف" diff --git a/addons/account_followup/i18n/bg.po b/addons/account_followup/i18n/bg.po index 2e9427e48f2..7aad87022ca 100644 --- a/addons/account_followup/i18n/bg.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Фирма" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Дата на фактура" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "Следва" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -699,7 +699,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -945,7 +945,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Описание" diff --git a/addons/account_followup/i18n/bs.po b/addons/account_followup/i18n/bs.po index 3f4f1842f5a..8970eee9e0c 100644 --- a/addons/account_followup/i18n/bs.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Poduzeće" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Datum Fakture" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Iznos" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "Opomene" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -701,7 +701,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -947,7 +947,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Opis" diff --git a/addons/account_followup/i18n/ca.po b/addons/account_followup/i18n/ca.po index 07ddebde6c6..e2468171f50 100644 --- a/addons/account_followup/i18n/ca.po +++ b/addons/account_followup/i18n/ca.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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Companyia" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Data factura" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -492,7 +492,7 @@ msgid "Follow Ups" msgstr "Seguiments" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -703,7 +703,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -949,7 +949,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descripció" diff --git a/addons/account_followup/i18n/cs.po b/addons/account_followup/i18n/cs.po index 82e9f49777f..2009a60a2eb 100644 --- a/addons/account_followup/i18n/cs.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -699,7 +699,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -945,7 +945,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "" diff --git a/addons/account_followup/i18n/da.po b/addons/account_followup/i18n/da.po index 023da2bbedb..cad016048e9 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -700,7 +700,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -946,7 +946,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "" diff --git a/addons/account_followup/i18n/de.po b/addons/account_followup/i18n/de.po index 185cbe55448..6ce4d977d3f 100644 --- a/addons/account_followup/i18n/de.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Unternehmen" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Rechnungsdatum" @@ -119,7 +119,7 @@ msgstr "Sende Mahnungen" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Betrag" @@ -595,7 +595,7 @@ msgid "Follow Ups" msgstr "Mahnungen" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "Email wurde aufgrund fehlender Mailadresse nicht gesendet" @@ -865,7 +865,7 @@ msgid "unknown" msgstr "unbekannt" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Druck überfällige Zahlungen" @@ -1166,7 +1166,7 @@ msgstr "Beinhaltet Buchungen aus lfd. Rechtsstreitigkeiten" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Beschreibung" diff --git a/addons/account_followup/i18n/el.po b/addons/account_followup/i18n/el.po index edf3c5d33f1..e0f70a43a19 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Εταιρία" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Ημερομηνία Τιμολογίου" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "Follow Ups" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -702,7 +702,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -948,7 +948,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Περιγραφή" diff --git a/addons/account_followup/i18n/en_GB.po b/addons/account_followup/i18n/en_GB.po index 63a5dcdd945..88177f73057 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Company" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Invoice Date" @@ -119,7 +119,7 @@ msgstr "Send Follow-Ups" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Amount" @@ -590,7 +590,7 @@ msgid "Follow Ups" msgstr "Follow Ups" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "Email not sent because of email address of partner not filled in" @@ -857,7 +857,7 @@ msgid "unknown" msgstr "unknown" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Printed overdue payments report" @@ -1156,7 +1156,7 @@ msgstr "Including journal entries marked as a litigation" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Description" diff --git a/addons/account_followup/i18n/es.po b/addons/account_followup/i18n/es.po index e9ca44add9b..43623c7c4d2 100644 --- a/addons/account_followup/i18n/es.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Compañia" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Fecha factura" @@ -118,7 +118,7 @@ msgstr "Enviar seguimientos" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Importe" @@ -592,7 +592,7 @@ msgid "Follow Ups" msgstr "Seguimientos" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -862,7 +862,7 @@ msgid "unknown" msgstr "desconocido" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Impresión del informe de pagos vencidos" @@ -1163,7 +1163,7 @@ msgstr "Incluyendo asientos marcados como litigio" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descripción" diff --git a/addons/account_followup/i18n/es_AR.po b/addons/account_followup/i18n/es_AR.po index a942289a489..829c6fa6646 100644 --- a/addons/account_followup/i18n/es_AR.po +++ b/addons/account_followup/i18n/es_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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Compañía" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Fecha de factura" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "Seguimientos" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -701,7 +701,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -947,7 +947,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descripción" diff --git a/addons/account_followup/i18n/es_CR.po b/addons/account_followup/i18n/es_CR.po index 464cbed727d..643d471c7f8 100644 --- a/addons/account_followup/i18n/es_CR.po +++ b/addons/account_followup/i18n/es_CR.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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: account_followup @@ -82,7 +82,7 @@ msgstr "Compañía" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Fecha factura" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Monto" @@ -493,7 +493,7 @@ msgid "Follow Ups" msgstr "Seguimientos" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -706,7 +706,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -952,7 +952,7 @@ msgstr "Incluyendo asientos marcados como litigio" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descripción" diff --git a/addons/account_followup/i18n/es_EC.po b/addons/account_followup/i18n/es_EC.po index 45f300a756e..9497c22f3cd 100644 --- a/addons/account_followup/i18n/es_EC.po +++ b/addons/account_followup/i18n/es_EC.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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Compañía" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Fecha factura" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "Seguimientos" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -701,7 +701,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -947,7 +947,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descripción" diff --git a/addons/account_followup/i18n/es_PY.po b/addons/account_followup/i18n/es_PY.po index f05f2f32a9f..95684b96f29 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Compañía" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Fecha de Factura" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -493,7 +493,7 @@ msgid "Follow Ups" msgstr "Seguimientos" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -704,7 +704,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -950,7 +950,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descripción" diff --git a/addons/account_followup/i18n/et.po b/addons/account_followup/i18n/et.po index 28f957f1dd0..6767bb539c5 100644 --- a/addons/account_followup/i18n/et.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Firma" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Arve kuupäev" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -699,7 +699,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -945,7 +945,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Kirjeldus" diff --git a/addons/account_followup/i18n/fa.po b/addons/account_followup/i18n/fa.po index 8c2bcc2a669..f91564341ce 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -700,7 +700,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -946,7 +946,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "" diff --git a/addons/account_followup/i18n/fi.po b/addons/account_followup/i18n/fi.po index efbf58ed7aa..e8f50588d41 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Yritys" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Laskun päiväys" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Määrä" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "Muistutukset" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -700,7 +700,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -946,7 +946,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Kuvaus" diff --git a/addons/account_followup/i18n/fr.po b/addons/account_followup/i18n/fr.po index cb1903631fd..c630376a089 100644 --- a/addons/account_followup/i18n/fr.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Société" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Date de facturation" @@ -118,7 +118,7 @@ msgstr "Envoyer les relances" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Montant" @@ -161,6 +161,24 @@ msgid "" "\n" "Best Regards,\n" msgstr "" +"\n" +"Cher %(partner_name)s,\n" +"\n" +"Nous constatons avec regret que malgré notre précédent rappel, votre compte " +"est toujours débiteur.\n" +"\n" +" Nous vous mettons donc en demeure de nous régler sous huitaine " +"l’intégralité de la somme. Passé ce délai, nous bloquerons votre compte ce " +"qui signifie que vous ne pourrez plus passer de commandes auprès de notre " +"société (articles/services).\n" +"\n" +"Si pour une raison qui nous est inconnue vous ne pouvez régler ces factures, " +"n'hésitez pas à prendre contact avec notre service comptable afin que nous " +"trouvions une solution rapide à ce problème.\n" +"\n" +"Le détail des factures impayées est listé ci-dessous.\n" +"\n" +"Veuillez agréer nos salutations distinguées,\n" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_level0 @@ -198,6 +216,40 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Cher ${object.name},

\n" +"

\n" +" A l'examen de votre compte, nous constatons que sauf erreur ou omission " +"de notre part, nous n'avons toujours pas reçu à ce jour de règlement des " +"factures reprises sur le relevé ci-dessous. Nous vous remercions de bien " +"vouloir régulariser cette situation sous huitaine.\n" +"\n" +"\n" +"Au cas où votre règlement se serait croisé avec la présente, nous vous " +"prions de ne pas en tenir compte. N'hésitez pas à contacter notre service " +"comptable.\n" +"\n" +"

\n" +"
\n" +"Veuillez agréer nos salutations distinguées,\n" +"
\n" +"
\n" +"${user.name}\n" +"\n" +"
\n" +"
\n" +"\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"\n" +"
\n" +" " #. module: account_followup #: view:account_followup.stat.by.partner:0 @@ -293,7 +345,7 @@ msgstr "Échéance la plus en retard" #. module: account_followup #: view:account_followup.stat:0 msgid "Not Litigation" -msgstr "Non contentieux" +msgstr "Pas de litige" #. module: account_followup #: view:account_followup.print:0 @@ -350,6 +402,43 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +" \n" +"

Cher ${object.name},

\n" +"

\n" +" Nous constatons avec regret que malgré notre précédent rappel, votre " +"compte est toujours débiteur.\n" +"Nous vous mettons donc en demeure de nous régler sous huitaine l’intégralité " +"de la somme. Passé ce délai,\n" +"nous bloquerons votre compte ce qui signifie que vous ne pourrez plus passer " +"de commandes\n" +"auprès de notre société (articles/services).\n" +"Si pour une raison qui nous est inconnue vous ne pouvez régler ces factures, " +"n'hésitez pas à prendre contact\n" +"avec notre service comptable afin que nous trouvions une solution rapide à " +"ce problème.\n" +"\n" +"Le détail des factures impayées est listé ci-dessous.\n" +"

\n" +"
\n" +"Veuillez agréer nos salutations distinguées,\n" +" \n" +"
\n" +"
\n" +"${user.name}\n" +" \n" +"
\n" +"
\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"\n" +"
\n" +" " #. module: account_followup #: field:account_followup.stat,debit:0 @@ -495,7 +584,7 @@ msgid "Follow Ups" msgstr "Relances" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "Courriel non envoyé car l'adresse du partenaire n'est pas remplie" @@ -602,6 +691,7 @@ msgstr "" #: view:res.partner:0 msgid "Print overdue payments report independent of follow-up line" msgstr "" +"Imprimer les relances de paiement indépendamment de la ligne de relance" #. module: account_followup #: help:account_followup.print,date:0 @@ -656,6 +746,38 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +" \n" +"

Cher ${object.name},

\n" +"

\n" +" Malgré plusieurs rappels, votre compte est toujours débiteur.\n" +"Nous vous mettons donc en demeure de nous régler sous huitaine l’intégralité " +"de la somme. Passé ce délai,\n" +"nous mettrons en œuvre toutes les démarches légales nécessaires au " +"recouvrement de notre créance sans nouvelle notification.\n" +"J'espère que ces actions ne seront pas nécessaires et vous trouverez le " +"détail des factures impayées ci-dessous.\n" +"Pour toutes questions concernant ce sujet. n'hésitez pas à prendre contact " +"avec notre service comptable.\n" +"

\n" +"
\n" +"Veuillez agréer nos salutations distinguées,\n" +"
\n" +"
\n" +"${user.name}\n" +"
\n" +"
\n" +"\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"\n" +"
\n" +" " #. module: account_followup #: report:account_followup.followup.print:0 @@ -688,6 +810,24 @@ msgid "" "Best Regards,\n" " " msgstr "" +"\n" +"Cher %(partner_name)s,\n" +"\n" +"Malgré plusieurs rappels, votre compte est toujours débiteur.\n" +"\n" +"Nous vous mettons donc en demeure de nous régler sous huitaine l’intégralité " +"de la somme. Passé ce délai,\n" +"nous mettrons en œuvre toutes les démarches légales nécessaires au " +"recouvrement de notre créance sans nouvelle notification.\n" +"\n" +"J'espère que ces actions ne seront pas nécessaires et vous trouverez le " +"détail des factures impayées ci-dessous.\n" +"\n" +"Pour toutes questions concernant ce sujet. n'hésitez pas à prendre contact " +"avec notre service comptable.\n" +"\n" +"Veuillez agréer nos salutations distinguées,\n" +" " #. module: account_followup #: field:res.partner,payment_amount_due:0 @@ -711,7 +851,7 @@ msgid "unknown" msgstr "inconnu" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Imprimer le rapport des retards de paiement" @@ -731,6 +871,10 @@ msgid "" " order to exclude it from the next follow-up " "actions." msgstr "" +"Ci-dessous se trouve l'historique des transactions de ce \n" +" client. Vous pouvez sélectionner \"Aucun " +"suivi\" afin \n" +" de le retirer de la prochaine action de relance." #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:171 @@ -786,6 +930,7 @@ msgid "" "The maximum follow-up level without taking into account the account move " "lines with litigation" msgstr "" +"Le degré maximal de relance sans prendre en compte les écritures en litige" #. module: account_followup #: view:account_followup.stat:0 @@ -824,6 +969,34 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +" \n" +"

Dear ${object.name},

\n" +"

\n" +" A l'examen de votre compte, nous constatons que sauf erreur ou omission " +"de notre part, nous n'avons toujours pas reçu à ce jour de règlement des " +"factures reprises sur le relevé ci-dessous. Nous vous remercions de bien " +"vouloir régulariser cette situation sous huitaine.\n" +"Au cas où votre règlement se serait croisé avec ce courriel, nous vous " +"prions de ne pas en tenir compte. N'hésitez pas à contacter notre service " +"comptable. \n" +"

\n" +"
\n" +"Veuillez agréer nos salutations distinguées,\n" +"
\n" +"
\n" +"${user.name}\n" +"
\n" +"
\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"
\n" +" " #. module: account_followup #: field:account.move.line,result:0 @@ -864,6 +1037,19 @@ msgid "" "\n" "Best Regards,\n" msgstr "" +"\n" +"Cher %(partner_name)s,\n" +"\n" +"A l'examen de votre compte, nous constatons que sauf erreur ou omission de " +"notre part, nous n'avons toujours pas reçu à ce jour de règlement des " +"factures reprises sur le relevé ci-dessous. Nous vous remercions de bien " +"vouloir régulariser cette situation dans les 8 jours.\n" +"\n" +"Au cas où votre règlement se serait croisé avec la présente, nous vous " +"prions de ne pas en tenir compte. N'hésitez pas à contacter notre service " +"comptable.\n" +"\n" +"Veuillez agréer nos salutations distinguées,\n" #. module: account_followup #: field:account_followup.stat,date_move_last:0 @@ -885,7 +1071,7 @@ msgstr "%s partenaire(s) n'a/ont pas de crédit, donc l'action est effacée." #. module: account_followup #: model:ir.actions.report.xml,name:account_followup.account_followup_followup_report msgid "Follow-up Report" -msgstr "" +msgstr "Rapport du suivi des paiements" #. module: account_followup #: view:res.partner:0 @@ -957,7 +1143,7 @@ msgstr "Inclure les écritures marquées comme litigieuses" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Description" @@ -985,7 +1171,7 @@ msgstr "Exercice comptable" #. module: account_followup #: field:res.partner,latest_followup_level_id_without_lit:0 msgid "Latest Follow-up Level without litigation" -msgstr "Dernière relance avant action en justice" +msgstr "Dernier niveau de suivi sans litige" #. module: account_followup #: model:ir.actions.act_window,help:account_followup.action_account_manual_reconcile_receivable @@ -1144,7 +1330,7 @@ msgstr "Réf. Client" #. module: account_followup #: report:account_followup.followup.print:0 msgid "Maturity Date" -msgstr "Date de Maturité" +msgstr "Date d'échéance" #. module: account_followup #: help:account_followup.followup.line,delay:0 diff --git a/addons/account_followup/i18n/gl.po b/addons/account_followup/i18n/gl.po index 257ef062041..e836d13c557 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Compañía" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Data da factura" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -492,7 +492,7 @@ msgid "Follow Ups" msgstr "Seguimentos" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -703,7 +703,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -949,7 +949,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descrición" diff --git a/addons/account_followup/i18n/hr.po b/addons/account_followup/i18n/hr.po index 551ff6be120..0a506049d8d 100644 --- a/addons/account_followup/i18n/hr.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Tvrtka" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Datum računa" @@ -118,7 +118,7 @@ msgstr "Pošalji prateće korake" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Iznos" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "IOS-i" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "Email nije poslan zato što nije pronađena email adresa partnera." @@ -701,7 +701,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -947,7 +947,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Opis" diff --git a/addons/account_followup/i18n/hu.po b/addons/account_followup/i18n/hu.po index e69bb7b38c0..288bb6ceaa2 100644 --- a/addons/account_followup/i18n/hu.po +++ b/addons/account_followup/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-04-05 05:37+0000\n" -"X-Generator: Launchpad (build 16550)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Vállalat" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Számla kelte" @@ -118,7 +118,7 @@ msgstr "Fizetési-emlékezető küldése" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Összeg" @@ -588,7 +588,7 @@ msgid "Follow Ups" msgstr "Fizetési emlékeztetők" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -646,7 +646,7 @@ msgstr "Fizetési-emlékeztető keresése" #. module: account_followup #: view:res.partner:0 msgid "Account Move line" -msgstr "" +msgstr "Könyvelési sor mozgás" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:237 @@ -856,7 +856,7 @@ msgid "unknown" msgstr "ismeretlen" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Lejárt fizetési tételek jelentésének nyomtatása" @@ -1157,7 +1157,7 @@ msgstr "Beleértve a peres megjelölésű jelentés bejegyzéseket" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Megjegyzés" diff --git a/addons/account_followup/i18n/id.po b/addons/account_followup/i18n/id.po index 784d5579875..22345ca6171 100644 --- a/addons/account_followup/i18n/id.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -699,7 +699,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -945,7 +945,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "" diff --git a/addons/account_followup/i18n/it.po b/addons/account_followup/i18n/it.po index 1d7ce3f4db1..04ccb154bd9 100644 --- a/addons/account_followup/i18n/it.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Azienda" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Data Fattura" @@ -118,7 +118,7 @@ msgstr "Invio Solleciti di Pagamento" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Importo" @@ -495,7 +495,7 @@ msgid "Follow Ups" msgstr "Solleciti di Pagamento" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "Email non spedite per mancanza dell'indirizzo email del partner" @@ -736,7 +736,7 @@ msgid "unknown" msgstr "sconosciuto" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Report stampe pagamenti scaduti" @@ -1001,7 +1001,7 @@ msgstr "Incluse le registrazioni marcate come contenzioso" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descrizione" diff --git a/addons/account_followup/i18n/ja.po b/addons/account_followup/i18n/ja.po index 1c716d0b1c8..b72ae6e01ee 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "会社" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "請求日" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "金額" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "フォローアップ" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -700,7 +700,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -946,7 +946,7 @@ msgstr "訴訟としてマークされた仕訳帳エントリーを含みます #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "説明" diff --git a/addons/account_followup/i18n/ko.po b/addons/account_followup/i18n/ko.po index d81f337d074..a4ec1fb3c8b 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "회사" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "인보이스 날짜" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -700,7 +700,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -946,7 +946,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "설명" diff --git a/addons/account_followup/i18n/lt.po b/addons/account_followup/i18n/lt.po index 8653b241ec3..5f4e3113110 100644 --- a/addons/account_followup/i18n/lt.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Įmonė" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -699,7 +699,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -945,7 +945,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Aprašas" diff --git a/addons/account_followup/i18n/mk.po b/addons/account_followup/i18n/mk.po index 8bbd00027a9..b45d64590fe 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Компанија" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Датум на фактура" @@ -105,7 +105,7 @@ msgstr "задоцнети денови, превземи ги следните #. module: account_followup #: view:account_followup.followup.line:0 msgid "Follow-up Steps" -msgstr "" +msgstr "Чекори за проследување" #. module: account_followup #: field:account_followup.print,email_body:0 @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Износ" @@ -130,6 +130,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 @@ -270,7 +272,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 @@ -281,7 +283,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 @@ -296,7 +298,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 @@ -373,6 +375,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 @@ -399,23 +403,23 @@ 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 @@ -435,17 +439,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 @@ -456,7 +460,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 @@ -488,10 +492,10 @@ 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 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -501,7 +505,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 @@ -530,7 +534,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 @@ -545,18 +549,18 @@ msgstr "Испрати писма и е-пошти" #. module: account_followup #: view:account_followup.followup:0 msgid "Search Follow-up" -msgstr "" +msgstr "Барај проследување" #. 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 @@ -573,7 +577,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 @@ -583,7 +587,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 #: help:res.partner,payment_next_action_date:0 @@ -706,7 +710,7 @@ msgid "unknown" msgstr "непознато" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Печатен извештај за платени задоцнувања" @@ -952,7 +956,7 @@ msgstr "Вклучени записи од дневници означени к #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Опис" diff --git a/addons/account_followup/i18n/mn.po b/addons/account_followup/i18n/mn.po index a0af118a5e5..31e3034d100 100644 --- a/addons/account_followup/i18n/mn.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -28,7 +28,7 @@ msgstr "${user.company_id.name} Төлбөрийн Сануулга" #. module: account_followup #: help:res.partner,latest_followup_level_id:0 msgid "The maximum follow-up level" -msgstr "" +msgstr "Мөшгөлтийн максимум түвшин" #. module: account_followup #: view:account_followup.stat:0 @@ -39,7 +39,7 @@ msgstr "Бүлэглэх..." #. module: account_followup #: field:account_followup.print,followup_id:0 msgid "Follow-Up" -msgstr "" +msgstr "Мөшгөлт" #. module: account_followup #: view:account_followup.followup.line:0 @@ -55,7 +55,7 @@ msgstr "Дараа үйлдэл хийх огноо" #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,manual_action:0 msgid "Manual Action" -msgstr "" +msgstr "Гар үйлдэл" #. module: account_followup #: field:account_followup.sending.results,needprinting:0 @@ -65,7 +65,7 @@ msgstr "Хэвлэх шаардлагатай" #. module: account_followup #: view:res.partner:0 msgid "⇾ Mark as Done" -msgstr "" +msgstr "⇾ Хийгдсэнээр Тэмдэглэх" #. module: account_followup #: field:account_followup.followup.line,manual_action_note:0 @@ -82,7 +82,7 @@ msgstr "Компани" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Нэхэмлэлийн Огноо" @@ -100,12 +100,12 @@ msgstr "%(user_signature)s" #. module: account_followup #: view:account_followup.followup.line:0 msgid "days overdue, do the following actions:" -msgstr "" +msgstr "хугацаа дуусах хүртэлх өдөрүүд, дараах арга хэмжээг авна уу:" #. module: account_followup #: view:account_followup.followup.line:0 msgid "Follow-up Steps" -msgstr "Мөрөөр хийх ажлын алхамууд" +msgstr "Мөшгөлтийн алхамууд" #. module: account_followup #: field:account_followup.print,email_body:0 @@ -115,11 +115,11 @@ msgstr "Имэйлийн агуулга" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_print msgid "Send Follow-Ups" -msgstr "Мөрөөр хийх ажлуудыг илгээх" +msgstr "Мөшгөлтүүдийг илгээх" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Дүн" @@ -130,6 +130,9 @@ 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 @@ -159,6 +162,25 @@ msgid "" "\n" "Best Regards,\n" msgstr "" +"\n" +"Сайн байна уу? Эрхэм %(partner_name)s,\n" +"\n" +"Бид танд хэдэнтээ сануулга явуулсан хэдий ч таны тооцоо ноцтойгоор хугацаа " +"хэтрээд байгааг мэдэгдэж байгаадаа харамсаж байна.\n" +"\n" +"Даруйхан төлбөрөө төлөх явдал чухал байна. Эс бөгөөс бид таны данстай " +"харилцах харилцааг зогсоох бөгөөд ингэснээр бид танай компанид аливаа бараа, " +"үйлчилгээг нийлүүлэхгүй болно.\n" +"Ойрын 8 хоногийн хугацаанд төлбөрийн талаар зохих арга хэмжээг гүйцэтгэнэ " +"үү.\n" +"\n" +"Хэрэв нэхэмжлэлийг төлөхтэй холбоотой бидний анхаарахгүй, мэдэхгүй байгаа " +"асуудал байгаа бол бидэнд санаа зоволгүй мэдэгдэнэ үү. Бид асуудлыг хурдан " +"шийдвэрлэх болно.\n" +"\n" +"Хугацаа хэтэрсэн төлбөрийн талаарх дэлгэрэнгүйг доор хэвлэлээ.\n" +"\n" +"Хүндэтгэсэн,\n" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_level0 @@ -196,6 +218,37 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +"\n" +"

Сайн байна уу? Эрхэм ${object.name},

\n" +"

\n" +"Саатал тохиолдлоо. Хэрэв энэ нь бидний алдаа байсан бол дараах дүн " +"төлөгдөөгүй үлдлээ. Ойрын 8 хоногийн хугацаанд төлбөрийн талаар зохих арга " +"хэмжээг гүйцэтгэнэ үү.\n" +"\n" +"Энэ имэйл илгээгдсэн дараа таны төлбөр хийгдсэн бол энэ имэйлийг хэрэгсэхгүй " +"байж болно. Манай санхүүгийн албатай эргэлзэлгүйгээр холбогдож болно.\n" +"\n" +"

\n" +"
\n" +"Хүндэтгэсэн,\n" +"
\n" +"
\n" +"${user.name}\n" +"\n" +"
\n" +"
\n" +"\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"\n" +"
\n" +" " #. module: account_followup #: view:account_followup.stat.by.partner:0 @@ -220,14 +273,14 @@ msgstr ": Харилцагчийн нэр" #. module: account_followup #: field:account_followup.followup.line,manual_action_responsible_id:0 msgid "Assign a Responsible" -msgstr "" +msgstr "Хариуцагч Оноох" #. module: account_followup #: view:account_followup.followup:0 #: field:account_followup.followup,followup_line:0 #: view:res.partner:0 msgid "Follow-up" -msgstr "Мөрөөр хийх ажил" +msgstr "Мөшгөлт" #. module: account_followup #: report:account_followup.followup.print:0 @@ -256,6 +309,19 @@ msgid "" " same customer, the actions of the most \n" " overdue invoice will be executed." msgstr "" +"Захиалагчид нэхэмжлэлээ төлөх явдлыг сануулахын \n" +" тулд хугацаа дуусах талаар хэр зэрэг ойрхон ямар " +"арга \n" +" хэмжээнүүд авахыг тодорхойлно. Эдгээр арга \n" +" хэмжээнүүд нь мөшгөлтийн түвшингүүдэд багцлагдаж \n" +" нэхэмжлэлийн хугацаа дууссанаас хэд хоног " +"өнгөрснөөс \n" +" хамааруулан төрөл бүрийн арга хэмжээг эхлүүлнэ. " +"Хэрэв \n" +" нэг захиалагч дээр хугацаа хэтэрсэн олон нэхэмжлэл " +"\n" +" байвал хамгийн их хугацаа хэтэрсэн нэхэмжлэлийн \n" +" дагууд арга хэмжээнүүд авагдана." #. module: account_followup #: report:account_followup.followup.print:0 @@ -270,7 +336,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 @@ -281,12 +347,12 @@ 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 msgid "Worst Due Date" -msgstr "" +msgstr "Хамгийн муу хугацаат огноо" #. module: account_followup #: view:account_followup.stat:0 @@ -296,12 +362,12 @@ 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 msgid "Manual Follow-Ups" -msgstr "" +msgstr "Гар мөшгөлтүүд" #. module: account_followup #: view:account_followup.followup.line:0 @@ -348,6 +414,44 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +" \n" +"

Сайн байна уу? Эрхэм ${object.name},

\n" +"

\n" +"Бид танд хэдэнтээ сануулга явуулсан хэдий ч таны тооцоо ноцтойгоор хугацаа " +"хэтрээд байгааг мэдэгдэж байгаадаа харамсаж байна.\n" +"\n" +"Даруйхан төлбөрөө төлөх явдал чухал байна. Эс бөгөөс бид таны данстай " +"харилцах харилцааг зогсоох бөгөөд ингэснээр бид танай компанид аливаа бараа, " +"үйлчилгээг нийлүүлэхгүй болно.\n" +"Ойрын 8 хоногийн хугацаанд төлбөрийн талаар зохих арга хэмжээг гүйцэтгэнэ " +"үү.\n" +"\n" +"Хэрэв нэхэмжлэлийг төлөхтэй холбоотой бидний анхаарахгүй, мэдэхгүй байгаа " +"асуудал байгаа бол бидэнд санаа зоволгүй мэдэгдэнэ үү. Бид асуудлыг хурдан " +"шийдвэрлэх болно.\n" +"Хугацаа хэтэрсэн нэхэмжлэлийн талаарх дэлгэрэнгүйг доор хэвлэлээ.\n" +"\n" +"

\n" +"
\n" +"Best Regards,\n" +" \n" +"
\n" +"
\n" +"${user.name}\n" +" \n" +"
\n" +"
\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"\n" +"
\n" +" " #. module: account_followup #: field:account_followup.stat,debit:0 @@ -357,28 +461,28 @@ msgstr "Дебит" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_stat msgid "Follow-up Statistics" -msgstr "Мөрөөр хийх ажилын статистик" +msgstr "Мөшгөлтийн Статистик" #. module: account_followup #: view:res.partner:0 msgid "Send Overdue Email" -msgstr "" +msgstr "Хугацаа Хэтэрсэн талаар Имэйл илгээх" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup_line msgid "Follow-up Criteria" -msgstr "Мөрөөр хийх ажлын шинжүүр" +msgstr "Мөшгөлтийн Шинжүүр" #. module: account_followup #: help:account_followup.followup.line,sequence:0 msgid "Gives the sequence order when displaying a list of follow-up lines." -msgstr "" +msgstr "Мөшгөлтүүдийн мөрүүдийг харуулах дэс дарааллыг өгнө" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:166 #, python-format msgid " will be sent" -msgstr "" +msgstr " илгээгдэх болно" #. module: account_followup #: view:account_followup.followup.line:0 @@ -394,33 +498,33 @@ 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 #: 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 msgid "Do Manual Follow-Ups" -msgstr "" +msgstr "Гар Мөшгөлтүүдийг Хийх" #. module: account_followup #: report:account_followup.followup.print:0 @@ -435,12 +539,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 @@ -451,17 +555,17 @@ msgstr "Имэйлийг Харилцагчийн хэлээр илгээх" #: code:addons/account_followup/wizard/account_followup_print.py:169 #, python-format msgid " email(s) sent" -msgstr "" +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 msgid "Printed Message" -msgstr "" +msgstr "Хэвлэсэн мессеж" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:155 @@ -472,7 +576,7 @@ msgstr "Хэн нэгэн" #. module: account_followup #: help:account_followup.followup.line,send_email:0 msgid "When processing, it will send an email" -msgstr "" +msgstr "Боловсруулж байхдаа энэ нь имэйл илгээнэ" #. module: account_followup #: view:account_followup.stat.by.partner:0 @@ -482,24 +586,24 @@ msgstr "Сануулах Харилцагч" #. module: account_followup #: view:res.partner:0 msgid "Print Overdue Payments" -msgstr "" +msgstr "Хугацаа нь дууссан төлбөрийг хэвлэх" #. module: account_followup #: 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 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" -msgstr "" +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 @@ -507,11 +611,13 @@ msgid "" "Optionally you can assign a user to this field, which will make him " "responsible for the action." msgstr "" +"Энэ талбарт хэрэглэгчийг оноож болох бөгөөд ингэснээр түүнийг арга хэмжээ " +"бүрт хариуцагч болгоно." #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_sending_results msgid "Results from the sending of the different letters and emails" -msgstr "" +msgstr "Ялгаатай захидал болон имэйл илгээглтийн үр дүнгүүд" #. module: account_followup #: constraint:account_followup.followup.line:0 @@ -519,12 +625,14 @@ msgid "" "Your description is invalid, use the right legend or %% if you want to use " "the percent character." msgstr "" +"Таны тодорхойломж буруу, зөв тайлбар эсвэл %%-г процент тэмдэг хэрэглэх гэж " +"байгаа бол ашиглана уу." #. module: account_followup #: 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 @@ -534,23 +642,23 @@ msgstr "Харилцагч хайх" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_print_menu msgid "Send Letters and Emails" -msgstr "" +msgstr "Имэйл болон захидал илгээх" #. module: account_followup #: view:account_followup.followup:0 msgid "Search Follow-up" -msgstr "" +msgstr "Мөшгөлтүүдийг Хайх" #. 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 @@ -563,21 +671,23 @@ msgid "" "If not specified by the latest follow-up level, it will send from the " "default email template" 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 msgid "Click to mark the action as done." -msgstr "" +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 #: help:res.partner,payment_next_action_date:0 @@ -587,28 +697,33 @@ msgid "" "action. Can be practical to set manually e.g. to see if he keeps his " "promises." msgstr "" +"Энэ нь гар мөшгилт шаардлагатай тохиолдол юм. Харилцагч нь гар мөшгилт " +"хэрэгтэй түвшинд хүрсэн бол огноо нь одоогийн огноогоор тохируулагдана. " +"Гараараа амлалт дээр нь үндэслэн өөрчилж болно." #. module: account_followup #: view:res.partner:0 msgid "Print overdue payments report independent of follow-up line" msgstr "" +"Мөшгөлтийн мөрөөс үл хамааруулан хугацаа хэтэрсэн төлбөрийн тайланг хэвлэх" #. module: account_followup #: help:account_followup.print,date:0 msgid "" "This field allow you to select a forecast date to plan your follow-ups" msgstr "" +"Энэ талбар нь мөшгилтийг төлөвлөх ирээдүйн огноог сонгоход ашиглагддаг" #. module: account_followup #: field:account_followup.print,date:0 msgid "Follow-up Sending Date" -msgstr "" +msgstr "Мөшгөлт илгээх огноо" #. module: account_followup #: view:res.partner:0 #: field:res.partner,payment_responsible_id:0 msgid "Follow-up Responsible" -msgstr "" +msgstr "Мөшгөлтийн Хариуцагч" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_level2 @@ -645,6 +760,35 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +" \n" +"

Эрхэм ${object.name},

\n" +"

\n" +" Танд олон удаа сануулсан боловч тооцоо дуусаагүй хэвээр байна.\n" +"8 хоногийн хугацаанд бүрэн төлбөр хийгдэхгүй бол дахин мэдэгдэл үгүйгээр " +"хуулийн арга хэмжээнд шилжих болно.\n" +"Төлбөрийн тухай мэдээллийг доор хэвлэлээ. \n" +"Үүнтэй холбоотой асуух, магадлах зүйлс байвал санаа зоволгүйгээр манай " +"санхүүгийн албатай холбогдоно уу.\n" +"

\n" +"
\n" +"Хүндэтгэсэн\n" +"
\n" +"
\n" +"${user.name}\n" +"
\n" +"
\n" +"\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"\n" +"
\n" +" " #. module: account_followup #: report:account_followup.followup.print:0 @@ -654,7 +798,7 @@ msgstr "Баримт: Үйлчлүүлэгчийн дансны тодорхой #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_menu msgid "Follow-up Levels" -msgstr "" +msgstr "Мөшгөлтийн Түвшингүүд" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line4 @@ -677,21 +821,33 @@ msgid "" "Best Regards,\n" " " msgstr "" +"\n" +"Эрхэм ${object.name},\n" +"\n" +"Танд олон удаа сануулсан боловч тооцоо дуусаагүй хэвээр байна.\n" +"8 хоногийн хугацаанд бүрэн төлбөр хийгдэхгүй бол дахин мэдэгдэл үгүйгээр " +"хуулийн арга хэмжээнд шилжих болно.\n" +"Төлбөрийн тухай мэдээллийг доор хэвлэлээ. \n" +"Үүнтэй холбоотой асуух, магадлах зүйлс байвал санаа зоволгүйгээр манай " +"санхүүгийн албатай холбогдоно уу.\n" +"\n" +"Хүндэтгэсэн\n" +" " #. module: account_followup #: field:res.partner,payment_amount_due:0 msgid "Amount Due" -msgstr "" +msgstr "Хугацаа хэтэрсэн дүн" #. module: account_followup #: field:account.move.line,followup_date:0 msgid "Latest Follow-up" -msgstr "" +msgstr "Сүүлийн Мөшгөлт" #. module: account_followup #: view:account_followup.sending.results:0 msgid "Download Letters" -msgstr "" +msgstr "Захидалуудыг татах" #. module: account_followup #: field:account_followup.print,company_id:0 @@ -700,17 +856,17 @@ msgid "unknown" msgstr "тодорхой бус" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" -msgstr "" +msgstr "Хугацаа хэтэрсэн төлбөрийн нэхэмжлэл хэвлэгдсэн" #. module: account_followup #: help:account_followup.followup.line,manual_action:0 msgid "" "When processing, it will set the manual action to be taken for that " "customer. " -msgstr "" +msgstr "Боловсруулалт хийхэд захиалагчид авах гар арга хэмжээг тохируулна. " #. module: account_followup #: view:res.partner:0 @@ -720,12 +876,15 @@ msgid "" " order to exclude it from the next follow-up " "actions." msgstr "" +"Доор энэ захиалагчийн гүйлгээний түүх \n" +" байна. Хэрэв мөшгилт хэрэггүй гэж үзвэл \n" +" \"Мөшгилт үгүй\" сонголтыг арилгаж болно." #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:171 #, python-format msgid " email(s) should have been sent, but " -msgstr "" +msgstr " имэйлүүд илгээгдлээ, гэхдээ " #. module: account_followup #: help:account_followup.print,test_print:0 @@ -757,7 +916,7 @@ msgstr "Хураангуй" #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,send_email:0 msgid "Send an Email" -msgstr "" +msgstr "Имэйл илгээх" #. module: account_followup #: field:account_followup.stat,credit:0 @@ -767,7 +926,7 @@ msgstr "Кредит" #. module: account_followup #: field:res.partner,payment_amount_overdue:0 msgid "Amount Overdue" -msgstr "" +msgstr "Хугацаа хэтэрсэн дүн" #. module: account_followup #: help:res.partner,latest_followup_level_id_without_lit:0 @@ -775,12 +934,14 @@ msgid "" "The maximum follow-up level without taking into account the account move " "lines with litigation" msgstr "" +"Маргаантай санхүүгийн хөдөлгөөний мөрүүдийг тооцолгүйгээр мөшгилтийн " +"максимум түвшин" #. module: account_followup #: view:account_followup.stat:0 #: field:res.partner,latest_followup_date:0 msgid "Latest Follow-up Date" -msgstr "" +msgstr "Сүүлийн Мөшгилтийн Огноо" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_default @@ -813,6 +974,32 @@ msgid "" "\n" " " msgstr "" +"\n" +"
\n" +" \n" +"

Эрхэм ${object.name},

\n" +"

\n" +" Хэрэв бидний алдаа байвал залруулах болно. Гэхдээ дүн төлөгдөөгүй байгаа " +"бололтой байна. Ойрын 8 хоногийн хугацаанд холбогдох тооцоог хийнэ үү. Хэрэв " +"энэ имэйл илгээгдсэн дараа төлбөр тань хийгдсэн байгаа бол энэ имэйлийг " +"хэрэгсэхгүй байж болно. Манай санхүүгийн албатай санаа зоволтгүй холбогдож " +"асууж болно.\n" +"

\n" +"
\n" +"Амжилт хүсье,\n" +"
\n" +"
\n" +"${user.name}\n" +"
\n" +"
\n" +"\n" +"${object.get_followup_table_html() | safe}\n" +"\n" +"
\n" +"
\n" +" " #. module: account_followup #: field:account.move.line,result:0 @@ -825,17 +1012,17 @@ msgstr "Тэнцэл" #. module: account_followup #: help:res.partner,payment_note:0 msgid "Payment Note" -msgstr "" +msgstr "Төлбөрийн Тэмдэглэл" #. module: account_followup #: view:res.partner:0 msgid "My Follow-ups" -msgstr "" +msgstr "Миний мөшгөлтүүд" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(company_name)s" -msgstr "" +msgstr "%(company_name)s" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line1 @@ -853,12 +1040,23 @@ msgid "" "\n" "Best Regards,\n" msgstr "" +"\n" +"Эрхэм %(partner_name)s,\n" +"\n" +" Хэрэв бидний алдаа байвал залруулах болно. Гэхдээ дүн төлөгдөөгүй байгаа " +"бололтой байна. Ойрын 8 хоногийн хугацаанд холбогдох тооцоог хийнэ үү. \n" +"\n" +"Хэрэв энэ имэйл илгээгдсэн дараа төлбөр тань хийгдсэн байгаа бол энэ " +"имэйлийг хэрэгсэхгүй байж болно. Манай санхүүгийн албатай санаа зоволтгүй " +"холбогдож асууж болно.\n" +"\n" +"Амжилт хүсье,\n" #. module: account_followup #: field:account_followup.stat,date_move_last:0 #: field:account_followup.stat.by.partner,date_move_last:0 msgid "Last move" -msgstr "" +msgstr "Сүүлийн хөдөлгөөн" #. module: account_followup #: field:account_followup.stat,period_id:0 @@ -869,12 +1067,12 @@ msgstr "Мөчлөг" #: code:addons/account_followup/wizard/account_followup_print.py:228 #, python-format msgid "%s partners have no credits and as such the action is cleared" -msgstr "" +msgstr "%s харилцагч нар нь зээлгүй бөгөөд ийм арга хэмжээнүүд цэвэрлэгдлээ." #. module: account_followup #: model:ir.actions.report.xml,name:account_followup.account_followup_followup_report msgid "Follow-up Report" -msgstr "" +msgstr "Мөшгилтийн Тайлан" #. module: account_followup #: view:res.partner:0 @@ -882,6 +1080,8 @@ msgid "" ", the latest payment follow-up\n" " was:" msgstr "" +", төлбөрийн сүүлийн мөшгилт \n" +" нь:" #. module: account_followup #: view:account_followup.print:0 @@ -901,13 +1101,13 @@ msgstr "Маргаантай" #. module: account_followup #: field:account_followup.stat.by.partner,max_followup_id:0 msgid "Max Follow Up Level" -msgstr "" +msgstr "Мөшгилтийн Максимум Түвшин" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:171 #, python-format msgid " had unknown email address(es)" -msgstr "" +msgstr " үл мэдэгдэх имэйл хаягуудтай байна" #. module: account_followup #: view:res.partner:0 @@ -918,12 +1118,12 @@ msgstr "" #: model:ir.ui.menu,name:account_followup.menu_finance_followup #: view:res.partner:0 msgid "Payment Follow-up" -msgstr "" +msgstr "Төлбөрийн мөшгөлт" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": Current Date" -msgstr "" +msgstr ": Одоогийн Огноо" #. module: account_followup #: view:account_followup.print:0 @@ -932,21 +1132,25 @@ msgid "" " set the manual actions per customer, according to " "the follow-up levels defined." msgstr "" +"Энэ арга хэмжээ нь мөшгилтийн имэйл илгээх, захидал \n" +" хэвлэх, гар арга хэмжээ тохируулах ажлыг захиалагчид " +"дээр тохируулсан \n" +" мөшгилтийн түвшингээр хийнэ." #. module: account_followup #: field:account_followup.followup.line,name:0 msgid "Follow-Up Action" -msgstr "" +msgstr "Мөшгилтийн Арга хэмжээ" #. module: account_followup #: view:account_followup.stat:0 msgid "Including journal entries marked as a litigation" -msgstr "" +msgstr "Журналын бичилтийг оруулаад маргаантай гэж тэмдэглэгдлээ." #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Тайлбар" @@ -954,7 +1158,7 @@ msgstr "Тайлбар" #. module: account_followup #: view:account_followup.sending.results:0 msgid "Summary of actions" -msgstr "" +msgstr "Арга хэмжээний хураангуй" #. module: account_followup #: report:account_followup.followup.print:0 @@ -974,7 +1178,7 @@ msgstr "Энэ санхүүгийн жил" #. module: account_followup #: field:res.partner,latest_followup_level_id_without_lit:0 msgid "Latest Follow-up Level without litigation" -msgstr "" +msgstr "Маргаангүй мөшгилтийн сүүлийн түвшин" #. module: account_followup #: model:ir.actions.act_window,help:account_followup.action_account_manual_reconcile_receivable @@ -997,7 +1201,7 @@ msgstr "Харилцагчийн бичилт" #. module: account_followup #: view:account_followup.stat:0 msgid "Follow-up lines" -msgstr "" +msgstr "Мөшгилтийн мөрүүд" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line3 @@ -1018,6 +1222,17 @@ msgid "" "\n" "Best Regards,\n" msgstr "" +"\n" +"Эрхэм %(partner_name)s,\n" +"\n" +"Танд олон удаа сануулсан боловч тооцоо дуусаагүй хэвээр байна.\n" +"8 хоногийн хугацаанд бүрэн төлбөр хийгдэхгүй бол дахин мэдэгдэл үгүйгээр " +"хуулийн арга хэмжээнд шилжих болно.\n" +"Төлбөрийн тухай мэдээллийг доор хэвлэлээ. \n" +"Үүнтэй холбоотой асуух, магадлах зүйлс байвал санаа зоволгүйгээр манай " +"санхүүгийн албатай холбогдоно уу.\n" +"\n" +"Хүндэтгэсэн\n" #. module: account_followup #: help:account_followup.print,partner_lang:0 @@ -1025,6 +1240,8 @@ msgid "" "Do not change message text, if you want to send email in partner language, " "or configure from company" msgstr "" +"Хэрэв захиалагчийн хэлээр эсвэл компанийн тохиргооны хэлээр имэйл илгээхээр " +"бол текстийг битгий өөрчил" #. module: account_followup #: view:account_followup.followup.line:0 @@ -1037,12 +1254,17 @@ msgid "" "installed\n" " using to top right icon." msgstr "" +"Энэ танилцуулга захидлыг бичнэ,\n" +" Энэ нь мөшгилтийн түвшинтэй уялдсан байна. \n" +" Дараах түлхүүр үгүүдийг ашиглаж болно. Суулгасан " +"бүх хэлний \n" +" хувьд орчуулахаа мартаж болохгүй." #. module: account_followup #: view:account_followup.stat:0 #: model:ir.actions.act_window,name:account_followup.action_followup_stat msgid "Follow-ups Sent" -msgstr "" +msgstr "Мөшгилтүүд Илгээгдсэн" #. module: account_followup #: field:account_followup.followup,name:0 @@ -1052,34 +1274,34 @@ msgstr "Нэр" #. module: account_followup #: field:res.partner,latest_followup_level_id:0 msgid "Latest Follow-up Level" -msgstr "" +msgstr "Мөшгилтийн Сүүлийн Түвшин" #. module: account_followup #: field:account_followup.stat,date_move:0 #: field:account_followup.stat.by.partner,date_move:0 msgid "First move" -msgstr "" +msgstr "Эхний хөдөлгөөн" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_stat_by_partner msgid "Follow-up Statistics by Partner" -msgstr "" +msgstr "Мөшгилтийн статистик Харилцагчаар" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:172 #, python-format msgid " letter(s) in report" -msgstr "" +msgstr " тайлан дахь захидлууд" #. module: account_followup #: view:res.partner:0 msgid "Partners with Overdue Credits" -msgstr "" +msgstr "Харилцагчийн хугацаа нь дууссан кредитүүд" #. module: account_followup #: view:res.partner:0 msgid "Customer Followup" -msgstr "" +msgstr "Захиалагчийн мөшгилт" #. module: account_followup #: model:ir.actions.act_window,help:account_followup.action_account_followup_definition_form @@ -1095,12 +1317,22 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Энд мөшгилтийн түвшин болон холбогдох арга хэмжээг " +"тодорхойлохдоо дарна уу.\n" +"

\n" +" Алхам бүрт, авах арга хэмжээ болон хүлээх хоногийг зааж " +"өгнө.\n" +" Захиалагчид илгээх имэйл, захидалд үлгэрүүдийг ашиглах " +"боломжтой.\n" +"

\n" +" " #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:166 #, python-format msgid "Follow-up letter of " -msgstr "" +msgstr "Дараахийн мөшгилтийн захидал " #. module: account_followup #: view:res.partner:0 @@ -1110,7 +1342,7 @@ msgstr "" #. module: account_followup #: view:account_followup.print:0 msgid "Send follow-ups" -msgstr "" +msgstr "Мөшгилтүүдийг илгээх" #. module: account_followup #: view:account.move.line:0 @@ -1125,17 +1357,17 @@ msgstr "Дугаарлалт" #. module: account_followup #: view:res.partner:0 msgid "Follow-ups To Do" -msgstr "" +msgstr "Хийх мөшгилтүүд" #. module: account_followup #: report:account_followup.followup.print:0 msgid "Customer Ref :" -msgstr "" +msgstr "Захиалагчийн код:" #. module: account_followup #: report:account_followup.followup.print:0 msgid "Maturity Date" -msgstr "" +msgstr "Гүйцэх огноо" #. module: account_followup #: help:account_followup.followup.line,delay:0 @@ -1144,11 +1376,13 @@ msgid "" "the reminder. Could be negative if you want to send a polite alert " "beforehand." msgstr "" +"Хугацаа хэтэрснээс хойш сануулга илгээхийн өмнө хүлээх хоногийн тоо. Хугацаа " +"дуусахаас өмнө эелдэг сануулга өгөхөөр бол сөрөг тоо байж болно." #. module: account_followup #: help:res.partner,latest_followup_date:0 msgid "Latest date that the follow-up level of the partner was changed" -msgstr "" +msgstr "Харилцагчийн мөшгилтийн түвшин өөрчлөгдсөн хамгийн сүүлийн огноо" #. module: account_followup #: field:account_followup.print,test_print:0 @@ -1158,7 +1392,7 @@ msgstr "Тест хэвлэх" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": User Name" -msgstr "" +msgstr ": Хэрэглэгчийн нэр" #. module: account_followup #: view:res.partner:0 @@ -1173,7 +1407,7 @@ msgstr "Хоригдсон" #. module: account_followup #: field:res.partner,payment_note:0 msgid "Customer Payment Promise" -msgstr "" +msgstr "Захиалагчийн Төлөх Амлалт" #~ msgid "Invalid model name in the action definition." #~ msgstr "Үйлдэлийн тодорхойлолтод буруу моделийн нэр заасан байна." diff --git a/addons/account_followup/i18n/nb.po b/addons/account_followup/i18n/nb.po index ca1e28e3cc7..c5bfe96d189 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Firma" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Fakturadato" @@ -119,7 +119,7 @@ msgstr "Send oppfølgninger." #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Beløp" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "Oppfølginger" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "E-posten er ikke send fordi e-postadressen partner ikke er fylt ut." @@ -705,7 +705,7 @@ msgid "unknown" msgstr "Ukjent." #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Skrevet ut forfalte betalings rapporter." @@ -957,7 +957,7 @@ msgstr "Inkludert posteringer merket som en rettssak" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Beskrivelse" diff --git a/addons/account_followup/i18n/nl.po b/addons/account_followup/i18n/nl.po index 1616c7541ee..fcfc7a672eb 100644 --- a/addons/account_followup/i18n/nl.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Bedrijf" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Factuurdatum" @@ -118,7 +118,7 @@ msgstr "Verstuur Betalingsherinneringen" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Bedrag" @@ -582,7 +582,7 @@ msgstr "Relatie voor betalingsherinnering" #. module: account_followup #: view:res.partner:0 msgid "Print Overdue Payments" -msgstr "Vervallen betalingen afdrukken" +msgstr "Afdrukken openstaande posten" #. module: account_followup #: field:account_followup.followup.line,followup_id:0 @@ -591,7 +591,7 @@ msgid "Follow Ups" msgstr "Betalingsherinneringen" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -844,7 +844,7 @@ msgstr "" #. module: account_followup #: field:res.partner,payment_amount_due:0 msgid "Amount Due" -msgstr "Vervallen bedrag" +msgstr "Verschuldigd bedrag" #. module: account_followup #: field:account.move.line,followup_date:0 @@ -863,7 +863,7 @@ msgid "unknown" msgstr "onbekend" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Druk het rapport achterstallige betalingen af" @@ -908,7 +908,7 @@ msgstr "" #. module: account_followup #: model:ir.model,name:account_followup.model_account_move_line msgid "Journal Items" -msgstr "Boekingen" +msgstr "Boekingsregels" #. module: account_followup #: report:account_followup.followup.print:0 @@ -1167,7 +1167,7 @@ msgstr "Inclusief boekingen gemarkeerd als een geschil" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Omschrijving" diff --git a/addons/account_followup/i18n/nl_BE.po b/addons/account_followup/i18n/nl_BE.po index 64a73d776ef..d4b8327a48d 100644 --- a/addons/account_followup/i18n/nl_BE.po +++ b/addons/account_followup/i18n/nl_BE.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-04-17 05:15+0000\n" -"X-Generator: Launchpad (build 16567)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: nl\n" #. module: account_followup @@ -34,12 +34,12 @@ msgstr "Het maximale aanmaningsniveau" #: view:account_followup.stat:0 #: view:res.partner:0 msgid "Group By..." -msgstr "Groepeer op..." +msgstr "Groeperen op..." #. module: account_followup #: field:account_followup.print,followup_id:0 msgid "Follow-Up" -msgstr "Aanmanen" +msgstr "Aanmaningen" #. module: account_followup #: view:account_followup.followup.line:0 @@ -82,7 +82,7 @@ msgstr "Bedrijf" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Factuurdatum" @@ -119,7 +119,7 @@ msgstr "Aanmaningen versturen" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Bedrag" @@ -225,7 +225,7 @@ msgstr "" "

Beste ${object.name},

\n" "

\n" " Volgens onze informatie, heeft u nog een openstaand saldo. Wij verzoeken " -"u het nodige te doen om deze betaling binnen de 8 dagen over te schrijven op " +"u het nodige te doen om dit bedrag binnen de 8 dagen over te schrijven op " "onze rekening.\n" "\n" "Indien uw betaling deze e-mail heeft gekruist, mag u dit bericht als " @@ -352,7 +352,7 @@ msgstr "Bij verwerking wordt een brief gemaakt" #. module: account_followup #: field:res.partner,payment_earliest_due_date:0 msgid "Worst Due Date" -msgstr "Slechtste vervaldatum" +msgstr "Hoogste vervaldatum" #. module: account_followup #: view:account_followup.stat:0 @@ -421,8 +421,8 @@ msgstr "" " \n" "

Beste ${object.name},

\n" "

\n" -" Het spijt ons te moeten vaststellen dat, ondanks een eerdere aanmaning, " -"u nog steeds een openstaand saldo hebt.\n" +" Het spijt ons te moeten vaststellen dat u, ondanks een eerdere " +"aanmaning, nog steeds een openstaand saldo hebt.\n" "Wij verzoeken u dringend het openstaande saldo te betalen. Bij gebrek aan " "betaling, zijn wij genoodzaakt de verdere levering van goederen en diensten " "stop te zetten.\n" @@ -507,7 +507,7 @@ msgstr "Dagen vervallen" #: field:account.move.line,followup_line_id:0 #: view:account_followup.stat:0 msgid "Follow-up Level" -msgstr "Niveau aanmaning" +msgstr "Aanmaningsniveau" #. module: account_followup #: field:account_followup.stat,date_followup:0 @@ -593,7 +593,7 @@ msgid "Follow Ups" msgstr "Aanmaningen" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -770,9 +770,9 @@ msgstr "" "

\n" " Ondanks het feit dat wij u meerdere aanmaningen hebben gestuurd, is uw " "openstaand saldo nog steeds niet betaald.\n" -"Indien de betaling ervan niet binnen de 8 dagen op onze rekening staat, " -"schakelen wij een advocaat in om het verschuldigde saldo bij u te innen. U " -"ontvangt hierover geen verdere communicatie.\n" +"Indien dit bedrag niet binnen de 8 dagen op onze rekening staat, schakelen " +"wij een advocaat in om het verschuldigde saldo bij u te innen. U ontvangt " +"hierover geen verdere communicatie.\n" "Wij gaan ervan uit dat deze stap niet nodig zal zijn. De details van de " "openstaande betalingen vindt u hierna.\n" "Aarzel niet contact op te nemen met onze boekhouding als u nog vragen " @@ -864,7 +864,7 @@ msgid "unknown" msgstr "onbekend" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Afgedrukt aanmaningsrapport" @@ -1164,7 +1164,7 @@ msgstr "Inclusief betwiste boekingen" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Omschrijving" @@ -1413,7 +1413,7 @@ msgstr "Testafdruk" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": User Name" -msgstr ": Gberuikersnaam" +msgstr ": Gebruikersnaam" #. module: account_followup #: view:res.partner:0 diff --git a/addons/account_followup/i18n/oc.po b/addons/account_followup/i18n/oc.po index 14f3700f7cf..4798d51eb40 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Entrepresa" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -700,7 +700,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -946,7 +946,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descripcion" diff --git a/addons/account_followup/i18n/pl.po b/addons/account_followup/i18n/pl.po index 4b4aa0aa66c..520816f84d9 100644 --- a/addons/account_followup/i18n/pl.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Firma" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Data faktury" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Kwota" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "Windykacje" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -699,7 +699,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -945,7 +945,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Opis" diff --git a/addons/account_followup/i18n/pt.po b/addons/account_followup/i18n/pt.po index 01c057f9da9..fd70fe99eed 100644 --- a/addons/account_followup/i18n/pt.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -22,7 +22,7 @@ msgstr "" #: model:email.template,subject:account_followup.email_template_account_followup_level1 #: model:email.template,subject:account_followup.email_template_account_followup_level2 msgid "${user.company_id.name} Payment Reminder" -msgstr "" +msgstr "Aviso de pagamento: ${user.company_id.name}" #. module: account_followup #: help:res.partner,latest_followup_level_id:0 @@ -48,7 +48,7 @@ msgstr "%(date)s" #. module: account_followup #: field:res.partner,payment_next_action_date:0 msgid "Next Action Date" -msgstr "" +msgstr "Data da próxima acção" #. module: account_followup #: view:account_followup.followup.line:0 @@ -64,7 +64,7 @@ msgstr "Precisa de impressão" #. module: account_followup #: view:res.partner:0 msgid "⇾ Mark as Done" -msgstr "" +msgstr "⇾ Marcar como Feito" #. module: account_followup #: field:account_followup.followup.line,manual_action_note:0 @@ -81,7 +81,7 @@ msgstr "Empresa" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Data da Fatura" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Montante" @@ -133,7 +133,7 @@ msgstr "" #. module: account_followup #: view:res.partner:0 msgid "No Responsible" -msgstr "" +msgstr "Sem responsável" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line2 @@ -430,7 +430,7 @@ msgstr "Li." #. module: account_followup #: field:account_followup.print,email_conf:0 msgid "Send Email Confirmation" -msgstr "" +msgstr "Enviar Email de Confirmação" #. module: account_followup #: view:account_followup.stat:0 @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "Seguimentos" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -574,7 +574,7 @@ msgstr "" #. module: account_followup #: view:res.partner:0 msgid "Click to mark the action as done." -msgstr "" +msgstr "Clique para marcar a ação como feita." #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_action_followup_stat_follow @@ -704,7 +704,7 @@ msgid "unknown" msgstr "desconhecido" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -761,7 +761,7 @@ msgstr "Resumo" #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,send_email:0 msgid "Send an Email" -msgstr "" +msgstr "Enviar um Email" #. module: account_followup #: field:account_followup.stat,credit:0 @@ -950,7 +950,7 @@ msgstr "Incluindo entradas diárias marcadas como litígio" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descrição" diff --git a/addons/account_followup/i18n/pt_BR.po b/addons/account_followup/i18n/pt_BR.po index d2ef1e8f6b8..5a9ed683f06 100644 --- a/addons/account_followup/i18n/pt_BR.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Empresa" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Data da Fatura" @@ -119,7 +119,7 @@ msgstr "Enviar Cobranças" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Valor" @@ -592,7 +592,7 @@ msgid "Follow Ups" msgstr "Cobranças" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "Email não enviado, por que o email do parceiro não está preenchido" @@ -859,7 +859,7 @@ msgid "unknown" msgstr "Desconhecido" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Relatórios de pagamentos em atraso impresso" @@ -1154,7 +1154,7 @@ msgstr "Incluindo os itens de diário marcados como em protesto" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descrição" diff --git a/addons/account_followup/i18n/ro.po b/addons/account_followup/i18n/ro.po index 96f220bd5e3..11fda4dfa09 100644 --- a/addons/account_followup/i18n/ro.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Companie" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Data Facturii" @@ -118,7 +118,7 @@ msgstr "Trimiteti Continuari" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Suma" @@ -592,7 +592,7 @@ msgid "Follow Ups" msgstr "Urmariri" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -862,7 +862,7 @@ msgid "unknown" msgstr "necunoscut(a)" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Raportul tiparit al platilor restante" @@ -1161,7 +1161,7 @@ msgstr "Inclusiv inregistrari in jurnal marcate ca litigiu" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Descriere" diff --git a/addons/account_followup/i18n/ru.po b/addons/account_followup/i18n/ru.po index b57c8e4315e..b2053d5e505 100644 --- a/addons/account_followup/i18n/ru.po +++ b/addons/account_followup/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-06-01 05:16+0000\n" -"X-Generator: Launchpad (build 16660)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -54,12 +54,12 @@ msgstr "Дата следующего действия" #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,manual_action:0 msgid "Manual Action" -msgstr "" +msgstr "Действие вручную" #. module: account_followup #: field:account_followup.sending.results,needprinting:0 msgid "Needs Printing" -msgstr "" +msgstr "Надо печатать" #. module: account_followup #: view:res.partner:0 @@ -69,7 +69,7 @@ msgstr "⇾ отметить как сделанное" #. module: account_followup #: field:account_followup.followup.line,manual_action_note:0 msgid "Action To Do" -msgstr "" +msgstr "Действие для выполнения" #. module: account_followup #: field:account_followup.followup,company_id:0 @@ -81,7 +81,7 @@ msgstr "Компания" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Дата счета-фактуры" @@ -99,12 +99,12 @@ msgstr "%(user_signature)s" #. module: account_followup #: view:account_followup.followup.line:0 msgid "days overdue, do the following actions:" -msgstr "" +msgstr "дней просрочки, выполните следующие действия:" #. module: account_followup #: view:account_followup.followup.line:0 msgid "Follow-up Steps" -msgstr "" +msgstr "Шаги по напоминаниям" #. module: account_followup #: field:account_followup.print,email_body:0 @@ -118,7 +118,7 @@ msgstr "Послать напоминания" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Сумма" @@ -269,7 +269,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 @@ -280,7 +280,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 @@ -295,12 +295,12 @@ 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 msgid "Manual Follow-Ups" -msgstr "" +msgstr "Напоминание вручную" #. module: account_followup #: view:account_followup.followup.line:0 @@ -356,17 +356,17 @@ msgstr "Дебет" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_stat msgid "Follow-up Statistics" -msgstr "" +msgstr "Статистика напоминаний" #. module: account_followup #: view:res.partner:0 msgid "Send Overdue Email" -msgstr "" +msgstr "Отправить письмо о просрочке" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup_line msgid "Follow-up Criteria" -msgstr "" +msgstr "Критерии напоминания" #. module: account_followup #: help:account_followup.followup.line,sequence:0 @@ -382,7 +382,7 @@ msgstr " будет отправлен" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": User's Company Name" -msgstr "" +msgstr ": название компании пользователя" #. module: account_followup #: view:account_followup.followup.line:0 @@ -393,7 +393,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 #: field:account_followup.followup.line,delay:0 @@ -414,12 +414,12 @@ 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 msgid "Do Manual Follow-Ups" -msgstr "" +msgstr "Выполнить напоминания вручную" #. module: account_followup #: report:account_followup.followup.print:0 @@ -429,7 +429,7 @@ msgstr "" #. module: account_followup #: field:account_followup.print,email_conf:0 msgid "Send Email Confirmation" -msgstr "" +msgstr "Отправить e-mail подтверждение" #. module: account_followup #: view:account_followup.stat:0 @@ -439,7 +439,7 @@ 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 @@ -450,12 +450,12 @@ msgstr "Послать эл. письмо на языке контрагента #: code:addons/account_followup/wizard/account_followup_print.py:169 #, python-format msgid " email(s) sent" -msgstr "" +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 @@ -471,7 +471,7 @@ msgstr "Кто угодно" #. module: account_followup #: help:account_followup.followup.line,send_email:0 msgid "When processing, it will send an email" -msgstr "" +msgstr "При обработке будет отправлено эл. письмо" #. module: account_followup #: view:account_followup.stat.by.partner:0 @@ -481,7 +481,7 @@ msgstr "Напомнить контрагенту" #. module: account_followup #: view:res.partner:0 msgid "Print Overdue Payments" -msgstr "" +msgstr "Печать просроченных платежей" #. module: account_followup #: field:account_followup.followup.line,followup_id:0 @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "Дальнейшие действия" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -538,12 +538,12 @@ msgstr "" #. module: account_followup #: view:account_followup.followup:0 msgid "Search Follow-up" -msgstr "" +msgstr "Поиск напоминания" #. 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 @@ -571,12 +571,12 @@ msgstr "" #. module: account_followup #: view:res.partner:0 msgid "Click to mark the action as done." -msgstr "" +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 #: help:res.partner,payment_next_action_date:0 @@ -607,7 +607,7 @@ msgstr "Дата отправки напоминания" #: view:res.partner:0 #: field:res.partner,payment_responsible_id:0 msgid "Follow-up Responsible" -msgstr "" +msgstr "Ответственный за напоминания" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_level2 @@ -653,7 +653,7 @@ msgstr "Документ: ведомость по счету заказчика" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_menu msgid "Follow-up Levels" -msgstr "" +msgstr "Уровни напоминаний" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line4 @@ -680,7 +680,7 @@ msgstr "" #. module: account_followup #: field:res.partner,payment_amount_due:0 msgid "Amount Due" -msgstr "" +msgstr "Сумма долга" #. module: account_followup #: field:account.move.line,followup_date:0 @@ -690,16 +690,16 @@ msgstr "Последние дальнейшие действия" #. module: account_followup #: view:account_followup.sending.results:0 msgid "Download Letters" -msgstr "" +msgstr "Загрузка писем" #. module: account_followup #: field:account_followup.print,company_id:0 #: field:res.partner,unreconciled_aml_ids:0 msgid "unknown" -msgstr "" +msgstr "неизвестный" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -740,12 +740,12 @@ msgstr "Элементы журнала" #. module: account_followup #: report:account_followup.followup.print:0 msgid "Total:" -msgstr "" +msgstr "Итого:" #. module: account_followup #: field:account_followup.followup.line,email_template_id:0 msgid "Email Template" -msgstr "" +msgstr "Шаблон письма" #. module: account_followup #: field:account_followup.print,summary:0 @@ -756,7 +756,7 @@ msgstr "Сводка" #: view:account_followup.followup.line:0 #: field:account_followup.followup.line,send_email:0 msgid "Send an Email" -msgstr "" +msgstr "Послать эл.письмо" #. module: account_followup #: field:account_followup.stat,credit:0 @@ -779,7 +779,7 @@ msgstr "" #: view:account_followup.stat:0 #: field:res.partner,latest_followup_date:0 msgid "Latest Follow-up Date" -msgstr "" +msgstr "Дата последнего напоминания" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_default @@ -829,12 +829,12 @@ msgstr "" #. module: account_followup #: view:res.partner:0 msgid "My Follow-ups" -msgstr "" +msgstr "Мои напоминания" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(company_name)s" -msgstr "" +msgstr "%(company_name)s" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line1 @@ -890,7 +890,7 @@ msgstr "Отменить" #. module: account_followup #: view:account_followup.sending.results:0 msgid "Close" -msgstr "" +msgstr "Закрыть" #. module: account_followup #: view:account_followup.stat:0 @@ -917,12 +917,12 @@ msgstr "" #: model:ir.ui.menu,name:account_followup.menu_finance_followup #: view:res.partner:0 msgid "Payment Follow-up" -msgstr "" +msgstr "Напоминание об оплате" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": Current Date" -msgstr "" +msgstr ": Текущая дата" #. module: account_followup #: view:account_followup.print:0 @@ -935,17 +935,17 @@ msgstr "" #. module: account_followup #: field:account_followup.followup.line,name:0 msgid "Follow-Up Action" -msgstr "" +msgstr "Действие по напоминанию" #. module: account_followup #: view:account_followup.stat:0 msgid "Including journal entries marked as a litigation" -msgstr "" +msgstr "Включая проводки журнала, отмеченные как судебные" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Описание" @@ -953,7 +953,7 @@ msgstr "Описание" #. module: account_followup #: view:account_followup.sending.results:0 msgid "Summary of actions" -msgstr "" +msgstr "Резюме действий" #. module: account_followup #: report:account_followup.followup.print:0 @@ -963,7 +963,7 @@ msgstr "Ссылка" #. module: account_followup #: view:account_followup.followup.line:0 msgid "After" -msgstr "" +msgstr "После" #. module: account_followup #: view:account_followup.stat:0 @@ -973,7 +973,7 @@ msgstr "Этот финансовый год" #. module: account_followup #: field:res.partner,latest_followup_level_id_without_lit:0 msgid "Latest Follow-up Level without litigation" -msgstr "" +msgstr "Последний уровень напоминания до суда" #. module: account_followup #: model:ir.actions.act_window,help:account_followup.action_account_manual_reconcile_receivable @@ -992,7 +992,7 @@ msgstr "Партнерские проводки" #. module: account_followup #: view:account_followup.stat:0 msgid "Follow-up lines" -msgstr "" +msgstr "Позиции напоминания" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line3 @@ -1049,7 +1049,7 @@ msgstr "Название" #. module: account_followup #: field:res.partner,latest_followup_level_id:0 msgid "Latest Follow-up Level" -msgstr "" +msgstr "Последний уровень напоминания" #. module: account_followup #: field:account_followup.stat,date_move:0 @@ -1060,7 +1060,7 @@ msgstr "Первый шаг" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_stat_by_partner msgid "Follow-up Statistics by Partner" -msgstr "" +msgstr "Статистика напоминаний по партнеру" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:172 @@ -1076,7 +1076,7 @@ msgstr "" #. module: account_followup #: view:res.partner:0 msgid "Customer Followup" -msgstr "" +msgstr "Напоминание заказчику" #. module: account_followup #: model:ir.actions.act_window,help:account_followup.action_account_followup_definition_form @@ -1107,7 +1107,7 @@ msgstr "" #. module: account_followup #: view:account_followup.print:0 msgid "Send follow-ups" -msgstr "" +msgstr "Отправить напоминания" #. module: account_followup #: view:account.move.line:0 @@ -1150,17 +1150,17 @@ msgstr "" #. module: account_followup #: field:account_followup.print,test_print:0 msgid "Test Print" -msgstr "" +msgstr "Пробная печать" #. module: account_followup #: view:account_followup.followup.line:0 msgid ": User Name" -msgstr "" +msgstr ": имя пользователя" #. module: account_followup #: view:res.partner:0 msgid "Accounting" -msgstr "" +msgstr "Учёт" #. module: account_followup #: field:account_followup.stat,blocked:0 diff --git a/addons/account_followup/i18n/sl.po b/addons/account_followup/i18n/sl.po index f2317d159a1..0a17caba473 100644 --- a/addons/account_followup/i18n/sl.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Družba" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Datum računa" @@ -118,7 +118,7 @@ msgstr "Pošlji opomine" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Znesek" @@ -560,7 +560,7 @@ msgid "Follow Ups" msgstr "Opomini" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "Email ni bil poslan,ker partner nima izpolnjen email naslov" @@ -816,7 +816,7 @@ msgid "unknown" msgstr "neznano" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Izpisano poročilo zapadlih plačil" @@ -1106,7 +1106,7 @@ msgstr "Dnevnik spornih postavk" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Opis" diff --git a/addons/account_followup/i18n/sq.po b/addons/account_followup/i18n/sq.po index d0065c04831..0301ddd60ca 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -700,7 +700,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -946,7 +946,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "" diff --git a/addons/account_followup/i18n/sr.po b/addons/account_followup/i18n/sr.po index a6ab47df33b..41e1e0f478d 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Preduzeće" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Datum računa" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "Praćenja" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -702,7 +702,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -948,7 +948,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Opis" diff --git a/addons/account_followup/i18n/sr@latin.po b/addons/account_followup/i18n/sr@latin.po index db9b57fca03..931668c4fbc 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Preduzeće" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Datum fakture" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "Praćenja" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -701,7 +701,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -947,7 +947,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Opis" diff --git a/addons/account_followup/i18n/sv.po b/addons/account_followup/i18n/sv.po index c409a296386..b3ac8be46c9 100644 --- a/addons/account_followup/i18n/sv.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Företag" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Fakturadatum" @@ -118,7 +118,7 @@ msgstr "Skicka uppföljningar" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Belopp" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "Uppföljning" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -702,7 +702,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -948,7 +948,7 @@ msgstr "Inkluderade verifikat märkta som tvistiga" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Beskrivning" diff --git a/addons/account_followup/i18n/tlh.po b/addons/account_followup/i18n/tlh.po index 6e40aaf4eba..b396f0db975 100644 --- a/addons/account_followup/i18n/tlh.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -699,7 +699,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -945,7 +945,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "" diff --git a/addons/account_followup/i18n/tr.po b/addons/account_followup/i18n/tr.po index c6eadc0e05c..1dd1391efee 100644 --- a/addons/account_followup/i18n/tr.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -27,7 +27,7 @@ msgstr "${user.company_id.name} Ödeme Anımsatıcı" #. module: account_followup #: help:res.partner,latest_followup_level_id:0 msgid "The maximum follow-up level" -msgstr "Enyüksek takip düzeyi" +msgstr "Enyüksek izleme düzeyi" #. module: account_followup #: view:account_followup.stat:0 @@ -38,7 +38,7 @@ msgstr "Gruplandır..." #. module: account_followup #: field:account_followup.print,followup_id:0 msgid "Follow-Up" -msgstr "Takip" +msgstr "İzleme" #. module: account_followup #: view:account_followup.followup.line:0 @@ -81,7 +81,7 @@ msgstr "Şirket" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Fatura Tarihi" @@ -104,7 +104,7 @@ msgstr "vadesi geçenler, aşağıdaki işlemleri yapın:" #. module: account_followup #: view:account_followup.followup.line:0 msgid "Follow-up Steps" -msgstr "Takip Adımları" +msgstr "İzleme Adımları" #. module: account_followup #: field:account_followup.print,email_body:0 @@ -114,11 +114,11 @@ msgstr "Eposta Gövdesi" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_print msgid "Send Follow-Ups" -msgstr "Takipleri Gönder" +msgstr "İzlemeleri Gönder" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "Tutar" @@ -129,7 +129,7 @@ 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 "" -"Bu yapılması gereken sonraki eylemdir. İş Ortağının takip düzeyi elle eylem " +"Bu yapılması gereken sonraki eylemdir. İş Ortağının izleme düzeyi elle eylem " "gerektirir duruma geldiğinde otomatik olarak ayarlanır. " #. module: account_followup @@ -223,7 +223,6 @@ msgstr "" " Bizim hatamız istisna olmak üzere, aşağıdaki tutar ödenmemiş durumdadır. " "Önümüzdeki 8 gün içinde bu ödemeyi gerçekleştirmek için lütfen gerekli " "önlemleri alınız.\n" -"\n" "Bu yazımız gönderilmeden önce bu ödemeyi yaptıysanız lütfen bu yazımızı " "dikkate almayınız. Muhasebe bölümümüzle iletişime geçmekte lütfen tereddüt " "etmeyiniz. \n" @@ -276,7 +275,7 @@ msgstr "Bir Sorumlu Ata" #: field:account_followup.followup,followup_line:0 #: view:res.partner:0 msgid "Follow-up" -msgstr "Takip" +msgstr "İzleme" #. module: account_followup #: report:account_followup.followup.print:0 @@ -311,9 +310,9 @@ msgstr "" "tarihinin \n" " üzerinden geçecek belirli bir gün sayısı ile " "başlatılacak \n" -" takip düzeyleri içinde toplanmıştır. Aynı müşteri " +" izleme düzeyleri içinde toplanmıştır. Aynı müşteri " "için \n" -" vadesi geçen başka faturalar da varsa ençok geciken " +" vadesi geçen başka faturalar da varsa en çok geciken " "\n" " faturaya ait eylemler gerçekleştirilecektir." @@ -330,7 +329,7 @@ msgstr "İş Ortakları" #. module: account_followup #: sql_constraint:account_followup.followup:0 msgid "Only one follow-up per company is allowed" -msgstr "Her firma için yalnız bir takipe izin verilir" +msgstr "Her firma için yalnız bir izlemeye izin verilir" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:254 @@ -361,7 +360,7 @@ msgstr "Epostalar gönder ve mektuplar oluştur" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_customer_followup msgid "Manual Follow-Ups" -msgstr "Elle Takip" +msgstr "Elle İzleme" #. module: account_followup #: view:account_followup.followup.line:0 @@ -449,7 +448,7 @@ msgstr "Borç" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_stat msgid "Follow-up Statistics" -msgstr "Takip İstatistikleri" +msgstr "İzleme İstatistikleri" #. module: account_followup #: view:res.partner:0 @@ -459,12 +458,12 @@ msgstr "Vade Geçmesi Epostası Gönder" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup_line msgid "Follow-up Criteria" -msgstr "Takip Kriteri" +msgstr "İzleme Kriteri" #. module: account_followup #: help:account_followup.followup.line,sequence:0 msgid "Gives the sequence order when displaying a list of follow-up lines." -msgstr "Takip kalemleri görüntüleme sıralamasını verir." +msgstr "İzleme kalemleri görüntüleme sıralamasını verir." #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:166 @@ -486,7 +485,7 @@ msgstr "Bir Mektup Gönder" #. module: account_followup #: model:ir.actions.act_window,name:account_followup.action_account_followup_definition_form msgid "Payment Follow-ups" -msgstr "Ödeme Takipleri" +msgstr "Ödeme İzlemeleri" #. module: account_followup #: field:account_followup.followup.line,delay:0 @@ -497,12 +496,12 @@ msgstr "Vade Tarihleri" #: field:account.move.line,followup_line_id:0 #: view:account_followup.stat:0 msgid "Follow-up Level" -msgstr "Takip Seviyesi" +msgstr "İzleme Düzeyi" #. module: account_followup #: field:account_followup.stat,date_followup:0 msgid "Latest followup" -msgstr "Son İzleme" +msgstr "En son İzleme" #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_manual_reconcile_followup @@ -512,7 +511,7 @@ msgstr "Faturaları ve Ödemeleri Uzlaştır" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_s msgid "Do Manual Follow-Ups" -msgstr "Elle Takip Yap" +msgstr "Elle İzleme Yap" #. module: account_followup #: report:account_followup.followup.print:0 @@ -527,12 +526,12 @@ msgstr "Eposta Onayı Gönder" #. module: account_followup #: view:account_followup.stat:0 msgid "Follow-up Entries with period in current year" -msgstr "Geçerli yıl içindeki dönemin Takip Kayıtları" +msgstr "Geçerli yıl içindeki dönemin İzleme Kayıtları" #. module: account_followup #: field:account_followup.stat.by.partner,date_followup:0 msgid "Latest follow-up" -msgstr "Enson Takip" +msgstr "Enson İzleme" #. module: account_followup #: field:account_followup.print,partner_lang:0 @@ -548,7 +547,7 @@ msgstr " eposta(lar) gönderildi" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_print msgid "Print Follow-up & Send Mail to Customers" -msgstr "Müşterilere Takip Yazdır & Posta Gönder" +msgstr "Müşterilere İzleme Yazdır & Posta Gönder" #. module: account_followup #: field:account_followup.followup.line,description:0 @@ -583,7 +582,7 @@ msgid "Follow Ups" msgstr "İzlemeler" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "Eposta gönderilemedi çünkü iş ortağı eposta adresi yazılmamış" @@ -591,7 +590,7 @@ msgstr "Eposta gönderilemedi çünkü iş ortağı eposta adresi yazılmamış" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup msgid "Account Follow-up" -msgstr "Hesap Takip" +msgstr "Hesap İzleme" #. module: account_followup #: help:res.partner,payment_responsible_id:0 @@ -635,7 +634,7 @@ msgstr "Mektup ve Eposta Gönder" #. module: account_followup #: view:account_followup.followup:0 msgid "Search Follow-up" -msgstr "Takip Ara" +msgstr "İzleme Ara" #. module: account_followup #: view:res.partner:0 @@ -659,13 +658,13 @@ msgid "" "If not specified by the latest follow-up level, it will send from the " "default email template" msgstr "" -"Son takip düzeyinde belirlenmediyse varsayılan eposta şablonundan " +"Son izleme düzeyinde belirlenmediyse varsayılan eposta şablonundan " "gönderilecektir" #. module: account_followup #: sql_constraint:account_followup.followup.line:0 msgid "Days of the follow-up levels must be different" -msgstr "Takip düzeyi günleri farklı olmalı" +msgstr "İzleme düzeyi günleri farklı olmalı" #. module: account_followup #: view:res.partner:0 @@ -675,7 +674,7 @@ msgstr "Eylemi yapıldı olarak işaretlemek için tıklayın" #. module: account_followup #: model:ir.ui.menu,name:account_followup.menu_action_followup_stat_follow msgid "Follow-Ups Analysis" -msgstr "Takip Analizi" +msgstr "İzleme Analizi" #. module: account_followup #: help:res.partner,payment_next_action_date:0 @@ -685,31 +684,31 @@ msgid "" "action. Can be practical to set manually e.g. to see if he keeps his " "promises." msgstr "" -"Bu elle takip gerektiğinde olur . İş ortağı elle eylem gerektirecek izleme " -"düzeyine geldiğinde tarih geçerli tarihe ayarlanacaktır. Elle ayarlama " -"kullanışlı olabilir, örn. sözünü tutup tutmadığını görmek için." +"Bu elle izleme gerektirdiğinde olur . İş ortağı elle eylem gerektirecek " +"izleme düzeyine geldiğinde tarih geçerli tarihe ayarlanacaktır. Elle " +"ayarlama kullanışlı olabilir, örn. sözünü tutup tutmadığını görmek için." #. module: account_followup #: view:res.partner:0 msgid "Print overdue payments report independent of follow-up line" -msgstr "Takip kalemlerinden ayrı olarak vadesi geçen ödemeler raporu yazdır" +msgstr "İzleme kalemlerinden ayrı olarak vadesi geçen ödemeler raporu yazdır" #. module: account_followup #: help:account_followup.print,date:0 msgid "" "This field allow you to select a forecast date to plan your follow-ups" -msgstr "Bu alan takiplerinize öngörü planı yapmanızı sağlar." +msgstr "Bu alan izlemelerinizin öngörü planını yapmanızı sağlar." #. module: account_followup #: field:account_followup.print,date:0 msgid "Follow-up Sending Date" -msgstr "Takip Gönderim Tarihi" +msgstr "İzleme Gönderim Tarihi" #. module: account_followup #: view:res.partner:0 #: field:res.partner,payment_responsible_id:0 msgid "Follow-up Responsible" -msgstr "Takip Sorumlusu" +msgstr "İzleme Sorumlusu" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_level2 @@ -785,7 +784,7 @@ msgstr "Belge: Müşteri hesap özeti" #. module: account_followup #: model:ir.ui.menu,name:account_followup.account_followup_menu msgid "Follow-up Levels" -msgstr "Takip Düzeyleri" +msgstr "İzleme Düzeyleri" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line4 @@ -833,7 +832,7 @@ msgstr "Ödenecek Tutar" #. module: account_followup #: field:account.move.line,followup_date:0 msgid "Latest Follow-up" -msgstr "Son Takip" +msgstr "En son İzleme" #. module: account_followup #: view:account_followup.sending.results:0 @@ -847,7 +846,7 @@ msgid "unknown" msgstr "bilinmeyen" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "Yazdırılmış vadesi geçmiş ödemeler raporu" @@ -870,9 +869,9 @@ msgid "" "actions." msgstr "" "Aşağıda bu müşteriye ait işlemler geçmişi\n" -" vardır. Sonraki takip eylemlerinin dışında " +" vardır. Sonraki izleme eylemlerinin dışında " "tutmak için\n" -" \"Takip Yok\"u işaretleyebilirsiniz." +" \"İzleme Yok\"u işaretleyebilirsiniz." #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:171 @@ -929,13 +928,13 @@ msgstr "Vadesi Geçmiş Tutar" msgid "" "The maximum follow-up level without taking into account the account move " "lines with litigation" -msgstr "Bir ihtilaf gerektirmeyecek en yüksek takip düzeyi." +msgstr "Bir ihtilaf gerektirmeyecek en yüksek izleme düzeyi." #. module: account_followup #: view:account_followup.stat:0 #: field:res.partner,latest_followup_date:0 msgid "Latest Follow-up Date" -msgstr "Enson Takip Tarihi" +msgstr "Enson İzleme Tarihi" #. module: account_followup #: model:email.template,body_html:account_followup.email_template_account_followup_default @@ -980,7 +979,7 @@ msgstr "" "önlemleri alınız.\n" "Bu yazımız gönderilmeden önce bu ödemeyi yaptıysanız lütfen bu yazımızı " "dikkate almayınız. Muhasebe bölümümüzle iletişime geçmekte lütfen tereddüt " -"etmeyiniz.\n" +"etmeyiniz. \n" "

\n" "
\n" "Saygılarımızla,\n" @@ -1012,7 +1011,7 @@ msgstr "Ödeme Bildirimi" #. module: account_followup #: view:res.partner:0 msgid "My Follow-ups" -msgstr "Takiplerim" +msgstr "İzlemelerim" #. module: account_followup #: view:account_followup.followup.line:0 @@ -1068,7 +1067,7 @@ msgstr "%s iş ortağının hiç borcu yoktur ve eylem gereksizdir" #. module: account_followup #: model:ir.actions.report.xml,name:account_followup.account_followup_followup_report msgid "Follow-up Report" -msgstr "Takip Raporu" +msgstr "İzleme Raporu" #. module: account_followup #: view:res.partner:0 @@ -1097,7 +1096,7 @@ msgstr "İhtilaf" #. module: account_followup #: field:account_followup.stat.by.partner,max_followup_id:0 msgid "Max Follow Up Level" -msgstr "Enüst İzleme Seviyesi" +msgstr "Enüst İzleme Düzeyi" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:171 @@ -1114,7 +1113,7 @@ msgstr "Sorumlu" #: model:ir.ui.menu,name:account_followup.menu_finance_followup #: view:res.partner:0 msgid "Payment Follow-up" -msgstr "Ödeme Takibi" +msgstr "Ödeme İzlemesi" #. module: account_followup #: view:account_followup.followup.line:0 @@ -1128,7 +1127,7 @@ msgid "" " set the manual actions per customer, according to " "the follow-up levels defined." msgstr "" -"Bu eylem, tanımlanan takip düzeylerine göre takip epostaları,\n" +"Bu eylem, tanımlanan izleme düzeylerine göre izleme epostaları,\n" " basılı mektuplar gönderecektir ve her müşteri için " "elle eylemler \n" " ayarlayacaktır." @@ -1136,7 +1135,7 @@ msgstr "" #. module: account_followup #: field:account_followup.followup.line,name:0 msgid "Follow-Up Action" -msgstr "Takip Eylemi" +msgstr "İzleme Eylemi" #. module: account_followup #: view:account_followup.stat:0 @@ -1146,7 +1145,7 @@ msgstr "Davalı olarak işaretli günlük girişlerini içerir" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Açıklama" @@ -1174,7 +1173,7 @@ msgstr "Bu Mali Yıl" #. module: account_followup #: field:res.partner,latest_followup_level_id_without_lit:0 msgid "Latest Follow-up Level without litigation" -msgstr "İhtilafsız Enson Takip Düzeyi" +msgstr "İhtilafsız Enson İzleme Düzeyi" #. module: account_followup #: model:ir.actions.act_window,help:account_followup.action_account_manual_reconcile_receivable @@ -1197,7 +1196,7 @@ msgstr "İş Ortağı kayıtları" #. module: account_followup #: view:account_followup.stat:0 msgid "Follow-up lines" -msgstr "Takip kalemleri" +msgstr "İzleme kalemleri" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line3 @@ -1254,7 +1253,7 @@ msgid "" "installed\n" " using to top right icon." msgstr "" -"Buraya takip düzeyine uygun olarak\n" +"Buraya izleme düzeyine uygun olarak\n" " bilgilendirme mektubunu yazın. Aşağıdaki\n" " metindeki anahtar kelimeleri kullanabilirsiniz. " "Üst\n" @@ -1266,7 +1265,7 @@ msgstr "" #: view:account_followup.stat:0 #: model:ir.actions.act_window,name:account_followup.action_followup_stat msgid "Follow-ups Sent" -msgstr "Gönderilen Takipler" +msgstr "Gönderilen İzlemeler" #. module: account_followup #: field:account_followup.followup,name:0 @@ -1276,7 +1275,7 @@ msgstr "Adı" #. module: account_followup #: field:res.partner,latest_followup_level_id:0 msgid "Latest Follow-up Level" -msgstr "Enson Takip Düzeyi" +msgstr "Enson İzleme Düzeyi" #. module: account_followup #: field:account_followup.stat,date_move:0 @@ -1287,7 +1286,7 @@ msgstr "İlk Hareket" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_stat_by_partner msgid "Follow-up Statistics by Partner" -msgstr "İş Ortağına göre Takip İstatistikleri" +msgstr "İş Ortağına göre İzleme İstatistikleri" #. module: account_followup #: code:addons/account_followup/wizard/account_followup_print.py:172 @@ -1320,7 +1319,7 @@ msgid "" " " msgstr "" "

\n" -" Takip düzeylerini ve ilişkili eylemlerini tanımlamak için " +" İzleme düzeylerini ve ilişkili eylemlerini tanımlamak için " "tıklayın.\n" "

\n" " Her adım için yapılması gereken eylemleri ve gecikme " @@ -1334,7 +1333,7 @@ msgstr "" #: code:addons/account_followup/wizard/account_followup_print.py:166 #, python-format msgid "Follow-up letter of " -msgstr "Bunun takip mektubu " +msgstr "Bunun izleme mektubu " #. module: account_followup #: view:res.partner:0 @@ -1344,7 +1343,7 @@ msgstr "Bu" #. module: account_followup #: view:account_followup.print:0 msgid "Send follow-ups" -msgstr "Takip gönder" +msgstr "İzleme gönder" #. module: account_followup #: view:account.move.line:0 @@ -1359,7 +1358,7 @@ msgstr "Sıra No" #. module: account_followup #: view:res.partner:0 msgid "Follow-ups To Do" -msgstr "Yapılacak Takipler" +msgstr "Yapılacak İzlemeler" #. module: account_followup #: report:account_followup.followup.print:0 @@ -1384,7 +1383,7 @@ msgstr "" #. module: account_followup #: help:res.partner,latest_followup_date:0 msgid "Latest date that the follow-up level of the partner was changed" -msgstr "İş Ortağının takip düzeyinin değiştirildiği enson tarih" +msgstr "İş Ortağının izleme düzeyinin değiştirildiği enson tarih" #. module: account_followup #: field:account_followup.print,test_print:0 diff --git a/addons/account_followup/i18n/uk.po b/addons/account_followup/i18n/uk.po index 568999316af..604445f190d 100644 --- a/addons/account_followup/i18n/uk.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "Компанія" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "Послідовності дій" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -699,7 +699,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -945,7 +945,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Опис" diff --git a/addons/account_followup/i18n/vi.po b/addons/account_followup/i18n/vi.po index 594a0ae6c05..4ef3d24968f 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -82,7 +82,7 @@ msgstr "Công ty" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "Ngày Hóa đơn" @@ -119,7 +119,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "" @@ -491,7 +491,7 @@ msgid "Follow Ups" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -700,7 +700,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -946,7 +946,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "Mô tả" diff --git a/addons/account_followup/i18n/zh_CN.po b/addons/account_followup/i18n/zh_CN.po index eaf33ff4734..e4bb6efa2ea 100644 --- a/addons/account_followup/i18n/zh_CN.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "公司" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "发票日期" @@ -94,7 +94,7 @@ msgstr "电子邮件主题" #. module: account_followup #: view:account_followup.followup.line:0 msgid "%(user_signature)s" -msgstr "" +msgstr "%(user_signature)s" #. module: account_followup #: view:account_followup.followup.line:0 @@ -118,7 +118,7 @@ msgstr "发送催款" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "金额" @@ -133,7 +133,7 @@ msgstr "" #. module: account_followup #: view:res.partner:0 msgid "No Responsible" -msgstr "" +msgstr "没有负责任的" #. module: account_followup #: model:account_followup.followup.line,description:account_followup.demo_followup_line2 @@ -219,7 +219,7 @@ msgstr ":伙伴名称" #. module: account_followup #: field:account_followup.followup.line,manual_action_responsible_id:0 msgid "Assign a Responsible" -msgstr "" +msgstr "指定负责人员" #. module: account_followup #: view:account_followup.followup:0 @@ -269,7 +269,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 @@ -398,7 +398,7 @@ 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 @@ -414,12 +414,12 @@ 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 msgid "Do Manual Follow-Ups" -msgstr "" +msgstr "手工催款" #. module: account_followup #: report:account_followup.followup.print:0 @@ -450,7 +450,7 @@ msgstr "用业务伙伴的语言发电子邮件" #: code:addons/account_followup/wizard/account_followup_print.py:169 #, python-format msgid " email(s) sent" -msgstr "" +msgstr " 发出邮件" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_print @@ -466,12 +466,12 @@ msgstr "已打印消息" #: code:addons/account_followup/wizard/account_followup_print.py:155 #, python-format msgid "Anybody" -msgstr "" +msgstr "任何人" #. module: account_followup #: help:account_followup.followup.line,send_email:0 msgid "When processing, it will send an email" -msgstr "" +msgstr "处理时,将发出一个email" #. module: account_followup #: view:account_followup.stat.by.partner:0 @@ -481,7 +481,7 @@ msgstr "提醒合作伙伴" #. module: account_followup #: view:res.partner:0 msgid "Print Overdue Payments" -msgstr "" +msgstr "打印逾期支付" #. module: account_followup #: field:account_followup.followup.line,followup_id:0 @@ -490,10 +490,10 @@ msgid "Follow Ups" msgstr "催款" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" -msgstr "" +msgstr "邮件未发出,因为合作伙伴的Email地址没填写" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_followup @@ -505,7 +505,7 @@ msgstr "催款" msgid "" "Optionally you can assign a user to this field, which will make him " "responsible for the action." -msgstr "" +msgstr "你可以随意指定一个用户到这个字段,将使他负责这个动作" #. module: account_followup #: model:ir.model,name:account_followup.model_account_followup_sending_results @@ -699,7 +699,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -945,7 +945,7 @@ msgstr "包含有争议的凭证行" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "说明" diff --git a/addons/account_followup/i18n/zh_TW.po b/addons/account_followup/i18n/zh_TW.po index 50e929c4b79..caff516dba6 100644 --- a/addons/account_followup/i18n/zh_TW.po +++ b/addons/account_followup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_followup #: model:email.template,subject:account_followup.email_template_account_followup_default @@ -81,7 +81,7 @@ msgstr "公司" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:259 +#: code:addons/account_followup/account_followup.py:258 #, python-format msgid "Invoice Date" msgstr "發票日期" @@ -118,7 +118,7 @@ msgstr "" #. module: account_followup #: report:account_followup.followup.print:0 -#: code:addons/account_followup/account_followup.py:263 +#: code:addons/account_followup/account_followup.py:262 #, python-format msgid "Amount" msgstr "金額" @@ -490,7 +490,7 @@ msgid "Follow Ups" msgstr "催款" #. module: account_followup -#: code:addons/account_followup/account_followup.py:219 +#: code:addons/account_followup/account_followup.py:218 #, python-format msgid "Email not sent because of email address of partner not filled in" msgstr "" @@ -701,7 +701,7 @@ msgid "unknown" msgstr "" #. module: account_followup -#: code:addons/account_followup/account_followup.py:314 +#: code:addons/account_followup/account_followup.py:313 #, python-format msgid "Printed overdue payments report" msgstr "" @@ -947,7 +947,7 @@ msgstr "包括訴訟標記的帳簿分錄" #. module: account_followup #: report:account_followup.followup.print:0 #: field:account_followup.sending.results,description:0 -#: code:addons/account_followup/account_followup.py:260 +#: code:addons/account_followup/account_followup.py:259 #, python-format msgid "Description" msgstr "說明" diff --git a/addons/account_payment/i18n/am.po b/addons/account_payment/i18n/am.po index 8fd61969110..59ef3c9f42e 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 129285d2d01..ec868ba6ce8 100644 --- a/addons/account_payment/i18n/ar.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 190cce18c5f..b1a65370602 100644 --- a/addons/account_payment/i18n/bg.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 c7e3077fbec..8a66a5d92e7 100644 --- a/addons/account_payment/i18n/bs.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 b85ce630619..7d39ef10f49 100644 --- a/addons/account_payment/i18n/ca.po +++ b/addons/account_payment/i18n/ca.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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 1f5cdd54ed0..20cdef358d6 100644 --- a/addons/account_payment/i18n/cs.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -32,23 +32,23 @@ msgstr "" #. module: account_payment #: field:payment.line,currency:0 msgid "Partner Currency" -msgstr "" +msgstr "Měna protistrany" #. module: account_payment #: view:payment.order:0 msgid "Set to draft" -msgstr "Uložit jako návrh" +msgstr "Uložit jako koncept" #. module: account_payment #: help:payment.order,mode:0 msgid "Select the Payment Mode to be applied." -msgstr "" +msgstr "Zvolte platební metodu, která se má použít." #. module: account_payment #: view:payment.mode:0 #: view:payment.order:0 msgid "Group By..." -msgstr "" +msgstr "Seskupit podle..." #. module: account_payment #: field:payment.order,line_ids:0 @@ -74,7 +74,7 @@ msgstr "" #: field:payment.mode,company_id:0 #: field:payment.order,company_id:0 msgid "Company" -msgstr "" +msgstr "Společnost" #. module: account_payment #: model:res.groups,name:account_payment.group_account_payment diff --git a/addons/account_payment/i18n/da.po b/addons/account_payment/i18n/da.po index 3e1ff5011bb..b2e32e39d4e 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 600c52876c6..fc35c784b85 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 7b4f0596033..297dd1d050c 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 71700f79289..06fadc777f1 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 b86f24ed658..c5185fc4714 100644 --- a/addons/account_payment/i18n/es.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 7fb69b50f9b..c2ccf2ccb9c 100644 --- a/addons/account_payment/i18n/es_AR.po +++ b/addons/account_payment/i18n/es_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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 585519b067e..afbccfea5da 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 1d557fddb15..26b99b83b12 100644 --- a/addons/account_payment/i18n/es_CR.po +++ b/addons/account_payment/i18n/es_CR.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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: account_payment diff --git a/addons/account_payment/i18n/es_EC.po b/addons/account_payment/i18n/es_EC.po index 8451c52d09e..c0a368b2aa5 100644 --- a/addons/account_payment/i18n/es_EC.po +++ b/addons/account_payment/i18n/es_EC.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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\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 69ec01e455f..0f9ba90d2e8 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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\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 e94b2732ebc..5e0fbd3a7ea 100644 --- a/addons/account_payment/i18n/et.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 35e735be625..419c7999f1d 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 21c1eb488d1..01b7412e919 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 d4b4dae0eba..fe18bda0529 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #~ msgid "Total debit" #~ msgstr "Débit total" diff --git a/addons/account_payment/i18n/gl.po b/addons/account_payment/i18n/gl.po index c885d181557..4f77933b0f1 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 13942a37dba..4bd55887c60 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 eb9f92a7f8f..e00ecf10d86 100644 --- a/addons/account_payment/i18n/hr.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 9bfe4215880..e4a9ad8f524 100644 --- a/addons/account_payment/i18n/hu.po +++ b/addons/account_payment/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-27 04:36+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -233,7 +233,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/id.po b/addons/account_payment/i18n/id.po index 7d5c3e49d81..e2b9101c3a8 100644 --- a/addons/account_payment/i18n/id.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 6f9ae609688..775814a7728 100644 --- a/addons/account_payment/i18n/it.po +++ b/addons/account_payment/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-18 18:55+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 69b0e5a799f..b3825c80666 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 5637d35f689..015d28cc169 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 46431d36f07..31d0b09b9d4 100644 --- a/addons/account_payment/i18n/lt.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -183,7 +183,7 @@ msgstr "" #. module: account_payment #: view:payment.line:0 msgid "Amount Total" -msgstr "" +msgstr "Viso" #. module: account_payment #: help:payment.order,state:0 diff --git a/addons/account_payment/i18n/lv.po b/addons/account_payment/i18n/lv.po index 0c36de0a6f1..c10e8469483 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 5ff6085f296..3c47738239e 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -29,6 +29,14 @@ msgid "" "

\n" " " msgstr "" +"

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

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

\n" +" " #. module: account_payment #: field:payment.line,currency:0 @@ -43,7 +51,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 +69,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 +77,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 +90,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 +101,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 +132,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 +161,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 +172,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 +196,7 @@ msgstr "Ставка од уплата" #. module: account_payment #: view:payment.line:0 msgid "Amount Total" -msgstr "Износ вкупно" +msgstr "Вкупен износ" #. module: account_payment #: help:payment.order,state:0 @@ -193,6 +205,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 +218,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 +254,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 +268,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 +280,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 +291,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 +311,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 +338,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 +371,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 +383,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 +403,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 +436,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 +483,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 +513,7 @@ msgstr "" #. module: account_payment #: report:payment.order:0 msgid "Invoice Ref" -msgstr "Реф на вактура" +msgstr "Реф на фактура" #. module: account_payment #: field:payment.line,name:0 @@ -502,7 +523,7 @@ msgstr "Вашата референца" #. module: account_payment #: view:payment.order:0 msgid "Payment order" -msgstr "Налог за уплата" +msgstr "Налог за плаќање" #. module: account_payment #: view:payment.line:0 @@ -536,7 +557,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 +575,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 +634,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 +662,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 @@ -679,4 +700,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_payment/i18n/mn.po b/addons/account_payment/i18n/mn.po index 94005639e2a..4f4614796cf 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -178,7 +178,7 @@ msgstr "Төлбөрийн мөр дахин давтагдах ёсгүй!" #: 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 diff --git a/addons/account_payment/i18n/nb.po b/addons/account_payment/i18n/nb.po index 7209f6dd72d..f04964218b6 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 854eda95696..3f61ddd8139 100644 --- a/addons/account_payment/i18n/nl.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -444,7 +444,7 @@ msgstr "Betalingsregels" #. module: account_payment #: model:ir.model,name:account_payment.model_account_move_line msgid "Journal Items" -msgstr "Boekingen" +msgstr "Boekingsregels" #. module: account_payment #: help:payment.line,move_line_id:0 @@ -583,7 +583,7 @@ msgstr "Zoek betalingen" #. module: account_payment #: field:payment.line,amount_currency:0 msgid "Amount in Partner Currency" -msgstr "Bedrag in relatie's valuta" +msgstr "Bedrag in valuta v/d relatie" #. module: account_payment #: field:payment.line,communication2:0 diff --git a/addons/account_payment/i18n/nl_BE.po b/addons/account_payment/i18n/nl_BE.po index 8b7f1263ffd..034feaf0b93 100644 --- a/addons/account_payment/i18n/nl_BE.po +++ b/addons/account_payment/i18n/nl_BE.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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 5f904eb907d..f04ba98018a 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 949993a2819..ca5c7747d24 100644 --- a/addons/account_payment/i18n/pl.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 05862b11fb9..6e6cbfccc52 100644 --- a/addons/account_payment/i18n/pt.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 25de1343d0a..ec388a9f70e 100644 --- a/addons/account_payment/i18n/pt_BR.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 24894fd0792..190d0878d15 100644 --- a/addons/account_payment/i18n/ro.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 2123498e3bd..9b5444bc9de 100644 --- a/addons/account_payment/i18n/ru.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 394d85542b0..d50b051cc8a 100644 --- a/addons/account_payment/i18n/sl.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 9cb9aeeea71..864b6ab0b69 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 ea67ccbb86c..be78ea9ea43 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 425ab04ac55..c8361584fc3 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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\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 9ec14ce1022..14e103caa29 100644 --- a/addons/account_payment/i18n/sv.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 2b9a232ad0d..8782d2ff539 100644 --- a/addons/account_payment/i18n/tlh.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 b895415a1ee..0da021622e8 100644 --- a/addons/account_payment/i18n/tr.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_payment #: model:ir.actions.act_window,help:account_payment.action_payment_order_tree @@ -129,8 +129,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 "" -"Ödeme emri içine aktarılan bir faturayı iptal edemezsiniz.\r\n" -"faturayı ödeme emrinden çıkart: %s." +"Ödeme emrine aktarılan bir faturayı iptal edemezsiniz.\r\n" +"Bu faturayı aşağıdaki ödeme emrinden çıkart: %s." #. module: account_payment #: code:addons/account_payment/account_invoice.py:43 diff --git a/addons/account_payment/i18n/uk.po b/addons/account_payment/i18n/uk.po index 6a80b9bbf13..5b78b781271 100644 --- a/addons/account_payment/i18n/uk.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 5dba538ba7a..6f3415a1085 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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 c5ef90562c1..be1bb6b519e 100644 --- a/addons/account_payment/i18n/zh_CN.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 a1df089aa02..a2a5be8fce7 100644 --- a/addons/account_payment/i18n/zh_TW.po +++ b/addons/account_payment/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-16 05:26+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:19+0000\n" +"X-Generator: Launchpad (build 16753)\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 0c06417692c..da0d149706e 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 e7af967b3c0..a6c42e2e7bd 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 30898d35bf6..a386227cea5 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_sequence #: view:account.sequence.installer:0 diff --git a/addons/account_sequence/i18n/cs.po b/addons/account_sequence/i18n/cs.po index 480e6f5ff6b..a6a19254265 100644 --- a/addons/account_sequence/i18n/cs.po +++ b/addons/account_sequence/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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 42d464ad61a..1f2d8cf2dc2 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 6b791bfc622..ab698f3dd8e 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 c15be4f9cfd..a019f194520 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 bf7439640b3..0d60aac4c67 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 6fce2892620..32db5ae0c96 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 7288d0fa81f..6f87bedf544 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: account_sequence diff --git a/addons/account_sequence/i18n/es_EC.po b/addons/account_sequence/i18n/es_EC.po index c1941a4ba70..0535ff7115d 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 938a532d9c5..0f4da06109f 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 d549cc03d83..67f9586dcdb 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 436cdc48684..d95eb740ab9 100644 --- a/addons/account_sequence/i18n/fr.po +++ b/addons/account_sequence/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 d868fac0711..116777be780 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 176491b09f6..fb6cc72e4d8 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 27f107b7bd6..fe693378ee3 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 5828dd35f4c..e5c6fe174e3 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 060cbb28ce1..124fe580a9a 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 ee4d49ef41b..e97a7ba30aa 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 79e7b6dc322..7b6977e6c68 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 ed2ecc175be..046e6e4fd79 100644 --- a/addons/account_sequence/i18n/mk.po +++ b/addons/account_sequence/i18n/mk.po @@ -14,20 +14,20 @@ msgstr "" "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 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 +52,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 +72,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 +110,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 +133,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 +150,5 @@ msgstr "Дневник" #: view:account.sequence.installer:0 msgid "You can enhance the Account Sequence Application by installing ." msgstr "" +"Можете да ја подобрите апликацијата за секвенцата на сметката преку " +"инсталирање." diff --git a/addons/account_sequence/i18n/mn.po b/addons/account_sequence/i18n/mn.po index 368ed342f93..a768c4c9427 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_sequence #: view:account.sequence.installer:0 @@ -27,7 +27,7 @@ msgstr "" #: 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 @@ -83,7 +83,7 @@ msgstr "" #: field:account.move,internal_sequence_number:0 #: field:account.move.line,internal_sequence_number:0 msgid "Internal Number" -msgstr "" +msgstr "Дотоод дугаар" #. module: account_sequence #: help:account.sequence.installer,padding:0 @@ -100,7 +100,7 @@ msgstr "" #. module: account_sequence #: field:account.journal,internal_sequence_id:0 msgid "Internal Sequence" -msgstr "" +msgstr "Дотоод дараалал" #. module: account_sequence #: help:account.sequence.installer,prefix:0 diff --git a/addons/account_sequence/i18n/nb.po b/addons/account_sequence/i18n/nb.po index c96a43a86c1..03f7f568df6 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 096dc7284c7..0b5e0961a56 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_sequence #: view:account.sequence.installer:0 @@ -77,7 +77,7 @@ msgstr "Nummer verspringing" #. module: account_sequence #: model:ir.model,name:account_sequence.model_account_move_line msgid "Journal Items" -msgstr "Boekingen" +msgstr "Boekingsregels" #. module: account_sequence #: field:account.move,internal_sequence_number:0 diff --git a/addons/account_sequence/i18n/nl_BE.po b/addons/account_sequence/i18n/nl_BE.po index 58d707ee477..d0235afd770 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 d4f5c3ee7aa..2c52dc263c5 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_sequence #: view:account.sequence.installer:0 @@ -122,7 +122,7 @@ msgstr "Sufiks" #. module: account_sequence #: view:account.sequence.installer:0 msgid "title" -msgstr "" +msgstr "tytuł" #. module: account_sequence #: field:account.sequence.installer,prefix:0 diff --git a/addons/account_sequence/i18n/pt.po b/addons/account_sequence/i18n/pt.po index 0cd6990533a..073a0938ca0 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 22636cf9e8f..cf94a4e4e35 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 d9df352872c..6fa4ed22172 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 5c041748b31..ca18d7f6401 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 9464d9b2553..7fd7062e739 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 e0460b08b28..bd1e50b8583 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 be3b460209f..0571dcb14f3 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 da3ce321fde..1a5b8329703 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 83a26eeefa9..231e98bfdc5 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 132ad7e7026..347d72928dc 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 d38db61e87e..000c10cd89f 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 a64047e614a..884135d4656 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 164ab18e362..08b9ba62729 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/cs.po b/addons/account_test/i18n/cs.po index 82c85a734dd..7c3bfc383ad 100644 --- a/addons/account_test/i18n/cs.po +++ b/addons/account_test/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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 cdc49d79f7c..f0a1aa996f4 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 c02014b8113..7edf8ce50b6 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 8e8f4c9c6b1..b0a6e1e3ecd 100644 --- a/addons/account_test/i18n/fr.po +++ b/addons/account_test/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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_test #: view:accounting.assert.test:0 @@ -47,6 +47,32 @@ msgid "" " cr.execute(sql)\n" " result = cr.dictfetchall()" msgstr "" +"Le code devrait définir une variable nommée 'result' avec pour valeur le " +"résultat de votre test, et de type liste ou\n" +"dictionnaire. Si 'result' est une liste vide, alors le test fut réussi. " +"Autrement il essaiera\n" +"de traduire et d'imprimer le contenu de 'result'.\n" +"\n" +"Si le 'result' de votre test est un dictionnaire, vous pouvez définir une " +"variable nommée 'column_order' pour indiquer\n" +"dans quel ordre vous voulez imprimer le contenu de 'result'.\n" +"\n" +"En cas de besoin, vous pouvez aussi utiliser les variables suivantes dans " +"votre code:\n" +" * cr: curseur de base de données\n" +" * uid: ID de l'utilisateur actuel\n" +"\n" +"Dans tous les cas, le code doit être des déclarations python correctes avec " +"une indentation correcte (si besoin).\n" +"\n" +"Exemple: \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()" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_02 @@ -74,12 +100,12 @@ msgstr "Nom du test" #. module: account_test #: report:account.test.assert.print:0 msgid "Accouting tests on" -msgstr "" +msgstr "Comptabilité - Tests en cours" #. module: account_test #: model:accounting.assert.test,name:account_test.account_test_01 msgid "Test 1: General balance" -msgstr "" +msgstr "Test 1: Solde global" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_06 @@ -101,7 +127,7 @@ msgstr "Tests" #. module: account_test #: field:accounting.assert.test,desc:0 msgid "Test Description" -msgstr "" +msgstr "Description du test" #. module: account_test #: view:accounting.assert.test:0 @@ -123,13 +149,13 @@ msgstr "" #: 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 "" +msgstr "Tests (Comptabilité)" #. module: account_test #: code:addons/account_test/report/account_test_report.py:74 #, python-format msgid "The test was passed successfully" -msgstr "" +msgstr "Le test a été effectué avec succès." #. module: account_test #: field:accounting.assert.test,active:0 @@ -155,7 +181,7 @@ msgstr "" #. module: account_test #: field:accounting.assert.test,code_exec:0 msgid "Python code" -msgstr "" +msgstr "Source python" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_07 @@ -205,6 +231,8 @@ msgid "" "Check if the balance of the new opened fiscal year matches with last year's " "balance" msgstr "" +"Vérifier si le solde du dernier exercice comptable ouvert correspond au " +"solde de l'exercice précédent" #. module: account_test #: view:accounting.assert.test:0 @@ -219,11 +247,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquer pour créer un test (Comptabilité).\n" +"

\n" +" " #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_01 msgid "Check the balance: Debit sum = Credit sum" -msgstr "" +msgstr "Vérifier le solde : Débit total = Crédit total" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_08 diff --git a/addons/account_test/i18n/hr.po b/addons/account_test/i18n/hr.po index 275241481ad..c00b45f8d9f 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_test #: view:accounting.assert.test:0 diff --git a/addons/account_test/i18n/hu.po b/addons/account_test/i18n/hu.po index b2d8eb81feb..fd4488f322a 100644 --- a/addons/account_test/i18n/hu.po +++ b/addons/account_test/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-04-03 05:26+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 63fa483a331..e28eaa4de55 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 d43db78b079..c3d2cf08db8 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_test #: view:accounting.assert.test:0 @@ -59,7 +59,7 @@ msgid "" "Check that reconciled invoice for Sales/Purchases has reconciled entries for " "Payable and Receivable Accounts" msgstr "" -"Означете дека порамнетата фактура за Продажби/Набавки има порамнети записи " +"Означете дека порамнетата фактура за Продажби/Набавки има порамнети внесови " "за Сметките Плаќања и Побарувања" #. module: account_test @@ -78,7 +78,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 +115,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 +178,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 +227,10 @@ msgid "" "

\n" " " msgstr "" +"

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

\n" +" " #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_01 @@ -237,13 +241,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_test/i18n/mn.po b/addons/account_test/i18n/mn.po index 97b33c00beb..895048b8697 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 e3535a79897..3a7d7d27f63 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 9b6fd444d5c..9a18f032165 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 7ffb7b9a90c..f3a1ef8c216 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_test #: view:accounting.assert.test:0 @@ -101,7 +101,7 @@ msgstr "Testes" #. module: account_test #: field:accounting.assert.test,desc:0 msgid "Test Description" -msgstr "" +msgstr "Descrição do teste" #. module: account_test #: view:accounting.assert.test:0 @@ -129,7 +129,7 @@ msgstr "" #: code:addons/account_test/report/account_test_report.py:74 #, python-format msgid "The test was passed successfully" -msgstr "" +msgstr "O teste passou com êxito" #. module: account_test #: field:accounting.assert.test,active:0 diff --git a/addons/account_test/i18n/pt_BR.po b/addons/account_test/i18n/pt_BR.po index 52cc90db120..39df403e18f 100644 --- a/addons/account_test/i18n/pt_BR.po +++ b/addons/account_test/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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 e637e781eb4..9ce5a653f4d 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_test #: view:accounting.assert.test:0 @@ -85,8 +85,8 @@ msgid "" "Check that reconciled invoice for Sales/Purchases has reconciled entries for " "Payable and Receivable Accounts" msgstr "" -"Verificati daca factura reconciliata pentru Vanzari/Achizitii a reconciliat " -"inregistrarile pentru Conturile de Plati si de Incasari" +"Verificați dacă factura reconciliată pentru Vânzări/Achiziții a reconciliat " +"înregistrarile pentru Conturile de Plăți și de Încasări" #. module: account_test #: model:accounting.assert.test,desc:account_test.account_test_03 diff --git a/addons/account_test/i18n/ru.po b/addons/account_test/i18n/ru.po index d36d83d2e99..14172dcdf16 100644 --- a/addons/account_test/i18n/ru.po +++ b/addons/account_test/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-06-06 05:21+0000\n" -"X-Generator: Launchpad (build 16667)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 7467cbbcb6e..819958c6810 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 8fa008c73cd..6dbea449342 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 081320aa24a..745440c880c 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 04:57+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 f5229846c3e..dea88457a73 100644 --- a/addons/account_voucher/i18n/ar.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "إلغاء" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "احصائيات القسيمة" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "عنصر يومية" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "خطأ!" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "ملغي" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -291,7 +291,7 @@ msgid "Tax" msgstr "ضريبة" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -342,7 +342,7 @@ msgid "Import Invoices" msgstr "إستيراد فواتير" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -361,7 +361,7 @@ msgid "Receipt" msgstr "استلام" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +382,7 @@ msgstr "فترة" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "مورد" @@ -403,7 +403,7 @@ msgid "Debit" msgstr "مدين" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -509,7 +509,7 @@ msgid "Pay Invoice" msgstr "دفع الفاتورة" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "لا يوجد قانون قاعدة الحساب و قانون ضريبة الحساب!" @@ -563,15 +563,15 @@ msgid "To Review" msgstr "للمراجعة" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "تغيير" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +625,7 @@ msgstr "شهر" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "العملة" @@ -668,7 +669,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "خطأ في الإعدادات!" @@ -733,7 +734,7 @@ msgid "October" msgstr "أكتوبر" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -813,7 +814,7 @@ msgid "Previous Payments ?" msgstr "المدفوعات السابقة؟" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -845,7 +846,7 @@ msgid "Active" msgstr "نشط" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "الرجاء تعريف تسلسل لليومية" @@ -973,7 +974,7 @@ msgid "Journal Items" msgstr "عناصر اليومية" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1182,7 +1183,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1245,8 +1246,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "اعدادات غير كافية" diff --git a/addons/account_voucher/i18n/bg.po b/addons/account_voucher/i18n/bg.po index 40067995db1..42003c2d64b 100644 --- a/addons/account_voucher/i18n/bg.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Отписване" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "Статистика за ваучери" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "Артикул от дневник" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "Отказани" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -291,7 +291,7 @@ msgid "Tax" msgstr "Данък" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -342,7 +342,7 @@ msgid "Import Invoices" msgstr "Импортиране на фактури" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -361,7 +361,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +382,7 @@ msgstr "Период" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Доставчик" @@ -403,7 +403,7 @@ msgid "Debit" msgstr "Дебит" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -509,7 +509,7 @@ msgid "Pay Invoice" msgstr "Плащане на фактура" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -563,15 +563,15 @@ msgid "To Review" msgstr "За преглед" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +625,7 @@ msgstr "Месец" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Валута" @@ -668,7 +669,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -731,7 +732,7 @@ msgid "October" msgstr "Октомври" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -811,7 +812,7 @@ msgid "Previous Payments ?" msgstr "Предишни плащания" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -843,7 +844,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -971,7 +972,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1180,7 +1181,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1243,8 +1244,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/bs.po b/addons/account_voucher/i18n/bs.po index d4be7c9d091..5fa52dfad6e 100644 --- a/addons/account_voucher/i18n/bs.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -291,7 +291,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -342,7 +342,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -361,7 +361,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +382,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -403,7 +403,7 @@ msgid "Debit" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -509,7 +509,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -563,15 +563,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +625,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "" @@ -668,7 +669,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -731,7 +732,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -811,7 +812,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -843,7 +844,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -971,7 +972,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1180,7 +1181,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1243,8 +1244,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/ca.po b/addons/account_voucher/i18n/ca.po index 828ef6e25ac..4f4d089d279 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Desajust" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "Estadístiques de comprovants" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "Anotació comptable" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "Cancel·lat" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -294,7 +294,7 @@ msgid "Tax" msgstr "Impost" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -345,7 +345,7 @@ msgid "Import Invoices" msgstr "Importa les factures" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -364,7 +364,7 @@ msgid "Receipt" msgstr "Rebut" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -385,7 +385,7 @@ msgstr "Període" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Proveïdor" @@ -406,7 +406,7 @@ msgid "Debit" msgstr "Deure" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -512,7 +512,7 @@ msgid "Pay Invoice" msgstr "Paga factura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "No codi base comptable i codi d'impost comptable!" @@ -566,15 +566,15 @@ msgid "To Review" msgstr "Per revisa" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -628,6 +628,7 @@ msgstr "Mes" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Divisa" @@ -671,7 +672,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -734,7 +735,7 @@ msgid "October" msgstr "Octubre" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -814,7 +815,7 @@ msgid "Previous Payments ?" msgstr "Pagaments previs?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -846,7 +847,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -974,7 +975,7 @@ msgid "Journal Items" msgstr "Apunts comptables" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1183,7 +1184,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1246,8 +1247,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/cs.po b/addons/account_voucher/i18n/cs.po index 5b253a3fe7e..768fc465b49 100644 --- a/addons/account_voucher/i18n/cs.po +++ b/addons/account_voucher/i18n/cs.po @@ -13,45 +13,45 @@ msgstr "" "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 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 msgid "Reconciliation" -msgstr "" +msgstr "Vyrovnání" #. 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 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" -msgstr "" +msgstr "Odpis" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Ref" -msgstr "" +msgstr "Var. symb. platby" #. module: account_voucher #: view:account.voucher:0 msgid "Total Amount" -msgstr "" +msgstr "Celková částka" #. module: account_voucher #: view:account.voucher:0 msgid "Open Customer Journal Entries" -msgstr "" +msgstr "Otevřít položky deníku zákazníka" #. module: account_voucher #: view:account.voucher:0 #: view:sale.receipt.report:0 msgid "Group By..." -msgstr "" +msgstr "Seskupit podle..." #. module: account_voucher #: help:account.voucher,writeoff_amount:0 @@ -63,19 +63,19 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "(Update)" -msgstr "" +msgstr "(Aktualizovat)" #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.act_pay_bills msgid "Bill Payment" -msgstr "" +msgstr "Vyúčtovat platbu" #. module: account_voucher #: 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 "Importovat záznamy" #. module: account_voucher #: view:account.voucher:0 @@ -85,43 +85,43 @@ msgstr "" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "March" -msgstr "" +msgstr "Březen" #. module: account_voucher #: field:account.voucher,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Nepřečtené zprávy" #. module: account_voucher #: view:account.voucher:0 msgid "Pay Bill" -msgstr "" +msgstr "Uhradit účet" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure you want to cancel this receipt?" -msgstr "" +msgstr "Opravdu chcete zrušit tuto účtenku?" #. module: account_voucher #: view:account.voucher:0 msgid "Set to Draft" -msgstr "" +msgstr "Uložit jako koncept" #. module: account_voucher #: help:account.voucher,reference:0 msgid "Transaction reference number." -msgstr "" +msgstr "Variabilní symbol transakce." #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by year of Invoice Date" -msgstr "" +msgstr "Seskupit podle roku fakturačního data" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Obchodník" #. module: account_voucher #: view:account.voucher:0 @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -139,13 +139,13 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Validate" -msgstr "" +msgstr "Schválit" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_payment msgid "Supplier Payments" -msgstr "" +msgstr "Platby dodavatelů" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_purchase_receipt @@ -167,14 +167,14 @@ msgstr "" #. module: account_voucher #: field:account.voucher,writeoff_acc_id:0 msgid "Counterpart Account" -msgstr "" +msgstr "Odpovídající účet" #. module: account_voucher #: field:account.voucher,account_id:0 #: field:account.voucher.line,account_id:0 #: field:sale.receipt.report,account_id:0 msgid "Account" -msgstr "" +msgstr "Účet" #. module: account_voucher #: field:account.voucher,line_dr_ids:0 @@ -184,7 +184,7 @@ msgstr "" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 msgid "Ok" -msgstr "" +msgstr "OK" #. module: account_voucher #: field:account.voucher.line,reconcile:0 @@ -197,59 +197,59 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,date_due:0 msgid "Due Date" -msgstr "" +msgstr "Splatnost" #. module: account_voucher #: field:account.voucher,narration:0 msgid "Notes" -msgstr "" +msgstr "Poznámky" #. module: account_voucher #: field:account.voucher,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Zprávy" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipts" -msgstr "" +msgstr "Nákupní účtenky" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 msgid "Journal Item" -msgstr "" +msgstr "Položka deníku" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" -msgstr "" +msgstr "Chyba!" #. module: account_voucher #: field:account.voucher.line,amount:0 msgid "Amount" -msgstr "" +msgstr "Částka" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Options" -msgstr "" +msgstr "Možnosti platby" #. module: account_voucher #: view:account.voucher:0 msgid "Other Information" -msgstr "" +msgstr "Jiné informace" #. module: account_voucher #: selection:account.voucher,state:0 #: selection:sale.receipt.report,state:0 msgid "Cancelled" -msgstr "" +msgstr "Zrušeno" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -267,44 +267,51 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kliknět pro vytvoření prodejní účtenky.\n" +"

\n" +" Jakmile je účtenka potvrzena, můžete zaznamenat platbu\n" +" zákazníka spojenou s touto účtenkou.\n" +"

\n" +" " #. module: account_voucher #: help:account.voucher,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: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement_line msgid "Bank Statement Line" -msgstr "" +msgstr "Řádek bankovního výpisu" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,day:0 msgid "Day" -msgstr "" +msgstr "Den" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,tax_id:0 msgid "Tax" -msgstr "" +msgstr "DPH" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Neplatná akce!" #. module: account_voucher #: field:account.voucher,comment:0 msgid "Counterpart Comment" -msgstr "" +msgstr "Odpovídající komentář" #. module: account_voucher #: field:account.voucher.line,account_analytic_id:0 msgid "Analytic Account" -msgstr "" +msgstr "Analytický účet" #. module: account_voucher #: help:account.voucher,message_summary:0 @@ -312,6 +319,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: account_voucher #: view:account.voucher:0 @@ -321,12 +330,12 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Information" -msgstr "" +msgstr "Platební údaje" #. module: account_voucher #: view:account.voucher:0 msgid "(update)" -msgstr "" +msgstr "(aktualizovat)" #. module: account_voucher #: view:account.voucher:0 @@ -334,15 +343,15 @@ msgstr "" #: view:sale.receipt.report:0 #: selection:sale.receipt.report,state:0 msgid "Draft" -msgstr "" +msgstr "Koncept" #. module: account_voucher #: view:account.bank.statement:0 msgid "Import Invoices" -msgstr "" +msgstr "Importovat faktury" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -358,10 +367,10 @@ msgstr "" #: selection:account.voucher,type:0 #: selection:sale.receipt.report,type:0 msgid "Receipt" -msgstr "" +msgstr "Účtenka" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -378,14 +387,14 @@ msgstr "" #: view:account.voucher:0 #: field:account.voucher,period_id:0 msgid "Period" -msgstr "" +msgstr "Období" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" -msgstr "" +msgstr "Dodavatel" #. module: account_voucher #: view:account.voucher:0 @@ -395,7 +404,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Sledující" #. module: account_voucher #: selection:account.voucher.line,type:0 @@ -403,7 +412,7 @@ msgid "Debit" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -418,12 +427,12 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,type:0 msgid "Type" -msgstr "" +msgstr "Druh" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Pro-forma Vouchers" -msgstr "" +msgstr "Proforma účtenky" #. module: account_voucher #: view:account.voucher:0 @@ -446,7 +455,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Open Supplier Journal Entries" -msgstr "" +msgstr "Otevřít položky deníku dodavatele" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_review_voucher_list @@ -456,7 +465,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,name:0 msgid "Memo" -msgstr "" +msgstr "Poznámka" #. module: account_voucher #: view:account.voucher:0 @@ -471,12 +480,12 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Bill Information" -msgstr "" +msgstr "Údaje dokladu" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "July" -msgstr "" +msgstr "Červenec" #. module: account_voucher #: help:account.voucher,state:0 @@ -494,22 +503,22 @@ msgstr "" #. module: account_voucher #: field:account.voucher,writeoff_amount:0 msgid "Difference Amount" -msgstr "" +msgstr "Částa rozdílu" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,due_delay:0 msgid "Avg. Due Delay" -msgstr "" +msgstr "Průměrné zpozdění po splatnosti" #. module: account_voucher #: code:addons/account_voucher/invoice.py:34 #, python-format msgid "Pay Invoice" -msgstr "" +msgstr "Uhradit fakturu" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -517,7 +526,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,tax_amount:0 msgid "Tax Amount" -msgstr "" +msgstr "DPH" #. module: account_voucher #: view:sale.receipt.report:0 @@ -549,29 +558,29 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Paid Amount" -msgstr "" +msgstr "Částka uhrazená" #. module: account_voucher #: field:account.voucher,payment_option:0 msgid "Payment Difference" -msgstr "" +msgstr "Rozdíl platby" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,audit:0 msgid "To Review" -msgstr "" +msgstr "Ke kontrole" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -599,35 +608,36 @@ msgstr "" #. module: account_voucher #: view:account.invoice:0 msgid "Register Payment" -msgstr "" +msgstr "Zaznamenat platbu" #. module: account_voucher #: field:account.statement.from.invoice.lines,line_ids:0 msgid "Invoices" -msgstr "" +msgstr "Faktury" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "December" -msgstr "" +msgstr "Prosinec" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by month of Invoice Date" -msgstr "" +msgstr "Skupina podle měsíce data faktury" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,month:0 msgid "Month" -msgstr "" +msgstr "Měsíc" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Měna" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 @@ -655,7 +665,7 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,company_id:0 msgid "Company" -msgstr "" +msgstr "Společnost" #. module: account_voucher #: help:account.voucher,paid:0 @@ -668,22 +678,22 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" -msgstr "" +msgstr "Chyba nastavení!" #. module: account_voucher #: view:account.voucher:0 #: view:sale.receipt.report:0 msgid "Draft Vouchers" -msgstr "" +msgstr "Koncepty účtenek" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,price_total_tax:0 msgid "Total With Tax" -msgstr "" +msgstr "Celkem s DPH" #. module: account_voucher #: view:account.voucher:0 @@ -695,7 +705,7 @@ msgstr "" #: field:account.voucher,state:0 #: view:sale.receipt.report:0 msgid "Status" -msgstr "" +msgstr "Stav" #. module: account_voucher #: view:account.voucher:0 @@ -706,17 +716,17 @@ msgstr "" #: view:account.statement.from.invoice.lines:0 #: view:account.voucher:0 msgid "or" -msgstr "" +msgstr "nebo" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "August" -msgstr "" +msgstr "Srpen" #. module: account_voucher #: view:account.voucher:0 msgid "Validate Payment" -msgstr "" +msgstr "Ověřit platbu" #. module: account_voucher #: help:account.voucher,audit:0 @@ -724,22 +734,24 @@ 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 "" +"Zaškrtněte toto pole, pokud si nejste jisti záznamem deníku a chcete jej " +"označit jako 'ke kontrole' účetním odborníkem." #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "October" -msgstr "" +msgstr "Říjen" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" -msgstr "" +msgstr "Prosím aktivujte posloupnost zvoleného deníku!" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "June" -msgstr "" +msgstr "Červen" #. module: account_voucher #: field:account.voucher,payment_rate_currency_id:0 @@ -749,45 +761,45 @@ msgstr "" #. module: account_voucher #: field:account.voucher,paid:0 msgid "Paid" -msgstr "" +msgstr "Uhrazeno" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "" +msgstr "Prodejní účtenky" #. module: account_voucher #: field:account.voucher,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Sleduje" #. module: account_voucher #: field:account.voucher,analytic_id:0 msgid "Write-Off Analytic Account" -msgstr "" +msgstr "Analytický účet odpisů" #. module: account_voucher #: field:account.voucher,date:0 #: field:account.voucher.line,date_original:0 #: field:sale.receipt.report,date:0 msgid "Date" -msgstr "" +msgstr "Datum" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "November" -msgstr "" +msgstr "Listopad" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "Rozšířené filtry…" #. module: account_voucher #: field:account.voucher,paid_amount_in_company_currency:0 msgid "Paid Amount in Company Currency" -msgstr "" +msgstr "Uhrazená částka v měně společnosti" #. module: account_voucher #: field:account.bank.statement.line,amount_reconciled:0 @@ -798,7 +810,7 @@ msgstr "" #: selection:account.voucher,pay_now:0 #: selection:sale.receipt.report,pay_now:0 msgid "Pay Directly" -msgstr "" +msgstr "Uhrazeno přímo" #. module: account_voucher #: field:account.voucher.line,type:0 @@ -808,18 +820,18 @@ msgstr "" #. module: account_voucher #: field:account.voucher,pre_line:0 msgid "Previous Payments ?" -msgstr "" +msgstr "Předchozí platby?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." -msgstr "" +msgstr "Faktura, kterou chcete uhradit, již není platná." #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "January" -msgstr "" +msgstr "Leden" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_voucher_list @@ -830,63 +842,63 @@ msgstr "" #. module: account_voucher #: model:ir.model,name:account_voucher.model_res_company msgid "Companies" -msgstr "" +msgstr "Společnosti" #. module: account_voucher #: field:account.voucher,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Souhrn" #. module: account_voucher #: field:account.voucher,active:0 msgid "Active" -msgstr "" +msgstr "Aktivní" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." -msgstr "" +msgstr "Prosím určete posloupnost deníku." #. 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 "Platby zákazníka" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt_report_all #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt_report_all #: view:sale.receipt.report:0 msgid "Sales Receipts Analysis" -msgstr "" +msgstr "Analýza prodejních účtenek" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by Invoice Date" -msgstr "" +msgstr "Seskupit podle fakturačního data" #. module: account_voucher #: view:account.voucher:0 msgid "Post" -msgstr "" +msgstr "Příspěvek" #. module: account_voucher #: view:account.voucher:0 msgid "Invoices and outstanding transactions" -msgstr "" +msgstr "Faktury a nevyřízené transakce" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,price_total:0 msgid "Total Without Tax" -msgstr "" +msgstr "Celkem bez DPH" #. module: account_voucher #: view:account.voucher:0 msgid "Bill Date" -msgstr "" +msgstr "Datum dokladu" #. module: account_voucher #: view:account.voucher:0 @@ -902,7 +914,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,number:0 msgid "Number" -msgstr "" +msgstr "Číslo" #. module: account_voucher #: selection:account.voucher.line,type:0 @@ -912,22 +924,22 @@ msgstr "" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement msgid "Bank Statement" -msgstr "" +msgstr "Výpis z bankovního účtu" #. 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 msgid "September" -msgstr "" +msgstr "Září" #. module: account_voucher #: view:account.voucher:0 msgid "Sales Information" -msgstr "" +msgstr "Údaje prodeje" #. module: account_voucher #: view:account.voucher:0 @@ -939,7 +951,7 @@ msgstr "" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_invoice msgid "Invoice" -msgstr "" +msgstr "Faktura" #. module: account_voucher #: view:account.voucher:0 @@ -950,48 +962,48 @@ msgstr "" #: view:account.statement.from.invoice.lines:0 #: view:account.voucher:0 msgid "Cancel" -msgstr "" +msgstr "Zrušit" #. module: account_voucher #: model:ir.actions.client,name:account_voucher.action_client_invoice_menu msgid "Open Invoicing Menu" -msgstr "" +msgstr "Otevřít nabídku fakturace" #. module: account_voucher #: selection:account.voucher,state:0 #: view:sale.receipt.report:0 #: selection:sale.receipt.report,state:0 msgid "Pro-forma" -msgstr "" +msgstr "Proforma" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,move_ids:0 msgid "Journal Items" -msgstr "" +msgstr "Položky deníku" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." -msgstr "" +msgstr "Prosím určete výchozí účty má dáti/dal deníku \"%s\"." #. module: account_voucher #: selection:account.voucher,type:0 #: selection:sale.receipt.report,type:0 msgid "Purchase" -msgstr "" +msgstr "Nákup" #. module: account_voucher #: view:account.invoice:0 #: view:account.voucher:0 msgid "Pay" -msgstr "" +msgstr "Uhradit" #. module: account_voucher #: view:account.voucher:0 msgid "Currency Options" -msgstr "" +msgstr "Možnosti měny" #. module: account_voucher #: help:account.voucher,payment_option:0 @@ -1023,22 +1035,22 @@ msgstr "" #. module: account_voucher #: field:account.voucher,payment_rate:0 msgid "Exchange Rate" -msgstr "" +msgstr "Směnný kurz" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Method" -msgstr "" +msgstr "Způsob platby" #. module: account_voucher #: field:account.voucher.line,name:0 msgid "Description" -msgstr "" +msgstr "Popis" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "May" -msgstr "" +msgstr "Květen" #. module: account_voucher #: view:account.voucher:0 @@ -1051,12 +1063,12 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,journal_id:0 msgid "Journal" -msgstr "" +msgstr "Deník" #. module: account_voucher #: view:account.voucher:0 msgid "Internal Notes" -msgstr "" +msgstr "Interní poznámky" #. module: account_voucher #: view:account.voucher:0 @@ -1067,12 +1079,12 @@ msgstr "" #. module: account_voucher #: field:account.voucher.line,amount_original:0 msgid "Original Amount" -msgstr "" +msgstr "Původní částka" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Receipt" -msgstr "" +msgstr "Nákupní účtenka" #. module: account_voucher #: help:account.voucher,payment_rate:0 @@ -1088,7 +1100,7 @@ msgstr "" #: field:sale.receipt.report,pay_now:0 #: selection:sale.receipt.report,type:0 msgid "Payment" -msgstr "" +msgstr "Platba" #. module: account_voucher #: view:account.voucher:0 @@ -1101,28 +1113,28 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Customer" -msgstr "" +msgstr "Zákazník" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "February" -msgstr "" +msgstr "Únor" #. module: account_voucher #: view:account.voucher:0 msgid "Supplier Invoices and Outstanding transactions" -msgstr "" +msgstr "Faktury dodavatelů a nevyřízené transakce" #. module: account_voucher #: field:account.voucher,reference:0 msgid "Ref #" -msgstr "" +msgstr "Zn. #" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,year:0 msgid "Year" -msgstr "" +msgstr "Rok" #. module: account_voucher #: field:account.config.settings,income_currency_exchange_account_id:0 @@ -1134,12 +1146,12 @@ msgstr "" #: selection:account.voucher,type:0 #: selection:sale.receipt.report,type:0 msgid "Sale" -msgstr "" +msgstr "Prodej" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "April" -msgstr "" +msgstr "Duben" #. module: account_voucher #: help:account.voucher,tax_id:0 @@ -1149,28 +1161,28 @@ msgstr "" #. module: account_voucher #: field:account.voucher,type:0 msgid "Default Type" -msgstr "" +msgstr "Výchozí druh" #. module: account_voucher #: help:account.voucher,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Zprávy a historie komunikace" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_statement_from_invoice_lines msgid "Entries by Statement from Invoices" -msgstr "" +msgstr "Položky podle vyúčtování z faktur" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,amount:0 msgid "Total" -msgstr "" +msgstr "Celkem" #. module: account_voucher #: field:account.voucher,move_id:0 msgid "Account Entry" -msgstr "" +msgstr "Účetní záznam" #. module: account_voucher #: constraint:account.bank.statement.line:0 @@ -1180,7 +1192,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1193,12 +1205,12 @@ msgstr "" #. module: account_voucher #: model:mail.message.subtype,name:account_voucher.mt_voucher_state_change msgid "Status Change" -msgstr "" +msgstr "Změna stavu" #. module: account_voucher #: selection:account.voucher,payment_option:0 msgid "Keep Open" -msgstr "" +msgstr "Ponechat otevřené" #. module: account_voucher #: field:account.voucher,line_ids:0 @@ -1211,17 +1223,17 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,delay_to_pay:0 msgid "Avg. Delay To Pay" -msgstr "" +msgstr "Průměrné zpoždění úhrady" #. module: account_voucher #: field:account.voucher.line,untax_amount:0 msgid "Untax Amount" -msgstr "" +msgstr "Částka bez DPH" #. module: account_voucher #: model:ir.model,name:account_voucher.model_sale_receipt_report msgid "Sales Receipt Statistics" -msgstr "" +msgstr "Statistiky prodejních účtenek" #. module: account_voucher #: view:account.voucher:0 @@ -1230,7 +1242,7 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Partner" #. module: account_voucher #: field:account.voucher.line,amount_unreconciled:0 @@ -1243,11 +1255,11 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" -msgstr "" +msgstr "Nedostatečné nastavení!" #. module: account_voucher #: help:account.voucher,active:0 @@ -1256,3 +1268,6 @@ msgid "" "inactive, which allow to hide the customer/supplier payment while the bank " "statement isn't confirmed." msgstr "" + +#~ msgid "Sales Receipt" +#~ msgstr "Účtenka" diff --git a/addons/account_voucher/i18n/da.po b/addons/account_voucher/i18n/da.po index 76c18f883c6..695bbdab773 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/de.po b/addons/account_voucher/i18n/de.po index c61bb01483b..9582e83192b 100644 --- a/addons/account_voucher/i18n/de.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Abschreibung" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "Statistik Zahlungsbelege" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -231,8 +231,8 @@ msgid "Journal Item" msgstr "Journal Buchung" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Fehler !" @@ -259,7 +259,7 @@ msgid "Cancelled" msgstr "Abgebrochen" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -311,7 +311,7 @@ msgid "Tax" msgstr "Steuer" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Diese Aktion ist fehlerhaft !" @@ -365,7 +365,7 @@ msgid "Import Invoices" msgstr "Importiere Rechnungen" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Falsche Belegzeile" @@ -384,7 +384,7 @@ msgid "Receipt" msgstr "Zahlungsbestätigung" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -408,7 +408,7 @@ msgstr "Periode" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Lieferant" @@ -429,7 +429,7 @@ msgid "Debit" msgstr "Konto belasten (Soll)" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Es ist nicht möglich das Journal zu ändern !" @@ -551,7 +551,7 @@ msgid "Pay Invoice" msgstr "Zahle Rechnung" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Kein Steuerfinanzkonto und Steuerkonto definiert!" @@ -596,7 +596,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 "Kursverlust Konto" +msgstr "Konto für Kursaufwendungen" #. module: account_voucher #: view:account.voucher:0 @@ -615,15 +615,15 @@ msgid "To Review" msgstr "Zu Prüfen" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "Ändern" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -682,6 +682,7 @@ msgstr "Monat" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Währung" @@ -725,7 +726,7 @@ msgid "Reconcile Payment Balance" msgstr "OP-Ausgleich Saldo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Konfigurationsfehler !" @@ -790,7 +791,7 @@ msgid "October" msgstr "Oktober" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Bitte aktivieren Sie die Nummernfolge für das gewählte Journal !" @@ -870,7 +871,7 @@ msgid "Previous Payments ?" msgstr "Vorherige Zahlungen?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "Die Rechnung, die bezahlt werden soll, ist inzwischen ungültig." @@ -902,7 +903,7 @@ msgid "Active" msgstr "Aktiv" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Bitte definieren Sie eine Nummernfolge für dieses Journal." @@ -1030,7 +1031,7 @@ msgid "Journal Items" msgstr "Buchungsjournale" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1202,7 +1203,7 @@ msgstr "Jahr" #: 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 "Kursverlust Konto" +msgstr "Konto für Kurserträge" #. module: account_voucher #: selection:account.voucher,type:0 @@ -1256,7 +1257,7 @@ msgstr "" "Bankauszug." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "Offene oder bezahlte Belege können nicht storniert werden" @@ -1319,8 +1320,8 @@ msgid "Status changed" msgstr "Status wurde geändert" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Unzureichende Konfiguration !" diff --git a/addons/account_voucher/i18n/el.po b/addons/account_voucher/i18n/el.po index f2793dd33e0..9ae2ceec2f3 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Παραγραφή" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "Στοιχείο Ημερολογίου" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "Ακυρώθηκε" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "Φόρος" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "Εισαγωγή Τιμολογίων" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "Απόδειξη" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "Περίοδος" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Πριμηθευτής" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "Χρέωση" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "Τιμολόγιο Πληρωμής" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "Για Επισκόπηση" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "Μήνας" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Νόμισμα" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "Οκτώβριος" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "Προηγούμενες Πληρωμές ;" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "Στοιχεία Ημερολογίου" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/en_GB.po b/addons/account_voucher/i18n/en_GB.po index 426bcd8b2f7..2bf02fd8c48 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Write-Off" @@ -132,7 +132,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -224,8 +224,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -252,7 +252,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -294,7 +294,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -345,7 +345,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -364,7 +364,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -385,7 +385,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -406,7 +406,7 @@ msgid "Debit" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -512,7 +512,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -566,15 +566,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -628,6 +628,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "" @@ -671,7 +672,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -734,7 +735,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -814,7 +815,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -846,7 +847,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -974,7 +975,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1183,7 +1184,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1246,8 +1247,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/es.po b/addons/account_voucher/i18n/es.po index 8fec335419f..6a1f3d6bf16 100644 --- a/addons/account_voucher/i18n/es.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "Parámetros de configuración contable" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Desajuste" @@ -131,7 +131,7 @@ msgid "Voucher Statistics" msgstr "Estadísticas de comprobantes" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -232,8 +232,8 @@ msgid "Journal Item" msgstr "Apunte contable" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "¡Error!" @@ -260,7 +260,7 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -312,7 +312,7 @@ msgid "Tax" msgstr "Impuesto" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "¡Acción no válida!" @@ -365,7 +365,7 @@ msgid "Import Invoices" msgstr "Importar facturas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Línea de comprobante errónea" @@ -384,7 +384,7 @@ msgid "Receipt" msgstr "Recibo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -408,7 +408,7 @@ msgstr "Período" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Proveedor" @@ -429,7 +429,7 @@ msgid "Debit" msgstr "Debe" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "¡Imposible cambiar el diario!" @@ -549,7 +549,7 @@ msgid "Pay Invoice" msgstr "Pagar factura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "¡No código base contable y código impuesto contable!" @@ -611,15 +611,15 @@ msgid "To Review" msgstr "A revisar" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "cambio" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -677,6 +677,7 @@ msgstr "Mes" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Dinero corriente" @@ -720,7 +721,7 @@ msgid "Reconcile Payment Balance" msgstr "Conciliar saldo del pago" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "¡Error de configuración!" @@ -785,7 +786,7 @@ msgid "October" msgstr "Octubre" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "¡Active por favor la secuencia del diario seleccionado!" @@ -865,7 +866,7 @@ msgid "Previous Payments ?" msgstr "¿Pagos previos?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "La factura que iba a pagar ya no es válida." @@ -897,7 +898,7 @@ msgid "Active" msgstr "Activo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Por favor defina una secuencia en el diario." @@ -1025,7 +1026,7 @@ msgid "Journal Items" msgstr "Apuntes contables" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1251,7 +1252,7 @@ msgstr "" "El importe del comprobante debe ser el mismo que el de la línea del extracto." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "No se pueden borrar comprobantes que ya están abiertos o pagados." @@ -1314,8 +1315,8 @@ msgid "Status changed" msgstr "Estado cambiado" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "¡Configuraciín insuficiente!" diff --git a/addons/account_voucher/i18n/es_AR.po b/addons/account_voucher/i18n/es_AR.po index 266168bd33d..9278ce6b4f2 100644 --- a/addons/account_voucher/i18n/es_AR.po +++ b/addons/account_voucher/i18n/es_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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -291,7 +291,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -342,7 +342,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -361,7 +361,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +382,7 @@ msgstr "Período" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -403,7 +403,7 @@ msgid "Debit" msgstr "Debe" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -509,7 +509,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -563,15 +563,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +625,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Moneda" @@ -668,7 +669,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -731,7 +732,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -811,7 +812,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -843,7 +844,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -971,7 +972,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1180,7 +1181,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1243,8 +1244,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/es_CR.po b/addons/account_voucher/i18n/es_CR.po index 14ace8540e9..64eccdef004 100644 --- a/addons/account_voucher/i18n/es_CR.po +++ b/addons/account_voucher/i18n/es_CR.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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: account_voucher @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Desajuste" @@ -132,7 +132,7 @@ msgid "Voucher Statistics" msgstr "Estadísticas de comprobantes" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -224,8 +224,8 @@ msgid "Journal Item" msgstr "Apunte contable" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -252,7 +252,7 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -296,7 +296,7 @@ msgid "Tax" msgstr "Impuesto" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -347,7 +347,7 @@ msgid "Import Invoices" msgstr "Importar facturas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -366,7 +366,7 @@ msgid "Receipt" msgstr "Recibo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -387,7 +387,7 @@ msgstr "Período" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Proveedor" @@ -408,7 +408,7 @@ msgid "Debit" msgstr "Debe" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -514,7 +514,7 @@ msgid "Pay Invoice" msgstr "Pagar factura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "¡No código base contable y código impuesto contable!" @@ -568,15 +568,15 @@ msgid "To Review" msgstr "A revisar" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "cambio" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -632,6 +632,7 @@ msgstr "Mes" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Dinero corriente" @@ -675,7 +676,7 @@ msgid "Reconcile Payment Balance" msgstr "Pago del saldo de conciliación" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -740,7 +741,7 @@ msgid "October" msgstr "Octubre" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -820,7 +821,7 @@ msgid "Previous Payments ?" msgstr "¿Pagos previos?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -852,7 +853,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -980,7 +981,7 @@ msgid "Journal Items" msgstr "Apuntes contables" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1195,7 +1196,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1258,8 +1259,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/es_EC.po b/addons/account_voucher/i18n/es_EC.po index c1faa2ae30c..2cf9a3478e0 100644 --- a/addons/account_voucher/i18n/es_EC.po +++ b/addons/account_voucher/i18n/es_EC.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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Ajuste" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "Estadísticas de Comprobantes" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "Items de Diario" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -293,7 +293,7 @@ msgid "Tax" msgstr "Impuesto" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -344,7 +344,7 @@ msgid "Import Invoices" msgstr "Importar Facturas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -363,7 +363,7 @@ msgid "Receipt" msgstr "Recibo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -384,7 +384,7 @@ msgstr "Período" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Proveedor" @@ -405,7 +405,7 @@ msgid "Debit" msgstr "Debe" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -511,7 +511,7 @@ msgid "Pay Invoice" msgstr "Pagar Factura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "No hay cuenta base ni cuenta de impuesto" @@ -565,15 +565,15 @@ msgid "To Review" msgstr "A revisar" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "cambio" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -627,6 +627,7 @@ msgstr "Mes" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Dinero corriente" @@ -670,7 +671,7 @@ msgid "Reconcile Payment Balance" msgstr "Conciliar Saldo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -735,7 +736,7 @@ msgid "October" msgstr "Octubre" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -815,7 +816,7 @@ msgid "Previous Payments ?" msgstr "Pagos Previos ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -847,7 +848,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -975,7 +976,7 @@ msgid "Journal Items" msgstr "Items de Diario" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1189,7 +1190,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1252,8 +1253,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/es_PY.po b/addons/account_voucher/i18n/es_PY.po index 50b923abc09..4ffd64100c4 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Cancelar Dividas" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "Estadísticas de comprobantes" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "Registro diario" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -294,7 +294,7 @@ msgid "Tax" msgstr "Impuestos" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -345,7 +345,7 @@ msgid "Import Invoices" msgstr "Importar facturas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -364,7 +364,7 @@ msgid "Receipt" msgstr "Recibo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -385,7 +385,7 @@ msgstr "Periodo" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Proveedor" @@ -406,7 +406,7 @@ msgid "Debit" msgstr "Débito" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -512,7 +512,7 @@ msgid "Pay Invoice" msgstr "Pagar factura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "¡No código base contable y código impuesto contable!" @@ -566,15 +566,15 @@ msgid "To Review" msgstr "A revisar" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -628,6 +628,7 @@ msgstr "Mes" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Moneda" @@ -671,7 +672,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -734,7 +735,7 @@ msgid "October" msgstr "Octubre" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -814,7 +815,7 @@ msgid "Previous Payments ?" msgstr "¿Pagos previos?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -846,7 +847,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -974,7 +975,7 @@ msgid "Journal Items" msgstr "Registros del diario" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1183,7 +1184,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1246,8 +1247,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/et.po b/addons/account_voucher/i18n/et.po index 787f2184858..7212fa7f30a 100644 --- a/addons/account_voucher/i18n/et.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #~ msgid "Bank Receipt Voucher" #~ msgstr "Panga sissetulekuorder" @@ -42,7 +42,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Mahakandmine" @@ -144,7 +144,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -236,8 +236,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -264,7 +264,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -306,7 +306,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -357,7 +357,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -376,7 +376,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -397,7 +397,7 @@ msgstr "Periood" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -418,7 +418,7 @@ msgid "Debit" msgstr "Deebet" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -524,7 +524,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -578,15 +578,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -640,6 +640,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valuuta" @@ -683,7 +684,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -746,7 +747,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -826,7 +827,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -858,7 +859,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -986,7 +987,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1195,7 +1196,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1258,8 +1259,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/fa.po b/addons/account_voucher/i18n/fa.po index 66dae12e4cd..1c0007a9a36 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/fr.po b/addons/account_voucher/i18n/fr.po index e4919f7c687..5342fd54f14 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Ajustement" @@ -132,7 +132,7 @@ msgid "Voucher Statistics" msgstr "Statistiques des justificatifs comptables" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -233,8 +233,8 @@ msgid "Journal Item" msgstr "Écriture comptable" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Erreur !" @@ -261,7 +261,7 @@ msgid "Cancelled" msgstr "Annulé" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -313,7 +313,7 @@ msgid "Tax" msgstr "Taxe" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Action invalide !" @@ -366,7 +366,7 @@ msgid "Import Invoices" msgstr "Importer les factures" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Ligne de justificatif incorrecte" @@ -385,7 +385,7 @@ msgid "Receipt" msgstr "Reçu" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -409,7 +409,7 @@ msgstr "Période" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Fournisseur" @@ -430,7 +430,7 @@ msgid "Debit" msgstr "Débit" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Impossible de changer de journal !" @@ -536,7 +536,7 @@ msgid "Pay Invoice" msgstr "Payer la facture" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Aucun code comptable de base et aucun code comptable de taxe !" @@ -590,15 +590,15 @@ msgid "To Review" msgstr "À vérifier" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "modifier" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -657,6 +657,7 @@ msgstr "Mois" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Devise" @@ -700,7 +701,7 @@ msgid "Reconcile Payment Balance" msgstr "Lettrer la balance de paiement" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Erreur de configuration !" @@ -765,7 +766,7 @@ msgid "October" msgstr "Octobre" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Veuillez activer la sequence du journal sélectionné" @@ -845,7 +846,7 @@ msgid "Previous Payments ?" msgstr "Règlements précédents ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "La facture que vous voulez payer n'est plus valide." @@ -877,7 +878,7 @@ msgid "Active" msgstr "Actif" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Veuillez définir une séquence sur ce journal" @@ -1005,7 +1006,7 @@ msgid "Journal Items" msgstr "Ècritures comptable" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1224,7 +1225,7 @@ msgstr "" "Le montant du règlement doit être le même que sur la ligne du relevé bancaire" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "Impossible de supprimer des règlements à l'état ouvert ou payé" @@ -1287,8 +1288,8 @@ msgid "Status changed" msgstr "Statut changé" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Configuration insuffisante !" diff --git a/addons/account_voucher/i18n/gl.po b/addons/account_voucher/i18n/gl.po index 2be40946ee3..b61bc24dada 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Desaxuste" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "Estatísticas de comprobantes" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "Rexistro diario" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "Anulado" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -294,7 +294,7 @@ msgid "Tax" msgstr "Imposto" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -345,7 +345,7 @@ msgid "Import Invoices" msgstr "Importar facturas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -364,7 +364,7 @@ msgid "Receipt" msgstr "Recibo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -385,7 +385,7 @@ msgstr "Período" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Provedor" @@ -406,7 +406,7 @@ msgid "Debit" msgstr "Débito" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -512,7 +512,7 @@ msgid "Pay Invoice" msgstr "Pagar factura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Non código base contable nin código imposto contable!" @@ -566,15 +566,15 @@ msgid "To Review" msgstr "A revisar" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -628,6 +628,7 @@ msgstr "Mes" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Divisa" @@ -671,7 +672,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -734,7 +735,7 @@ msgid "October" msgstr "Outubro" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -814,7 +815,7 @@ msgid "Previous Payments ?" msgstr "Pagamentos previos?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -846,7 +847,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -974,7 +975,7 @@ msgid "Journal Items" msgstr "Elementos do Diario" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1183,7 +1184,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1246,8 +1247,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/gu.po b/addons/account_voucher/i18n/gu.po index effc88bf54b..a73a8aa7c15 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "રદ થયેલ" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "અવધિ" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "ઉધાર" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "મહિનો" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "ચલણ" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "ઑક્ટોબર" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/hi.po b/addons/account_voucher/i18n/hi.po index 7226233f625..588db548a17 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "प्रदायक" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/hr.po b/addons/account_voucher/i18n/hr.po index 6e16eb61f49..5bebf5c76b1 100644 --- a/addons/account_voucher/i18n/hr.po +++ b/addons/account_voucher/i18n/hr.po @@ -13,13 +13,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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 msgid "Reconciliation" -msgstr "" +msgstr "Zatvaranje" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_config_settings @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Otpis" @@ -63,7 +63,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "(Update)" -msgstr "" +msgstr "(Ažuriraj)" #. module: account_voucher #: view:account.voucher:0 @@ -90,7 +90,7 @@ msgstr "Ožujak" #. module: account_voucher #: field:account.voucher,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Nepročitane poruke" #. module: account_voucher #: view:account.voucher:0 @@ -100,7 +100,7 @@ msgstr "Plati račun" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure you want to cancel this receipt?" -msgstr "" +msgstr "Jeste li sigurni da želite otkazati ovu potvrdu?" #. module: account_voucher #: view:account.voucher:0 @@ -110,18 +110,18 @@ msgstr "Postavi na nacrt" #. module: account_voucher #: help:account.voucher,reference:0 msgid "Transaction reference number." -msgstr "Transaction reference number." +msgstr "Referentni broj transakcije" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by year of Invoice Date" -msgstr "" +msgstr "Grupiraj po godini izdavanja računa" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Prodavač" #. module: account_voucher #: view:account.voucher:0 @@ -129,12 +129,12 @@ msgid "Voucher Statistics" msgstr "Statistike vaučera" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " "lines!" -msgstr "" +msgstr "Ne možete mijenjati dnevnik jer imate zatvorene neke stavke!" #. module: account_voucher #: view:account.voucher:0 @@ -145,7 +145,7 @@ msgstr "Potvrdi" #: 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 "Plaćanja dobavljaču" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_purchase_receipt @@ -167,7 +167,7 @@ msgstr "Traži vaučere" #. module: account_voucher #: field:account.voucher,writeoff_acc_id:0 msgid "Counterpart Account" -msgstr "" +msgstr "Protukonto" #. module: account_voucher #: field:account.voucher,account_id:0 @@ -189,7 +189,7 @@ msgstr "U redu" #. module: account_voucher #: field:account.voucher.line,reconcile:0 msgid "Full Reconcile" -msgstr "" +msgstr "Kompletno zatvaranje" #. module: account_voucher #: field:account.voucher,date_due:0 @@ -207,13 +207,13 @@ msgstr "Bilješke" #. module: account_voucher #: field:account.voucher,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Poruke" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipts" -msgstr "" +msgstr "Potvrde kupovine" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 @@ -221,16 +221,16 @@ msgid "Journal Item" msgstr "Stavka dnevnika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" -msgstr "" +msgstr "Greška!" #. module: account_voucher #: field:account.voucher.line,amount:0 msgid "Amount" -msgstr "" +msgstr "Iznos" #. module: account_voucher #: view:account.voucher:0 @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "Otkazani" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -271,7 +271,7 @@ msgstr "" #. module: account_voucher #: help:account.voucher,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Jednom odabrano, nove poruke zahtijevaju vašu pažnju." #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement_line @@ -291,15 +291,15 @@ msgid "Tax" msgstr "Porez" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Neispravna akcija!" #. module: account_voucher #: field:account.voucher,comment:0 msgid "Counterpart Comment" -msgstr "" +msgstr "Komentar protustavke" #. module: account_voucher #: field:account.voucher.line,account_analytic_id:0 @@ -312,21 +312,23 @@ 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." #. module: account_voucher #: view:account.voucher:0 msgid "Total Allocation" -msgstr "" +msgstr "Puna alokacija" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Information" -msgstr "Informacije uplate" +msgstr "Informacije o plaćanju" #. module: account_voucher #: view:account.voucher:0 msgid "(update)" -msgstr "" +msgstr "(ažuriraj)" #. module: account_voucher #: view:account.voucher:0 @@ -342,26 +344,26 @@ msgid "Import Invoices" msgstr "Uvoz računa" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" -msgstr "" +msgstr "Kriva stavka vaučera" #. module: account_voucher #: selection:account.voucher,pay_now:0 #: selection:sale.receipt.report,pay_now:0 msgid "Pay Later or Group Funds" -msgstr "Pay Later or Group Funds" +msgstr "Plati kasnije ili grupna sredstva" #. module: account_voucher #: view:account.voucher:0 #: selection:account.voucher,type:0 #: selection:sale.receipt.report,type:0 msgid "Receipt" -msgstr "Receipt" +msgstr "Potvrda" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +384,7 @@ msgstr "Period" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Dobavljač" @@ -395,7 +397,7 @@ msgstr "Vaučer dobavljača" #. module: account_voucher #: field:account.voucher,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Pratitelji" #. module: account_voucher #: selection:account.voucher.line,type:0 @@ -403,10 +405,10 @@ msgid "Debit" msgstr "Duguje" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" -msgstr "" +msgstr "Nije moguće promijenti dnevnik !" #. module: account_voucher #: view:sale.receipt.report:0 @@ -423,7 +425,7 @@ msgstr "Vrsta" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Pro-forma Vouchers" -msgstr "" +msgstr "Proforma vaučer" #. module: account_voucher #: view:account.voucher:0 @@ -446,7 +448,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Open Supplier Journal Entries" -msgstr "Otvori temeljnice dobavljača" +msgstr "Otvori zapise dnevnika dobavljača" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_review_voucher_list @@ -461,17 +463,17 @@ msgstr "Memo" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure to unreconcile and cancel this record ?" -msgstr "" +msgstr "Jeste li sigurni da želite razvezati i otkazati ovaj zapis?" #. module: account_voucher #: field:account.voucher,is_multi_currency:0 msgid "Multi Currency Voucher" -msgstr "" +msgstr "Viševalutni vaučer" #. module: account_voucher #: view:account.voucher:0 msgid "Bill Information" -msgstr "Bill Information" +msgstr "Podaci o plaćanju" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -494,7 +496,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,writeoff_amount:0 msgid "Difference Amount" -msgstr "" +msgstr "Iznos razlike" #. module: account_voucher #: view:sale.receipt.report:0 @@ -509,10 +511,10 @@ msgid "Pay Invoice" msgstr "Plaćanje" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" -msgstr "" +msgstr "Nema konta osnovice i poreza!" #. module: account_voucher #: field:account.voucher,tax_amount:0 @@ -522,7 +524,7 @@ msgstr "Iznos poreza" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Validated Vouchers" -msgstr "" +msgstr "Potvrđeni vaučeri" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_vendor_receipt @@ -544,7 +546,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 "Konto tečajnih razlika" #. module: account_voucher #: view:account.voucher:0 @@ -563,21 +565,23 @@ msgid "To Review" msgstr "Za provjeru" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" -msgstr "" +msgstr "promijeni" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " "settings, to manage automatically the booking of accounting entries related " "to differences between exchange rates." msgstr "" +"Kako bi automatski knjižili stavke temeljnice vezane za ralike tečaja, " +"trebate konfigurirati 'konto tečanih razlika' u postavkama konta." #. module: account_voucher #: view:account.voucher:0 @@ -599,7 +603,7 @@ msgstr "" #. module: account_voucher #: view:account.invoice:0 msgid "Register Payment" -msgstr "" +msgstr "Registriraj plaćanje" #. module: account_voucher #: field:account.statement.from.invoice.lines,line_ids:0 @@ -614,7 +618,7 @@ msgstr "Prosinac" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by month of Invoice Date" -msgstr "" +msgstr "Grupiraj po mjesecu računa" #. module: account_voucher #: view:sale.receipt.report:0 @@ -625,6 +629,7 @@ msgstr "Mjesec" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valuta" @@ -632,17 +637,17 @@ msgstr "Valuta" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 msgid "Payable and Receivables" -msgstr "Payable and Receivables" +msgstr "Obveze i potraživanja" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Payment" -msgstr "" +msgstr "Plaćanje vaučerom" #. module: account_voucher #: field:sale.receipt.report,state:0 msgid "Voucher Status" -msgstr "" +msgstr "Status vaučera" #. module: account_voucher #: view:account.voucher:0 @@ -655,12 +660,12 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,company_id:0 msgid "Company" -msgstr "Organizacija" +msgstr "Tvrtka" #. module: account_voucher #: help:account.voucher,paid:0 msgid "The Voucher has been totally paid." -msgstr "" +msgstr "Vaučer je plaćen u potpunosti" #. module: account_voucher #: selection:account.voucher,payment_option:0 @@ -668,16 +673,16 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" -msgstr "" +msgstr "Greška kod konfiguracije!" #. module: account_voucher #: view:account.voucher:0 #: view:sale.receipt.report:0 msgid "Draft Vouchers" -msgstr "" +msgstr "Vaučeri u nacrtu" #. module: account_voucher #: view:sale.receipt.report:0 @@ -688,25 +693,25 @@ msgstr "Ukupno s porezom" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Voucher" -msgstr "" +msgstr "Vaučer nabave" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,state:0 #: view:sale.receipt.report:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: account_voucher #: view:account.voucher:0 msgid "Allocation" -msgstr "" +msgstr "Raspodjela" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 #: view:account.voucher:0 msgid "or" -msgstr "" +msgstr "ili" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -716,7 +721,7 @@ msgstr "Kolovoz" #. module: account_voucher #: view:account.voucher:0 msgid "Validate Payment" -msgstr "" +msgstr "Potvrdi plaćanje" #. module: account_voucher #: help:account.voucher,audit:0 @@ -724,6 +729,8 @@ 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 "" +"Označite \"za provjeru\" kada niste sigurni da li je knjiženje ispravno i " +"kada je potrebno ekspertno mišljenje." #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -731,10 +738,10 @@ msgid "October" msgstr "Listopad" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" -msgstr "" +msgstr "Molimo aktivirajte sekvencu odabrnog dnevnika!" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -749,7 +756,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,paid:0 msgid "Paid" -msgstr "" +msgstr "Plaćeno" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt @@ -760,12 +767,12 @@ msgstr "" #. module: account_voucher #: field:account.voucher,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Je pratitelj" #. module: account_voucher #: field:account.voucher,analytic_id:0 msgid "Write-Off Analytic Account" -msgstr "Write-Off Analytic Account" +msgstr "Analitički konto otpisa iznosa" #. module: account_voucher #: field:account.voucher,date:0 @@ -787,7 +794,7 @@ msgstr "Prošireni filtri..." #. module: account_voucher #: field:account.voucher,paid_amount_in_company_currency:0 msgid "Paid Amount in Company Currency" -msgstr "" +msgstr "Plaćeni iznosu u valuti tvrtke" #. module: account_voucher #: field:account.bank.statement.line,amount_reconciled:0 @@ -798,7 +805,7 @@ msgstr "Zatvoreni iznos" #: selection:account.voucher,pay_now:0 #: selection:sale.receipt.report,pay_now:0 msgid "Pay Directly" -msgstr "Pay Directly" +msgstr "Plati direktno" #. module: account_voucher #: field:account.voucher.line,type:0 @@ -811,7 +818,7 @@ msgid "Previous Payments ?" msgstr "Predhodna plaćanja ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -830,30 +837,30 @@ msgstr "Dnevnik vaučera" #. module: account_voucher #: model:ir.model,name:account_voucher.model_res_company msgid "Companies" -msgstr "" +msgstr "Tvrtke" #. module: account_voucher #: field:account.voucher,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Sažetak" #. module: account_voucher #: field:account.voucher,active:0 msgid "Active" -msgstr "" +msgstr "Aktivan" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." -msgstr "" +msgstr "Molimo definirajte sekvencu na dnevniku." #. 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 "Plaćanja kupaca" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt_report_all @@ -865,12 +872,12 @@ msgstr "" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by Invoice Date" -msgstr "" +msgstr "Grupiraj po datumu računa" #. module: account_voucher #: view:account.voucher:0 msgid "Post" -msgstr "Post" +msgstr "Objava" #. module: account_voucher #: view:account.voucher:0 @@ -955,14 +962,14 @@ msgstr "Odustani" #. module: account_voucher #: model:ir.actions.client,name:account_voucher.action_client_invoice_menu msgid "Open Invoicing Menu" -msgstr "" +msgstr "Otvori menu računa" #. module: account_voucher #: selection:account.voucher,state:0 #: view:sale.receipt.report:0 #: selection:sale.receipt.report,state:0 msgid "Pro-forma" -msgstr "Pro-forma" +msgstr "Predračun" #. module: account_voucher #: view:account.voucher:0 @@ -971,10 +978,11 @@ msgid "Journal Items" msgstr "Stavke glavne knjige" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" +"Milimo definirajte standarda potražna/dugovna konta na dnevniku \"%s\"." #. module: account_voucher #: selection:account.voucher,type:0 @@ -986,12 +994,12 @@ msgstr "Nabava" #: view:account.invoice:0 #: view:account.voucher:0 msgid "Pay" -msgstr "Pay" +msgstr "Platiti" #. module: account_voucher #: view:account.voucher:0 msgid "Currency Options" -msgstr "" +msgstr "Opcije valute" #. module: account_voucher #: help:account.voucher,payment_option:0 @@ -1023,7 +1031,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,payment_rate:0 msgid "Exchange Rate" -msgstr "" +msgstr "Tečaj" #. module: account_voucher #: view:account.voucher:0 @@ -1144,7 +1152,7 @@ msgstr "Travanj" #. module: account_voucher #: help:account.voucher,tax_id:0 msgid "Only for tax excluded from price" -msgstr "" +msgstr "Samo za porez koji nije u cijeni" #. module: account_voucher #: field:account.voucher,type:0 @@ -1154,7 +1162,7 @@ msgstr "Uobičajeni tip" #. module: account_voucher #: help:account.voucher,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Poruke i povijest komunikacije" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_statement_from_invoice_lines @@ -1180,7 +1188,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1188,12 +1196,12 @@ msgstr "" #. module: account_voucher #: help:account.voucher,date:0 msgid "Effective date for accounting entries" -msgstr "Effective date for accounting entries" +msgstr "" #. module: account_voucher #: model:mail.message.subtype,name:account_voucher.mt_voucher_state_change msgid "Status Change" -msgstr "" +msgstr "Promjena statusa" #. module: account_voucher #: selection:account.voucher,payment_option:0 @@ -1243,11 +1251,11 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" -msgstr "" +msgstr "Nedostatna konfiguracija!" #. module: account_voucher #: help:account.voucher,active:0 diff --git a/addons/account_voucher/i18n/hu.po b/addons/account_voucher/i18n/hu.po index 1a50a813042..0bf1dda0c96 100644 --- a/addons/account_voucher/i18n/hu.po +++ b/addons/account_voucher/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-04-05 05:37+0000\n" -"X-Generator: Launchpad (build 16550)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Különbözet leírása" @@ -131,7 +131,7 @@ msgid "Voucher Statistics" msgstr "Nyugta statisztika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -234,8 +234,8 @@ msgid "Journal Item" msgstr "Könyvelési tételsor" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Hiba!" @@ -262,7 +262,7 @@ msgid "Cancelled" msgstr "Érvénytelenített" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -313,7 +313,7 @@ msgid "Tax" msgstr "ÁFA" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Érvénytelen lépés!" @@ -366,7 +366,7 @@ msgid "Import Invoices" msgstr "Számlák importálása" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Nem megfelelő nyugta sor" @@ -385,7 +385,7 @@ msgid "Receipt" msgstr "Bevételi bizonylat" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -409,7 +409,7 @@ msgstr "Időszak" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Szállító" @@ -430,7 +430,7 @@ msgid "Debit" msgstr "Tartozik" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Naplót nem lehet megváltoztatni !" @@ -551,7 +551,7 @@ msgid "Pay Invoice" msgstr "Számla kifizetése" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Nincs adóalapgyűjtő kód és adógyűjtő kód!" @@ -617,15 +617,15 @@ msgid "To Review" msgstr "Ellenőrizendő" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "módosítás" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -684,6 +684,7 @@ msgstr "Hónap" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Pénznem" @@ -727,7 +728,7 @@ msgid "Reconcile Payment Balance" msgstr "Fizetési egyenleg párosítás" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Beállítási hiba!" @@ -792,7 +793,7 @@ msgid "October" msgstr "Október" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Kérem a sorozat aktiválását a kiválasztott naplóra !" @@ -872,7 +873,7 @@ msgid "Previous Payments ?" msgstr "Előző kifizetések ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "A kifizetni kívánt számla már nem érvényes." @@ -904,7 +905,7 @@ msgid "Active" msgstr "Aktív" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Kérem egy sorozat meghatározását a naplón." @@ -1032,7 +1033,7 @@ msgid "Journal Items" msgstr "Könyvelési tételsorok" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1259,7 +1260,7 @@ msgstr "" "szerepel." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1324,8 +1325,8 @@ msgid "Status changed" msgstr "Állapot megváltozott" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Nem megfelelő beállítás!" diff --git a/addons/account_voucher/i18n/id.po b/addons/account_voucher/i18n/id.po index ab7c31a1f52..624d420d5f1 100644 --- a/addons/account_voucher/i18n/id.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -291,7 +291,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -342,7 +342,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -361,7 +361,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +382,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -403,7 +403,7 @@ msgid "Debit" msgstr "Debit" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -509,7 +509,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -563,15 +563,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +625,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "" @@ -668,7 +669,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -731,7 +732,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -811,7 +812,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -843,7 +844,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -971,7 +972,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1180,7 +1181,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1243,8 +1244,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/it.po b/addons/account_voucher/i18n/it.po index 8a4145856fa..f7452a57924 100644 --- a/addons/account_voucher/i18n/it.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Storno" @@ -131,7 +131,7 @@ msgid "Voucher Statistics" msgstr "Statistiche Voucher" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -234,8 +234,8 @@ msgid "Journal Item" msgstr "Voce sezionale" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Errore!" @@ -262,7 +262,7 @@ msgid "Cancelled" msgstr "Annullato" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -313,7 +313,7 @@ msgid "Tax" msgstr "Tassa" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Azione non valida!" @@ -366,7 +366,7 @@ msgid "Import Invoices" msgstr "Importa fatture" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Linea voucher errata" @@ -385,7 +385,7 @@ msgid "Receipt" msgstr "Ricevuta" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -409,7 +409,7 @@ msgstr "Periodo" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Fornitore" @@ -430,7 +430,7 @@ msgid "Debit" msgstr "Debito" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Impossibile cambiare il sezionale !" @@ -544,7 +544,7 @@ msgid "Pay Invoice" msgstr "Paga fattura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Mancano Codici di conto di mastro e Codici di conto imposta!" @@ -608,15 +608,15 @@ msgid "To Review" msgstr "Da rivedere" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "cambia" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -673,6 +673,7 @@ msgstr "Mese" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valuta" @@ -716,7 +717,7 @@ msgid "Reconcile Payment Balance" msgstr "Rinconcilia saldo pagamento" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Errore di configurazione!" @@ -781,7 +782,7 @@ msgid "October" msgstr "Ottobre" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Si prega di attivare la sequenza del sezionale selezionato!" @@ -861,7 +862,7 @@ msgid "Previous Payments ?" msgstr "Pagamenti precedenti ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "La fattura che si sta tentando di pagare non è più valida." @@ -893,7 +894,7 @@ msgid "Active" msgstr "Attivo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "E' necessario definire una sequenza per il sezionale." @@ -1021,7 +1022,7 @@ msgid "Journal Items" msgstr "Voci sezionale" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1250,7 +1251,7 @@ msgstr "" "dichiarazione." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "Non è possibile eliminare voucher(s) che sono già aperti o pagati." @@ -1313,8 +1314,8 @@ msgid "Status changed" msgstr "Stato cambiato" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Configurazione Insufficiente!" diff --git a/addons/account_voucher/i18n/ja.po b/addons/account_voucher/i18n/ja.po index a23129dcec2..d221d8d19af 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "償却" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "バウチャー統計" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "仕訳帳項目" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "キャンセル済" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "税金" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "請求書インポート" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "レシート" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "期間" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "仕入先" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "借方" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "請求書支払" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "アカウント基本コードとアカウント税金コードがありません。" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "レビュー" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "変更" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "月" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "通貨" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "消し込み支払残高" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "10月" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "以前の支払ですか?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "仕訳帳項目" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1183,7 +1184,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1246,8 +1247,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/ko.po b/addons/account_voucher/i18n/ko.po index ecc6045a5b5..1562e40810a 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "기간" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "차변" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "통화" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/lt.po b/addons/account_voucher/i18n/lt.po index b930f9ad1aa..43f397fecd1 100644 --- a/addons/account_voucher/i18n/lt.po +++ b/addons/account_voucher/i18n/lt.po @@ -8,18 +8,18 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-11-29 13:01+0000\n" -"Last-Translator: Andrius Preimantas \n" +"Last-Translator: Andrius Preimantas @ hbee \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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 msgid "Reconciliation" -msgstr "" +msgstr "Sudengimas" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_config_settings @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Nurašymas" @@ -35,12 +35,12 @@ msgstr "Nurašymas" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Ref" -msgstr "Mokėjimo nuoroda" +msgstr "Apmokėjimo numeris" #. module: account_voucher #: view:account.voucher:0 msgid "Total Amount" -msgstr "" +msgstr "Iš viso" #. module: account_voucher #: view:account.voucher:0 @@ -59,11 +59,12 @@ msgid "" "Computed as the difference between the amount stated in the voucher and the " "sum of allocation on the voucher lines." msgstr "" +"Paskaičiuotas skirtumas tarp sumokėtos bei eilutėse paskirstytos sumos." #. module: account_voucher #: view:account.voucher:0 msgid "(Update)" -msgstr "" +msgstr "(Atnaujinti)" #. module: account_voucher #: view:account.voucher:0 @@ -75,12 +76,12 @@ 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 "Įkelti DK įrašus" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Entry" -msgstr "" +msgstr "Apskaitos dokumento įrašai" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -90,7 +91,7 @@ msgstr "Kovas" #. module: account_voucher #: field:account.voucher,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Neperžiūrėtos žinutės" #. module: account_voucher #: view:account.voucher:0 @@ -100,28 +101,28 @@ msgstr "Apmokėti sąskaitą" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure you want to cancel this receipt?" -msgstr "" +msgstr "Ar tikrai norite atšaukti šį kvitą?" #. module: account_voucher #: view:account.voucher:0 msgid "Set to Draft" -msgstr "Nustatyti kaip juodraštį" +msgstr "Atstatyti į juodraštį" #. module: account_voucher #: help:account.voucher,reference:0 msgid "Transaction reference number." -msgstr "" +msgstr "Apmokėjimo numeris." #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by year of Invoice Date" -msgstr "" +msgstr "S/F išrašymo metai" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Pardavėjas" #. module: account_voucher #: view:account.voucher:0 @@ -129,7 +130,7 @@ msgid "Voucher Statistics" msgstr "Kvito statistika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -145,7 +146,7 @@ msgstr "Patvirtinti" #: 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 "Mokėjimai tiekėjams" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_purchase_receipt @@ -158,6 +159,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad įvestumėte pirkimo kvitą. \n" +"

\n" +" Patvirtinus pirkimo kvitą, galima įvesti mokėjimą tiekėjui,\n" +" susijusį su šiuo kvitu.\n" +"

\n" +" " #. module: account_voucher #: view:account.voucher:0 @@ -167,7 +175,7 @@ msgstr "Ieškoti kvito" #. module: account_voucher #: field:account.voucher,writeoff_acc_id:0 msgid "Counterpart Account" -msgstr "" +msgstr "Nurašymo sąskaita" #. module: account_voucher #: field:account.voucher,account_id:0 @@ -179,17 +187,17 @@ msgstr "Sąskaita" #. module: account_voucher #: field:account.voucher,line_dr_ids:0 msgid "Debits" -msgstr "" +msgstr "Debetavimas" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 msgid "Ok" -msgstr "OK" +msgstr "Gerai" #. module: account_voucher #: field:account.voucher.line,reconcile:0 msgid "Full Reconcile" -msgstr "Pilnas sugretinimas" +msgstr "Pilnas sudengimas" #. module: account_voucher #: field:account.voucher,date_due:0 @@ -207,25 +215,25 @@ msgstr "Pastabos" #. module: account_voucher #: field:account.voucher,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Pranešimai" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipts" -msgstr "" +msgstr "Pirkimo kvitai" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 msgid "Journal Item" -msgstr "" +msgstr "DK įrašas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" -msgstr "" +msgstr "Klaida!" #. module: account_voucher #: field:account.voucher.line,amount:0 @@ -249,7 +257,7 @@ msgid "Cancelled" msgstr "Atšauktas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -267,11 +275,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte pardavimo kvitą.\n" +"

\n" +" Patvirtinus pardavimo kvitą galima įvesti pirkėjo mokėjimą, " +"\n" +" susijusį su šiuo kvitu.\n" +"

\n" +" " #. module: account_voucher #: help:account.voucher,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Jeigu pažymėta, naujos žinutės reikalaus jūsų dėmesio." #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement_line @@ -282,24 +298,24 @@ msgstr "Banko sąskaitos išrašo eilutė" #: view:sale.receipt.report:0 #: field:sale.receipt.report,day:0 msgid "Day" -msgstr "Diena" +msgstr "Data" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,tax_id:0 msgid "Tax" -msgstr "Mokestis" +msgstr "Mokesčiai" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Klaidingas veiksmas!" #. module: account_voucher #: field:account.voucher,comment:0 msgid "Counterpart Comment" -msgstr "" +msgstr "Nurašymo paaiškinimas" #. module: account_voucher #: field:account.voucher.line,account_analytic_id:0 @@ -312,6 +328,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 "" +"Saugo pokalbių suvestinę (žinučių skaičius, ...). Ši apžvalga saugoma html " +"formatu, kad būtų galima įterpti į kanban rodinius." #. module: account_voucher #: view:account.voucher:0 @@ -321,12 +339,12 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Information" -msgstr "Mokėjimo informacija" +msgstr "Mokėjimo duomenys" #. module: account_voucher #: view:account.voucher:0 msgid "(update)" -msgstr "" +msgstr "(atnaujinti)" #. module: account_voucher #: view:account.voucher:0 @@ -342,7 +360,7 @@ msgid "Import Invoices" msgstr "Įkelti S/F" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -351,17 +369,17 @@ msgstr "" #: selection:account.voucher,pay_now:0 #: selection:sale.receipt.report,pay_now:0 msgid "Pay Later or Group Funds" -msgstr "" +msgstr "Mokėti vėliau arba bendras apmokėjimas" #. module: account_voucher #: view:account.voucher:0 #: selection:account.voucher,type:0 #: selection:sale.receipt.report,type:0 msgid "Receipt" -msgstr "" +msgstr "Kvitas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +400,7 @@ msgstr "Periodas" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Tiekėjas" @@ -395,7 +413,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Prenumeratoriai" #. module: account_voucher #: selection:account.voucher.line,type:0 @@ -403,7 +421,7 @@ msgid "Debit" msgstr "Debetas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -412,7 +430,7 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,nbr:0 msgid "# of Voucher Lines" -msgstr "" +msgstr "# eilučių" #. module: account_voucher #: view:sale.receipt.report:0 @@ -423,7 +441,7 @@ msgstr "Tipas" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Pro-forma Vouchers" -msgstr "" +msgstr "Išankstiniai kvitai" #. module: account_voucher #: view:account.voucher:0 @@ -442,6 +460,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte mokėjimą tiekėjui.\n" +"

\n" +" OpenERP pagalba jūs galėsite paprasčiau sekti atliekamus " +"mokėjimus bei skolas tiekėjams.\n" +"

\n" +" " #. module: account_voucher #: view:account.voucher:0 @@ -456,12 +481,12 @@ msgstr "" #. module: account_voucher #: field:account.voucher,name:0 msgid "Memo" -msgstr "" +msgstr "Atmintinė" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure to unreconcile and cancel this record ?" -msgstr "" +msgstr "Ar tikrai norite panaikinti sudengimą ir atšaukti šį įrašą?" #. module: account_voucher #: field:account.voucher,is_multi_currency:0 @@ -471,12 +496,12 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Bill Information" -msgstr "Sąskaitos informacija" +msgstr "Kvito duomenys" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "July" -msgstr "" +msgstr "Liepa" #. module: account_voucher #: help:account.voucher,state:0 @@ -494,13 +519,13 @@ msgstr "" #. module: account_voucher #: field:account.voucher,writeoff_amount:0 msgid "Difference Amount" -msgstr "" +msgstr "Nesutampanti suma" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,due_delay:0 msgid "Avg. Due Delay" -msgstr "" +msgstr "Vid. apmokėjimo terminas" #. module: account_voucher #: code:addons/account_voucher/invoice.py:34 @@ -509,7 +534,7 @@ msgid "Pay Invoice" msgstr "Apmokėti sąskaitą" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -517,12 +542,12 @@ msgstr "" #. module: account_voucher #: field:account.voucher,tax_amount:0 msgid "Tax Amount" -msgstr "" +msgstr "Mokesčių suma" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Validated Vouchers" -msgstr "" +msgstr "Užregistruoti kvitai" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_vendor_receipt @@ -539,6 +564,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad užregistruotumėte apmokėjimą. \n" +"

\n" +" Įveskite pirkėją, pasirinkite mokėjimo būdą ir tuomet\n" +" galėsite sukurti mokėjimo įrašus rankiniu būdu arba OpenERP\n" +" pasiūlys automatinį mokėjimo sudengimą su neapmokėta S/F ar\n" +" pardavimo kvitu.\n" +"

\n" +" " #. module: account_voucher #: field:account.config.settings,expense_currency_exchange_account_id:0 @@ -549,29 +583,29 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Paid Amount" -msgstr "" +msgstr "Sumokėta suma" #. module: account_voucher #: field:account.voucher,payment_option:0 msgid "Payment Difference" -msgstr "" +msgstr "Mokėjimo nesutapimas" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,audit:0 msgid "To Review" -msgstr "" +msgstr "Peržiūrėti" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -599,32 +633,33 @@ msgstr "" #. module: account_voucher #: view:account.invoice:0 msgid "Register Payment" -msgstr "" +msgstr "Užregistruoti mokėjimą" #. module: account_voucher #: field:account.statement.from.invoice.lines,line_ids:0 msgid "Invoices" -msgstr "" +msgstr "Sąskaitos faktūros" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "December" -msgstr "" +msgstr "Gruodis" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by month of Invoice Date" -msgstr "" +msgstr "S/F išrašymo mėnuo" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,month:0 msgid "Month" -msgstr "" +msgstr "Mėnuo" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valiuta" @@ -632,7 +667,7 @@ msgstr "Valiuta" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 msgid "Payable and Receivables" -msgstr "" +msgstr "Mokamos ir gautinos sumos" #. module: account_voucher #: view:account.voucher:0 @@ -665,10 +700,10 @@ msgstr "" #. module: account_voucher #: selection:account.voucher,payment_option:0 msgid "Reconcile Payment Balance" -msgstr "" +msgstr "Sudengti mokėjimo likutį" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -677,13 +712,13 @@ msgstr "" #: view:account.voucher:0 #: view:sale.receipt.report:0 msgid "Draft Vouchers" -msgstr "" +msgstr "Dokumento juodraštis" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,price_total_tax:0 msgid "Total With Tax" -msgstr "" +msgstr "Iš viso" #. module: account_voucher #: view:account.voucher:0 @@ -695,23 +730,23 @@ msgstr "" #: field:account.voucher,state:0 #: view:sale.receipt.report:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: account_voucher #: view:account.voucher:0 msgid "Allocation" -msgstr "" +msgstr "Paskirstymas" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 #: view:account.voucher:0 msgid "or" -msgstr "" +msgstr "arba" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "August" -msgstr "" +msgstr "Rugpjūtis" #. module: account_voucher #: view:account.voucher:0 @@ -728,10 +763,10 @@ msgstr "" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "October" -msgstr "" +msgstr "Spalis" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -739,7 +774,7 @@ msgstr "" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "June" -msgstr "" +msgstr "Birželis" #. module: account_voucher #: field:account.voucher,payment_rate_currency_id:0 @@ -749,23 +784,23 @@ msgstr "" #. module: account_voucher #: field:account.voucher,paid:0 msgid "Paid" -msgstr "" +msgstr "Apmokėta" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "" +msgstr "Pardavimo kvitai" #. module: account_voucher #: field:account.voucher,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Ar prenumeratorius" #. module: account_voucher #: field:account.voucher,analytic_id:0 msgid "Write-Off Analytic Account" -msgstr "" +msgstr "Nurašymo analitinė sąskaita" #. module: account_voucher #: field:account.voucher,date:0 @@ -777,12 +812,12 @@ msgstr "Data" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "November" -msgstr "" +msgstr "Lapkritis" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "Išplėstiniai filtrai..." #. module: account_voucher #: field:account.voucher,paid_amount_in_company_currency:0 @@ -798,7 +833,7 @@ msgstr "" #: selection:account.voucher,pay_now:0 #: selection:sale.receipt.report,pay_now:0 msgid "Pay Directly" -msgstr "" +msgstr "Mokėti iškart" #. module: account_voucher #: field:account.voucher.line,type:0 @@ -811,7 +846,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -819,31 +854,31 @@ msgstr "" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "January" -msgstr "" +msgstr "Sausis" #. module: account_voucher #: 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 "Žurnalo kvitai" +msgstr "Apskaitos dokumentai" #. module: account_voucher #: model:ir.model,name:account_voucher.model_res_company msgid "Companies" -msgstr "" +msgstr "Įmonės" #. module: account_voucher #: field:account.voucher,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Santrauka" #. module: account_voucher #: field:account.voucher,active:0 msgid "Active" -msgstr "" +msgstr "Aktyvus" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -853,24 +888,24 @@ msgstr "" #: model:ir.actions.act_window,name:account_voucher.action_vendor_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_vendor_receipt msgid "Customer Payments" -msgstr "" +msgstr "Pirkėjo mokėjimai" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt_report_all #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt_report_all #: view:sale.receipt.report:0 msgid "Sales Receipts Analysis" -msgstr "" +msgstr "Pardavimo kvitų analizė" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Group by Invoice Date" -msgstr "" +msgstr "S/F išrašymo data" #. module: account_voucher #: view:account.voucher:0 msgid "Post" -msgstr "" +msgstr "Registruoti" #. module: account_voucher #: view:account.voucher:0 @@ -881,17 +916,17 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,price_total:0 msgid "Total Without Tax" -msgstr "" +msgstr "Iš viso be mokesčių" #. module: account_voucher #: view:account.voucher:0 msgid "Bill Date" -msgstr "Sąskaitos data" +msgstr "Kvito data" #. module: account_voucher #: view:account.voucher:0 msgid "Unreconcile" -msgstr "Panaikinti sugretinimą" +msgstr "Panaikinti sudengimą" #. module: account_voucher #: view:account.voucher:0 @@ -912,7 +947,7 @@ msgstr "Kreditas" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_bank_statement msgid "Bank Statement" -msgstr "" +msgstr "Banko sąskaitos išrašas" #. module: account_voucher #: view:account.bank.statement:0 @@ -922,12 +957,12 @@ msgstr "" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "September" -msgstr "" +msgstr "Rugsėjis" #. module: account_voucher #: view:account.voucher:0 msgid "Sales Information" -msgstr "" +msgstr "Pardavimo informacija" #. module: account_voucher #: view:account.voucher:0 @@ -939,7 +974,7 @@ msgstr "Kvitas" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_invoice msgid "Invoice" -msgstr "" +msgstr "Sąskaita-faktūra" #. module: account_voucher #: view:account.voucher:0 @@ -968,10 +1003,10 @@ msgstr "Išankstinė sąskaita" #: view:account.voucher:0 #: field:account.voucher,move_ids:0 msgid "Journal Items" -msgstr "" +msgstr "DK įrašai" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -980,13 +1015,13 @@ msgstr "" #: selection:account.voucher,type:0 #: selection:sale.receipt.report,type:0 msgid "Purchase" -msgstr "" +msgstr "Pirkimai" #. module: account_voucher #: view:account.invoice:0 #: view:account.voucher:0 msgid "Pay" -msgstr "" +msgstr "Mokėti" #. module: account_voucher #: view:account.voucher:0 @@ -1001,6 +1036,9 @@ msgid "" "either choose to keep open this difference on the partner's account, or " "reconcile it with the payment(s)" msgstr "" +"Pasirinkite ką daryti su susidariusiu skirtumu tarp sumokėtos bei " +"paskirstytos sumos. Galima pasirinkti, kad likutis liktų kontakto balanse, " +"arba sudengti su kitu mokėjimu (-ais)." #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_sale_receipt_report_all @@ -1018,17 +1056,17 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Posted Vouchers" -msgstr "" +msgstr "Užregistruotas dokumentas" #. module: account_voucher #: field:account.voucher,payment_rate:0 msgid "Exchange Rate" -msgstr "" +msgstr "Valiutos kursas" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Method" -msgstr "" +msgstr "Mokėjimo būdas" #. module: account_voucher #: field:account.voucher.line,name:0 @@ -1038,7 +1076,7 @@ msgstr "Aprašymas" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "May" -msgstr "" +msgstr "Gegužė" #. module: account_voucher #: view:account.voucher:0 @@ -1056,23 +1094,23 @@ msgstr "Žurnalas" #. module: account_voucher #: view:account.voucher:0 msgid "Internal Notes" -msgstr "" +msgstr "Vidinės pastabos" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher,line_cr_ids:0 msgid "Credits" -msgstr "" +msgstr "Kreditavimas" #. module: account_voucher #: field:account.voucher.line,amount_original:0 msgid "Original Amount" -msgstr "" +msgstr "Pirminė suma" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Receipt" -msgstr "Pirkimo kvitas" +msgstr "Pirkimo kvitai" #. module: account_voucher #: help:account.voucher,payment_rate:0 @@ -1088,7 +1126,7 @@ msgstr "" #: field:sale.receipt.report,pay_now:0 #: selection:sale.receipt.report,type:0 msgid "Payment" -msgstr "" +msgstr "Mokėjimas" #. module: account_voucher #: view:account.voucher:0 @@ -1101,12 +1139,12 @@ msgstr "Užregistruota" #. module: account_voucher #: view:account.voucher:0 msgid "Customer" -msgstr "" +msgstr "Pirkėjas" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "February" -msgstr "" +msgstr "Vasaris" #. module: account_voucher #: view:account.voucher:0 @@ -1116,13 +1154,13 @@ msgstr "" #. module: account_voucher #: field:account.voucher,reference:0 msgid "Ref #" -msgstr "Nuoroda" +msgstr "Nr #" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,year:0 msgid "Year" -msgstr "" +msgstr "Metai" #. module: account_voucher #: field:account.config.settings,income_currency_exchange_account_id:0 @@ -1139,22 +1177,22 @@ msgstr "Pardavimas" #. module: account_voucher #: selection:sale.receipt.report,month:0 msgid "April" -msgstr "" +msgstr "Balandis" #. module: account_voucher #: help:account.voucher,tax_id:0 msgid "Only for tax excluded from price" -msgstr "" +msgstr "Tik tie mokesčiai, kurie neįtraukti į kainą" #. module: account_voucher #: field:account.voucher,type:0 msgid "Default Type" -msgstr "" +msgstr "Tipas" #. module: account_voucher #: help:account.voucher,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Žinučių ir pranešimų istorija" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_statement_from_invoice_lines @@ -1165,7 +1203,7 @@ msgstr "" #: view:account.voucher:0 #: field:account.voucher,amount:0 msgid "Total" -msgstr "" +msgstr "Iš viso" #. module: account_voucher #: field:account.voucher,move_id:0 @@ -1180,7 +1218,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1188,7 +1226,7 @@ msgstr "" #. module: account_voucher #: help:account.voucher,date:0 msgid "Effective date for accounting entries" -msgstr "" +msgstr "DK įrašų įsigaliojimo data" #. module: account_voucher #: model:mail.message.subtype,name:account_voucher.mt_voucher_state_change @@ -1198,7 +1236,7 @@ msgstr "" #. module: account_voucher #: selection:account.voucher,payment_option:0 msgid "Keep Open" -msgstr "" +msgstr "Palikti atvirą" #. module: account_voucher #: field:account.voucher,line_ids:0 @@ -1211,7 +1249,7 @@ msgstr "Kvito eilutės" #: view:sale.receipt.report:0 #: field:sale.receipt.report,delay_to_pay:0 msgid "Avg. Delay To Pay" -msgstr "" +msgstr "Vid. vėluojama apmokėti" #. module: account_voucher #: field:account.voucher.line,untax_amount:0 @@ -1235,7 +1273,7 @@ msgstr "Partneris" #. module: account_voucher #: field:account.voucher.line,amount_unreconciled:0 msgid "Open Balance" -msgstr "" +msgstr "Likutis" #. module: account_voucher #: model:mail.message.subtype,description:account_voucher.mt_voucher_state_change @@ -1243,8 +1281,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" @@ -1496,8 +1534,8 @@ msgstr "" #~ msgid "Sales Receipt Analysis" #~ msgstr "Pardavimo kvitų analizė" -#~ msgid "Sales Receipt" -#~ msgstr "Pardavimo kvitai" - #~ msgid "Supplier Payment" #~ msgstr "Mokėjimai tiekėjui" + +#~ msgid "Sales Receipt" +#~ msgstr "Pardavimo kvitas" diff --git a/addons/account_voucher/i18n/mk.po b/addons/account_voucher/i18n/mk.po index 1345aa5d6e7..6b4d27008a8 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Отпис" @@ -41,12 +41,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 @@ -61,12 +61,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 @@ -78,7 +78,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 @@ -132,14 +132,14 @@ msgid "Voucher Statistics" msgstr "Статистика за ваучери" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " "lines!" msgstr "" -"Неможете да извршите промена на записот како што веќе порамнивте некоја од " -"состојбите!" +"Не можете да извршите промена на дневникот бидејќи веќе сте порамниле некои " +"од ставките на изводот!" #. module: account_voucher #: view:account.voucher:0 @@ -167,7 +167,7 @@ msgstr "" " Кликни за регистрирање на сметкопотврда. \n" "

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

\n" " " @@ -230,11 +230,11 @@ 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 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Грешка!" @@ -261,7 +261,7 @@ msgid "Cancelled" msgstr "Откажано" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -312,7 +312,7 @@ msgid "Tax" msgstr "Данок" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Невалидна Постапка!" @@ -325,7 +325,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 @@ -349,7 +349,7 @@ msgstr "Информација за плаќањето" #. module: account_voucher #: view:account.voucher:0 msgid "(update)" -msgstr "(update)" +msgstr "(ажурирај)" #. module: account_voucher #: view:account.voucher:0 @@ -362,13 +362,13 @@ msgstr "Нацрт" #. module: account_voucher #: view:account.bank.statement:0 msgid "Import Invoices" -msgstr "Импортирај фактури" +msgstr "Увези фактури" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" -msgstr "Погрешна линија на ваучер" +msgstr "Погрешна ставка на ваучер" #. module: account_voucher #: selection:account.voucher,pay_now:0 @@ -384,7 +384,7 @@ msgid "Receipt" msgstr "Потврда" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -392,13 +392,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 @@ -408,7 +408,7 @@ msgstr "Период" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Добавувач" @@ -421,7 +421,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 @@ -429,10 +429,10 @@ msgid "Debit" msgstr "Задолжување" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" -msgstr "Неможе да се промени записникот !" +msgstr "Не може да се промени дневникот !" #. module: account_voucher #: view:sale.receipt.report:0 @@ -449,13 +449,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 @@ -479,12 +479,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 @@ -494,7 +494,8 @@ msgstr "Мемо" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure to unreconcile and cancel this record ?" -msgstr "Сигурно ли сакате да го откажете порамнувањето и записот?" +msgstr "" +"Сигурно ли сакате да извршите отпорамнување и да го откажете записот?" #. module: account_voucher #: field:account.voucher,is_multi_currency:0 @@ -550,7 +551,7 @@ msgid "Pay Invoice" msgstr "Плати фактура" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Нема основен код и даночен код на сметката!" @@ -581,12 +582,12 @@ msgid "" " " msgstr "" "

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

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

\n" " " @@ -600,7 +601,7 @@ msgstr "Сметка за загуба во девизен курс" #. module: account_voucher #: view:account.voucher:0 msgid "Paid Amount" -msgstr "Платена сума" +msgstr "Платен износ" #. module: account_voucher #: field:account.voucher,payment_option:0 @@ -614,15 +615,15 @@ msgid "To Review" msgstr "За прегледување" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "промени" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -630,13 +631,13 @@ msgid "" "to differences between exchange rates." msgstr "" "Треба да ја конфигурирате сметката за загуба во девизен курс, за автоматско " -"менаџирање на записите на сметката поврзани со разликите помеѓу девизните " -"курсеви." +"менаџирање на сметководствените внесови поврзани со разликите помеѓу " +"девизните курсеви." #. module: account_voucher #: view:account.voucher:0 msgid "Expense Lines" -msgstr "Линија за трошоци" +msgstr "Ставки за трошоци" #. module: account_voucher #: view:account.voucher:0 @@ -681,6 +682,7 @@ msgstr "Месец" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Валута" @@ -716,7 +718,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 @@ -724,7 +726,7 @@ msgid "Reconcile Payment Balance" msgstr "Порамнување на платниот биланс" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Грешка во конфигурацијата !" @@ -744,7 +746,7 @@ msgstr "Вкупно со данок" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Voucher" -msgstr "Ваучер за купување" +msgstr "Ваучер за набавка" #. module: account_voucher #: view:account.voucher:0 @@ -780,7 +782,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 @@ -789,10 +791,10 @@ msgid "October" msgstr "Октомври" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" -msgstr "Ве молиме активирајте го редоследот на одбраниот запис !" +msgstr "Ве молиме активирајте ја секвенцата на одбраниот дневник !" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -818,7 +820,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 @@ -869,7 +871,7 @@ msgid "Previous Payments ?" msgstr "Претходни плаќања ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "Фактурата што сакате да ја платите не е веќе валидна." @@ -883,7 +885,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 @@ -901,17 +903,17 @@ msgid "Active" msgstr "Активен" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, 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 @@ -923,12 +925,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 @@ -939,12 +941,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 @@ -965,7 +967,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 @@ -1002,7 +1004,7 @@ msgstr "Фактура" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Items" -msgstr "Елементи за ваучерот" +msgstr "Ставки на ваучерот" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 @@ -1013,7 +1015,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 @@ -1026,20 +1028,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 +#: code:addons/account_voucher/account_voucher.py:558 #, 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 @@ -1090,7 +1092,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Posted Vouchers" -msgstr "Испратени ваучери" +msgstr "Објавени ваучери" #. module: account_voucher #: field:account.voucher,payment_rate:0 @@ -1123,23 +1125,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 @@ -1170,12 +1172,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 @@ -1228,12 +1230,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 @@ -1244,25 +1246,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 +#: code:addons/account_voucher/account_voucher.py:971 #, 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 @@ -1272,14 +1274,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 @@ -1290,7 +1292,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 @@ -1309,7 +1311,7 @@ msgstr "Партнер" #. module: account_voucher #: field:account.voucher.line,amount_unreconciled:0 msgid "Open Balance" -msgstr "Отворено биланс" +msgstr "Отвори салдо" #. module: account_voucher #: model:mail.message.subtype,description:account_voucher.mt_voucher_state_change @@ -1317,8 +1319,8 @@ msgid "Status changed" msgstr "Статусот е променет" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Недоволна конфигурација!" @@ -1330,6 +1332,9 @@ msgid "" "inactive, which allow to hide the customer/supplier payment while the bank " "statement isn't confirmed." msgstr "" -"Стандардно, Ваучерите за порамнување правени по нацрт банкарски извештаи се " -"неактивни, со што се дозволува криење на клиент/добавувач плаќањето додека " -"не се потврди изјавата на банката." +"Стандардно, Ваучерите за порамнување направени по нацрт банкарски изводи се " +"неактивни, со што се дозволува да се сокрие плаќањето на " +"купувачот/добавувачот додека не се потврди изводот на банката." + +#~ msgid "Sales Receipt" +#~ msgstr "Потврда за продажба" diff --git a/addons/account_voucher/i18n/mn.po b/addons/account_voucher/i18n/mn.po index 02c3a4a0c76..b863631a7ee 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,10 +28,10 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" -msgstr "Зөрүү" +msgstr "Хасалт" #. module: account_voucher #: view:account.voucher:0 @@ -103,7 +103,7 @@ msgstr "Тооцоо хийх" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure you want to cancel this receipt?" -msgstr "Та энэ талоныг хэрэгсэхгүй болгохдоо итгэлтэй байна уу?" +msgstr "Та энэ баримтыг цуцлахдаа итгэлтэй байна уу?" #. module: account_voucher #: view:account.voucher:0 @@ -124,7 +124,7 @@ msgstr "Нэхэмжилсэн Огнооны Жилээр нь Бүлэглэх #: view:sale.receipt.report:0 #: field:sale.receipt.report,user_id:0 msgid "Salesperson" -msgstr "Худалдагч" +msgstr "Борлуулалтын ажилтан" #. module: account_voucher #: view:account.voucher:0 @@ -132,7 +132,7 @@ msgid "Voucher Statistics" msgstr "Ваучерийн статистик" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -163,10 +163,9 @@ msgid "" " " msgstr "" "

\n" -" Худалдан авалтын талон үүсгэхээр бол дарна уу. \n" +" Худалдан авалтын баримт үүсгэхээр бол дарна уу. \n" "

\n" -" Худалдан авалтын талон батласан дараа холбогдох " -"нийлүүлэгчийн\n" +" Худалдан авалтын баримтыг батласан дараа нийлүүлэгчийн\n" " төлбөрийг хөтлөх боломжтой.\n" "

\n" " " @@ -179,7 +178,7 @@ msgstr "Ваучераар хайх" #. module: account_voucher #: field:account.voucher,writeoff_acc_id:0 msgid "Counterpart Account" -msgstr "Гүйцээлтийн данс" +msgstr "Харьцах Данс" #. module: account_voucher #: field:account.voucher,account_id:0 @@ -201,7 +200,7 @@ msgstr "Тийм" #. module: account_voucher #: field:account.voucher.line,reconcile:0 msgid "Full Reconcile" -msgstr "Бүтэн гүйцээлт" +msgstr "Бүтэн тулгалт" #. module: account_voucher #: field:account.voucher,date_due:0 @@ -225,7 +224,7 @@ msgstr "Зурвасууд" #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipts" -msgstr "Худалдан авалтын талон" +msgstr "Худалдан авалтын баримт" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 @@ -233,8 +232,8 @@ msgid "Journal Item" msgstr "Журналын бичилт" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Алдаа!" @@ -261,7 +260,7 @@ msgid "Cancelled" msgstr "Цуцлагдсан" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -281,9 +280,9 @@ msgid "" " " msgstr "" "

\n" -" Борлуулалтын талон үүсгэхээр бол дарна уу.\n" +" Борлуулалтын баримт үүсгэхээр бол дарна уу.\n" "

\n" -" Борлуулалтын талон батлагдсан дараа холбогдох\n" +" Борлуулалтын баримт батлагдсан дараа холбогдох\n" " захиалагчийн төлбөрийг хөтлөх боломжтой.\n" "

\n" " " @@ -312,7 +311,7 @@ msgid "Tax" msgstr "Татвар" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Буруу Үйлдэл!" @@ -320,7 +319,7 @@ msgstr "Буруу Үйлдэл!" #. module: account_voucher #: field:account.voucher,comment:0 msgid "Counterpart Comment" -msgstr "Гүйцээлтийн тайлбар" +msgstr "Харьцах дансны тайлбар" #. module: account_voucher #: field:account.voucher.line,account_analytic_id:0 @@ -365,7 +364,7 @@ msgid "Import Invoices" msgstr "Нэхэмжлэх Импортлох" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Буруу ваучерийн мөр" @@ -384,7 +383,7 @@ msgid "Receipt" msgstr "Талон" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -407,7 +406,7 @@ msgstr "Мөчлөг" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Нийлүүлэгч" @@ -428,7 +427,7 @@ msgid "Debit" msgstr "Дебит" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Журнал өөрчлөх боломжгүй!" @@ -550,7 +549,7 @@ msgid "Pay Invoice" msgstr "Төлбөрийн нэхэмжлэл" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Дансны Суурь код болон Дансны Татварын Код алга байна!" @@ -585,7 +584,7 @@ msgstr "" "

\n" " Захиалагч болон төлбөрийг сонгоод дараа нь\n" " гараараа төлбөрийг оруулна эсвэл OpenERP\n" -" автоматаар нээлттэй нэхэмжлэл юмуу борлуулалтын талонтай\n" +" автоматаар нээлттэй нэхэмжлэх эсвэл борлуулалтын баримттай\n" " тулгалт хийхийг санал болгоно.\n" "

\n" " " @@ -613,15 +612,15 @@ msgid "To Review" msgstr "Үзлэг хийх" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "зөрүү" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -679,6 +678,7 @@ msgstr "Сар" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Валют" @@ -722,7 +722,7 @@ msgid "Reconcile Payment Balance" msgstr "Төлбөрийн үлдэгдлийг гүйцээх" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Тохиргооны алдаа !" @@ -787,7 +787,7 @@ msgid "October" msgstr "10-р сар" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Сонгосон журналын дарааллыг идэвхжүүлнэ үү!" @@ -811,7 +811,7 @@ msgstr "Төлөгдсөн" #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "Борлуулалтын талон" +msgstr "Борлуулалтын баримт" #. module: account_voucher #: field:account.voucher,message_is_follower:0 @@ -821,7 +821,7 @@ msgstr "Дагагч эсэх" #. module: account_voucher #: field:account.voucher,analytic_id:0 msgid "Write-Off Analytic Account" -msgstr "Хасагдуулгын Шинжилгээний Данс" +msgstr "Хасалтын Шинжилгээний Данс" #. module: account_voucher #: field:account.voucher,date:0 @@ -867,7 +867,7 @@ msgid "Previous Payments ?" msgstr "Өмнөх төлбөрүүд ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "Таны төлөх гэж буй нэхэмжлэл нь хүчингүй болсон байна" @@ -899,7 +899,7 @@ msgid "Active" msgstr "Идэвхтэй" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Энэ журналд дараалaл тодорхойлон уу." @@ -916,7 +916,7 @@ msgstr "Захиалагчийн төлбөр" #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt_report_all #: view:sale.receipt.report:0 msgid "Sales Receipts Analysis" -msgstr "Борлуулалтын талоны шинжилгээ" +msgstr "Борлуулалтын баримтын шинжилгээ" #. module: account_voucher #: view:sale.receipt.report:0 @@ -947,7 +947,7 @@ msgstr "Тооцоо бодсон огноо" #. module: account_voucher #: view:account.voucher:0 msgid "Unreconcile" -msgstr "Гүйцээлтийг цуцлах" +msgstr "Тулгалтыг арилгах" #. module: account_voucher #: view:account.voucher:0 @@ -1018,7 +1018,7 @@ msgstr "Нэхэмжлэлийн Цэсийг Нээх" #: view:sale.receipt.report:0 #: selection:sale.receipt.report,state:0 msgid "Pro-forma" -msgstr "Урьтал" +msgstr "Урьдчилсан" #. module: account_voucher #: view:account.voucher:0 @@ -1027,7 +1027,7 @@ msgid "Journal Items" msgstr "Журналын бичилтүүд" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "Журналд үндсэн кредит/дебит дансаа тодорхойлно уу \"%s\"." @@ -1138,7 +1138,7 @@ msgstr "Жинхэнэ дүн" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Receipt" -msgstr "Худалдан авалтын талон" +msgstr "Худалдан авалтын баримт" #. module: account_voucher #: help:account.voucher,payment_rate:0 @@ -1248,7 +1248,7 @@ msgid "" msgstr "Ваучерийн үнийн дүн нь хуулгын мөр дээрх дүнтэй адил байх ёстой." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "Нэгэнт нээчихсэн эсвэл төлөгдчихсөн ваучер устгагдах боломжгүй." @@ -1289,7 +1289,7 @@ msgstr "Татвар татахгүй дүн" #. module: account_voucher #: model:ir.model,name:account_voucher.model_sale_receipt_report msgid "Sales Receipt Statistics" -msgstr "Борлуулалтын талоны статистик" +msgstr "Борлуулалтын баримтын статистик" #. module: account_voucher #: view:account.voucher:0 @@ -1311,8 +1311,8 @@ msgid "Status changed" msgstr "Төлөв өөрчлөгдлөө" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Тохиргоо Дутуу байна!" diff --git a/addons/account_voucher/i18n/nb.po b/addons/account_voucher/i18n/nb.po index fad3cfe5853..7397e2eea16 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "Konto.konfigurasjon.innstillinger." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Nedskrivning." @@ -132,7 +132,7 @@ msgid "Voucher Statistics" msgstr "Kupong statistikker." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -226,8 +226,8 @@ msgid "Journal Item" msgstr "Journal Elementer." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Feil!" @@ -254,7 +254,7 @@ msgid "Cancelled" msgstr "Kansellert." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -297,7 +297,7 @@ msgid "Tax" msgstr "Skatt." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Ugyldig handling!" @@ -348,7 +348,7 @@ msgid "Import Invoices" msgstr "Importer fakturaer." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -367,7 +367,7 @@ msgid "Receipt" msgstr "Kvittering." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -388,7 +388,7 @@ msgstr "Periode." #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Leverandør" @@ -409,7 +409,7 @@ msgid "Debit" msgstr "Debet." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Kan ikke endre journal!" @@ -515,7 +515,7 @@ msgid "Pay Invoice" msgstr "Betal faktura." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Ingen konto base kode og konto skatt kode." @@ -569,15 +569,15 @@ msgid "To Review" msgstr "Til gjennomgang." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "Endre." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -631,6 +631,7 @@ msgstr "Måned." #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valuta." @@ -674,7 +675,7 @@ msgid "Reconcile Payment Balance" msgstr "Avstemming betalings balanse." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Konfigurasjons feil!" @@ -737,7 +738,7 @@ msgid "October" msgstr "Oktober." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Vennligst aktiver sekvensen av den utvalgte journal!" @@ -817,7 +818,7 @@ msgid "Previous Payments ?" msgstr "Tidligere Betalinger ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -849,7 +850,7 @@ msgid "Active" msgstr "Aktiv." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Vennligst definere en sekvens på tidsskriftet." @@ -977,7 +978,7 @@ msgid "Journal Items" msgstr "Journal Elementer." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1188,7 +1189,7 @@ msgstr "" "Mengden av kupongen må være det samme beløp som den på uttalelse linje." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "Kan ikke slette kupong(er) som allerede er åpnet eller betalt." @@ -1251,8 +1252,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/nl.po b/addons/account_voucher/i18n/nl.po index 9842be54abd..a448ba2e958 100644 --- a/addons/account_voucher/i18n/nl.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,10 +27,10 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" -msgstr "Boek af" +msgstr "Afschrijving" #. module: account_voucher #: view:account.voucher:0 @@ -77,7 +77,7 @@ msgstr "Rekening betaling" #: view:account.statement.from.invoice.lines:0 #: model:ir.actions.act_window,name:account_voucher.action_view_account_statement_from_invoice_lines msgid "Import Entries" -msgstr "Importeer invoerregels" +msgstr "Importeer boekingen" #. module: account_voucher #: view:account.voucher:0 @@ -131,7 +131,7 @@ msgid "Voucher Statistics" msgstr "Betaalbewijs analyses" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -143,7 +143,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Validate" -msgstr "Valideren" +msgstr "Bevestigen" #. module: account_voucher #: model:ir.actions.act_window,name:account_voucher.action_vendor_payment @@ -190,7 +190,7 @@ msgstr "Rekening" #. module: account_voucher #: field:account.voucher,line_dr_ids:0 msgid "Debits" -msgstr "Debet" +msgstr "Debet regels" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 @@ -229,11 +229,11 @@ msgstr "Aankoopbewijs" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 msgid "Journal Item" -msgstr "Journaal item" +msgstr "Boeking" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Fout!" @@ -260,7 +260,7 @@ msgid "Cancelled" msgstr "Geannuleerd" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -311,7 +311,7 @@ msgid "Tax" msgstr "Belasting" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Ongeldige actie!" @@ -365,7 +365,7 @@ msgid "Import Invoices" msgstr "Importeer facturen" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Verkeerde regel van het betaalbewijs" @@ -384,7 +384,7 @@ msgid "Receipt" msgstr "Betaalbewijs" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -408,7 +408,7 @@ msgstr "Periode" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Leverancier" @@ -429,7 +429,7 @@ msgid "Debit" msgstr "Debet" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Niet mogelijk om het dagboek te wijzigen!" @@ -551,7 +551,7 @@ msgid "Pay Invoice" msgstr "Betaling factuur" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Geen financiële rekening en fiscale rekening gedefinieerd!" @@ -564,7 +564,7 @@ msgstr "Belastingbedrag" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Validated Vouchers" -msgstr "Gevalideerde betaalbewijzen" +msgstr "Bevestigde betaalbewijzen" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_vendor_receipt @@ -615,15 +615,15 @@ msgid "To Review" msgstr "Na te kijken" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "wijziging" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -682,6 +682,7 @@ msgstr "Maand" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valuta" @@ -726,7 +727,7 @@ msgid "Reconcile Payment Balance" msgstr "Afletteren betalingsbalans" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Configuratiefout !" @@ -791,7 +792,7 @@ msgid "October" msgstr "oktober" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Activeer de reeks van het geselecteerde dagboek!" @@ -871,7 +872,7 @@ msgid "Previous Payments ?" msgstr "Vorige betalingen?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "De factuur die u wilt betalen is niet meer geldig." @@ -903,7 +904,7 @@ msgid "Active" msgstr "Actief" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Definieer een reeks voor dit dagboek." @@ -1028,10 +1029,10 @@ msgstr "Pro-forma" #: view:account.voucher:0 #: field:account.voucher,move_ids:0 msgid "Journal Items" -msgstr "Boekingen" +msgstr "Boekingsregels" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "Definieer standaard credit/debit rekeningen voor dit dagboek \"%s\"." @@ -1136,7 +1137,7 @@ msgstr "Interne notities" #: view:account.voucher:0 #: field:account.voucher,line_cr_ids:0 msgid "Credits" -msgstr "Credits" +msgstr "Credit regels" #. module: account_voucher #: field:account.voucher.line,amount_original:0 @@ -1256,7 +1257,7 @@ msgstr "" "afschriftregel." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1321,8 +1322,8 @@ msgid "Status changed" msgstr "Status veranderd" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Onvoldoende instellingen!" @@ -1623,9 +1624,6 @@ msgstr "" #~ msgid "Unreconcile entries" #~ msgstr "Maak afletteren ongedaan" -#~ msgid "Sales Receipt" -#~ msgstr "Verkoopbon" - #~ msgid "Write-Off Amount" #~ msgstr "Afschrijf bedrag" @@ -1799,3 +1797,6 @@ msgstr "" #~ msgid "Payment Terms" #~ msgstr "Betalingscondities" + +#~ msgid "Sales Receipt" +#~ msgstr "Betaalbewijs" diff --git a/addons/account_voucher/i18n/nl_BE.po b/addons/account_voucher/i18n/nl_BE.po index 04366df488e..17ebcfd94e1 100644 --- a/addons/account_voucher/i18n/nl_BE.po +++ b/addons/account_voucher/i18n/nl_BE.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-07-11 05:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: nl\n" #. module: account_voucher diff --git a/addons/account_voucher/i18n/oc.po b/addons/account_voucher/i18n/oc.po index 962231d1e61..278bd00a46a 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "Periòde" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "Debit" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Devisa" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/pl.po b/addons/account_voucher/i18n/pl.po index 422cfcaa50f..1439d68f7a1 100644 --- a/addons/account_voucher/i18n/pl.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Odpis" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "Statystyka poleceń" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -146,7 +146,7 @@ msgstr "Zatwierdź" #: 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 "Płatności od dostwców" +msgstr "Płatności od dostawców" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_purchase_receipt @@ -230,8 +230,8 @@ msgid "Journal Item" msgstr "Pozycja zapisu dziennika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Błąd!" @@ -258,7 +258,7 @@ msgid "Cancelled" msgstr "Anulowano" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -308,7 +308,7 @@ msgid "Tax" msgstr "Podatek" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Niedozwolona akcja!" @@ -362,7 +362,7 @@ msgid "Import Invoices" msgstr "Importuj faktury" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Błędna pozycja rachunku" @@ -381,7 +381,7 @@ msgid "Receipt" msgstr "Rachunek" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -404,7 +404,7 @@ msgstr "Okres" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Dostawca" @@ -425,7 +425,7 @@ msgid "Debit" msgstr "Winien" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Nie można zmienić dziennika !" @@ -547,7 +547,7 @@ msgid "Pay Invoice" msgstr "Zapłać fakturę" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Brak rejestru podstawy i rejestru podatku !" @@ -611,15 +611,15 @@ msgid "To Review" msgstr "Do sprawdzenia" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "zmień" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -677,6 +677,7 @@ msgstr "Miesiąc" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Waluta" @@ -720,7 +721,7 @@ msgid "Reconcile Payment Balance" msgstr "Uzgodnij bilans płatności" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Błąd konfiguracji !" @@ -785,7 +786,7 @@ msgid "October" msgstr "Październik" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Aktywuj numerację wybranego dziennika !" @@ -865,7 +866,7 @@ msgid "Previous Payments ?" msgstr "Poprzednia płatność ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "Faktura, którą chcesz zapłacić, nie jest poprawna." @@ -897,7 +898,7 @@ msgid "Active" msgstr "Aktywne" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Zdefiniuj numerację w dzienniku" @@ -1025,7 +1026,7 @@ msgid "Journal Items" msgstr "Pozycje zapisów dziennika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "Zdefiniuj domyślne konta Winien/Ma w dzienniku \"%s\"." @@ -1244,7 +1245,7 @@ msgid "" msgstr "Kwota płatności musi być taka sama jak w pozycji wyciągu." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "Nie mozna usuwać racunków/płatności, które są otwarte lub zapłacone." @@ -1307,8 +1308,8 @@ msgid "Status changed" msgstr "Stan zmieniono" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Niepełna konfiguracja!" diff --git a/addons/account_voucher/i18n/pt.po b/addons/account_voucher/i18n/pt.po index 6bb1a048d71..4e808060152 100644 --- a/addons/account_voucher/i18n/pt.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Eliminar" @@ -131,7 +131,7 @@ msgid "Voucher Statistics" msgstr "Estatísticas do voucher" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -223,8 +223,8 @@ msgid "Journal Item" msgstr "Item do Diário" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Erro!" @@ -251,7 +251,7 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -295,7 +295,7 @@ msgid "Tax" msgstr "Imposto" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Ação inválida!" @@ -346,7 +346,7 @@ msgid "Import Invoices" msgstr "Importar faturas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -365,7 +365,7 @@ msgid "Receipt" msgstr "Recibo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -386,7 +386,7 @@ msgstr "Período" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Fornecedor" @@ -407,7 +407,7 @@ msgid "Debit" msgstr "Débito" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -513,7 +513,7 @@ msgid "Pay Invoice" msgstr "Pagar fatura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Sem código da conta base e código da conta impostos" @@ -567,15 +567,15 @@ msgid "To Review" msgstr "Para rever" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "modificar" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -605,7 +605,7 @@ msgstr "" #. module: account_voucher #: view:account.invoice:0 msgid "Register Payment" -msgstr "" +msgstr "Registar pagamento" #. module: account_voucher #: field:account.statement.from.invoice.lines,line_ids:0 @@ -631,6 +631,7 @@ msgstr "Mês" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Moeda" @@ -674,7 +675,7 @@ msgid "Reconcile Payment Balance" msgstr "Reconciliar Balanço de Pagamentos" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Erro de configuração!" @@ -739,7 +740,7 @@ msgid "October" msgstr "Outubro" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -763,7 +764,7 @@ msgstr "Pago" #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "" +msgstr "Recibos de venda" #. module: account_voucher #: field:account.voucher,message_is_follower:0 @@ -819,7 +820,7 @@ msgid "Previous Payments ?" msgstr "Pagamentos anteriores?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -851,7 +852,7 @@ msgid "Active" msgstr "Ativo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -979,7 +980,7 @@ msgid "Journal Items" msgstr "Items do Diário" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1193,7 +1194,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1256,8 +1257,8 @@ msgid "Status changed" msgstr "Estado alterado" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Configuração incompleta!" diff --git a/addons/account_voucher/i18n/pt_BR.po b/addons/account_voucher/i18n/pt_BR.po index c2268b61e4c..ca2d1d57b81 100644 --- a/addons/account_voucher/i18n/pt_BR.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Ajuste" @@ -132,7 +132,7 @@ msgid "Voucher Statistics" msgstr "Estatísticas de Comprovantes" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -233,8 +233,8 @@ msgid "Journal Item" msgstr "Item de Diário" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Erro!" @@ -261,7 +261,7 @@ msgid "Cancelled" msgstr "Cancelado" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -312,7 +312,7 @@ msgid "Tax" msgstr "Imposto" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Ação Inválida!" @@ -366,7 +366,7 @@ msgid "Import Invoices" msgstr "Importar Faturas" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Linha de comprovante errada" @@ -385,7 +385,7 @@ msgid "Receipt" msgstr "Recebido" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -409,7 +409,7 @@ msgstr "Período" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Fornecedor" @@ -430,7 +430,7 @@ msgid "Debit" msgstr "Débito" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Não é possível alterar o diário!" @@ -550,7 +550,7 @@ msgid "Pay Invoice" msgstr "Pagar Fatura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Sem conta para Base e Imposto!" @@ -614,15 +614,15 @@ msgid "To Review" msgstr "Para Revisar" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "modificar" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -681,6 +681,7 @@ msgstr "Mês" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Moeda" @@ -724,7 +725,7 @@ msgid "Reconcile Payment Balance" msgstr "Reconciliar o Balanço do Pagamento" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Erro de Configuração!" @@ -789,7 +790,7 @@ msgid "October" msgstr "Outubro" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Por favor ative a sequência no diário selecionado!" @@ -869,7 +870,7 @@ msgid "Previous Payments ?" msgstr "Pagamentos Anteriores?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "A fatura que você deseja pagar não é mais válida." @@ -901,7 +902,7 @@ msgid "Active" msgstr "Ativo" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Por favor defina a sequência no diário." @@ -1029,7 +1030,7 @@ msgid "Journal Items" msgstr "Itens do Diário" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "Por favor defina a conta de crédito/débito padrão no diário \"%s\"." @@ -1254,7 +1255,7 @@ msgstr "" "demonstrativo." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "Não é possivel excluir comprovante(s) que já foi aberto ou pago." @@ -1317,8 +1318,8 @@ msgid "Status changed" msgstr "Situação alterada" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Configurações Insuficientes!" diff --git a/addons/account_voucher/i18n/ro.po b/addons/account_voucher/i18n/ro.po index 8a8485eea37..7658757ae3d 100644 --- a/addons/account_voucher/i18n/ro.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "setari.config.cont" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Pierdere" @@ -131,7 +131,7 @@ msgid "Voucher Statistics" msgstr "Statistici voucher" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -234,8 +234,8 @@ msgid "Journal Item" msgstr "Element Jurnal" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Eroare!" @@ -262,7 +262,7 @@ msgid "Cancelled" msgstr "Anulat(a)" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -314,7 +314,7 @@ msgid "Tax" msgstr "Taxa" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Actiune Nevalida!" @@ -367,7 +367,7 @@ msgid "Import Invoices" msgstr "Importati Facturi" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Linie incorecta a voucher-ului" @@ -386,7 +386,7 @@ msgid "Receipt" msgstr "Chitanta" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -410,7 +410,7 @@ msgstr "Perioada" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Furnizor" @@ -431,7 +431,7 @@ msgid "Debit" msgstr "Debit" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "Registrul nu a putut fi schimbat !" @@ -555,7 +555,7 @@ msgid "Pay Invoice" msgstr "Platiti Factura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -620,15 +620,15 @@ msgid "To Review" msgstr "De verificat" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "schimbati" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -687,6 +687,7 @@ msgstr "Luna" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Moneda" @@ -730,7 +731,7 @@ msgid "Reconcile Payment Balance" msgstr "Reconciliati Plata Sold" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Eroare de Configurare !" @@ -796,7 +797,7 @@ msgid "October" msgstr "Octombrie" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Va rugam sa activati secventa registrului selectat !" @@ -876,7 +877,7 @@ msgid "Previous Payments ?" msgstr "Plati anterioare ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "Factura pe care doriti sa o achitati nu mai este valabila." @@ -908,7 +909,7 @@ msgid "Active" msgstr "Activ(a)" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Va rugam sa definiti o secventa in registru." @@ -1036,7 +1037,7 @@ msgid "Journal Items" msgstr "Elementele Jurnalului" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1263,7 +1264,7 @@ msgstr "" "Valoarea voucher-ului trebuie sa fie acceasi ca si cea din linia extrasului." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "Nu pot fi sterse voucherele care sunt deja deschise sau platite." @@ -1326,8 +1327,8 @@ msgid "Status changed" msgstr "Starea schimbata" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Configurare Insuficienta!" diff --git a/addons/account_voucher/i18n/ru.po b/addons/account_voucher/i18n/ru.po index 16e03d424ef..6bdf7c98b07 100644 --- a/addons/account_voucher/i18n/ru.po +++ b/addons/account_voucher/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-06-14 05:38+0000\n" -"X-Generator: Launchpad (build 16667)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\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 2e086000ffb..f3c9a435a40 100644 --- a/addons/account_voucher/i18n/sl.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Odpis" @@ -45,7 +45,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 @@ -59,6 +59,7 @@ msgid "" "Computed as the difference between the amount stated in the voucher and the " "sum of allocation on the voucher lines." msgstr "" +"Razlika med zneskom v glavi in vsemi razporejenimi zneski na postavkah." #. module: account_voucher #: view:account.voucher:0 @@ -69,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 @@ -80,7 +81,7 @@ msgstr "Uvozi vnose" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Entry" -msgstr "" +msgstr "Potrdilo o plačilu" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -95,12 +96,12 @@ 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 msgid "Are you sure you want to cancel this receipt?" -msgstr "" +msgstr "Res želite preklicati to potrdilo o prevzemu?" #. module: account_voucher #: view:account.voucher:0 @@ -110,7 +111,7 @@ msgstr "Preklopi v pripravo" #. module: account_voucher #: help:account.voucher,reference:0 msgid "Transaction reference number." -msgstr "" +msgstr "Referenca transakcije" #. module: account_voucher #: view:sale.receipt.report:0 @@ -126,15 +127,16 @@ msgstr "Prodajalec" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Statistics" -msgstr "" +msgstr "Statistika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " "lines!" msgstr "" +"Ne morete spremeniti dnevnika , ker ste že uskladili nekatere postavke!" #. module: account_voucher #: view:account.voucher:0 @@ -158,16 +160,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Novo potrdilo o prevzemu\n" +"

\n" +" " #. module: account_voucher #: view:account.voucher:0 msgid "Search Vouchers" -msgstr "" +msgstr "Iskanje potrdil o plačilu" #. 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 @@ -179,7 +185,7 @@ msgstr "Konto" #. module: account_voucher #: field:account.voucher,line_dr_ids:0 msgid "Debits" -msgstr "" +msgstr "Obremenitve" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 @@ -189,7 +195,7 @@ msgstr "V redu" #. module: account_voucher #: field:account.voucher.line,reconcile:0 msgid "Full Reconcile" -msgstr "" +msgstr "Polna uskladitev" #. module: account_voucher #: field:account.voucher,date_due:0 @@ -213,7 +219,7 @@ msgstr "Sporočila" #: model:ir.actions.act_window,name:account_voucher.action_purchase_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_purchase_receipt msgid "Purchase Receipts" -msgstr "" +msgstr "Potrdila o prevzemu" #. module: account_voucher #: field:account.voucher.line,move_line_id:0 @@ -221,8 +227,8 @@ msgid "Journal Item" msgstr "Postavka" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Napaka!" @@ -235,7 +241,7 @@ 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 @@ -249,11 +255,11 @@ msgid "Cancelled" msgstr "Preklicano" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" -msgstr "" +msgstr "Manjkajo nastavitve na davku '%s' !" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_sale_receipt @@ -267,6 +273,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Novo potrdilo o prodaji\n" +"

\n" +" " #. module: account_voucher #: help:account.voucher,message_unread:0 @@ -291,7 +301,7 @@ msgid "Tax" msgstr "Davek" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "Napačno dejanje!" @@ -299,7 +309,7 @@ msgstr "Napačno dejanje!" #. module: account_voucher #: field:account.voucher,comment:0 msgid "Counterpart Comment" -msgstr "" +msgstr "Zaznamek - proti konto" #. module: account_voucher #: field:account.voucher.line,account_analytic_id:0 @@ -316,12 +326,12 @@ msgstr "Povzetek (število sporočil,..)" #. module: account_voucher #: view:account.voucher:0 msgid "Total Allocation" -msgstr "" +msgstr "Skupaj" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Information" -msgstr "" +msgstr "Informacije o plačilu" #. module: account_voucher #: view:account.voucher:0 @@ -342,10 +352,10 @@ msgid "Import Invoices" msgstr "Uvoz računov" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" -msgstr "" +msgstr "Napačna postavka" #. module: account_voucher #: selection:account.voucher,pay_now:0 @@ -361,7 +371,7 @@ msgid "Receipt" msgstr "Prejemek" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -372,7 +382,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Sales Lines" -msgstr "" +msgstr "Postavke prodaje" #. module: account_voucher #: view:account.voucher:0 @@ -382,7 +392,7 @@ msgstr "Obdobje" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Dobavitelj" @@ -390,7 +400,7 @@ msgstr "Dobavitelj" #. module: account_voucher #: view:account.voucher:0 msgid "Supplier Voucher" -msgstr "" +msgstr "Potrdilo dobavitela" #. module: account_voucher #: field:account.voucher,message_follower_ids:0 @@ -403,16 +413,16 @@ msgid "Debit" msgstr "V breme" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" -msgstr "" +msgstr "Ni možno spremeniti dnevnika" #. module: account_voucher #: view:sale.receipt.report:0 #: field:sale.receipt.report,nbr:0 msgid "# of Voucher Lines" -msgstr "" +msgstr "# postavk" #. module: account_voucher #: view:sale.receipt.report:0 @@ -423,13 +433,13 @@ msgstr "Tip" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Pro-forma Vouchers" -msgstr "" +msgstr "Pro-forma potrdila" #. module: account_voucher #: view:account.voucher:0 #: model:ir.actions.act_window,name:account_voucher.act_journal_voucher_open msgid "Voucher Entries" -msgstr "" +msgstr "Postavke" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_vendor_payment @@ -442,16 +452,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Novo plačilo dobavitelju\n" +"

\n" +" " #. 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 msgid "Vouchers Entries" -msgstr "" +msgstr "Potrdila" #. module: account_voucher #: field:account.voucher,name:0 @@ -461,17 +475,17 @@ msgstr "Zapisek" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure to unreconcile and cancel this record ?" -msgstr "" +msgstr "Res želite preklicati ta zapis?" #. module: account_voucher #: field:account.voucher,is_multi_currency:0 msgid "Multi Currency Voucher" -msgstr "" +msgstr "Več valutno potrdilo" #. module: account_voucher #: view:account.voucher:0 msgid "Bill Information" -msgstr "" +msgstr "Informacije o računu" #. module: account_voucher #: selection:sale.receipt.report,month:0 @@ -506,10 +520,10 @@ msgstr "Povprečje zamud plačil" #: code:addons/account_voucher/invoice.py:34 #, python-format msgid "Pay Invoice" -msgstr "" +msgstr "Plačilo računa" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -522,7 +536,7 @@ msgstr "Znesek davka" #. module: account_voucher #: view:sale.receipt.report:0 msgid "Validated Vouchers" -msgstr "" +msgstr "Potrjena potrdila" #. module: account_voucher #: model:ir.actions.act_window,help:account_voucher.action_vendor_receipt @@ -539,6 +553,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Novo plačilo\n" +"

\n" +" " #. module: account_voucher #: field:account.config.settings,expense_currency_exchange_account_id:0 @@ -549,7 +567,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 @@ -563,15 +581,15 @@ msgid "To Review" msgstr "Za pregled" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "spremeni" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +643,7 @@ msgstr "Mesec" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valuta" @@ -642,7 +661,7 @@ msgstr "" #. module: account_voucher #: field:sale.receipt.report,state:0 msgid "Voucher Status" -msgstr "" +msgstr "Status" #. module: account_voucher #: view:account.voucher:0 @@ -668,7 +687,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Napaka v nastavitvah!" @@ -677,7 +696,7 @@ msgstr "Napaka v nastavitvah!" #: view:account.voucher:0 #: view:sale.receipt.report:0 msgid "Draft Vouchers" -msgstr "" +msgstr "Osnutki" #. module: account_voucher #: view:sale.receipt.report:0 @@ -688,7 +707,7 @@ msgstr "Skupaj z davkom" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Voucher" -msgstr "" +msgstr "Potrdila o nakupu" #. module: account_voucher #: view:account.voucher:0 @@ -716,7 +735,7 @@ msgstr "Avgust" #. module: account_voucher #: view:account.voucher:0 msgid "Validate Payment" -msgstr "" +msgstr "Potrditev plačila" #. module: account_voucher #: help:account.voucher,audit:0 @@ -733,7 +752,7 @@ msgid "October" msgstr "Oktober" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -757,7 +776,7 @@ msgstr "Plačano" #: model:ir.actions.act_window,name:account_voucher.action_sale_receipt #: model:ir.ui.menu,name:account_voucher.menu_action_sale_receipt msgid "Sales Receipts" -msgstr "" +msgstr "Potrdila prodaje" #. module: account_voucher #: field:account.voucher,message_is_follower:0 @@ -813,7 +832,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -845,7 +864,7 @@ msgid "Active" msgstr "Aktivno" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Določite številčno zaporedje" @@ -855,7 +874,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 @@ -872,7 +891,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 @@ -919,7 +938,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 @@ -929,14 +948,14 @@ msgstr "September" #. module: account_voucher #: view:account.voucher:0 msgid "Sales Information" -msgstr "" +msgstr "Informacije prodaje" #. module: account_voucher #: view:account.voucher:0 #: field:account.voucher.line,voucher_id:0 #: model:res.request.link,name:account_voucher.req_link_voucher msgid "Voucher" -msgstr "" +msgstr "Potrdilo" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_invoice @@ -946,7 +965,7 @@ msgstr "Račun" #. module: account_voucher #: view:account.voucher:0 msgid "Voucher Items" -msgstr "" +msgstr "Postavke" #. module: account_voucher #: view:account.statement.from.invoice.lines:0 @@ -957,7 +976,7 @@ msgstr "Prekliči" #. module: account_voucher #: model:ir.actions.client,name:account_voucher.action_client_invoice_menu msgid "Open Invoicing Menu" -msgstr "" +msgstr "Odprite meni računov" #. module: account_voucher #: selection:account.voucher,state:0 @@ -973,10 +992,11 @@ msgid "Journal Items" msgstr "Postavke" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" +"Določiti morate privzete debetne in kreditne konte na dnevniku \"%s\"." #. module: account_voucher #: selection:account.voucher,type:0 @@ -1020,7 +1040,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Posted Vouchers" -msgstr "" +msgstr "Knjižena potrdila" #. module: account_voucher #: field:account.voucher,payment_rate:0 @@ -1030,7 +1050,7 @@ msgstr "Menjalni tečaj" #. module: account_voucher #: view:account.voucher:0 msgid "Payment Method" -msgstr "" +msgstr "Način plačila" #. module: account_voucher #: field:account.voucher.line,name:0 @@ -1064,7 +1084,7 @@ msgstr "Interni zaznamki" #: view:account.voucher:0 #: field:account.voucher,line_cr_ids:0 msgid "Credits" -msgstr "" +msgstr "V dobro" #. module: account_voucher #: field:account.voucher.line,amount_original:0 @@ -1074,7 +1094,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "Purchase Receipt" -msgstr "" +msgstr "Potrdilo nabave" #. module: account_voucher #: help:account.voucher,payment_rate:0 @@ -1118,7 +1138,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,reference:0 msgid "Ref #" -msgstr "" +msgstr "Ref #" #. module: account_voucher #: view:sale.receipt.report:0 @@ -1151,7 +1171,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,type:0 msgid "Default Type" -msgstr "" +msgstr "Privzeta vrsta" #. module: account_voucher #: help:account.voucher,message_ids:0 @@ -1182,10 +1202,10 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." -msgstr "" +msgstr "Ni možno izbrisati odprtega ali plačanega potrdila." #. module: account_voucher #: help:account.voucher,date:0 @@ -1207,7 +1227,7 @@ msgstr "Obdrži odprto" #: view:account.voucher.line:0 #: model:ir.model,name:account_voucher.model_account_voucher_line msgid "Voucher Lines" -msgstr "" +msgstr "Postavke" #. module: account_voucher #: view:sale.receipt.report:0 @@ -1218,12 +1238,12 @@ msgstr "Pov. Zamuda Plačila" #. module: account_voucher #: field:account.voucher.line,untax_amount:0 msgid "Untax Amount" -msgstr "" +msgstr "Neto" #. module: account_voucher #: model:ir.model,name:account_voucher.model_sale_receipt_report msgid "Sales Receipt Statistics" -msgstr "" +msgstr "Statistika prodajnih potrdil" #. module: account_voucher #: view:account.voucher:0 @@ -1245,11 +1265,11 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" -msgstr "" +msgstr "Premalo nastavitev!" #. module: account_voucher #: help:account.voucher,active:0 @@ -1387,3 +1407,6 @@ msgstr "" #~ msgid "Closing Balance" #~ msgstr "Zaključno stanje" + +#~ msgid "Sales Receipt" +#~ msgstr "Potrdilo prodaje" diff --git a/addons/account_voucher/i18n/sq.po b/addons/account_voucher/i18n/sq.po index fee2048f7d1..a4b9a94ee3f 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/sr.po b/addons/account_voucher/i18n/sr.po index e2050d1867e..cb691e41f07 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "Statistike Vaucera" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "Stavka Dnevnika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "Otkazano" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "Porez" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "Uvezi Racune" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "Racun" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "Razdoblje" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Dobavljač" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "Duguje" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "Racun" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Nema bazne postavke naloga kao ni poreza za isti." @@ -564,15 +564,15 @@ msgid "To Review" msgstr "Pregledati" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valuta" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "Predhodne Isplate" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "Sadrzaj Dnevnika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/sr@latin.po b/addons/account_voucher/i18n/sr@latin.po index f323748059d..b75128fc73e 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -130,7 +130,7 @@ msgid "Voucher Statistics" msgstr "Statistike Vaucera" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "Stavka Dnevnika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "Otkazano" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "Porez" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "Uvezi Racune" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "Racun" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "Razdoblje" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Dobavljač" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "Duguje" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "Racun" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Nema bazne postavke naloga kao ni poreza za isti." @@ -564,15 +564,15 @@ msgid "To Review" msgstr "Pregledati" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valuta" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "Predhodne Isplate" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "Sadrzaj Dnevnika" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/sv.po b/addons/account_voucher/i18n/sv.po index e60032b7199..eb3ed1b4ea9 100644 --- a/addons/account_voucher/i18n/sv.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Avskrivning" @@ -131,7 +131,7 @@ msgid "Voucher Statistics" msgstr "Verifikatstatistik" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -223,8 +223,8 @@ msgid "Journal Item" msgstr "Journalpost" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -251,7 +251,7 @@ msgid "Cancelled" msgstr "Avbruten" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -293,7 +293,7 @@ msgid "Tax" msgstr "Skatt" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -344,7 +344,7 @@ msgid "Import Invoices" msgstr "Importera fakturor" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -363,7 +363,7 @@ msgid "Receipt" msgstr "Kvitto" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -384,7 +384,7 @@ msgstr "Period" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Leverantör" @@ -405,7 +405,7 @@ msgid "Debit" msgstr "Debet" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -511,7 +511,7 @@ msgid "Pay Invoice" msgstr "Betala faktura" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "Ingen kontokod och skattekod" @@ -565,15 +565,15 @@ msgid "To Review" msgstr "Att godkänna" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "ändra" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -629,6 +629,7 @@ msgstr "Månad" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Valuta" @@ -672,7 +673,7 @@ msgid "Reconcile Payment Balance" msgstr "Stäm av betalningsbalansen" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -737,7 +738,7 @@ msgid "October" msgstr "oktober" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -817,7 +818,7 @@ msgid "Previous Payments ?" msgstr "Tidigare betalningar ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -849,7 +850,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -977,7 +978,7 @@ msgid "Journal Items" msgstr "Journalrader" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1193,7 +1194,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1256,8 +1257,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/tlh.po b/addons/account_voucher/i18n/tlh.po index 6a686118ad4..7793e23a849 100644 --- a/addons/account_voucher/i18n/tlh.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -291,7 +291,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -342,7 +342,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -361,7 +361,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +382,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -403,7 +403,7 @@ msgid "Debit" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -509,7 +509,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -563,15 +563,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +625,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "" @@ -668,7 +669,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -731,7 +732,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -811,7 +812,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -843,7 +844,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -971,7 +972,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1180,7 +1181,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1243,8 +1244,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/tr.po b/addons/account_voucher/i18n/tr.po index 9db7f1927f1..670f254bd62 100644 --- a/addons/account_voucher/i18n/tr.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Borç Silme" @@ -131,13 +131,13 @@ msgid "Voucher Statistics" msgstr "Fiş İstatistikleri" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " "lines!" msgstr "" -"Hali hazırda bazı kalemlerin uzlaşmasını yaptığınızdan dolay günlüğü " +"Hali hazırda bazı kalemlerin uzlaşmasını yaptığınızdan dolayı yevmiyeyi " "değiştiremezsiniz!" #. module: account_voucher @@ -232,8 +232,8 @@ msgid "Journal Item" msgstr "Yevmiye Kalemi" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "Hata!" @@ -257,10 +257,10 @@ msgstr "Diğer Bilgiler" #: selection:account.voucher,state:0 #: selection:sale.receipt.report,state:0 msgid "Cancelled" -msgstr "İptal Edilmiş" +msgstr "İptal Edildi" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -311,10 +311,10 @@ msgid "Tax" msgstr "Vergi" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" -msgstr "Geçersiz Eylem!" +msgstr "Geçersiz İşlem!" #. module: account_voucher #: field:account.voucher,comment:0 @@ -364,7 +364,7 @@ msgid "Import Invoices" msgstr "Faturaları İçe aktar" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "Yanlış fiş kalemi" @@ -383,7 +383,7 @@ msgid "Receipt" msgstr "Makbuz" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -407,7 +407,7 @@ msgstr "Dönem" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Tedarikçi" @@ -428,10 +428,10 @@ msgid "Debit" msgstr "Borç" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" -msgstr "Günlük değştirelemiyor !" +msgstr "Yevmiye değştirelemiyor !" #. module: account_voucher #: view:sale.receipt.report:0 @@ -549,10 +549,10 @@ msgid "Pay Invoice" msgstr "Fatura Ödeme" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" -msgstr "Hesap kodu ve Vergi kodu yok !" +msgstr "Hesap kodu ve Vergi kodu yok!" #. module: account_voucher #: field:account.voucher,tax_amount:0 @@ -614,15 +614,15 @@ msgid "To Review" msgstr "İncelenecek" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "değiştir" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -680,6 +680,7 @@ msgstr "Ay" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Para Birimi" @@ -723,7 +724,7 @@ msgid "Reconcile Payment Balance" msgstr "Bakiye Ödemesini Uzlaştır" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "Yapılandırma Hatası!" @@ -750,7 +751,7 @@ msgstr "Satınalma Fişi" #: field:account.voucher,state:0 #: view:sale.receipt.report:0 msgid "Status" -msgstr "Durum" +msgstr "Durumu" #. module: account_voucher #: view:account.voucher:0 @@ -788,7 +789,7 @@ msgid "October" msgstr "Ekim" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "Lütfen seçilen günlüğün seri numarasını etkinleştirin !" @@ -817,7 +818,7 @@ msgstr "Satış Makbuzları" #. module: account_voucher #: field:account.voucher,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçi mi" +msgstr "Bir İzleyicidir" #. module: account_voucher #: field:account.voucher,analytic_id:0 @@ -868,7 +869,7 @@ msgid "Previous Payments ?" msgstr "Öncek Ödemeler ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "Ödemek istediğiniz fatura artık geçerli değil." @@ -900,7 +901,7 @@ msgid "Active" msgstr "Etkin" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "Günlük için lütfen bir seri no tanımlayın." @@ -1028,11 +1029,11 @@ msgid "Journal Items" msgstr "Yevmiye Kalemleri" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" -"Bu günlükte lütfen varsayılan alacak/borç hesaplarını tanımlayın - \"%s\"." +"Bu yevmiyede lütfen varsayılan alacak/borç hesaplarını tanımlayın - \"%s\"." #. module: account_voucher #: selection:account.voucher,type:0 @@ -1250,7 +1251,7 @@ msgid "" msgstr "Fişin tutarı hesap özeti kalemindeki ile aynı tutarda olmalı." #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "Hali hazırda açık ya da ödenmiş olan fiş(ler) silinemiyor." @@ -1300,7 +1301,7 @@ msgstr "Satış Makbuzları İstatistikleri" #: view:sale.receipt.report:0 #: field:sale.receipt.report,partner_id:0 msgid "Partner" -msgstr "Paydaş" +msgstr "İş Ortağı" #. module: account_voucher #: field:account.voucher.line,amount_unreconciled:0 @@ -1313,8 +1314,8 @@ msgid "Status changed" msgstr "Durum değişti" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "Yetersiz Yapılandırma!" diff --git a/addons/account_voucher/i18n/uk.po b/addons/account_voucher/i18n/uk.po index 44c6ca3535f..7ad9de23d7b 100644 --- a/addons/account_voucher/i18n/uk.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -291,7 +291,7 @@ msgid "Tax" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -342,7 +342,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -361,7 +361,7 @@ msgid "Receipt" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +382,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "" @@ -403,7 +403,7 @@ msgid "Debit" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -509,7 +509,7 @@ msgid "Pay Invoice" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -563,15 +563,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +625,7 @@ msgstr "" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "" @@ -668,7 +669,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -731,7 +732,7 @@ msgid "October" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -811,7 +812,7 @@ msgid "Previous Payments ?" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -843,7 +844,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -971,7 +972,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1180,7 +1181,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1243,8 +1244,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/vi.po b/addons/account_voucher/i18n/vi.po index 633285bf856..4e1d4484beb 100644 --- a/addons/account_voucher/i18n/vi.po +++ b/addons/account_voucher/i18n/vi.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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 msgid "Reconciliation" -msgstr "" +msgstr "Đối soát" #. module: account_voucher #: model:ir.model,name:account_voucher.model_account_config_settings @@ -28,7 +28,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "Miễn bỏ" @@ -64,7 +64,7 @@ msgstr "" #. module: account_voucher #: view:account.voucher:0 msgid "(Update)" -msgstr "" +msgstr "(Cập nhật)" #. module: account_voucher #: view:account.voucher:0 @@ -91,7 +91,7 @@ msgstr "Tháng Ba" #. module: account_voucher #: field:account.voucher,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Tin chưa đọc" #. module: account_voucher #: view:account.voucher:0 @@ -101,7 +101,7 @@ msgstr "Trả hoá đơn" #. module: account_voucher #: view:account.voucher:0 msgid "Are you sure you want to cancel this receipt?" -msgstr "" +msgstr "Bạn có chắc muốn hủy bỏ biên lai này?" #. module: account_voucher #: view:account.voucher:0 @@ -122,7 +122,7 @@ msgstr "" #: view:sale.receipt.report:0 #: field:sale.receipt.report,user_id:0 msgid "Salesperson" -msgstr "" +msgstr "Nhân viên bán hàng" #. module: account_voucher #: view:account.voucher:0 @@ -130,12 +130,12 @@ msgid "Voucher Statistics" msgstr "Thống kê phiếu" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " "lines!" -msgstr "" +msgstr "Bạn không thể xóa nhật ký khi khi đã đối soát" #. module: account_voucher #: view:account.voucher:0 @@ -222,8 +222,8 @@ msgid "Journal Item" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -250,7 +250,7 @@ msgid "Cancelled" msgstr "Đã hủy bỏ" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -292,7 +292,7 @@ msgid "Tax" msgstr "Thuế" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -343,7 +343,7 @@ msgid "Import Invoices" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -362,7 +362,7 @@ msgid "Receipt" msgstr "Phiếu thu" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -383,7 +383,7 @@ msgstr "Chu kỳ" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "Nhà cung cấp" @@ -404,7 +404,7 @@ msgid "Debit" msgstr "Bên nợ" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -510,7 +510,7 @@ msgid "Pay Invoice" msgstr "Thanh toán hóa đơn" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "" @@ -564,15 +564,15 @@ msgid "To Review" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -626,6 +626,7 @@ msgstr "Tháng" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "Loại tiền" @@ -669,7 +670,7 @@ msgid "Reconcile Payment Balance" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -732,7 +733,7 @@ msgid "October" msgstr "Tháng Mười" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -812,7 +813,7 @@ msgid "Previous Payments ?" msgstr "Các thanh toán trước đây ?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -844,7 +845,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -972,7 +973,7 @@ msgid "Journal Items" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1181,7 +1182,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1244,8 +1245,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/zh_CN.po b/addons/account_voucher/i18n/zh_CN.po index e8ad42ee1ae..c2f1551da23 100644 --- a/addons/account_voucher/i18n/zh_CN.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "account.config.settings" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "补差额" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "凭证统计" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "会计凭证行" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "错误!" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "已取消" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -291,7 +291,7 @@ msgid "Tax" msgstr "税" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "非法的动作" @@ -342,7 +342,7 @@ msgid "Import Invoices" msgstr "导入发票" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -361,7 +361,7 @@ msgid "Receipt" msgstr "收据" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +382,7 @@ msgstr "会计期间" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "供应商" @@ -403,7 +403,7 @@ msgid "Debit" msgstr "借方" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -509,7 +509,7 @@ msgid "Pay Invoice" msgstr "支付发票" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "没有科目和税码!" @@ -563,15 +563,15 @@ msgid "To Review" msgstr "待审查" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "改动" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +625,7 @@ msgstr "月份" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "币别" @@ -668,7 +669,7 @@ msgid "Reconcile Payment Balance" msgstr "核销付款余额" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "设置错误!" @@ -731,7 +732,7 @@ msgid "October" msgstr "10月" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "请激活选中分类账的 序列( sequence )。" @@ -811,7 +812,7 @@ msgid "Previous Payments ?" msgstr "预付款?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -843,7 +844,7 @@ msgid "Active" msgstr "启用" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "请在分类账上定义一个序列( sequence )。" @@ -971,7 +972,7 @@ msgid "Journal Items" msgstr "账簿明细" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "定义分类账 \"%s\" 的默认借方/贷方科目" @@ -1180,7 +1181,7 @@ msgid "" msgstr "单据的金额必须跟对账单其中一行金额相同。" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "不能删除已经开启或者支付的单据。" @@ -1243,8 +1244,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/account_voucher/i18n/zh_TW.po b/addons/account_voucher/i18n/zh_TW.po index 893d1749727..0657d98f17a 100644 --- a/addons/account_voucher/i18n/zh_TW.po +++ b/addons/account_voucher/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: account_voucher #: field:account.bank.statement.line,voucher_id:0 @@ -27,7 +27,7 @@ msgid "account.config.settings" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:369 +#: code:addons/account_voucher/account_voucher.py:417 #, python-format msgid "Write-Off" msgstr "補差額" @@ -129,7 +129,7 @@ msgid "Voucher Statistics" msgstr "換領券統計" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "" "You can not change the journal as you already reconciled some statement " @@ -221,8 +221,8 @@ msgid "Journal Item" msgstr "會計憑證行" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 -#: code:addons/account_voucher/account_voucher.py:981 +#: code:addons/account_voucher/account_voucher.py:558 +#: code:addons/account_voucher/account_voucher.py:1073 #, python-format msgid "Error!" msgstr "" @@ -249,7 +249,7 @@ msgid "Cancelled" msgstr "取消" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "" "You have to configure account base code and account tax code on the '%s' tax!" @@ -291,7 +291,7 @@ msgid "Tax" msgstr "稅" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Invalid Action!" msgstr "" @@ -342,7 +342,7 @@ msgid "Import Invoices" msgstr "匯入發票" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "Wrong voucher line" msgstr "" @@ -361,7 +361,7 @@ msgid "Receipt" msgstr "收據" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "" "You should configure the 'Gain Exchange Rate Account' in the accounting " @@ -382,7 +382,7 @@ msgstr "會計期間" #. module: account_voucher #: view:account.voucher:0 -#: code:addons/account_voucher/account_voucher.py:211 +#: code:addons/account_voucher/account_voucher.py:231 #, python-format msgid "Supplier" msgstr "供應商" @@ -403,7 +403,7 @@ msgid "Debit" msgstr "借方" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1547 +#: code:addons/account_voucher/account_voucher.py:1641 #, python-format msgid "Unable to change journal !" msgstr "" @@ -509,7 +509,7 @@ msgid "Pay Invoice" msgstr "付款" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1153 +#: code:addons/account_voucher/account_voucher.py:1249 #, python-format msgid "No Account Base Code and Account Tax Code!" msgstr "沒有科目和稅碼!" @@ -563,15 +563,15 @@ msgid "To Review" msgstr "待審查" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1025 -#: code:addons/account_voucher/account_voucher.py:1039 -#: code:addons/account_voucher/account_voucher.py:1194 +#: code:addons/account_voucher/account_voucher.py:1120 +#: code:addons/account_voucher/account_voucher.py:1134 +#: code:addons/account_voucher/account_voucher.py:1286 #, python-format msgid "change" msgstr "變更" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 +#: code:addons/account_voucher/account_voucher.py:1106 #, python-format msgid "" "You should configure the 'Loss Exchange Rate Account' in the accounting " @@ -625,6 +625,7 @@ msgstr "月份" #. module: account_voucher #: field:account.voucher,currency_id:0 #: field:account.voucher.line,currency_id:0 +#: model:ir.model,name:account_voucher.model_res_currency #: field:sale.receipt.report,currency_id:0 msgid "Currency" msgstr "貨幣" @@ -668,7 +669,7 @@ msgid "Reconcile Payment Balance" msgstr "核銷付款餘額" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:975 +#: code:addons/account_voucher/account_voucher.py:1067 #, python-format msgid "Configuration Error !" msgstr "" @@ -731,7 +732,7 @@ msgid "October" msgstr "十月" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:976 +#: code:addons/account_voucher/account_voucher.py:1068 #, python-format msgid "Please activate the sequence of selected journal !" msgstr "" @@ -811,7 +812,7 @@ msgid "Previous Payments ?" msgstr "預付款?" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1112 +#: code:addons/account_voucher/account_voucher.py:1208 #, python-format msgid "The invoice you are willing to pay is not valid anymore." msgstr "" @@ -843,7 +844,7 @@ msgid "Active" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:982 +#: code:addons/account_voucher/account_voucher.py:1074 #, python-format msgid "Please define a sequence on the journal." msgstr "" @@ -971,7 +972,7 @@ msgid "Journal Items" msgstr "帳簿明細" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:508 +#: code:addons/account_voucher/account_voucher.py:558 #, python-format msgid "Please define default credit/debit accounts on the journal \"%s\"." msgstr "" @@ -1180,7 +1181,7 @@ msgid "" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:879 +#: code:addons/account_voucher/account_voucher.py:971 #, python-format msgid "Cannot delete voucher(s) which are already opened or paid." msgstr "" @@ -1243,8 +1244,8 @@ msgid "Status changed" msgstr "" #. module: account_voucher -#: code:addons/account_voucher/account_voucher.py:1014 -#: code:addons/account_voucher/account_voucher.py:1018 +#: code:addons/account_voucher/account_voucher.py:1106 +#: code:addons/account_voucher/account_voucher.py:1110 #, python-format msgid "Insufficient Configuration!" msgstr "" diff --git a/addons/analytic/i18n/ar.po b/addons/analytic/i18n/ar.po index 68af10155d4..8b6b3a4904b 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "قالب" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/bg.po b/addons/analytic/i18n/bg.po index c4550629edd..465b62fd4d7 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Образец" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/bs.po b/addons/analytic/i18n/bs.po index c88d15f2b99..8fd47566a37 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Predložak." #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/ca.po b/addons/analytic/i18n/ca.po index 4622b62ebc7..7381a09cefb 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Plantilla" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/cs.po b/addons/analytic/i18n/cs.po index 9ac5eb9c971..0090c7406e4 100644 --- a/addons/analytic/i18n/cs.po +++ b/addons/analytic/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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: czech\n" #. module: analytic @@ -40,6 +40,7 @@ msgstr "Šablona" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/da.po b/addons/analytic/i18n/da.po index 4d45e8d262b..6678c2173e7 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/de.po b/addons/analytic/i18n/de.po index 88a3f4dc54d..13ad94ce247 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -41,6 +41,7 @@ msgstr "Vorlage" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Ende Datum" diff --git a/addons/analytic/i18n/el.po b/addons/analytic/i18n/el.po index 8b6b56cc979..ef4fd9aa5d2 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Πρότυπο" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/en_GB.po b/addons/analytic/i18n/en_GB.po index 94d2a1e0003..eb0454b071c 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Template" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "End Date" diff --git a/addons/analytic/i18n/es.po b/addons/analytic/i18n/es.po index 731f447ffc1..709a3ba19bf 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Plantilla" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Fecha final" diff --git a/addons/analytic/i18n/es_CR.po b/addons/analytic/i18n/es_CR.po index f149ece74e7..4466f379352 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: analytic @@ -41,6 +41,7 @@ msgstr "Plantilla" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/es_EC.po b/addons/analytic/i18n/es_EC.po index 20919535c26..1f443737dc5 100644 --- a/addons/analytic/i18n/es_EC.po +++ b/addons/analytic/i18n/es_EC.po @@ -9,8 +9,8 @@ msgstr "" "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 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -35,6 +35,7 @@ msgstr "Plantilla" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/es_PY.po b/addons/analytic/i18n/es_PY.po index 4a5fa63e960..ef13b0580f7 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Plantilla" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/et.po b/addons/analytic/i18n/et.po index 02abb6568b8..f6bb49b1c46 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Mall" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/fa.po b/addons/analytic/i18n/fa.po index 4f2934b0450..de9b52f2a34 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/fi.po b/addons/analytic/i18n/fi.po index 0512c792f54..e4421ab1007 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Mallipohja" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/fr.po b/addons/analytic/i18n/fr.po index 2cefcfd929a..160ca749536 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Modèle" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Date de fin" @@ -335,13 +336,13 @@ msgstr "Date de fin" #. module: analytic #: field:account.analytic.account,code:0 msgid "Reference" -msgstr "" +msgstr "Référence" #. module: analytic #: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" -msgstr "" +msgstr "Erreur!" #. module: analytic #: model:res.groups,name:analytic.group_analytic_accounting @@ -386,7 +387,7 @@ msgstr "Type de compte" #. module: analytic #: field:account.analytic.account,date_start:0 msgid "Start Date" -msgstr "" +msgstr "Date de début" #. module: analytic #: constraint:account.analytic.line:0 diff --git a/addons/analytic/i18n/gl.po b/addons/analytic/i18n/gl.po index efe72c6e4ca..35d538d5be8 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Plantilla" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/hr.po b/addons/analytic/i18n/hr.po index f335d9c6c62..6c96e7ef025 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Predložak" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/hu.po b/addons/analytic/i18n/hu.po index 4c6b076773d..8cc254f216f 100644 --- a/addons/analytic/i18n/hu.po +++ b/addons/analytic/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-26 04:44+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -39,6 +39,7 @@ msgstr "Sablon" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Befejezés dátuma" @@ -86,6 +87,14 @@ msgid "" "the\n" " customer." msgstr "" +"Ha egyszer a szerződés határideje át lett\n" +" lépve vagy a maximum szolgáltatási " +"egységek száma\n" +" (pl. támogatási szerződés) el lett\n" +" érve, a számlázási ügyintéző e-" +"mailben\n" +" értesítve lesz a szerződés " +"megújításáról." #. module: analytic #: selection:account.analytic.account,type:0 @@ -186,6 +195,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 "" +"Beállítja az időbeosztás szerinti a szerződésre ráfordítható hosszabb időt. " +"(például, órák száma egy korlátozottan támogatott szerződéshez.)" #. module: analytic #: code:addons/analytic/analytic.py:160 @@ -198,6 +209,12 @@ msgid "" "consolidation purposes of several companies charts with different " "currencies, for example." msgstr "" +"Ha beállított egy vállalatot, a kiválasztott pénznemnek azonosnak kell " +"lennie a pénznemével. \n" +"A vállalathoz tartozókat leválaszthatja, ezzel megváltoztatható a pénznem, " +"de csak az elemző számlák 'nézet' típusán. Ez nagyon hasznos lehet " +"különböző vállalatok különböző pénznemében értékel grafikonjainak " +"megerősítéshez, például." #. module: analytic #: field:account.analytic.account,message_is_follower:0 @@ -312,12 +329,12 @@ msgstr "Egyenleg" #. module: analytic #: help:account.analytic.account,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Ha be van jelölve, akkor figyelje az új üzeneteket." #. module: analytic #: selection:account.analytic.account,state:0 msgid "To Renew" -msgstr "" +msgstr "Megújításhoz" #. module: analytic #: field:account.analytic.account,quantity:0 @@ -333,18 +350,18 @@ msgstr "Záró dátum" #. module: analytic #: field:account.analytic.account,code:0 msgid "Reference" -msgstr "" +msgstr "Hivatkozás" #. module: analytic #: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" -msgstr "" +msgstr "Hiba!" #. module: analytic #: model:res.groups,name:analytic.group_analytic_accounting msgid "Analytic Accounting" -msgstr "" +msgstr "Analitikus/elemző könyvvitel" #. module: analytic #: field:account.analytic.line,amount:0 @@ -367,7 +384,7 @@ msgstr "Gyűjtőkód" #. module: analytic #: field:account.analytic.account,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Pénznem" #. module: analytic #: help:account.analytic.account,message_summary:0 @@ -375,21 +392,23 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"A chettelés összegzést megállítja (üzenetek száma,...). Ez az összegzés " +"direkt HTML formátumú ahhoz hogy beilleszthető legyen a kanban nézetekbe." #. module: analytic #: field:account.analytic.account,type:0 msgid "Type of Account" -msgstr "" +msgstr "Bankszámla típusa" #. module: analytic #: field:account.analytic.account,date_start:0 msgid "Start Date" -msgstr "" +msgstr "Kezdő dátum" #. module: analytic #: constraint:account.analytic.line:0 msgid "You cannot create analytic line on view account." -msgstr "" +msgstr "Nem hozhat létre elemző sort a számla nézeten." #. module: analytic #: field:account.analytic.account,line_ids:0 diff --git a/addons/analytic/i18n/it.po b/addons/analytic/i18n/it.po index 05bbeedc91f..ffd2c13523c 100644 --- a/addons/analytic/i18n/it.po +++ b/addons/analytic/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-14 21:13+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Modello" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Data Finale" diff --git a/addons/analytic/i18n/ja.po b/addons/analytic/i18n/ja.po index 46418d239b5..9e5d5b25758 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "テンプレート" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/lt.po b/addons/analytic/i18n/lt.po index d9073313307..3c62ad0838f 100644 --- a/addons/analytic/i18n/lt.po +++ b/addons/analytic/i18n/lt.po @@ -14,24 +14,24 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-30 05:29+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 msgid "Child Accounts" -msgstr "" +msgstr "Vaikinės sąskaitos" #. module: analytic #: selection:account.analytic.account,state:0 msgid "In Progress" -msgstr "" +msgstr "Vykdoma" #. module: analytic #: code:addons/analytic/analytic.py:229 #, python-format msgid "Contract: " -msgstr "" +msgstr "Sutartis: " #. module: analytic #: selection:account.analytic.account,state:0 @@ -40,18 +40,19 @@ msgstr "" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" -msgstr "" +msgstr "Pabaigos data" #. module: analytic #: help:account.analytic.line,unit_amount:0 msgid "Specifies the amount of quantity to count." -msgstr "" +msgstr "Nurodo produkto kiekį." #. module: analytic #: field:account.analytic.account,debit:0 msgid "Debit" -msgstr "" +msgstr "Debetas" #. module: analytic #: help:account.analytic.account,type:0 @@ -79,31 +80,39 @@ msgid "" "the\n" " customer." msgstr "" +"Kai tik pasibaigia sutartis\n" +" arba maksimaliai kartų atlikus " +"paslaugas\n" +" (pvz. techninės pagalbos sutartis),\n" +" sąskaitos valdytojas yra įspėjamas\n" +" el. laišku, kad atnaujintų sutartį " +"su\n" +" pirkėju." #. module: analytic #: selection:account.analytic.account,type:0 msgid "Contract or Project" -msgstr "" +msgstr "Sutartis arba projektas" #. module: analytic #: field:account.analytic.account,name:0 msgid "Account/Contract Name" -msgstr "" +msgstr "Sąskaitos/sutarties pavadinimas" #. module: analytic #: field:account.analytic.account,manager_id:0 msgid "Account Manager" -msgstr "" +msgstr "Sąskaitos valdytojas" #. module: analytic #: field:account.analytic.account,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Prenumeratoriai" #. module: analytic #: selection:account.analytic.account,state:0 msgid "Closed" -msgstr "" +msgstr "Uždaryta" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_pending @@ -113,23 +122,23 @@ msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 msgid "New" -msgstr "" +msgstr "Naujas" #. module: analytic #: field:account.analytic.account,user_id:0 msgid "Project Manager" -msgstr "" +msgstr "Projekto vadovas" #. module: analytic #: field:account.analytic.account,state:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: analytic #: code:addons/analytic/analytic.py:271 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (kopija)" #. module: analytic #: model:ir.model,name:analytic.model_account_analytic_line @@ -140,12 +149,12 @@ msgstr "" #: field:account.analytic.account,description:0 #: field:account.analytic.line,name:0 msgid "Description" -msgstr "" +msgstr "Aprašymas" #. module: analytic #: field:account.analytic.account,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Neperžiūrėtos žinutės" #. module: analytic #: constraint:account.analytic.account:0 @@ -156,17 +165,17 @@ msgstr "" #: field:account.analytic.account,company_id:0 #: field:account.analytic.line,company_id:0 msgid "Company" -msgstr "" +msgstr "Įmonė" #. module: analytic #: view:account.analytic.account:0 msgid "Renewal" -msgstr "" +msgstr "Pratęsimas" #. module: analytic #: help:account.analytic.account,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Žinučių ir pranešimų istorija" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_opened @@ -195,12 +204,12 @@ msgstr "" #. module: analytic #: field:account.analytic.account,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Ar prenumeratorius" #. module: analytic #: field:account.analytic.line,user_id:0 msgid "User" -msgstr "" +msgstr "Naudotojas" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_pending @@ -210,7 +219,7 @@ msgstr "" #. module: analytic #: field:account.analytic.line,date:0 msgid "Date" -msgstr "" +msgstr "Data" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_closed @@ -220,7 +229,7 @@ msgstr "" #. module: analytic #: view:account.analytic.account:0 msgid "Terms and Conditions" -msgstr "" +msgstr "Sąlygos" #. module: analytic #: help:account.analytic.line,amount:0 @@ -228,11 +237,13 @@ msgid "" "Calculated by multiplying the quantity and the price given in the Product's " "cost price. Always expressed in the company main currency." msgstr "" +"Apskaičiuota dauginant kiekį iš nurodyto Produkto savikainos. Suma visada " +"išreikšta pagrindine įmonės valiuta." #. module: analytic #: field:account.analytic.account,partner_id:0 msgid "Customer" -msgstr "" +msgstr "Pirkėjas" #. module: analytic #: field:account.analytic.account,child_complete_ids:0 @@ -242,28 +253,28 @@ msgstr "" #. module: analytic #: field:account.analytic.account,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Pranešimai" #. module: analytic #: field:account.analytic.account,parent_id:0 msgid "Parent Analytic Account" -msgstr "" +msgstr "Tėvinė analitinė sąskaita" #. module: analytic #: view:account.analytic.account:0 msgid "Contract Information" -msgstr "" +msgstr "Sutarties duomenys" #. module: analytic #: field:account.analytic.account,template_id:0 #: selection:account.analytic.account,type:0 msgid "Template of Contract" -msgstr "" +msgstr "Sutarties šablonas" #. module: analytic #: field:account.analytic.account,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Santrauka" #. module: analytic #: field:account.analytic.account,quantity_max:0 @@ -273,7 +284,7 @@ msgstr "" #. module: analytic #: field:account.analytic.account,credit:0 msgid "Credit" -msgstr "" +msgstr "Kreditas" #. module: analytic #: model:mail.message.subtype,name:analytic.mt_account_opened @@ -288,22 +299,22 @@ msgstr "" #. module: analytic #: selection:account.analytic.account,state:0 msgid "Cancelled" -msgstr "" +msgstr "Atšauktas" #. module: analytic #: selection:account.analytic.account,type:0 msgid "Analytic View" -msgstr "" +msgstr "Analitinė apžvalga" #. module: analytic #: field:account.analytic.account,balance:0 msgid "Balance" -msgstr "" +msgstr "Balansas" #. module: analytic #: help:account.analytic.account,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Jeigu pažymėta, naujos žinutės reikalaus jūsų dėmesio." #. module: analytic #: selection:account.analytic.account,state:0 @@ -314,7 +325,7 @@ msgstr "" #: field:account.analytic.account,quantity:0 #: field:account.analytic.line,unit_amount:0 msgid "Quantity" -msgstr "" +msgstr "Kiekis" #. module: analytic #: field:account.analytic.account,date:0 @@ -324,23 +335,23 @@ msgstr "" #. module: analytic #: field:account.analytic.account,code:0 msgid "Reference" -msgstr "" +msgstr "Numeris" #. module: analytic #: code:addons/analytic/analytic.py:160 #, python-format msgid "Error!" -msgstr "" +msgstr "Klaida!" #. module: analytic #: model:res.groups,name:analytic.group_analytic_accounting msgid "Analytic Accounting" -msgstr "" +msgstr "Analitinė apskaita" #. module: analytic #: field:account.analytic.line,amount:0 msgid "Amount" -msgstr "" +msgstr "Suma" #. module: analytic #: field:account.analytic.account,complete_name:0 @@ -353,12 +364,12 @@ msgstr "" #: field:account.analytic.line,account_id:0 #: model:ir.model,name:analytic.model_account_analytic_account msgid "Analytic Account" -msgstr "" +msgstr "Analitinė sąskaita" #. module: analytic #: field:account.analytic.account,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Valiuta" #. module: analytic #: help:account.analytic.account,message_summary:0 @@ -366,16 +377,18 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Saugo pokalbių suvestinę (žinučių skaičius, ...). Ši apžvalga saugoma html " +"formatu, kad būtų galima įterpti į kanban rodinius." #. module: analytic #: field:account.analytic.account,type:0 msgid "Type of Account" -msgstr "" +msgstr "Sąskaitos tipas" #. module: analytic #: field:account.analytic.account,date_start:0 msgid "Start Date" -msgstr "" +msgstr "Pradžios data" #. module: analytic #: constraint:account.analytic.line:0 @@ -385,4 +398,4 @@ msgstr "" #. module: analytic #: field:account.analytic.account,line_ids:0 msgid "Analytic Entries" -msgstr "" +msgstr "Analitiniai įrašai" diff --git a/addons/analytic/i18n/lv.po b/addons/analytic/i18n/lv.po index c6f44a142d6..9f490d4bbb7 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Veidne" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/mk.po b/addons/analytic/i18n/mk.po index 37f9d73ec6a..871570f2cb1 100644 --- a/addons/analytic/i18n/mk.po +++ b/addons/analytic/i18n/mk.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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 msgid "Child Accounts" -msgstr "Сметка (дете)" +msgstr "Сметки (дете)" #. module: analytic #: selection:account.analytic.account,state:0 @@ -40,6 +40,7 @@ msgstr "Урнек" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Краен датум" @@ -66,11 +67,11 @@ msgid "" "default data that you can reuse easily." msgstr "" "Доколку изберете тип за Преглед, тоа значи дека нема да биде дозволено " -"внесување на записи во записникот користејки ја таа сметка.\n" +"креирање на внесови во дневникот користејки ја таа сметка.\n" "Типот 'Аналитичка сметка' значи обични корисници што ќе се користат во " "сметководството.\n" -"Доколку одберете Договор или Проект, тоа ви ја нуди можноста за менаџирање " -"на валидноста и опциите за фактурирање за оваа сметка.\n" +"Доколку одберете Договор или Проект, тоа ви ја нуди можноста за управување " +"со валидноста и опциите за фактурирање за оваа сметка.\n" "Специјалниот тип 'Шаблон на договор' ви овозможува да дефинирате шаблон со " "стандардни податоци кои може лесно да ги менувате." @@ -93,7 +94,7 @@ msgstr "" " на сервисни единици, менаџерот на " "сметката \n" " се известува преку e-mail за да го \n" -" обнови договорот со клиентот." +" обнови договорот со купувачот." #. module: analytic #: selection:account.analytic.account,type:0 @@ -113,7 +114,7 @@ msgstr "Менаџер на сметка" #. module: analytic #: field:account.analytic.account,message_follower_ids:0 msgid "Followers" -msgstr "Следбеници" +msgstr "Пратители" #. module: analytic #: selection:account.analytic.account,state:0 @@ -181,7 +182,7 @@ msgstr "Обновување" #. module: analytic #: help:account.analytic.account,message_ids:0 msgid "Messages and communication history" -msgstr "Пораки и историја на комуникација" +msgstr "Историја на пораки и комуникација" #. module: analytic #: model:mail.message.subtype,description:analytic.mt_account_opened @@ -194,8 +195,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 @@ -211,7 +212,7 @@ msgid "" msgstr "" "Доколку поставите компанија, избраната валута мора да биде иста како на " "компанијата. \n" -"Може да отстранете каде компанијата припаѓа и со тоа да извршите промена на " +"Може да отстраните каде припаѓа компанијата и со тоа да извршите промена на " "валутата, само на аналитичка сметка со тип 'преглед'. Ова може да биде " "навистина корисно во консолидациски цели кај табели со различни валути на " "неколку компании, на пример." @@ -219,7 +220,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 @@ -258,7 +259,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 @@ -284,7 +285,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 @@ -299,7 +300,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 @@ -324,7 +325,7 @@ msgstr "Аналитички приказ" #. module: analytic #: field:account.analytic.account,balance:0 msgid "Balance" -msgstr "Биланс" +msgstr "Салдо" #. module: analytic #: help:account.analytic.account,message_unread:0 @@ -408,9 +409,9 @@ msgstr "Почетен датум" #. module: analytic #: constraint:account.analytic.line:0 msgid "You cannot create analytic line on view account." -msgstr "Неможе да креирате аналитичка линија на сметка за преглед." +msgstr "Не може да креирате аналитичка ставка на сметка приказ." #. module: analytic #: field:account.analytic.account,line_ids:0 msgid "Analytic Entries" -msgstr "Аналитички записи" +msgstr "Аналитички внесови" diff --git a/addons/analytic/i18n/mn.po b/addons/analytic/i18n/mn.po index 63fa487d3a6..ff964116663 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Загвар" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Дуусах огноо" @@ -99,7 +100,7 @@ msgstr "Гэрээ эсвэл Төсөл" #. module: analytic #: field:account.analytic.account,name:0 msgid "Account/Contract Name" -msgstr "Данс/Гэрээний толгой" +msgstr "Данс/Гэрээний нэр" #. module: analytic #: field:account.analytic.account,manager_id:0 @@ -145,7 +146,7 @@ msgstr "%s (хуулбар)" #. module: analytic #: model:ir.model,name:analytic.model_account_analytic_line msgid "Analytic Line" -msgstr "Аналитик шугам" +msgstr "Шинжилгээний мөр" #. module: analytic #: field:account.analytic.account,description:0 @@ -266,7 +267,7 @@ msgstr "Зурвасууд" #. module: analytic #: field:account.analytic.account,parent_id:0 msgid "Parent Analytic Account" -msgstr "Эцэг аналитик данс" +msgstr "Эцэг шинжилгээний данс" #. module: analytic #: view:account.analytic.account:0 @@ -355,7 +356,7 @@ msgstr "Алдаа!" #. module: analytic #: model:res.groups,name:analytic.group_analytic_accounting msgid "Analytic Accounting" -msgstr "Аналитик санхүү" +msgstr "Шинжилгээний санхүү" #. module: analytic #: field:account.analytic.line,amount:0 @@ -373,7 +374,7 @@ msgstr "Дансны бүтэн нэр" #: field:account.analytic.line,account_id:0 #: model:ir.model,name:analytic.model_account_analytic_account msgid "Analytic Account" -msgstr "Аналитик Данс" +msgstr "Шинжилгээний Данс" #. module: analytic #: field:account.analytic.account,currency_id:0 @@ -407,7 +408,7 @@ msgstr "Та харагдац данс дээр шинжилгээний мөр #. module: analytic #: field:account.analytic.account,line_ids:0 msgid "Analytic Entries" -msgstr "Аналитик бичилт" +msgstr "Шинжилгээний бичилт" #~ msgid "State" #~ msgstr "Төлөв" diff --git a/addons/analytic/i18n/nb.po b/addons/analytic/i18n/nb.po index 4e674d5d4ba..c215842603d 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Mal" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Sluttdato." diff --git a/addons/analytic/i18n/nl.po b/addons/analytic/i18n/nl.po index e07b78872ed..f0d76e469ad 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Sjabloon" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Einddatum" @@ -92,8 +93,8 @@ msgstr "" "dienst\n" " eenheden (bijv. support contract) " "is\n" -" bereikt, wordt de rekening beheerder " -"per e-mail\n" +" bereikt, wordt de beheerder van de " +"kostenplaats per e-mail\n" " geïnformeerd om het contact te " "vernieuwen met\n" " de klant." diff --git a/addons/analytic/i18n/nl_BE.po b/addons/analytic/i18n/nl_BE.po index 3643f3a8052..fed03252e51 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/pl.po b/addons/analytic/i18n/pl.po index aaa53cfce6c..af43813f20f 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Szablon" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Data Końcowa" diff --git a/addons/analytic/i18n/pt.po b/addons/analytic/i18n/pt.po index 6e2a38b52a5..6bc1297354a 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Template" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Data de fecho" diff --git a/addons/analytic/i18n/pt_BR.po b/addons/analytic/i18n/pt_BR.po index 0110bc66e3a..e4dda5663ff 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -41,6 +41,7 @@ msgstr "Modelo" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Data Final" diff --git a/addons/analytic/i18n/ro.po b/addons/analytic/i18n/ro.po index cd14ca270e1..caec47f2a6a 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -25,7 +25,7 @@ msgstr "Sub-conturi" #. module: analytic #: selection:account.analytic.account,state:0 msgid "In Progress" -msgstr "In desfasurare" +msgstr "În desfășurare" #. module: analytic #: code:addons/analytic/analytic.py:229 @@ -40,8 +40,9 @@ msgstr "Șablon" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" -msgstr "Data de sfarsit" +msgstr "Dată de sfârșit" #. module: analytic #: help:account.analytic.line,unit_amount:0 diff --git a/addons/analytic/i18n/ru.po b/addons/analytic/i18n/ru.po index 2ad2308f9da..09f66d1b812 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Шаблон" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Дата окончания" @@ -129,7 +130,7 @@ msgstr "Статус" #: code:addons/analytic/analytic.py:271 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (копия)" #. module: analytic #: model:ir.model,name:analytic.model_account_analytic_line @@ -195,7 +196,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 @@ -234,7 +235,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 @@ -368,16 +369,18 @@ 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: analytic #: field:account.analytic.account,type:0 msgid "Type of Account" -msgstr "" +msgstr "Тип счёта" #. module: analytic #: field:account.analytic.account,date_start:0 msgid "Start Date" -msgstr "" +msgstr "Дата начала" #. module: analytic #: constraint:account.analytic.line:0 diff --git a/addons/analytic/i18n/sl.po b/addons/analytic/i18n/sl.po index 7bedbbe3637..1cea6c60ebb 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Predloga" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Končni datum" diff --git a/addons/analytic/i18n/sq.po b/addons/analytic/i18n/sq.po index bac06d8d001..12385a582ca 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/sr.po b/addons/analytic/i18n/sr.po index 41f42159e5d..65c47100995 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Šablon" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/sr@latin.po b/addons/analytic/i18n/sr@latin.po index 9953ca7bb01..5dbdd2bd7db 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Obrazac" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/sv.po b/addons/analytic/i18n/sv.po index 94defe9da4c..d9556ac0fc2 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Mall" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/tr.po b/addons/analytic/i18n/tr.po index d801f3c7cfd..aed3b5f28d7 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "Şablon" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "Bitiş Tarihi" @@ -219,7 +220,7 @@ msgstr "" #. module: analytic #: field:account.analytic.account,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçi mi" +msgstr "Bir İzleyicidir" #. module: analytic #: field:account.analytic.line,user_id:0 diff --git a/addons/analytic/i18n/vi.po b/addons/analytic/i18n/vi.po index fa4f56fce1b..436d0de1dfd 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic/i18n/zh_CN.po b/addons/analytic/i18n/zh_CN.po index 320b89d10fe..aa6511310c9 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "模版" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "截止日期" diff --git a/addons/analytic/i18n/zh_TW.po b/addons/analytic/i18n/zh_TW.po index 180b2073ae7..38aa9549210 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic #: field:account.analytic.account,child_ids:0 @@ -40,6 +40,7 @@ msgstr "模板" #. module: analytic #: view:account.analytic.account:0 +#: field:account.analytic.account,date:0 msgid "End Date" msgstr "" diff --git a/addons/analytic_contract_hr_expense/i18n/ar.po b/addons/analytic_contract_hr_expense/i18n/ar.po index 1c1370ad3fc..457ba2c8c6c 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "حسابات تحليلية" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, 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 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "" diff --git a/addons/analytic_contract_hr_expense/i18n/cs.po b/addons/analytic_contract_hr_expense/i18n/cs.po index b57756bce0b..8714acd8cf1 100644 --- a/addons/analytic_contract_hr_expense/i18n/cs.po +++ b/addons/analytic_contract_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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, 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 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "" diff --git a/addons/analytic_contract_hr_expense/i18n/de.po b/addons/analytic_contract_hr_expense/i18n/de.po index f8f1ad111c6..b6a1b056fd4 100644 --- a/addons/analytic_contract_hr_expense/i18n/de.po +++ b/addons/analytic_contract_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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -39,13 +39,13 @@ msgid "Analytic Account" msgstr "Kostenstelle" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Spesen Abrechnung zu %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Spesen zu %s" diff --git a/addons/analytic_contract_hr_expense/i18n/en_GB.po b/addons/analytic_contract_hr_expense/i18n/en_GB.po index 47fa279deea..02aaedd01a5 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Analytic Account" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Expenses to Invoice of %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Expenses of %s" diff --git a/addons/analytic_contract_hr_expense/i18n/es.po b/addons/analytic_contract_hr_expense/i18n/es.po index bdad7830df4..f31669f1853 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Cuenta analítica" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Gastos a facturar de %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Gastos de %s" diff --git a/addons/analytic_contract_hr_expense/i18n/fr.po b/addons/analytic_contract_hr_expense/i18n/fr.po index 52ddf426a1c..d10d357c94f 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Compte Analytique" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, 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 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "" diff --git a/addons/analytic_contract_hr_expense/i18n/hr.po b/addons/analytic_contract_hr_expense/i18n/hr.po index a29973ca7f2..90ab484d2be 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Analitički konto" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, 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 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Troškovi %s" diff --git a/addons/analytic_contract_hr_expense/i18n/hu.po b/addons/analytic_contract_hr_expense/i18n/hu.po index f89f0239698..ac71063b36c 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 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Gyűjtő/elemző könyvelés" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Ennek számlázandó költségei %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Ennek költségei %s" diff --git a/addons/analytic_contract_hr_expense/i18n/it.po b/addons/analytic_contract_hr_expense/i18n/it.po index 7d096b4826e..f6518054da1 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Conto analitico" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Costi da Fatturare di %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Costi di %s" diff --git a/addons/analytic_contract_hr_expense/i18n/mk.po b/addons/analytic_contract_hr_expense/i18n/mk.po index 48c6c6b2985..67ab18dc954 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -35,16 +35,16 @@ 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 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, 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 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Трошоци на %s" diff --git a/addons/analytic_contract_hr_expense/i18n/mn.po b/addons/analytic_contract_hr_expense/i18n/mn.po index eedb509e38e..249ab51a9ee 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Шинжилгээний Данс" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "%s-н нэхэмжлэх зардалууд" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "%s-н зардлууд" diff --git a/addons/analytic_contract_hr_expense/i18n/nb.po b/addons/analytic_contract_hr_expense/i18n/nb.po index c867b6b3760..350ee3ecd4e 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Analytisk konto." #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Utgifter til Faktura av% s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Utgifter av %s." diff --git a/addons/analytic_contract_hr_expense/i18n/nl.po b/addons/analytic_contract_hr_expense/i18n/nl.po index ea6dc151e10..660a14c3776 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -30,7 +30,7 @@ msgstr "Niets te factureren, aanmaken" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 msgid "expenses" -msgstr "uitgaven" +msgstr "declaraties" #. module: analytic_contract_hr_expense #: model:ir.model,name:analytic_contract_hr_expense.model_account_analytic_account @@ -38,16 +38,16 @@ msgid "Analytic Account" msgstr "Kostenplaats" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Uitgave te factureren van %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" -msgstr "Uitgaven van %s" +msgstr "Declaraties van %s" #. module: analytic_contract_hr_expense #: field:account.analytic.account,expense_invoiced:0 @@ -59,12 +59,12 @@ msgstr "onbekend" #. module: analytic_contract_hr_expense #: field:account.analytic.account,est_expenses:0 msgid "Estimation of Expenses to Invoice" -msgstr "Te verwachten uitgaven te factureren" +msgstr "Te verwachten declaraties te factureren" #. module: analytic_contract_hr_expense #: field:account.analytic.account,charge_expenses:0 msgid "Charge Expenses" -msgstr "Uitgaven doorberekenen" +msgstr "Declaraties doorberekenen" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 diff --git a/addons/analytic_contract_hr_expense/i18n/nl_BE.po b/addons/analytic_contract_hr_expense/i18n/nl_BE.po index 4bc0cc559e5..57dea1e7da0 100644 --- a/addons/analytic_contract_hr_expense/i18n/nl_BE.po +++ b/addons/analytic_contract_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-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Analytische rekening" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Te factureren onkosten van %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Onkosten van %s" diff --git a/addons/analytic_contract_hr_expense/i18n/pl.po b/addons/analytic_contract_hr_expense/i18n/pl.po index c0cd04686b8..e28e2739926 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Konto analityczne" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Wydatki do zafakturowania %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "" diff --git a/addons/analytic_contract_hr_expense/i18n/pt.po b/addons/analytic_contract_hr_expense/i18n/pt.po index 4d66e6c1f22..456a825ed0c 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Conta analítica" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, 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 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Despesas de %s" diff --git a/addons/analytic_contract_hr_expense/i18n/pt_BR.po b/addons/analytic_contract_hr_expense/i18n/pt_BR.po index 4696b88cd27..b2c7b6ce8b9 100644 --- a/addons/analytic_contract_hr_expense/i18n/pt_BR.po +++ b/addons/analytic_contract_hr_expense/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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -25,12 +25,12 @@ msgstr "ou visualizar" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 msgid "Nothing to invoice, create" -msgstr "Nada para faturar, crie." +msgstr "Não existe pedido para faturar, crie um" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 msgid "expenses" -msgstr "Despesas" +msgstr "despesas" #. module: analytic_contract_hr_expense #: model:ir.model,name:analytic_contract_hr_expense.model_account_analytic_account @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Conta Analítica" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Despesas para Faturar de %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Despesas de %s" @@ -54,7 +54,7 @@ msgstr "Despesas de %s" #: field:account.analytic.account,expense_to_invoice:0 #: field:account.analytic.account,remaining_expense:0 msgid "unknown" -msgstr "Desconhecido" +msgstr "desconhecido" #. module: analytic_contract_hr_expense #: field:account.analytic.account,est_expenses:0 @@ -64,7 +64,7 @@ msgstr "Estimativa de Despesas para Faturar" #. module: analytic_contract_hr_expense #: field:account.analytic.account,charge_expenses:0 msgid "Charge Expenses" -msgstr "Carga de Despesas" +msgstr "Cobrar Despesas" #. 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 9a7d20db4c1..affaa74769e 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Cont Analitic" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Cheltuieli de Facturat de %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Cletuieli de %s" diff --git a/addons/analytic_contract_hr_expense/i18n/sl.po b/addons/analytic_contract_hr_expense/i18n/sl.po index bc9b1f4266b..0ffb9d35a04 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Analitični konto" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "Stroški za fakturiranje na %s" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "Stroški na %s" diff --git a/addons/analytic_contract_hr_expense/i18n/tr.po b/addons/analytic_contract_hr_expense/i18n/tr.po index ac44ba8705c..05aed1b6aea 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "Analiz Hesabı" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "%s e ait Faturalanacak Giderler" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "%s e ait Giderler" diff --git a/addons/analytic_contract_hr_expense/i18n/zh_CN.po b/addons/analytic_contract_hr_expense/i18n/zh_CN.po index bcdd07cad9c..86d9a72d8fc 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_contract_hr_expense #: view:account.analytic.account:0 @@ -38,13 +38,13 @@ msgid "Analytic Account" msgstr "辅助核算项" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:129 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:144 #, python-format msgid "Expenses to Invoice of %s" msgstr "%s的费用到发票" #. module: analytic_contract_hr_expense -#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:121 +#: code:addons/analytic_contract_hr_expense/analytic_contract_hr_expense.py:136 #, python-format msgid "Expenses of %s" msgstr "%s的费用" diff --git a/addons/analytic_user_function/i18n/ar.po b/addons/analytic_user_function/i18n/ar.po index 65bfca4760d..e404f8d4e84 100644 --- a/addons/analytic_user_function/i18n/ar.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 ebe2ffe7fd0..203f5880d17 100644 --- a/addons/analytic_user_function/i18n/bg.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 36cf66cbdba..a66ce0d29f3 100644 --- a/addons/analytic_user_function/i18n/bs.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 ef7a651fc81..02140e3d608 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 8eeb41c03ad..11891a69261 100644 --- a/addons/analytic_user_function/i18n/cs.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 3c89078ee41..04a1cf63dc3 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 89df16151b0..f2da108a5ca 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 a46747dd8c3..100440a1410 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 e1ee56cf8be..5884631cdc1 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 7fe9fcde53c..d24b8a585ce 100644 --- a/addons/analytic_user_function/i18n/es.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 80e27ac2833..83242a93ec7 100644 --- a/addons/analytic_user_function/i18n/es_AR.po +++ b/addons/analytic_user_function/i18n/es_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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 0b7b9acdd27..1549f80388e 100644 --- a/addons/analytic_user_function/i18n/es_CR.po +++ b/addons/analytic_user_function/i18n/es_CR.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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/es_EC.po b/addons/analytic_user_function/i18n/es_EC.po index 9f78cd760b3..d3ca5c73f47 100644 --- a/addons/analytic_user_function/i18n/es_EC.po +++ b/addons/analytic_user_function/i18n/es_EC.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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 bcded963063..fa2f709322b 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 7746ce454e8..0ff787688f5 100644 --- a/addons/analytic_user_function/i18n/et.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 671dbd93a75..b685d9551e9 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 57a5abd4efb..66631a38150 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 365ed582f29..47a5e388f08 100644 --- a/addons/analytic_user_function/i18n/fr.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line @@ -34,7 +34,7 @@ msgstr "" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_analytic_user_funct_grid msgid "Price per User" -msgstr "" +msgstr "Prix par utilisateur" #. module: analytic_user_function #: field:analytic.user.funct.grid,price:0 @@ -44,7 +44,7 @@ msgstr "" #. module: analytic_user_function #: help:analytic.user.funct.grid,price:0 msgid "Price per hour for this user." -msgstr "" +msgstr "Prix horaire pour cet utilisateur." #. module: analytic_user_function #: field:analytic.user.funct.grid,account_id:0 @@ -78,6 +78,11 @@ msgid "" " of the default values when invoicing the " "customer." msgstr "" +"Définissez un service spécifique (p. ex. consultant supérieur)\n" +" et un prix pour certains utilisateurs pour " +"utiliser ces données plutôt\n" +" que les valeurs par défaut lors de la " +"facturation pour le client." #. module: analytic_user_function #: field:analytic.user.funct.grid,uom_id:0 diff --git a/addons/analytic_user_function/i18n/gl.po b/addons/analytic_user_function/i18n/gl.po index a3b9b8eafa1..4a6f06668d1 100644 --- a/addons/analytic_user_function/i18n/gl.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 ae9e0b9eccb..3610dd2318c 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 dda6c010406..cd08f0c4a54 100644 --- a/addons/analytic_user_function/i18n/hr.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: hr\n" #. module: analytic_user_function diff --git a/addons/analytic_user_function/i18n/hu.po b/addons/analytic_user_function/i18n/hu.po index 64b7d6b3367..9ee32916e0d 100644 --- a/addons/analytic_user_function/i18n/hu.po +++ b/addons/analytic_user_function/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-21 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line diff --git a/addons/analytic_user_function/i18n/id.po b/addons/analytic_user_function/i18n/id.po index beb31058463..3ce94f34f38 100644 --- a/addons/analytic_user_function/i18n/id.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 f229b9f39e0..a2085ddfa9f 100644 --- a/addons/analytic_user_function/i18n/it.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 3133202d69c..aa37334298e 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 605f02d16c3..a31cb9c2fc8 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 e6513377869..b07427f09d2 100644 --- a/addons/analytic_user_function/i18n/lt.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 efde700fc9d..d284d815ad6 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line @@ -51,7 +51,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 +95,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 +111,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/analytic_user_function/i18n/mn.po b/addons/analytic_user_function/i18n/mn.po index e0b427f9008..fe614570517 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line @@ -51,7 +51,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 diff --git a/addons/analytic_user_function/i18n/nb.po b/addons/analytic_user_function/i18n/nb.po index b297c1ee35e..9d8039970cf 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 ca443202844..ef5ae7976bc 100644 --- a/addons/analytic_user_function/i18n/nl.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 fe831af2c7c..8554388bbb0 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 02a317e20de..fe7193ca034 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 846585c458f..3628dd01abb 100644 --- a/addons/analytic_user_function/i18n/pl.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 d954fa19814..9864cb83cfa 100644 --- a/addons/analytic_user_function/i18n/pt.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 facdc8e5f45..1598baeef2a 100644 --- a/addons/analytic_user_function/i18n/pt_BR.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 f83d9a922c0..6ca75e1f438 100644 --- a/addons/analytic_user_function/i18n/ro.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 9ad01901df4..f4686852d48 100644 --- a/addons/analytic_user_function/i18n/ru.po +++ b/addons/analytic_user_function/i18n/ru.po @@ -13,13 +13,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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_account_analytic_line msgid "Analytic Line" -msgstr "" +msgstr "Позиция аналитики" #. module: analytic_user_function #: view:account.analytic.account:0 @@ -29,22 +29,22 @@ msgstr "" #. module: analytic_user_function #: field:analytic.user.funct.grid,product_id:0 msgid "Service" -msgstr "" +msgstr "Услуга" #. module: analytic_user_function #: model:ir.model,name:analytic_user_function.model_analytic_user_funct_grid msgid "Price per User" -msgstr "" +msgstr "Цена по пользователю" #. module: analytic_user_function #: field:analytic.user.funct.grid,price:0 msgid "Price" -msgstr "" +msgstr "Цена" #. module: analytic_user_function #: help:analytic.user.funct.grid,price:0 msgid "Price per hour for this user." -msgstr "" +msgstr "Цена за час для этого пользователя" #. module: analytic_user_function #: field:analytic.user.funct.grid,account_id:0 @@ -57,12 +57,12 @@ msgstr "Счет аналитического учета" #: code:addons/analytic_user_function/analytic_user_function.py:135 #, python-format msgid "Error!" -msgstr "" +msgstr "Ошибка !" #. module: analytic_user_function #: view:analytic.user.funct.grid:0 msgid "Invoicing Data" -msgstr "" +msgstr "Данные выставления счетов" #. module: analytic_user_function #: field:account.analytic.account,user_product_ids:0 @@ -82,7 +82,7 @@ msgstr "" #. module: analytic_user_function #: field:analytic.user.funct.grid,uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Единица измерения" #. module: analytic_user_function #: code:addons/analytic_user_function/analytic_user_function.py:107 diff --git a/addons/analytic_user_function/i18n/sk.po b/addons/analytic_user_function/i18n/sk.po index 580a0708d79..6f4e25d86b9 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 ee45c2db9b0..666e01426b5 100644 --- a/addons/analytic_user_function/i18n/sl.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 94abceed7f7..d58e544d0e5 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 077f6bb2610..45cde740041 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 b75d8643a37..e9750450b9a 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 a6595f07898..b4fbd801008 100644 --- a/addons/analytic_user_function/i18n/sv.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 e26dfe56187..2541c72eaae 100644 --- a/addons/analytic_user_function/i18n/tlh.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 2ca12ace463..96bd397969f 100644 --- a/addons/analytic_user_function/i18n/tr.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 da1883881db..04846223b39 100644 --- a/addons/analytic_user_function/i18n/uk.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 6a07877a190..3b680123ee9 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 fe1bd69ae4d..bab17ab3a3c 100644 --- a/addons/analytic_user_function/i18n/zh_CN.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 565603c4490..7abf1913104 100644 --- a/addons/analytic_user_function/i18n/zh_TW.po +++ b/addons/analytic_user_function/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 e645d6a7ae3..82c4293f264 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 437808adbb4..e484aa4794d 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 7998714bd0a..d933334899c 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard diff --git a/addons/anonymization/i18n/cs.po b/addons/anonymization/i18n/cs.po index aa320cbba21..08348589cd5 100644 --- a/addons/anonymization/i18n/cs.po +++ b/addons/anonymization/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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 df0e6ed5764..90cc650c88f 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 77089696f7b..7beced187af 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard @@ -50,6 +50,9 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to create, write or delete fields." msgstr "" +"Die Datenbank Anonymisierung ist aktuell in einem Beta Stadium. Einige " +"Felder werden korrekt anonymisiert, andere hingegen nicht. Sie sollten das " +"Problem vor einer weiteren Bearbeitung oder Erstellung von Feldern lösen." #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 @@ -65,7 +68,7 @@ msgstr "Feld" #. module: anonymization #: selection:ir.model.fields.anonymization,state:0 msgid "New" -msgstr "" +msgstr "Neu" #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 @@ -84,6 +87,7 @@ msgid "" "Before executing the anonymization process, you should make a backup of your " "database." msgstr "" +"Vor der Anonymisierung der Datenbank sollten Sie ein Backup erstellen." #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 @@ -128,7 +132,7 @@ msgstr "unbekannt" #: code:addons/anonymization/anonymization.py:448 #, python-format msgid "Anonymized value is None. This cannot happens." -msgstr "" +msgstr "Es wurde keine Eintrag anonymisiert. Bitte prüfen Sie dieses." #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 @@ -166,6 +170,8 @@ msgid "" "Cannot anonymize fields of these types: binary, many2many, many2one, " "one2many, reference." msgstr "" +"Folgende Felder können nicht anonymisiert werden: Binärfelder, many2many, " +"many2one, one2many, Referenzen." #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 @@ -201,6 +207,8 @@ msgid "" "It is not possible to reverse the anonymization process without supplying " "the anonymization export file." msgstr "" +"Ohne die exportierte Datei ist es nicht möglich eine Anonymisierung " +"rückgängig zu machen." #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 @@ -221,6 +229,9 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to do anything." msgstr "" +"Die Datenbank Anonymisierung ist aktuell in einem Beta Stadium. Einige " +"Felder werden korrekt anonymisiert, andere hingegen nicht. Sie sollten das " +"Problem vor einer weiteren Bearbeitung oder Erstellung von Feldern lösen." #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 @@ -267,13 +278,16 @@ msgid "" "are anonymized, while some fields are not anonymized. You should try to " "solve this problem before trying to do anything else." msgstr "" +"Die Datenbank Anonymisierung ist aktuell in einem Beta Stadium. Einige " +"Felder werden korrekt anonymisiert, andere hingegen nicht. Sie sollten das " +"Problem vor einer weiteren Bearbeitung oder Erstellung von Feldern lösen." #. module: anonymization #: code:addons/anonymization/anonymization.py:389 #: code:addons/anonymization/anonymization.py:448 #, python-format msgid "Error !" -msgstr "" +msgstr "Fehler !" #. module: anonymization #: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymize_wizard @@ -306,6 +320,8 @@ msgstr "Begonnen" #, python-format msgid "The database is currently anonymized, you cannot anonymize it again." msgstr "" +"Die Datenbank ist bereits anonymisiert. Dieses kann nicht noch einmal " +"erfolgen." #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 diff --git a/addons/anonymization/i18n/en_GB.po b/addons/anonymization/i18n/en_GB.po index e0d0341fe4a..19f856b6aae 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 92ba2ea8f4a..18aed255d90 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 ca140518028..49aa3485621 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: anonymization diff --git a/addons/anonymization/i18n/es_EC.po b/addons/anonymization/i18n/es_EC.po index 99c66c4656c..0a24836a395 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 4cfa7508849..186a60e3d1b 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 a024aa07aed..259be58295b 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 24689d66460..9ebef5d07a8 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 444bb76bf33..c0f9c70e199 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 d8e7fe60a78..a4e6f4ed0e3 100644 --- a/addons/anonymization/i18n/fr.po +++ b/addons/anonymization/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 7f49a57c651..71829630414 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 4e23b8a24f9..62cf5ee1667 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 bcaca33f351..d3f7530d202 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 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 262d93c8553..c5266bcf5bb 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 b180c792996..679b9ea6a10 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 fa83a046751..776a9d7ab5c 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 face6d58f03..5fd64b570e1 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard @@ -230,7 +230,7 @@ msgid "" msgstr "" "Анонимизацијата на базата на податоци моментално е во нестабилна состојба. " "Некои полиња се анонимизирани, некои не се. Пробајте да го решите овој " -"проблем пред да се обидете да направите билошто." +"проблем пред да се обидете да направите било што." #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 @@ -279,7 +279,7 @@ msgid "" msgstr "" "Анонимизацијата на базата на податоци моментално е во нестабилна состојба. " "Некои полиња се анонимизирани, некои не се. Пробајте да го решите овој " -"проблем пред да направите билошто друго." +"проблем пред да направите било што друго." #. module: anonymization #: code:addons/anonymization/anonymization.py:389 @@ -319,7 +319,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/anonymization/i18n/mn.po b/addons/anonymization/i18n/mn.po index 40883533a7b..285ac204076 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 fcc1a7bf9d0..ca503457c77 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 259c815b450..7ef1adfa20b 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 b4a4115a64c..f0414c45cff 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 cffab8bc4c8..0c25b111220 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 054f144f57b..2459f522800 100644 --- a/addons/anonymization/i18n/pt_BR.po +++ b/addons/anonymization/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 ff0bd723a93..376d3002901 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 2ccf505d04e..51c6b85736c 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 08ab0bbee15..a51eac002c4 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 d7a7adc47e8..f02e2a9ea18 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 b96d1f3ece2..b0420a2e6c1 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 311c9670129..2fae9209f80 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 d3535db6f5e..944a698a7af 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 4b23edef34a..62375e7643f 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: anonymization #: model:ir.model,name:anonymization.model_ir_model_fields_anonymize_wizard @@ -49,7 +49,7 @@ 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 "" +msgstr "此数据库匿名化处于不稳定状态,有些字段已经匿名,有些没有。你在尝试进行创建、写入或者删除这些字段前,要解决这个问题。" #. module: anonymization #: field:ir.model.fields.anonymization,field_name:0 @@ -65,7 +65,7 @@ msgstr "字段" #. module: anonymization #: selection:ir.model.fields.anonymization,state:0 msgid "New" -msgstr "" +msgstr "新建" #. module: anonymization #: field:ir.model.fields.anonymize.wizard,file_import:0 @@ -83,7 +83,7 @@ msgstr "ir.model.fields.anonymization" msgid "" "Before executing the anonymization process, you should make a backup of your " "database." -msgstr "" +msgstr "在进行匿名化处理前,你需要给你的数据库做一个备份" #. module: anonymization #: field:ir.model.fields.anonymization.history,state:0 @@ -128,7 +128,7 @@ msgstr "状态" #: code:addons/anonymization/anonymization.py:448 #, python-format msgid "Anonymized value is None. This cannot happens." -msgstr "" +msgstr "待匿名的值是none,这不可以" #. module: anonymization #: field:ir.model.fields.anonymization.history,filepath:0 @@ -163,7 +163,7 @@ msgstr "解除数据库隐藏" msgid "" "Cannot anonymize fields of these types: binary, many2many, many2one, " "one2many, reference." -msgstr "" +msgstr "不能匿名化这些字段类型: binary, many2many, many2one, one2many, reference." #. module: anonymization #: view:ir.model.fields.anonymize.wizard:0 @@ -198,7 +198,7 @@ msgstr "无隐藏" msgid "" "It is not possible to reverse the anonymization process without supplying " "the anonymization export file." -msgstr "" +msgstr "在没有提供匿名化导出文件前,不可能反转匿名化的进程。" #. module: anonymization #: field:ir.model.fields.anonymize.wizard,summary:0 @@ -218,7 +218,7 @@ 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 "" +msgstr "数据库匿名化当时在不稳定的状态。 有些字段匿名了,有些没有。你在做任何操作前要解决这个问题。" #. module: anonymization #: selection:ir.model.fields.anonymize.wizard,state:0 @@ -264,14 +264,14 @@ 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 "" +msgstr "此数据库匿名化处于不稳定状态,有些字段已经匿名,有些没有。你在尝试进行其它任何操作前字段前,要解决这个问题。" #. module: anonymization #: code:addons/anonymization/anonymization.py:389 #: code:addons/anonymization/anonymization.py:448 #, python-format msgid "Error !" -msgstr "" +msgstr "错误!" #. module: anonymization #: model:ir.actions.act_window,name:anonymization.action_ir_model_fields_anonymize_wizard @@ -303,7 +303,7 @@ msgstr "已开始" #: code:addons/anonymization/anonymization.py:389 #, python-format msgid "The database is currently anonymized, you cannot anonymize it again." -msgstr "" +msgstr "此数据库已经匿名化,你不能再次使其匿名。" #. module: anonymization #: selection:ir.model.fields.anonymization.history,state:0 diff --git a/addons/anonymization/i18n/zh_TW.po b/addons/anonymization/i18n/zh_TW.po index d8973b2491c..3234d2bbabd 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 ef806f96dab..a8b297eece3 100644 --- a/addons/association/i18n/ar.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 677c2073890..e4ed27415a2 100644 --- a/addons/association/i18n/bg.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 6596b937f42..96ea1eb28ce 100644 --- a/addons/association/i18n/bs.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 ff3c05b400b..5f89f6e6f4a 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 1a4919c85b1..1b8771e8661 100644 --- a/addons/association/i18n/cs.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\n" #. module: association diff --git a/addons/association/i18n/da.po b/addons/association/i18n/da.po index 9abb6d6724d..babbb59e10f 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 dd4da9b4d3d..00ae1d97acd 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 351020ff787..9b115f530e8 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 de797c02bd8..4105230c351 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 a49e6b2f9da..186901ae44d 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 64180d9d582..10da793638a 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: association diff --git a/addons/association/i18n/es_EC.po b/addons/association/i18n/es_EC.po index b6ec1c6717b..35a3e3c0054 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 35003c7729b..efed3ba57a1 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 acd5a1e302a..1c487d479e0 100644 --- a/addons/association/i18n/et.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 69237d2fc7a..eddfc604470 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 bbff051bff7..ae8779523af 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 7e2168a1703..a4dfff5cd89 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 b7fcd3d43c7..78ba93aef3a 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 41a74d2b41c..90c768e7054 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 147c83038c9..c3e8720d0d8 100644 --- a/addons/association/i18n/hr.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 e35eb0d4f7b..cca5befa0ec 100644 --- a/addons/association/i18n/hu.po +++ b/addons/association/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-21 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/id.po b/addons/association/i18n/id.po index 003e9a3ee89..0922a2121d0 100644 --- a/addons/association/i18n/id.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 abf96f9fc29..32082c9d62f 100644 --- a/addons/association/i18n/it.po +++ b/addons/association/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2011-01-11 11:14+0000\n" "PO-Revision-Date: 2012-12-15 15:09+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 f3f595d1591..14faeb877a6 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 c1470c81d5f..2133e351629 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 aeed0968337..77779a3e626 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 ae6b1a2a603..69a8deb339d 100644 --- a/addons/association/i18n/lt.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 cb679d93348..4ea95ad7b82 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 06e1c8089d0..712fc500b8a 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 @@ -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/association/i18n/mn.po b/addons/association/i18n/mn.po index eaf52added3..b46c41c443f 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 7d880079828..9d594ce1c78 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 6e4a025b2de..85f434ea2a1 100644 --- a/addons/association/i18n/nl.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 461263f84bc..838710c10cd 100644 --- a/addons/association/i18n/pl.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 fa4af10dc91..b748fe8b6c7 100644 --- a/addons/association/i18n/pt.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 0a6a0054e05..90a26c6dded 100644 --- a/addons/association/i18n/pt_BR.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 df9c72eae30..13a6104e5f9 100644 --- a/addons/association/i18n/ro.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 46f3911f5dc..3de0d4ce038 100644 --- a/addons/association/i18n/ru.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 diff --git a/addons/association/i18n/sl.po b/addons/association/i18n/sl.po index de8facc726b..cc0ef942305 100644 --- a/addons/association/i18n/sl.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: association #: field:profile.association.config.install_modules_wizard,wiki:0 @@ -34,7 +34,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 "Modul za profiliranje združenja" #. module: association #: field:profile.association.config.install_modules_wizard,progress:0 @@ -46,9 +46,7 @@ msgstr "Potek konfiguracije" msgid "" "Here are specific applications related to the Association Profile you " "selected." -msgstr "" -"Hier finden Sie die vorzunehmenden Einstellungen für das Profil " -"Mitgliederverwaltung." +msgstr "Specjofične aplikacije za vrsto združenje , ki ste ga izbrali" #. module: association #: view:profile.association.config.install_modules_wizard:0 @@ -58,7 +56,7 @@ msgstr "naziv" #. module: association #: help:profile.association.config.install_modules_wizard,event_project:0 msgid "Helps you to manage and organize your events." -msgstr "" +msgstr "Organizacija dogodkov" #. module: association #: field:profile.association.config.install_modules_wizard,config_logo:0 @@ -70,14 +68,14 @@ msgstr "Slika" msgid "" "Tracks and manages employee expenses, and can automatically re-invoice " "clients if the expenses are project-related." -msgstr "" +msgstr "Stroški zaposlenih" #. module: association #: help:profile.association.config.install_modules_wizard,project_gtd:0 msgid "" "GTD is a methodology to efficiently organise yourself and your tasks. This " "module fully integrates GTD principle with OpenERP's project management." -msgstr "" +msgstr "GTD je metoda učinkovitega izvajanja nalog" #. module: association #: view:profile.association.config.install_modules_wizard:0 @@ -87,32 +85,32 @@ msgstr "Upravljanje virov" #. module: association #: model:ir.module.module,shortdesc:association.module_meta_information msgid "Association profile" -msgstr "" +msgstr "Profil združenja" #. module: association #: field:profile.association.config.install_modules_wizard,hr_expense:0 msgid "Expenses Tracking" -msgstr "Sledenje izdatkov" +msgstr "Sledenje stroškov" #. module: association #: 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 "Nastavitve združenja" #. module: association #: help:profile.association.config.install_modules_wizard,wiki:0 msgid "" "Lets you create wiki pages and page groups in order to keep track of " "business knowledge and share it with and between your employees." -msgstr "" +msgstr "Wiki" #. module: association #: help:profile.association.config.install_modules_wizard,project:0 msgid "" "Helps you manage your projects and tasks by tracking them, generating " "plannings, etc..." -msgstr "" +msgstr "Vodenje projektov" #. module: association #: model:ir.model,name:association.model_profile_association_config_install_modules_wizard @@ -133,4 +131,4 @@ msgstr "Upravljanje projektov" #. module: association #: view:profile.association.config.install_modules_wizard:0 msgid "Configure" -msgstr "" +msgstr "Nastavitve" diff --git a/addons/association/i18n/sq.po b/addons/association/i18n/sq.po index 5740146106f..6ae8a6caa61 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 baee8972bae..4c8beb725b3 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 b4e74095808..0b55ad2544b 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 9bb3ce6e070..3fee78f5bae 100644 --- a/addons/association/i18n/sv.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 ae6b1a2a603..69a8deb339d 100644 --- a/addons/association/i18n/tlh.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 8948d0f8a87..6a3272d8fae 100644 --- a/addons/association/i18n/tr.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 20dfa105689..b1799ccacf9 100644 --- a/addons/association/i18n/uk.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 f7a90e3eb3f..0e4ade29b1c 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-03-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 7ffa42e4784..ef3b0ce226f 100644 --- a/addons/association/i18n/zh_CN.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 dd21d9499fc..ce331838802 100644 --- a/addons/association/i18n/zh_TW.po +++ b/addons/association/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 ea3b7ab7ff0..95a617aa46d 100644 --- a/addons/audittrail/i18n/ar.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/bg.po b/addons/audittrail/i18n/bg.po index a81c09f92f5..c1db49c9ddc 100644 --- a/addons/audittrail/i18n/bg.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/bs.po b/addons/audittrail/i18n/bs.po index 0391b36ce63..d53f2d84ac8 100644 --- a/addons/audittrail/i18n/bs.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ca.po b/addons/audittrail/i18n/ca.po index fab2f0e05e7..7203a43fa7f 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/cs.po b/addons/audittrail/i18n/cs.po index 3198fe7372c..4754dfaec5b 100644 --- a/addons/audittrail/i18n/cs.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\n" #. module: audittrail diff --git a/addons/audittrail/i18n/da.po b/addons/audittrail/i18n/da.po index c691a151fcb..f017108d520 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/de.po b/addons/audittrail/i18n/de.po index 3ed83b44042..4ade0400807 100644 --- a/addons/audittrail/i18n/de.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/el.po b/addons/audittrail/i18n/el.po index c2f93d6cf5f..2a2c46d3d2f 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es.po b/addons/audittrail/i18n/es.po index cfdeb6eb8e7..77a56cfa85f 100644 --- a/addons/audittrail/i18n/es.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_AR.po b/addons/audittrail/i18n/es_AR.po index 1b2453c62e0..7c5cb31d936 100644 --- a/addons/audittrail/i18n/es_AR.po +++ b/addons/audittrail/i18n/es_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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_CR.po b/addons/audittrail/i18n/es_CR.po index 6a28a5110e2..a6e3f9412ae 100644 --- a/addons/audittrail/i18n/es_CR.po +++ b/addons/audittrail/i18n/es_CR.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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: audittrail diff --git a/addons/audittrail/i18n/es_EC.po b/addons/audittrail/i18n/es_EC.po index 1bada12c848..1743e3a4468 100644 --- a/addons/audittrail/i18n/es_EC.po +++ b/addons/audittrail/i18n/es_EC.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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/es_PY.po b/addons/audittrail/i18n/es_PY.po index b12bd9f498d..a5c5114113c 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/et.po b/addons/audittrail/i18n/et.po index 1017b93ff52..5258fec6530 100644 --- a/addons/audittrail/i18n/et.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fa.po b/addons/audittrail/i18n/fa.po index 60b373f3165..4dafecdea1b 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fa_AF.po b/addons/audittrail/i18n/fa_AF.po index e7e83f65756..43bcb84c2b5 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fi.po b/addons/audittrail/i18n/fi.po index 04a96bf96b2..89e9205d9c2 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/fr.po b/addons/audittrail/i18n/fr.po index 49a53055c0a..e9b74efb3fe 100644 --- a/addons/audittrail/i18n/fr.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/gl.po b/addons/audittrail/i18n/gl.po index 04b9278b620..8205f9e5667 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/gu.po b/addons/audittrail/i18n/gu.po index 03c38da7288..62a929641fd 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/hr.po b/addons/audittrail/i18n/hr.po index d8e53de28bd..e55f796e0ab 100644 --- a/addons/audittrail/i18n/hr.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/hu.po b/addons/audittrail/i18n/hu.po index e5bee742c5c..ba1b1f56c4d 100644 --- a/addons/audittrail/i18n/hu.po +++ b/addons/audittrail/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-21 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/id.po b/addons/audittrail/i18n/id.po index 4913197880f..afa4ed814be 100644 --- a/addons/audittrail/i18n/id.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/it.po b/addons/audittrail/i18n/it.po index 93430792b18..c9586d0279c 100644 --- a/addons/audittrail/i18n/it.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ja.po b/addons/audittrail/i18n/ja.po index f9031f5b46b..82a979e9c5c 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ko.po b/addons/audittrail/i18n/ko.po index fb0d26168ec..21f36d871f3 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/lt.po b/addons/audittrail/i18n/lt.po index d6cb48261d4..94ba72689fc 100644 --- a/addons/audittrail/i18n/lt.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/lv.po b/addons/audittrail/i18n/lv.po index f242bece9da..53cffd4e8d6 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/mk.po b/addons/audittrail/i18n/mk.po index 213d0819ef4..66c9f5b493f 100644 --- a/addons/audittrail/i18n/mk.po +++ b/addons/audittrail/i18n/mk.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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 msgid "Old Value Text : " -msgstr "" +msgstr "Текст со стара врдност : " #. module: audittrail #: code:addons/audittrail/audittrail.py:76 @@ -69,7 +69,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 +104,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 +138,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 +171,7 @@ msgstr "" #. module: audittrail #: view:audittrail.log:0 msgid "New Value Text: " -msgstr "" +msgstr "Текст со нова вредност: " #. module: audittrail #: view:audittrail.rule:0 @@ -223,12 +227,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 +261,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 +298,7 @@ msgstr "" #. module: audittrail #: field:audittrail.rule,log_unlink:0 msgid "Log Deletes" -msgstr "" +msgstr "Лог Бришеања" #. module: audittrail #: view:audittrail.log:0 @@ -313,7 +319,7 @@ msgstr "" #. module: audittrail #: field:audittrail.rule,log_write:0 msgid "Log Writes" -msgstr "" +msgstr "Лог Пишувања" #. module: audittrail #: view:audittrail.view.log:0 @@ -323,7 +329,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 +379,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 +404,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 +412,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/audittrail/i18n/mn.po b/addons/audittrail/i18n/mn.po index 13864acc5a6..d910b462629 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nb.po b/addons/audittrail/i18n/nb.po index 7d42bf30516..dda7fee30a1 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nl.po b/addons/audittrail/i18n/nl.po index c1dc82974f6..0afe5e53f2b 100644 --- a/addons/audittrail/i18n/nl.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/nl_BE.po b/addons/audittrail/i18n/nl_BE.po index 49ff08aa5a8..bcc07fba38a 100644 --- a/addons/audittrail/i18n/nl_BE.po +++ b/addons/audittrail/i18n/nl_BE.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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/oc.po b/addons/audittrail/i18n/oc.po index 9e8b8563095..9d1bb76b9c1 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pl.po b/addons/audittrail/i18n/pl.po index 40962a0f673..6a10868effa 100644 --- a/addons/audittrail/i18n/pl.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pt.po b/addons/audittrail/i18n/pt.po index c63a0d13488..d48aa2310df 100644 --- a/addons/audittrail/i18n/pt.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/pt_BR.po b/addons/audittrail/i18n/pt_BR.po index d6308eae940..8a603716a03 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 @@ -500,3 +500,7 @@ msgstr "" #~ msgid "Subscribe" #~ msgstr "Assinar" + +#, python-format +#~ msgid "WARNING:audittrail is not part of the pool" +#~ msgstr "AVISO: AuditTrail não é parte do pool" diff --git a/addons/audittrail/i18n/ro.po b/addons/audittrail/i18n/ro.po index ddaad316240..8e8bb2e909a 100644 --- a/addons/audittrail/i18n/ro.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/ru.po b/addons/audittrail/i18n/ru.po index 44be5c84b9d..32e8d56502c 100644 --- a/addons/audittrail/i18n/ru.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sl.po b/addons/audittrail/i18n/sl.po index 9a6209abf73..a41db4ae179 100644 --- a/addons/audittrail/i18n/sl.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sq.po b/addons/audittrail/i18n/sq.po index 6e792b63c98..399e8955b1d 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sr@latin.po b/addons/audittrail/i18n/sr@latin.po index f8fc6cdf56a..4d0c99d33f1 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/sv.po b/addons/audittrail/i18n/sv.po index 22433c250ee..a6f65c702c1 100644 --- a/addons/audittrail/i18n/sv.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/tlh.po b/addons/audittrail/i18n/tlh.po index 3d0fc09013d..d07ba025450 100644 --- a/addons/audittrail/i18n/tlh.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/tr.po b/addons/audittrail/i18n/tr.po index c69f461cbcc..ad29e8c2bf2 100644 --- a/addons/audittrail/i18n/tr.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 @@ -49,7 +49,7 @@ msgstr "'%s' Modeli yoktur..." #. module: audittrail #: view:audittrail.rule:0 msgid "Subscribed Rule" -msgstr "" +msgstr "Abone Kural" #. module: audittrail #: view:audittrail.rule:0 @@ -103,6 +103,8 @@ msgid "" "Select this if you want to keep track of read/open on any record of the " "object of this rule" msgstr "" +"Bu kuralın nesnenin herhangi bir kayıt üzerinde açık okuma / takip etmek " +"istiyorsanız bunu seçin" #. module: audittrail #: field:audittrail.log,method:0 @@ -112,22 +114,22 @@ msgstr "Yöntem" #. module: audittrail #: field:audittrail.view.log,from:0 msgid "Log From" -msgstr "" +msgstr "Günlüğünden" #. module: audittrail #: field:audittrail.log.line,log:0 msgid "Log ID" -msgstr "" +msgstr "Günlük ID" #. module: audittrail #: field:audittrail.log,res_id:0 msgid "Resource Id" -msgstr "" +msgstr "Kaynak Id" #. module: audittrail #: help:audittrail.rule,user_id:0 msgid "if User is not added then it will applicable for all users" -msgstr "" +msgstr "Kullanıcı ilave değilse o zaman tüm kullanıcılar için geçerli olacak" #. module: audittrail #: help:audittrail.rule,log_workflow:0 @@ -135,6 +137,8 @@ msgid "" "Select this if you want to keep track of workflow on any record of the " "object of this rule" msgstr "" +"Bu kuralın nesnenin herhangi bir kayıt iş akışı takip etmek istiyorsanız " +"bunu seçin" #. module: audittrail #: field:audittrail.rule,user_id:0 @@ -144,7 +148,7 @@ msgstr "Kullanıcılar" #. module: audittrail #: view:audittrail.log:0 msgid "Log Lines" -msgstr "" +msgstr "Günlük Saırları" #. module: audittrail #: view:audittrail.log:0 @@ -156,38 +160,38 @@ msgstr "Nesne" #. module: audittrail #: view:audittrail.rule:0 msgid "AuditTrail Rule" -msgstr "" +msgstr "Denetim Takip Kural" #. module: audittrail #: field:audittrail.view.log,to:0 msgid "Log To" -msgstr "" +msgstr "için Günlük" #. module: audittrail #: view:audittrail.log:0 msgid "New Value Text: " -msgstr "" +msgstr "Yeni Değer Yazı: " #. module: audittrail #: view:audittrail.rule:0 msgid "Search Audittrail Rule" -msgstr "" +msgstr "Arama Denetim Takip Kuralı" #. 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 "Denetim Kuralları" #. module: audittrail #: view:audittrail.log:0 msgid "Old Value : " -msgstr "" +msgstr "Eski Değer: " #. module: audittrail #: field:audittrail.log,name:0 msgid "Resource Name" -msgstr "" +msgstr "Kaynak Adı" #. module: audittrail #: view:audittrail.log:0 @@ -201,42 +205,46 @@ msgid "" "Select this if you want to keep track of modification on any record of the " "object of this rule" msgstr "" +"Bu kuralın nesnenin herhangi bir kayıt üzerinde değişiklik izlemek " +"istiyorsanız bunu seçin" #. module: audittrail #: view:audittrail.rule:0 msgid "AuditTrail Rules" msgstr "" +"Bu kuralın nesnenin herhangi bir kayıt üzerinde değişiklik izlemek " +"istiyorsanız bunu seçin" #. module: audittrail #: help:audittrail.rule,object_id:0 msgid "Select object for which you want to generate log." -msgstr "" +msgstr "Günlük oluşturmak istediğiniz nesneyi seçin." #. module: audittrail #: model:ir.ui.menu,name:audittrail.menu_audit msgid "Audit" -msgstr "" +msgstr "Denetim" #. module: audittrail #: field:audittrail.rule,log_workflow:0 msgid "Log Workflow" -msgstr "" +msgstr "İş Akışı Günlüğü" #. module: audittrail #: field:audittrail.rule,log_read:0 msgid "Log Reads" -msgstr "" +msgstr "Günlük Okumaları" #. module: audittrail #: code:addons/audittrail/audittrail.py:77 #, python-format msgid "Change audittrail depends -- Setting rule as DRAFT" -msgstr "" +msgstr "Değişim denetim izi bağlıdır - TASLAK olarak ayarlama kural" #. module: audittrail #: field:audittrail.log,line_ids:0 msgid "Log lines" -msgstr "" +msgstr "Günlük satırları" #. module: audittrail #: field:audittrail.log.line,field_id:0 @@ -246,7 +254,7 @@ msgstr "Alanlar" #. module: audittrail #: field:audittrail.rule,log_create:0 msgid "Log Creates" -msgstr "" +msgstr "Günlük Oluştur" #. module: audittrail #: help:audittrail.rule,log_unlink:0 @@ -254,6 +262,8 @@ msgid "" "Select this if you want to keep track of deletion on any record of the " "object of this rule" msgstr "" +"Bu kuralın nesnenin herhangi bir kayıt silinmek takip etmek istiyorsanız " +"bunu seçin" #. module: audittrail #: view:audittrail.log:0 @@ -264,17 +274,19 @@ msgstr "Kullanıcı" #. module: audittrail #: field:audittrail.rule,action_id:0 msgid "Action ID" -msgstr "" +msgstr "İşlem ID" #. module: audittrail #: view:audittrail.rule:0 msgid "Users (if User is not added then it will applicable for all users)" msgstr "" +"Kullanıcılar (Kullanıcı ilave değilse o zaman tüm kullanıcılar için geçerli " +"olacak)" #. module: audittrail #: view:audittrail.rule:0 msgid "UnSubscribe" -msgstr "" +msgstr "ÜyeliktenÇık" #. module: audittrail #: sql_constraint:audittrail.rule:0 @@ -282,42 +294,44 @@ msgid "" "There is already a rule defined on this object\n" " You cannot define another: please edit the existing one." msgstr "" +"Bu objeye zaten bir kural tanımlanmış\n" +" Başka bir tane tanımlayamazsınız: lütfen varolanı düzenleyin." #. module: audittrail #: field:audittrail.rule,log_unlink:0 msgid "Log Deletes" -msgstr "" +msgstr "Günlük Sil" #. module: audittrail #: view:audittrail.log:0 #: view:audittrail.rule:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: audittrail #: field:audittrail.log.line,field_description:0 msgid "Field Description" -msgstr "" +msgstr "Alan Açıklaması" #. module: audittrail #: view:audittrail.log:0 msgid "Search Audittrail Log" -msgstr "" +msgstr "Arama Denetim Takip Günlük" #. module: audittrail #: field:audittrail.rule,log_write:0 msgid "Log Writes" -msgstr "" +msgstr "Günlük Yazıları" #. module: audittrail #: view:audittrail.view.log:0 msgid "Open Logs" -msgstr "" +msgstr "Günlükleri Aç" #. module: audittrail #: field:audittrail.log.line,new_value_text:0 msgid "New value Text" -msgstr "" +msgstr "Yeni değeri Yaz" #. module: audittrail #: field:audittrail.rule,name:0 @@ -327,45 +341,45 @@ msgstr "Kural Adı" #. module: audittrail #: field:audittrail.log.line,new_value:0 msgid "New Value" -msgstr "" +msgstr "Yeni Değer" #. module: audittrail #: code:addons/audittrail/audittrail.py:223 #, python-format msgid "'%s' field does not exist in '%s' model" -msgstr "" +msgstr "'% s' alan '% s' modelinde yok" #. module: audittrail #: view:audittrail.log:0 msgid "AuditTrail Logs" -msgstr "" +msgstr "Denetim Takip Günlükleri" #. module: audittrail #: view:audittrail.rule:0 msgid "Draft Rule" -msgstr "" +msgstr "Taslak Kural" #. module: audittrail #: view:audittrail.log:0 #: model:ir.model,name:audittrail.model_audittrail_log msgid "Audittrail Log" -msgstr "" +msgstr "Denetim Takip Günlüğü" #. 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 "" +msgstr "Bu kuralın nesne eylemleri takip etmek istiyorsanız bunu seçin" #. module: audittrail #: view:audittrail.log:0 msgid "New Value : " -msgstr "" +msgstr "Yeni Değer: " #. module: audittrail #: field:audittrail.log.line,old_value_text:0 msgid "Old value Text" -msgstr "" +msgstr "Eski değer Yazı" #. module: audittrail #: view:audittrail.view.log:0 @@ -375,22 +389,22 @@ msgstr "İptal" #. module: audittrail #: model:ir.model,name:audittrail.model_audittrail_view_log msgid "View Log" -msgstr "" +msgstr "Günlüğü Göster" #. module: audittrail #: model:ir.model,name:audittrail.model_audittrail_log_line msgid "Log Line" -msgstr "" +msgstr "Günlük Satırı" #. module: audittrail #: view:audittrail.view.log:0 msgid "or" -msgstr "" +msgstr "veya" #. module: audittrail #: field:audittrail.rule,log_action:0 msgid "Log Action" -msgstr "" +msgstr "Günlük İşlemei" #. module: audittrail #: help:audittrail.rule,log_create:0 @@ -398,6 +412,8 @@ msgid "" "Select this if you want to keep track of creation on any record of the " "object of this rule" msgstr "" +"Bu kuralın nesnenin herhangi bir kayıt oluşturma takip etmek istiyorsanız " +"bunu seçin" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "Görüntüleme mimarisi için Geçersiz XML" diff --git a/addons/audittrail/i18n/uk.po b/addons/audittrail/i18n/uk.po index e61b7ba2e3c..865dace4361 100644 --- a/addons/audittrail/i18n/uk.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/vi.po b/addons/audittrail/i18n/vi.po index ba8557f1570..b173d7c0e2b 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/zh_CN.po b/addons/audittrail/i18n/zh_CN.po index 37de643ff07..811a8bbbe7b 100644 --- a/addons/audittrail/i18n/zh_CN.po +++ b/addons/audittrail/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/audittrail/i18n/zh_TW.po b/addons/audittrail/i18n/zh_TW.po index 41fb0dfaf05..e46bf96fb9d 100644 --- a/addons/audittrail/i18n/zh_TW.po +++ b/addons/audittrail/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:26+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: audittrail #: view:audittrail.log:0 diff --git a/addons/auth_crypt/i18n/ar.po b/addons/auth_crypt/i18n/ar.po index 20c85828671..203c5c33c86 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/cs.po b/addons/auth_crypt/i18n/cs.po index 0ae0746fbdb..aa3736f438e 100644 --- a/addons/auth_crypt/i18n/cs.po +++ b/addons/auth_crypt/i18n/cs.po @@ -14,15 +14,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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 msgid "Encrypted Password" -msgstr "" +msgstr "Šifrované heslo" #. module: auth_crypt #: model:ir.model,name:auth_crypt.model_res_users msgid "Users" -msgstr "" +msgstr "Uživatelé" diff --git a/addons/auth_crypt/i18n/de.po b/addons/auth_crypt/i18n/de.po index af9d0dc9593..719299aa786 100644 --- a/addons/auth_crypt/i18n/de.po +++ b/addons/auth_crypt/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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 c0485b1c311..9f8a818421b 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 7fdea1f7378..6586ee7e8ad 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 61cba43afc7..ee16b956c53 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 1e8876f7380..c1e062c6a21 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 03b51f265ac..3f1dcef8263 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 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 93f3591299c..e18183de48a 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/lt.po b/addons/auth_crypt/i18n/lt.po index 03f0bd5249f..c25de8280cd 100644 --- a/addons/auth_crypt/i18n/lt.po +++ b/addons/auth_crypt/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-04-25 05:20+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 a346737eb9f..18d5d6e357c 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 98dbc7d35e9..8c9a72a8a29 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 dda3179df82..01aca963a24 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_crypt #: field:res.users,password_crypt:0 diff --git a/addons/auth_crypt/i18n/nl_BE.po b/addons/auth_crypt/i18n/nl_BE.po index abb65c8700f..fb23c8a23ad 100644 --- a/addons/auth_crypt/i18n/nl_BE.po +++ b/addons/auth_crypt/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-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 795848e2325..d78f3d29998 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 bbedd2d126f..c4b7a04fa36 100644 --- a/addons/auth_crypt/i18n/pt_BR.po +++ b/addons/auth_crypt/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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 7f89ec57075..6c1aaf7b324 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 305f7aa682e..58fa6a04ec8 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 ebdf1a2a12e..e34c32f6d8f 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 09d8ac04aa1..c6519448c66 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 365173412d0..90956e09662 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 c387c7ea6d9..ee131eb8544 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 cd79abd6065..f562e28011d 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 415c141680f..c285a624695 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 7d91ebe249a..7caf07f5513 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 diff --git a/addons/auth_ldap/i18n/cs.po b/addons/auth_ldap/i18n/cs.po index 539c923450d..bd88b2e45d8 100644 --- a/addons/auth_ldap/i18n/cs.po +++ b/addons/auth_ldap/i18n/cs.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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 msgid "Template User" -msgstr "" +msgstr "Šablona uživatele" #. module: auth_ldap #: help:res.company.ldap,ldap_tls:0 @@ -29,32 +29,35 @@ msgid "" "option requires a server with STARTTLS enabled, otherwise all authentication " "attempts will fail." msgstr "" +"Vyžádat si zabezpečné šifrování TLS/SSL při připojování k serveru LDAP. Tato " +"možnost vyžaduje aby měl server zapnuté SARTTLS, jinak všechny požadavky " +"selžou." #. module: auth_ldap #: view:res.company:0 #: view:res.company.ldap:0 msgid "LDAP Configuration" -msgstr "" +msgstr "Nastavení LDAP" #. module: auth_ldap #: field:res.company.ldap,ldap_binddn:0 msgid "LDAP binddn" -msgstr "" +msgstr "LDAP binddn" #. module: auth_ldap #: field:res.company.ldap,company:0 msgid "Company" -msgstr "" +msgstr "Společnost" #. module: auth_ldap #: field:res.company.ldap,ldap_server:0 msgid "LDAP Server address" -msgstr "" +msgstr "Adresa serveru LDAP" #. module: auth_ldap #: field:res.company.ldap,ldap_server_port:0 msgid "LDAP Server port" -msgstr "" +msgstr "Port serveru LDAP" #. module: auth_ldap #: help:res.company.ldap,create_user:0 @@ -62,46 +65,48 @@ msgid "" "Automatically create local user accounts for new users authenticating via " "LDAP" msgstr "" +"Automaticky vytvořit místní uživatelské účty pro nové uživatele přihlašující " +"se přes LDAP" #. module: auth_ldap #: field:res.company.ldap,ldap_base:0 msgid "LDAP base" -msgstr "" +msgstr "LDAP base" #. module: auth_ldap #: view:res.company.ldap:0 msgid "User Information" -msgstr "" +msgstr "Informace o uživateli" #. module: auth_ldap #: field:res.company.ldap,ldap_password:0 msgid "LDAP password" -msgstr "" +msgstr "Heslo LDAP" #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_company msgid "Companies" -msgstr "" +msgstr "Společnosti" #. module: auth_ldap #: view:res.company.ldap:0 msgid "Process Parameter" -msgstr "" +msgstr "Parametr procesu" #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_company_ldap msgid "res.company.ldap" -msgstr "" +msgstr "res.company.ldap" #. module: auth_ldap #: help:res.company.ldap,user:0 msgid "User to copy when creating new users" -msgstr "" +msgstr "Uživatel pro zkopírování při vytváření nových uživatelů" #. module: auth_ldap #: field:res.company.ldap,ldap_tls:0 msgid "Use TLS" -msgstr "" +msgstr "Použít TLS" #. module: auth_ldap #: field:res.company.ldap,sequence:0 @@ -111,17 +116,17 @@ msgstr "" #. module: auth_ldap #: view:res.company.ldap:0 msgid "Login Information" -msgstr "" +msgstr "Přihlašovací údaje" #. module: auth_ldap #: view:res.company.ldap:0 msgid "Server Information" -msgstr "" +msgstr "Údaje serveru" #. module: auth_ldap #: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer msgid "Setup your LDAP Server" -msgstr "" +msgstr "Nastavte váš server LDAP" #. module: auth_ldap #: view:res.company:0 @@ -135,6 +140,8 @@ msgid "" "The password of the user account on the LDAP server that is used to query " "the directory." msgstr "" +"Heslo uživatelského účtu na serveru LDAP, které se používá při dotazování " +"adresáře." #. module: auth_ldap #: help:res.company.ldap,ldap_binddn:0 @@ -142,18 +149,20 @@ msgid "" "The user account on the LDAP server that is used to query the directory. " "Leave empty to connect anonymously." msgstr "" +"Uživatelský účet na serveru LDAP, který se používání při dotazování " +"adresáře. Ponechte prázdné pro anonymní připojování." #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_users msgid "Users" -msgstr "" +msgstr "Uživatelé" #. module: auth_ldap #: field:res.company.ldap,ldap_filter:0 msgid "LDAP filter" -msgstr "" +msgstr "Filtr LDAP" #. module: auth_ldap #: field:res.company.ldap,create_user:0 msgid "Create user" -msgstr "" +msgstr "Vytvořit uživatele" diff --git a/addons/auth_ldap/i18n/da.po b/addons/auth_ldap/i18n/da.po index e32aabd1b11..7d29709b74b 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 a969a2b6999..f02e88ec208 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 37ae682e455..07bd27f29d3 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 03307d8020c..5dda1b70a67 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 e7c79831362..5869f14129a 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: auth_ldap diff --git a/addons/auth_ldap/i18n/fi.po b/addons/auth_ldap/i18n/fi.po index 590814cced0..9762cd06e48 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 9750136aff3..11f6f99d7c1 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 acfd919f853..77c0d738e4b 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 5e7c393eb98..b005604124a 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 03c97b8b244..8e0cd533101 100644 --- a/addons/auth_ldap/i18n/hu.po +++ b/addons/auth_ldap/i18n/hu.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 msgid "Template User" -msgstr "" +msgstr "Sablon felhasználó" #. module: auth_ldap #: help:res.company.ldap,ldap_tls:0 @@ -29,6 +29,9 @@ msgid "" "option requires a server with STARTTLS enabled, otherwise all authentication " "attempts will fail." msgstr "" +"Biztonságos TLS/SSL kódolás igénylése az LDAP szerverhez való " +"kapcsolódáshoz. Ez a lehetőség megkívánja szerveren a STARTTLS " +"bekapcsolását, egyéb esetben az összes hitelesítés sikertelen lesz." #. module: auth_ldap #: view:res.company:0 @@ -39,7 +42,7 @@ msgstr "LDAP konfiguráció" #. module: auth_ldap #: field:res.company.ldap,ldap_binddn:0 msgid "LDAP binddn" -msgstr "" +msgstr "LDAP binddn" #. module: auth_ldap #: field:res.company.ldap,company:0 @@ -62,6 +65,8 @@ msgid "" "Automatically create local user accounts for new users authenticating via " "LDAP" msgstr "" +"Automatikusan létrehozott helyi felhasználói fiók az LDAP által azonosított " +"új felhasználókhoz" #. module: auth_ldap #: field:res.company.ldap,ldap_base:0 @@ -71,7 +76,7 @@ msgstr "LDAP alap" #. module: auth_ldap #: view:res.company.ldap:0 msgid "User Information" -msgstr "" +msgstr "Felhasználói információk" #. module: auth_ldap #: field:res.company.ldap,ldap_password:0 @@ -86,7 +91,7 @@ msgstr "Vállalatok" #. module: auth_ldap #: view:res.company.ldap:0 msgid "Process Parameter" -msgstr "" +msgstr "Feldolgozási paraméter" #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_company_ldap @@ -96,12 +101,12 @@ msgstr "res.company.ldap" #. module: auth_ldap #: help:res.company.ldap,user:0 msgid "User to copy when creating new users" -msgstr "" +msgstr "Új felhassználók létrehozásakor másolható felhasználó" #. module: auth_ldap #: field:res.company.ldap,ldap_tls:0 msgid "Use TLS" -msgstr "" +msgstr "TLS (titkosítás) használata" #. module: auth_ldap #: field:res.company.ldap,sequence:0 @@ -111,17 +116,17 @@ msgstr "Sorszám" #. module: auth_ldap #: view:res.company.ldap:0 msgid "Login Information" -msgstr "" +msgstr "Bejelentkezési adatok" #. module: auth_ldap #: view:res.company.ldap:0 msgid "Server Information" -msgstr "" +msgstr "Szerver információk" #. module: auth_ldap #: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer msgid "Setup your LDAP Server" -msgstr "" +msgstr "LDAP Szerver beállítása" #. module: auth_ldap #: view:res.company:0 @@ -135,6 +140,7 @@ msgid "" "The password of the user account on the LDAP server that is used to query " "the directory." msgstr "" +"Az LDAP szerveren lévő felhasználói fiók jelszava mellyel eléri a könyvtárát." #. module: auth_ldap #: help:res.company.ldap,ldap_binddn:0 @@ -142,11 +148,13 @@ msgid "" "The user account on the LDAP server that is used to query the directory. " "Leave empty to connect anonymously." msgstr "" +"Az LDAP szerveren lévő felhasználói fiók mellyel eléri a könyvtárát. Hagyja " +"üresen névtelken bejelentkezéshez." #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_users msgid "Users" -msgstr "" +msgstr "Felhasználók" #. module: auth_ldap #: field:res.company.ldap,ldap_filter:0 diff --git a/addons/auth_ldap/i18n/it.po b/addons/auth_ldap/i18n/it.po index fa89bdd610d..6a9392a6939 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 69756b45e28..7b79e040416 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 7e0bb375468..e65e939b915 100644 --- a/addons/auth_ldap/i18n/mk.po +++ b/addons/auth_ldap/i18n/mk.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 @@ -42,7 +42,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 @@ -101,7 +101,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_ldap/i18n/mn.po b/addons/auth_ldap/i18n/mn.po index bf79f5f54db..ddab6038c04 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 402237590ea..ea7f6bbd6d1 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 500f3fe6f42..fd5cc965571 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 c60fa3cc710..d3f9fd7c8af 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 63e896cfaf9..f8b998aeeab 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 1002a056ff6..f65442feed8 100644 --- a/addons/auth_ldap/i18n/pt_BR.po +++ b/addons/auth_ldap/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 ac1f58ebda2..dace8f48809 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 72ec1751701..5bcaaaad8a6 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 bdf02f35cc6..6d42ee9c938 100644 --- a/addons/auth_ldap/i18n/sl.po +++ b/addons/auth_ldap/i18n/sl.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_ldap #: field:res.company.ldap,user:0 msgid "Template User" -msgstr "" +msgstr "Predloga uporabnika" #. module: auth_ldap #: help:res.company.ldap,ldap_tls:0 @@ -29,17 +29,20 @@ msgid "" "option requires a server with STARTTLS enabled, otherwise all authentication " "attempts will fail." msgstr "" +"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." #. module: auth_ldap #: view:res.company:0 #: view:res.company.ldap:0 msgid "LDAP Configuration" -msgstr "" +msgstr "LDAP Configuration" #. module: auth_ldap #: field:res.company.ldap,ldap_binddn:0 msgid "LDAP binddn" -msgstr "" +msgstr "LDAP binddn" #. module: auth_ldap #: field:res.company.ldap,company:0 @@ -49,24 +52,24 @@ msgstr "Podjetje" #. module: auth_ldap #: field:res.company.ldap,ldap_server:0 msgid "LDAP Server address" -msgstr "" +msgstr "LDAP Server address" #. module: auth_ldap #: field:res.company.ldap,ldap_server_port:0 msgid "LDAP Server port" -msgstr "" +msgstr "LDAP Server port" #. module: auth_ldap #: help:res.company.ldap,create_user:0 msgid "" "Automatically create local user accounts for new users authenticating via " "LDAP" -msgstr "" +msgstr "Samodejno kreiranje novih uporabnikov preko LDAP avtorizacije" #. module: auth_ldap #: field:res.company.ldap,ldap_base:0 msgid "LDAP base" -msgstr "" +msgstr "LDAP base" #. module: auth_ldap #: view:res.company.ldap:0 @@ -76,7 +79,7 @@ msgstr "Informacije o uporabniku" #. module: auth_ldap #: field:res.company.ldap,ldap_password:0 msgid "LDAP password" -msgstr "" +msgstr "LDAP geslo" #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_company @@ -86,7 +89,7 @@ msgstr "Podjetja" #. module: auth_ldap #: view:res.company.ldap:0 msgid "Process Parameter" -msgstr "" +msgstr "Parametri Procesa" #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_company_ldap @@ -96,12 +99,12 @@ msgstr "res.company.ldap" #. module: auth_ldap #: help:res.company.ldap,user:0 msgid "User to copy when creating new users" -msgstr "" +msgstr "LDAP uporabnik , ki bo uporabljen za kreiranje novega uporabnika" #. module: auth_ldap #: field:res.company.ldap,ldap_tls:0 msgid "Use TLS" -msgstr "" +msgstr "Use TLS" #. module: auth_ldap #: field:res.company.ldap,sequence:0 @@ -121,20 +124,20 @@ msgstr "Podrobnosti o strežniku" #. module: auth_ldap #: model:ir.actions.act_window,name:auth_ldap.action_ldap_installer msgid "Setup your LDAP Server" -msgstr "" +msgstr "Setup your LDAP Server" #. module: auth_ldap #: view:res.company:0 #: field:res.company,ldaps:0 msgid "LDAP Parameters" -msgstr "" +msgstr "LDAP Parameters" #. 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 "" +msgstr "Geslo LDAP" #. module: auth_ldap #: help:res.company.ldap,ldap_binddn:0 @@ -142,6 +145,8 @@ msgid "" "The user account on the LDAP server that is used to query the directory. " "Leave empty to connect anonymously." msgstr "" +"The user account on the LDAP server that is used to query the directory. " +"Leave empty to connect anonymously." #. module: auth_ldap #: model:ir.model,name:auth_ldap.model_res_users @@ -151,7 +156,7 @@ msgstr "Uporabniki" #. module: auth_ldap #: field:res.company.ldap,ldap_filter:0 msgid "LDAP filter" -msgstr "" +msgstr "LDAP filter" #. module: auth_ldap #: field:res.company.ldap,create_user:0 diff --git a/addons/auth_ldap/i18n/sv.po b/addons/auth_ldap/i18n/sv.po index 3be5e98d60a..a3620ff8f84 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 da0aeca96a8..3c2f5c2b77b 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 96091816cd8..66f3e143012 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\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 894a16f3691..fa89afbd39a 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth/i18n/cs.po b/addons/auth_oauth/i18n/cs.po index e607a08a7bd..ebb0fced94b 100644 --- a/addons/auth_oauth/i18n/cs.po +++ b/addons/auth_oauth/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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 44b8374db1f..0d7452b9f19 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 91cb2d22f07..15b29122edc 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 fa772abb467..785532a31c1 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 ee2e4f10d64..9459ba5a4dd 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 1c8f67d872d..d272ec99ab9 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 5a5c102afaf..268db6f5b72 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-20 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 @@ -122,14 +122,14 @@ msgstr "" #. module: auth_oauth #: model:ir.actions.act_window,name:auth_oauth.action_oauth_provider msgid "Providers" -msgstr "" +msgstr "Szolgáltatók" #. module: auth_oauth #: field:base.config.settings,auth_oauth_google_enabled:0 msgid "Allow users to sign in with Google" -msgstr "" +msgstr "Engedélyezze a felhasználók Google bejelentkezését" #. module: auth_oauth #: field:auth.oauth.provider,enabled:0 msgid "Allowed" -msgstr "" +msgstr "Engedélyezett" diff --git a/addons/auth_oauth/i18n/it.po b/addons/auth_oauth/i18n/it.po index 022067ebe7e..4829c254ba1 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 4a9b5c250d7..cb4da25dc5c 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 @@ -102,12 +102,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 +117,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/nb.po b/addons/auth_oauth/i18n/nb.po index 4dad4c278eb..c123bf58b3b 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 3f5969f2edb..a96653a056d 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 @@ -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_oauth/i18n/pl.po b/addons/auth_oauth/i18n/pl.po index a3724decd38..e273c6d656e 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 67c57a0060a..aead82c4650 100644 --- a/addons/auth_oauth/i18n/pt.po +++ b/addons/auth_oauth/i18n/pt.po @@ -14,18 +14,18 @@ msgstr "" "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 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 msgid "Validation URL" -msgstr "" +msgstr "Endereço de validação" #. module: auth_oauth #: field:auth.oauth.provider,auth_endpoint:0 msgid "Authentication URL" -msgstr "" +msgstr "Endereço de autenticação" #. module: auth_oauth #: model:ir.model,name:auth_oauth.model_base_config_settings diff --git a/addons/auth_oauth/i18n/pt_BR.po b/addons/auth_oauth/i18n/pt_BR.po index fbf4df163d2..9a2d9dc7937 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 cc08fcef3c0..0b2c1a17b1f 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 87fa798eb3a..38568be5092 100644 --- a/addons/auth_oauth/i18n/sl.po +++ b/addons/auth_oauth/i18n/sl.po @@ -14,18 +14,18 @@ msgstr "" "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 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 msgid "Validation URL" -msgstr "" +msgstr "Validation URL" #. module: auth_oauth #: field:auth.oauth.provider,auth_endpoint:0 msgid "Authentication URL" -msgstr "" +msgstr "Authentication URL" #. module: auth_oauth #: model:ir.model,name:auth_oauth.model_base_config_settings @@ -35,7 +35,7 @@ msgstr "base.config.settings" #. module: auth_oauth #: field:auth.oauth.provider,name:0 msgid "Provider name" -msgstr "" +msgstr "Ime ponudnika" #. module: auth_oauth #: field:auth.oauth.provider,scope:0 @@ -45,12 +45,12 @@ msgstr "Obseg" #. module: auth_oauth #: field:res.users,oauth_provider_id:0 msgid "OAuth Provider" -msgstr "" +msgstr "OAuth Provider" #. module: auth_oauth #: field:auth.oauth.provider,css_class:0 msgid "CSS class" -msgstr "" +msgstr "CSS class" #. module: auth_oauth #: field:auth.oauth.provider,body:0 @@ -70,66 +70,66 @@ msgstr "neznano" #. module: auth_oauth #: field:res.users,oauth_access_token:0 msgid "OAuth Access Token" -msgstr "" +msgstr "OAuth Access Token" #. 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 "" +msgstr "Client ID" #. module: auth_oauth #: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers msgid "OAuth Providers" -msgstr "" +msgstr "OAuth Providers" #. module: auth_oauth #: model:ir.model,name:auth_oauth.model_auth_oauth_provider msgid "OAuth2 provider" -msgstr "" +msgstr "OAuth2 provider" #. module: auth_oauth #: field:res.users,oauth_uid:0 msgid "OAuth User ID" -msgstr "" +msgstr "OAuth User ID" #. module: auth_oauth #: field:base.config.settings,auth_oauth_facebook_enabled:0 msgid "Allow users to sign in with Facebook" -msgstr "" +msgstr "Dovolite prijavo preko Facebook-a" #. module: auth_oauth #: sql_constraint:res.users:0 msgid "OAuth UID must be unique per provider" -msgstr "" +msgstr "OAuth UID mora biti edinstven na ponudnika" #. module: auth_oauth #: help:res.users,oauth_uid:0 msgid "Oauth Provider user_id" -msgstr "" +msgstr "Oauth Provider user_id" #. module: auth_oauth #: field:auth.oauth.provider,data_endpoint:0 msgid "Data URL" -msgstr "" +msgstr "Data 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 msgid "Providers" -msgstr "" +msgstr "Ponudniki" #. module: auth_oauth #: field:base.config.settings,auth_oauth_google_enabled:0 msgid "Allow users to sign in with Google" -msgstr "" +msgstr "Dovolite prijavo preko Google-a" #. module: auth_oauth #: field:auth.oauth.provider,enabled:0 msgid "Allowed" -msgstr "" +msgstr "Dovoljeno" diff --git a/addons/auth_oauth/i18n/sv.po b/addons/auth_oauth/i18n/sv.po index c3d9ed591eb..192a481ab20 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 7faa18ccebf..279dd5fc265 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 04:57+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 @@ -45,7 +45,7 @@ msgstr "Kapsam" #. module: auth_oauth #: field:res.users,oauth_provider_id:0 msgid "OAuth Provider" -msgstr "" +msgstr "OAuth Sağlayıcı" #. module: auth_oauth #: field:auth.oauth.provider,css_class:0 @@ -70,29 +70,29 @@ msgstr "bilinmeyen" #. module: auth_oauth #: field:res.users,oauth_access_token:0 msgid "OAuth Access Token" -msgstr "" +msgstr "Oauth Erişim Jetonu" #. 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 "" +msgstr "İstemci ID" #. module: auth_oauth #: model:ir.ui.menu,name:auth_oauth.menu_oauth_providers msgid "OAuth Providers" -msgstr "" +msgstr "OAuth Sağlayıcılar" #. module: auth_oauth #: model:ir.model,name:auth_oauth.model_auth_oauth_provider msgid "OAuth2 provider" -msgstr "" +msgstr "OAuth2 Sağlayıcı" #. module: auth_oauth #: field:res.users,oauth_uid:0 msgid "OAuth User ID" -msgstr "" +msgstr "OAuth Kullanıcı ID" #. module: auth_oauth #: field:base.config.settings,auth_oauth_facebook_enabled:0 @@ -102,12 +102,12 @@ msgstr "Kullanıcılara Facebook ile oturum için izin ver" #. module: auth_oauth #: sql_constraint:res.users:0 msgid "OAuth UID must be unique per provider" -msgstr "" +msgstr "OAuth UID sağlayıcı başına benzersiz olmalıdır" #. module: auth_oauth #: help:res.users,oauth_uid:0 msgid "Oauth Provider user_id" -msgstr "" +msgstr "Oauth Sağlayıcı user_id" #. module: auth_oauth #: field:auth.oauth.provider,data_endpoint:0 @@ -127,7 +127,7 @@ msgstr "Sağlayıcılar" #. module: auth_oauth #: field:base.config.settings,auth_oauth_google_enabled:0 msgid "Allow users to sign in with Google" -msgstr "" +msgstr "Kullanıcıların Google ile oturum açmaya izin ver" #. module: auth_oauth #: field:auth.oauth.provider,enabled:0 diff --git a/addons/auth_oauth/i18n/zh_CN.po b/addons/auth_oauth/i18n/zh_CN.po index 2d96549aa94..8392bd2e009 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_oauth #: field:auth.oauth.provider,validation_endpoint:0 diff --git a/addons/auth_oauth_signup/i18n/cs.po b/addons/auth_oauth_signup/i18n/cs.po index 6351d6c056c..ba8ef7d8224 100644 --- a/addons/auth_oauth_signup/i18n/cs.po +++ b/addons/auth_oauth_signup/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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/de.po b/addons/auth_oauth_signup/i18n/de.po index 0c1313d0bfc..c8330ad7a4f 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 6ff8b2f2816..e2060abd7ab 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 03407ccfe6c..d081cb97666 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 702a71e4753..b8b9607152b 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 67701415754..c83c819b6c7 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 c0f8c00557a..a94b3b8af70 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 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 834ce412899..991315c24b1 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/lt.po b/addons/auth_oauth_signup/i18n/lt.po index 27fb83e6a4f..1d134600c3e 100644 --- a/addons/auth_oauth_signup/i18n/lt.po +++ b/addons/auth_oauth_signup/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-04-25 05:20+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 038c132f534..3abd2b60b76 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 54dd78c7337..96ce77fd7c8 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 b3342a61737..bb8d8e11bd0 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/nl_BE.po b/addons/auth_oauth_signup/i18n/nl_BE.po index 04d5034d029..e17a44d9cd9 100644 --- a/addons/auth_oauth_signup/i18n/nl_BE.po +++ b/addons/auth_oauth_signup/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-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 4ccfbbde324..b2e5b3f8d2a 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 616b375e9ca..73e61f5fe55 100644 --- a/addons/auth_oauth_signup/i18n/pt_BR.po +++ b/addons/auth_oauth_signup/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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 95c00b28097..c283bb18b9e 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 ca78920bc72..cbb5250b169 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 59c1a2c2dfb..f46b2822a89 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 9ae4f6ae63b..0171242d267 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 f7066474cc0..700fb239abb 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_oauth_signup #: model:ir.model,name:auth_oauth_signup.model_res_users diff --git a/addons/auth_oauth_signup/i18n/vi.po b/addons/auth_oauth_signup/i18n/vi.po index bdc3eff5b8d..dc177d406d6 100644 --- a/addons/auth_oauth_signup/i18n/vi.po +++ b/addons/auth_oauth_signup/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 40f6fa0b60c..3afe23caea2 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 47281890fe8..6e53f064725 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 16dbdd0de86..56d9d4db8ed 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/cs.po b/addons/auth_openid/i18n/cs.po index 071ee7ea210..2f40d99c4d0 100644 --- a/addons/auth_openid/i18n/cs.po +++ b/addons/auth_openid/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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/de.po b/addons/auth_openid/i18n/de.po index 3264432953e..74a0a225674 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 bc40672e80c..9445d974b98 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/es.po b/addons/auth_openid/i18n/es.po index afaf22e3ccf..04d92a56af7 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 cacb19c39b7..708aae38603 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/fi.po b/addons/auth_openid/i18n/fi.po index ae90908c3fd..33380019a95 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/fr.po b/addons/auth_openid/i18n/fr.po index f0aff08a410..b8df2608151 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/gu.po b/addons/auth_openid/i18n/gu.po index 42ca0d92c0e..ae4f4c37f41 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/hr.po b/addons/auth_openid/i18n/hr.po index 532877a2f36..7f4dc8d86a7 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/hu.po b/addons/auth_openid/i18n/hu.po index 356f7180f8c..4576c555d69 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-20 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web @@ -58,7 +58,7 @@ msgstr "Launchpad/Kiadásiszerk" #. module: auth_openid #: help:res.users,openid_email:0 msgid "Used for disambiguation in case of a shared OpenID URL" -msgstr "" +msgstr "Kétértelműség elkerülésére használja a megosztott OpenID URL esetén" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/it.po b/addons/auth_openid/i18n/it.po index 1a3a21406e8..a89cc03bc6a 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ja.po b/addons/auth_openid/i18n/ja.po index 7885c01f309..13ce8809653 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/mk.po b/addons/auth_openid/i18n/mk.po index 2ff735697bc..ee9f74c787b 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/mn.po b/addons/auth_openid/i18n/mn.po index 6953e0299ba..712afb56fb5 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/nb.po b/addons/auth_openid/i18n/nb.po index eb1da5fb79b..ce9a3817c98 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/nl.po b/addons/auth_openid/i18n/nl.po index 944a4e67c05..0dddf30af95 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pl.po b/addons/auth_openid/i18n/pl.po index 5bb8923e0e2..9a0714e4208 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/pt.po b/addons/auth_openid/i18n/pt.po index b42f2acb5a2..06266af2f91 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 f0bb4f39be4..1ccda2277e2 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ro.po b/addons/auth_openid/i18n/ro.po index 0d046d0d3f2..00f2f177907 100644 --- a/addons/auth_openid/i18n/ro.po +++ b/addons/auth_openid/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-18 07:05+0000\n" -"Last-Translator: Fekete Mihai \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/ru.po b/addons/auth_openid/i18n/ru.po index 68b36626056..c21414565ad 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-05-29 05:37+0000\n" -"X-Generator: Launchpad (build 16640)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sk.po b/addons/auth_openid/i18n/sk.po index 82e8ad0576f..11114a77021 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sl.po b/addons/auth_openid/i18n/sl.po index 429aea160fd..115413a1bc8 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 585d0b02b65..23e8a54a319 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/sv.po b/addons/auth_openid/i18n/sv.po index 3b50f574f6c..12d37aa82a4 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/tr.po b/addons/auth_openid/i18n/tr.po index 898406b2c5d..4aaf61f4f6c 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_openid/i18n/vi.po b/addons/auth_openid/i18n/vi.po index d1040420132..32453ccd1f5 100644 --- a/addons/auth_openid/i18n/vi.po +++ b/addons/auth_openid/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 26b3de855c6..418c7255dba 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_openid #. openerp-web diff --git a/addons/auth_signup/i18n/ar.po b/addons/auth_signup/i18n/ar.po index 5cbdac95faa..1a28fceb61b 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "السماح لمستخدمين خارجيين بالتسجيل" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "أكّد كلمة المرور" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "" @@ -70,7 +70,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "" @@ -82,8 +82,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "تسجيل" @@ -119,7 +119,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "" @@ -136,7 +136,7 @@ msgstr "رابط التسجيل" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "" @@ -147,7 +147,7 @@ msgid "Active" msgstr "نشط" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -170,7 +170,7 @@ msgstr "الاسم" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -199,7 +199,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "تسجيل الدخول" @@ -211,35 +211,35 @@ 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "" @@ -256,7 +256,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "العودة للدخول" diff --git a/addons/auth_signup/i18n/cs.po b/addons/auth_signup/i18n/cs.po index ee9cf157cdd..8cfad5616f9 100644 --- a/addons/auth_signup/i18n/cs.po +++ b/addons/auth_signup/i18n/cs.po @@ -14,66 +14,66 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 msgid "Signup Token Type" -msgstr "" +msgstr "Druh přihlašovacího tokenu" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 msgid "Allow external users to sign up" -msgstr "" +msgstr "Umožnit registraci externím uživatelům" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" -msgstr "" +msgstr "Potvrzení hesla" #. module: auth_signup #: help:base.config.settings,auth_signup_uninvited:0 msgid "If unchecked, only invited users may sign up." -msgstr "" +msgstr "Pokud není zaškrtnuto, mohou se zaregistrovat jen pozvaní uživatelé." #. module: auth_signup #: model:ir.model,name:auth_signup.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." -msgstr "" +msgstr "Email se nepodařilo odeslat: uživatel nemá emailovou adresu" #. 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" -msgstr "" +msgstr "Obnovit heslo" #. module: auth_signup #: field:base.config.settings,auth_signup_template_user_id:0 msgid "Template user for new users created through signup" -msgstr "" +msgstr "Šablona pro nové uživatele vytvořené při registraci" #. module: auth_signup #: model:email.template,subject:auth_signup.reset_password_email msgid "Password reset" -msgstr "" +msgstr "Heslo obnoveno" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." -msgstr "" +msgstr "Prosím zadejte heslo a potvďte jej" #. module: auth_signup #: view:res.users:0 @@ -82,11 +82,11 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" -msgstr "" +msgstr "Zaregistrovat se" #. module: auth_signup #: selection:res.users,state:0 @@ -102,7 +102,7 @@ msgstr "" #. module: auth_signup #: field:res.users,state:0 msgid "Status" -msgstr "" +msgstr "Stav" #. module: auth_signup #: model:email.template,body_html:auth_signup.reset_password_email @@ -116,30 +116,38 @@ msgid "" "\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 "" +"\n" +"

Pro účet OpenERP spojený s tímto emailem byla vyžádána obnova hesla.

\n" +"\n" +"

Své heslo si můžete změnit otevřením tohoto odkazu.

\n" +"\n" +"

Poznámka: Pokud jste tento e-mail neočekávali, můžete jej bez obav " +"ignorovat.

" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format +msgid "Please enter a name." +msgstr "Prosím zadejte jméno." + +#. module: auth_signup +#: model:ir.model,name:auth_signup.model_res_users +msgid "Users" +msgstr "Uživatelé" + +#. module: auth_signup +#: field:res.partner,signup_url:0 +msgid "Signup URL" +msgstr "Registrační URL" + +#. module: auth_signup +#. openerp-web +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#, python-format msgid "Please enter a username." -msgstr "" +msgstr "Prosím zadejte uživatelské jméno." #. module: auth_signup #: selection:res.users,state:0 @@ -147,33 +155,35 @@ msgid "Active" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" "You can configure it under Settings/General Settings." msgstr "" +"Email se nepodařilo odeslat: není nastavený žádný odchozí poštovní server.\n" +"Můžete jej nastavit v Nastavení/Obecná nastavení" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 #, python-format msgid "Username" -msgstr "" +msgstr "Uživatelské jméno" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:8 #, python-format msgid "Name" -msgstr "" +msgstr "Jméno" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." -msgstr "" +msgstr "Prosím zadejte uživatelské jméno nebo emailovou adresu." #. module: auth_signup #: selection:res.users,state:0 @@ -185,64 +195,66 @@ msgstr "" #: code:addons/auth_signup/static/src/xml/auth_signup.xml:13 #, python-format msgid "Username (Email)" -msgstr "" +msgstr "Uživatelské jméno (email)" #. module: auth_signup #: field:res.partner,signup_expiration:0 msgid "Signup Expiration" -msgstr "" +msgstr "Platnost registrace" #. 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 "" +"Tato volba umožní aby si uživatelé mohli vyžádat obnovu hesla z přihlašovací " +"stránky." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" -msgstr "" +msgstr "Přihlásit se" #. module: auth_signup #: field:res.partner,signup_valid:0 msgid "Signup Token is Valid" -msgstr "" +msgstr "Přihlašovací token je platný" #. 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" -msgstr "" +msgstr "Neplatný registrační token" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." -msgstr "" +msgstr "Hesla se neshodují; prosím zadejte je znovu" #. 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" -msgstr "" +msgstr "Žádná databáze nebyla vybrána!" #. module: auth_signup #: view:res.users:0 @@ -252,14 +264,14 @@ msgstr "" #. module: auth_signup #: field:base.config.settings,auth_signup_reset_password:0 msgid "Enable password reset from Login page" -msgstr "" +msgstr "Povolit obnovu hesla na přihlašovací stránce" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" -msgstr "" +msgstr "Zpět k přihlášení" #. module: auth_signup #. openerp-web @@ -271,9 +283,9 @@ msgstr "" #. module: auth_signup #: model:ir.model,name:auth_signup.model_res_partner msgid "Partner" -msgstr "" +msgstr "Partner" #. module: auth_signup #: field:res.partner,signup_token:0 msgid "Signup Token" -msgstr "" +msgstr "Registrační token" diff --git a/addons/auth_signup/i18n/de.po b/addons/auth_signup/i18n/de.po index f9e69262b1b..42b62c1679c 100644 --- a/addons/auth_signup/i18n/de.po +++ b/addons/auth_signup/i18n/de.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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 msgid "Signup Token Type" -msgstr "" +msgstr "Typ Anmelde Token" #. module: auth_signup #: field:base.config.settings,auth_signup_uninvited:0 @@ -29,7 +29,7 @@ msgstr "Erlaube Login von externen Benutzern" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Passwort bestätigen" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "Kann keine EMail senden, weil der Benutzer keine EMail Adresse hat" #. 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Passwort zurücksetzen" @@ -70,7 +70,7 @@ msgstr "Passwort zurücksetzen" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Bitte ein Passwort eintragen und bestätigen" @@ -83,8 +83,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Anmelden" @@ -129,7 +129,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Bitte geben Sie einen Namen ein." @@ -146,7 +146,7 @@ msgstr "Registrierungs URL" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Bitte Benutzernamen eingeben." @@ -157,12 +157,15 @@ msgid "Active" msgstr "Aktiv" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" "You can configure it under Settings/General Settings." msgstr "" +"Kann Email nicht senden: Es wurde noch kein ausgehender EMail Server " +"konfiguriert.\n" +"Sie können dieses unter Einstellungen / Allgemeine Einstellungen nachholen." #. module: auth_signup #. openerp-web @@ -180,7 +183,7 @@ msgstr "Name" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Bitte Benutzername oder EMail Adresse eingeben" @@ -209,7 +212,7 @@ msgstr "Dies erlaubt Benutzern ein Zurücksetzen des Passwortes zu verlangen." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Login" @@ -221,35 +224,35 @@ msgstr "Anmeldungs Token ist gültig" #. 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Login" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Anmeldungs Token ist ungültig" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "Passworte stimmen nicht überein, bitte neu eingeben" #. 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Keine Datenbank ausgewählt-" @@ -266,7 +269,7 @@ msgstr "Erlaube Passwort zurücksetzen von der Login-Seite" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Zurück zur Anmeldung" diff --git a/addons/auth_signup/i18n/en_GB.po b/addons/auth_signup/i18n/en_GB.po index 1189cfce720..d67aedce134 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Allow external users to sign up" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Confirm Password" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "Cannot send email: user has no email address." #. 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Reset password" @@ -70,7 +70,7 @@ msgstr "Password reset" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Please enter a password and confirm it." @@ -82,8 +82,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "" @@ -119,7 +119,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "" @@ -136,7 +136,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "" @@ -147,7 +147,7 @@ msgid "Active" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -170,7 +170,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -199,7 +199,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "" @@ -211,35 +211,35 @@ 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "" @@ -256,7 +256,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "" diff --git a/addons/auth_signup/i18n/es.po b/addons/auth_signup/i18n/es.po index 7c503ab0341..d9eb9cca3ce 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Permitir ingresar a usuarios externos" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Confirmar contraseña" @@ -45,7 +45,7 @@ msgid "base.config.settings" msgstr "Parámetros de configuración base" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -54,8 +54,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Restablecer contraseña" @@ -73,7 +73,7 @@ msgstr "Restablecer contraseña" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Por favor introduzca una contraseña y confírmela." @@ -85,8 +85,8 @@ msgstr "Enviar un correo al usuario para restablecer su contraseña." #. 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Registro" @@ -131,7 +131,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Por favor, introduzca un nombre." @@ -148,7 +148,7 @@ msgstr "URL de ingreso" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Por favor, introduzca un nombre de usuario." @@ -159,7 +159,7 @@ msgid "Active" msgstr "Activo" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -185,7 +185,7 @@ msgstr "Nombre" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -217,7 +217,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Iniciar sesión" @@ -229,35 +229,35 @@ msgstr "La palabra de ingreso es válida" #. 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Inicio de sesión" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Palabra de ingreso no válida" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "Las contraseñas no coinciden. Por favor vuelva a teclearlas." #. 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "¡No se ha seleccionado ninguna base de datos!" @@ -276,7 +276,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Volver al Inicio de sesión" diff --git a/addons/auth_signup/i18n/es_CO.po b/addons/auth_signup/i18n/es_CO.po index eb590e320ac..07da892f7d9 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 04:57+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Permitir ingreso a usuarios externos" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Confirmar Contraseña" @@ -45,7 +45,7 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -54,8 +54,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Restablecer contraseña" @@ -73,7 +73,7 @@ msgstr "Restablecer contraseña" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Por favor introduzca una contraseña y confírmela." @@ -85,8 +85,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Registro" @@ -130,7 +130,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Por favor, introduzca un nombre." @@ -147,7 +147,7 @@ msgstr "URL de Ingreso" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Por favor, introduzca un nombre de usuario." @@ -158,7 +158,7 @@ msgid "Active" msgstr "Activo(a)" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -184,7 +184,7 @@ msgstr "Nombre" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -216,7 +216,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Iniciar Sesión" @@ -228,35 +228,35 @@ msgstr "La Palabra de Ingreso es Válida" #. 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Inicio de Sesión" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Palabra de ingreso no válida" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "Las contraseñas no coinciden. Por favor vuelva a escribirlas." #. 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "No se ha seleccionado ninguna base de datos!" @@ -275,7 +275,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Volver al Inicio de Sesión" diff --git a/addons/auth_signup/i18n/fr.po b/addons/auth_signup/i18n/fr.po index 25794543e01..cef0627d9d6 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Autorise les utilisateurs externes à se connecter" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Confirmez le mot de passe" @@ -47,7 +47,7 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -55,8 +55,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Réinitialiser le mot de passe" @@ -74,7 +74,7 @@ msgstr "Réinitialisation du mot de passe" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Veuillez entrer un mot de passe et le confirmer" @@ -87,8 +87,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "S'inscrire" @@ -133,7 +133,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Veuillez entrer un nom." @@ -150,7 +150,7 @@ msgstr "Url d'authentification" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Merci de saisir votre nom d'utilisateur" @@ -161,7 +161,7 @@ msgid "Active" msgstr "Activer" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -187,7 +187,7 @@ msgstr "Nom" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Merci de saisir votre nom d'utilisateur ou une adresse email" @@ -218,7 +218,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Ouverture de session" @@ -230,35 +230,35 @@ msgstr "La session d'authentification est valide" #. 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Identifiant" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "La session d'authentification est invalide" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "Les mot des passes ne correspondent pas; merci de les resaisir." #. 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Aucune base de données sélectionnée !" @@ -276,7 +276,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Retour à la fenêtre de connexion" diff --git a/addons/auth_signup/i18n/hr.po b/addons/auth_signup/i18n/hr.po index 58391e04b73..85097ef5f61 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Dozvoli prijavu eksternim korisnicima" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Potvrdi lozinku" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "Korisnik nema e-mail adresu." #. 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Resetiraj lozinku" @@ -70,10 +70,10 @@ msgstr "Promjena lozinke" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." -msgstr "Molim upišite lozinku i potvrdu." +msgstr "Unesite loziniku i potvrdite unos" #. module: auth_signup #: view:res.users:0 @@ -82,8 +82,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "" @@ -119,7 +119,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Unesite ime" @@ -136,7 +136,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Upišite korisničko ime" @@ -147,7 +147,7 @@ msgid "Active" msgstr "Aktivan" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -170,7 +170,7 @@ msgstr "Naziv" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Upišite korisničko ime ili email adresu." @@ -199,7 +199,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Prijava" @@ -211,35 +211,35 @@ msgstr "Token prijave je ispravan" #. 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Prijava" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "Lozinke nisu iste, pokušajte ponovo." #. 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Nije odabrana baza podataka" @@ -256,7 +256,7 @@ msgstr "Omogući promjenu lozinke na stranici prijave" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Nazad na prijavu" diff --git a/addons/auth_signup/i18n/hu.po b/addons/auth_signup/i18n/hu.po index 91f76b57206..d462197dfa7 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-21 04:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Külső felhasználók bejelentkezésének engedéjezése" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Jelszó megerõsítése" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "Nem küldhető e-mail: a felhasználónak nincs e-mail címe." #. 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Jelszó visszaállítása" @@ -70,7 +70,7 @@ msgstr "Jelszó visszaállítás" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Kérem adjon meg egy jelszót és erősítse meg." @@ -82,8 +82,8 @@ msgstr "Küldjön egy e-mailt a felhasználónak a jelszava visszaállításáho #. 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Regisztrál" @@ -128,7 +128,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Kérem adjon meg egy nevet." @@ -145,7 +145,7 @@ msgstr "Bejelentkezési URL elérési útvonal" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Kérjük, adja meg a felhasználónevet." @@ -156,7 +156,7 @@ msgid "Active" msgstr "Aktív" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -181,7 +181,7 @@ msgstr "Név" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Kérem adjon meg egy felhasználónevet vagy e-mail címet." @@ -212,7 +212,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Bejelentkezés" @@ -224,35 +224,35 @@ msgstr "Regisztrációs token érvényes" #. 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Bejelentkezés" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Érvénytelen regisztrációs token" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "A jelszavak nem egyeznek, kérem ismételje meg." #. 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Nincs kiválasztott adatbázis!" @@ -269,7 +269,7 @@ msgstr "Jelszóváltoztató engedélyezése a belépési oldalról" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Vissza a bejelentkezéshez" diff --git a/addons/auth_signup/i18n/it.po b/addons/auth_signup/i18n/it.po index a3d2793f561..802a75d867a 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,10 +29,10 @@ msgstr "Permetti a utenti esterni di autenticarsi" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" -msgstr "Conferma Password" +msgstr "Conferma la password" #. module: auth_signup #: help:base.config.settings,auth_signup_uninvited:0 @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "Non è possibile inviare email: l'utente non ha l'indirizzo impostato" #. 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Reimposta password" @@ -72,7 +72,7 @@ msgstr "Ripristino password" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Prego inserire una password e confermarla" @@ -84,8 +84,8 @@ msgstr "Invia una mail all'utente per (re)impostare la propria password" #. 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Registrazione" @@ -130,7 +130,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Prego inserire un nome" @@ -147,7 +147,7 @@ msgstr "URL registrazione" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Prego inserire un username" @@ -158,7 +158,7 @@ msgid "Active" msgstr "Attivo" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -183,7 +183,7 @@ msgstr "Nome" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Prego inserire un nome utente e un indirizzo mail." @@ -214,7 +214,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Login" @@ -226,35 +226,35 @@ msgstr "Il token di registrazione è valido" #. 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Login" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Il token di registrazione non è valido" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "Le password non corrispondono; prego riscriverle." #. 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Nessun database selezionato!" @@ -271,7 +271,7 @@ msgstr "Abilita il reset della password dalla pagina di login" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Ritorno al Login" diff --git a/addons/auth_signup/i18n/lt.po b/addons/auth_signup/i18n/lt.po index 7ae419856e6..824fca6e841 100644 --- a/addons/auth_signup/i18n/lt.po +++ b/addons/auth_signup/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-04-30 05:29+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "" @@ -70,7 +70,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "" @@ -82,8 +82,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "" @@ -102,7 +102,7 @@ msgstr "" #. module: auth_signup #: field:res.users,state:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: auth_signup #: model:email.template,body_html:auth_signup.reset_password_email @@ -119,7 +119,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "" @@ -127,7 +127,7 @@ msgstr "" #. module: auth_signup #: model:ir.model,name:auth_signup.model_res_users msgid "Users" -msgstr "" +msgstr "Naudotojai" #. module: auth_signup #: field:res.partner,signup_url:0 @@ -136,7 +136,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "" @@ -147,7 +147,7 @@ msgid "Active" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -159,18 +159,18 @@ msgstr "" #: code:addons/auth_signup/static/src/xml/auth_signup.xml:12 #, python-format msgid "Username" -msgstr "" +msgstr "Naudotojo vardas" #. module: auth_signup #. openerp-web #: code:addons/auth_signup/static/src/xml/auth_signup.xml:8 #, python-format msgid "Name" -msgstr "" +msgstr "Pavadinimas" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -199,10 +199,10 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" -msgstr "" +msgstr "Prisijungti" #. module: auth_signup #: field:res.partner,signup_valid:0 @@ -211,35 +211,35 @@ 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" -msgstr "" +msgstr "Prisijungimas" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "" @@ -256,10 +256,10 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" -msgstr "" +msgstr "Grįžti į prisijungimo puslapį" #. module: auth_signup #. openerp-web @@ -271,7 +271,7 @@ msgstr "" #. module: auth_signup #: model:ir.model,name:auth_signup.model_res_partner msgid "Partner" -msgstr "" +msgstr "Partneris" #. module: auth_signup #: field:res.partner,signup_token:0 diff --git a/addons/auth_signup/i18n/mk.po b/addons/auth_signup/i18n/mk.po index 7c284c562b0..bfbd1d445c2 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Дозволи регистрација на надворешни кор #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Потврди лозинка" @@ -46,15 +46,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "Неможе да се испрати e-mail: Корисникот нема e-mail адреса." #. 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Ресетирај лозинка" @@ -62,7 +62,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 @@ -71,7 +71,7 @@ msgstr "Ресетирај лозинка" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Ве молиме внесете лозинка и потврдете ја." @@ -83,8 +83,8 @@ msgstr "Испрати e-mail до корисникот за (ре)сетира #. 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Регистрирај се" @@ -129,7 +129,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Ве молиме внесете име." @@ -146,7 +146,7 @@ msgstr "URL за регистрација" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Ве молиме внесете корисничко име." @@ -157,7 +157,7 @@ msgid "Active" msgstr "Активен" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -182,7 +182,7 @@ msgstr "Име" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Ве молиме внесете корисничко име или e-mail адреса." @@ -213,7 +213,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Најави се" @@ -225,35 +225,35 @@ 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Најавување" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Невалиден токен за регистрација" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Не е избрана база на податоци !" @@ -270,7 +270,7 @@ msgstr "Дозволи ресетирање на лозинка од стран #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Врати се на најава" diff --git a/addons/auth_signup/i18n/mn.po b/addons/auth_signup/i18n/mn.po index 256ea4ddd7f..c38555684a3 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Гадаад хэрэглэгчид бүртгүүлэхийг зөвш #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Нууц үгийг баталгаажуулах" @@ -46,15 +46,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Нууц үгийг шинэчлэх" @@ -71,7 +71,7 @@ msgstr "Нууц үгийг шинэчлэх" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Нууц үгийг оруулж баталгаажуул" @@ -83,8 +83,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Бүртгүүлэх" @@ -129,7 +129,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Нэр оруулна уу." @@ -146,7 +146,7 @@ msgstr "Бүртгүүлэх URL" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Хэрэглэгчийн нэрийг оруулна уу" @@ -157,7 +157,7 @@ msgid "Active" msgstr "Идэвхтэй" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -182,7 +182,7 @@ msgstr "Нэр" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Хэрэглэгчийн нэр эсвэл имэйл хаягийг оруулна уу." @@ -211,7 +211,7 @@ msgstr "Энэ нь Нэвтрэх хуудаснаас нууц үгээ шин #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Нэвтрэх" @@ -223,35 +223,35 @@ 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Нэвтрэх" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Бүртгүүлэх жетон хүчингүй" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Өгөгдлийн бааз сонгогдоогүй байна!" @@ -268,7 +268,7 @@ msgstr "Нэвтрэх хуудаснаас нууц үг шинэчлэхийг #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Дахин нэвтрэх" diff --git a/addons/auth_signup/i18n/nb.po b/addons/auth_signup/i18n/nb.po index 3a75fa2151b..d323074ca30 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Tillate eksterne brukere å registrere seg." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Bekreft passord." @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "Base.Konfigurasjon.Innstillinger." #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "" @@ -70,7 +70,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "" @@ -82,8 +82,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Registrer deg." @@ -119,7 +119,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "" @@ -136,7 +136,7 @@ msgstr "Regitrer deg URL." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "" @@ -147,7 +147,7 @@ msgid "Active" msgstr "Aktiv." #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -170,7 +170,7 @@ msgstr "Navn." #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -199,7 +199,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Logg inn." @@ -211,35 +211,35 @@ 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "" @@ -256,7 +256,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Tilbake til innlogging." diff --git a/addons/auth_signup/i18n/nl.po b/addons/auth_signup/i18n/nl.po index 54dff6f76db..a04422fd28b 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Toestaan dat externe gebruikers inloggen" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Bevestig wachtwoord" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "Kan e-mail niet versturen: gebruiker heeft geen e-mail adres." #. 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Reset wachtwoord" @@ -71,7 +71,7 @@ msgstr "Reset wachtwoord" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Geef een wachtwoord in en bevestig deze." @@ -85,8 +85,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Aanmelden" @@ -131,7 +131,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Vul een naam in." @@ -148,7 +148,7 @@ msgstr "URL voor aanmelden" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Voer een gebruikersnaam in." @@ -159,15 +159,15 @@ msgid "Active" msgstr "Actief" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" "You can configure it under Settings/General Settings." msgstr "" -"Het is niet mogelijk om een e-mail te versturen: geen uitgaande e-mail " -"server ingesteld,\n" -"Het is mogelijk deze in te stellen bij: Instellingen > Algemene" +"Het is niet mogelijk om een e-mail te versturen: Er is nog geen uitgaande e-" +"mail server ingesteld,\n" +"Het is mogelijk deze in te stellen bij: Instellingen > Algemeen" #. module: auth_signup #. openerp-web @@ -185,7 +185,7 @@ msgstr "Naam" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Geef gebruikersnaam of e-mail adres in." @@ -216,7 +216,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Login" @@ -228,35 +228,35 @@ msgstr "Aanmeld token is geldig" #. 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Login" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Aanmeld toekenning ongeldig" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "Wachtwoorden komen niet overeen. Geef de wachtwoorden opnieuw in." #. 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Geen database geselecteerd!" @@ -273,7 +273,7 @@ msgstr "Wachtwoord reset vanaf login pagina toestaan" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Terug naar login" diff --git a/addons/auth_signup/i18n/pl.po b/addons/auth_signup/i18n/pl.po index 28e2870a8c2..b7b53ce3607 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Pozwól na logowanie sie zewnętrznych użytkowników" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Potwierdź hasło" @@ -46,15 +46,15 @@ msgid "base.config.settings" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Wyczyść hasło" @@ -71,7 +71,7 @@ msgstr "Reset hasła" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Wprowadź hasło o potwierdź je" @@ -83,8 +83,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Rejestracja" @@ -120,7 +120,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Wprowadź nazwę" @@ -137,7 +137,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "" @@ -148,7 +148,7 @@ msgid "Active" msgstr "Aktywne" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -171,7 +171,7 @@ msgstr "Nazwa" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -200,7 +200,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "" @@ -212,35 +212,35 @@ 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Zaloguj się" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Nie wybrano bazy !" @@ -257,7 +257,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Wróć do logowania" diff --git a/addons/auth_signup/i18n/pt.po b/addons/auth_signup/i18n/pt.po index 97470c16f45..38ae1b4c300 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Repor senha" @@ -70,7 +70,7 @@ msgstr "Repor senha" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Por favor indique uma senha e confirme-a" @@ -82,8 +82,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "" @@ -119,7 +119,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "" @@ -136,7 +136,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Por favor introduza um nome de utilizador." @@ -147,7 +147,7 @@ msgid "Active" msgstr "" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -170,7 +170,7 @@ msgstr "Nome" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Por favor introduza um nome de utilizador ou endereço de email." @@ -185,7 +185,7 @@ msgstr "" #: code:addons/auth_signup/static/src/xml/auth_signup.xml:13 #, python-format msgid "Username (Email)" -msgstr "" +msgstr "Nome de utilizador (Email)" #. module: auth_signup #: field:res.partner,signup_expiration:0 @@ -199,7 +199,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Iniciar sessão" @@ -211,35 +211,35 @@ 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Iniciar sessão" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Nenhuma base de dados selecionada!" @@ -256,7 +256,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "" diff --git a/addons/auth_signup/i18n/pt_BR.po b/addons/auth_signup/i18n/pt_BR.po index e4b65c0dc8f..7ea74b82692 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -30,7 +30,7 @@ msgstr "Permitir inscrição de usuários externos" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Confirmar Senha" @@ -46,7 +46,7 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -54,8 +54,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Redefinir Senha" @@ -72,7 +72,7 @@ msgstr "Redefinir Senha" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Por favor digite uma senha e sua confirmação." @@ -84,8 +84,8 @@ msgstr "Enviar um e-mail para o usuário para (re)definir sua senha." #. 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Inscreva-se" @@ -129,7 +129,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Por favor, informe o nome" @@ -146,7 +146,7 @@ msgstr "URL de inscrição" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Por favor informe um nome de usuário" @@ -157,7 +157,7 @@ msgid "Active" msgstr "Ativo" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -182,7 +182,7 @@ msgstr "Nome" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Por favor informe um nome de usuário ou endereço de e-mail." @@ -213,7 +213,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Acessar" @@ -225,35 +225,35 @@ msgstr "Token de Inscrição é Válido" #. 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Autenticação" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Token de inscrição inválido" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "As senhas não combinam; por favor redigite-as." #. 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Nenhuma base de dados selecionada !" @@ -270,7 +270,7 @@ msgstr "Habilitar redefinição de senha a partir da página de autenticação" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Voltar para a Página de Autenticação" diff --git a/addons/auth_signup/i18n/ro.po b/addons/auth_signup/i18n/ro.po index 82f2f972553..acde7009291 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Permite utilizatorilor sa se inregistreze" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Confirma Parola" @@ -46,7 +46,7 @@ msgid "base.config.settings" msgstr "base.config.settings (setari.config.de_baza)" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "" @@ -54,8 +54,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Reseteaza parola" @@ -73,7 +73,7 @@ msgstr "Parola resetata" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Va rugam sa introduceti o parola si sa o confirmati." @@ -85,8 +85,8 @@ msgstr "Trimiteti un email utilizatorului pentru a (re)seta parola." #. 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Inregistrare" @@ -130,7 +130,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Va rugam sa introduceti un nume" @@ -147,7 +147,7 @@ msgstr "URL Inregistrare" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Va rugam sa introduceti un nume de utilizator." @@ -158,7 +158,7 @@ msgid "Active" msgstr "Activ(a)" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -184,7 +184,7 @@ msgstr "Nume" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Va rugam sa introduceti un nume de utilizator sau o adresa de email." @@ -215,7 +215,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Autentificare" @@ -227,35 +227,35 @@ msgstr "Simbolul de inregistrare este Valabil" #. 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Autentificare" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "Simbol de inregistrare nevalid" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, python-format msgid "Passwords do not match; please retype them." msgstr "Parolele nu se potrivesc; va rugam sa le scrieti din nou." #. 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Nu a fost selectata nicio baza de date !" @@ -272,7 +272,7 @@ msgstr "Activeaza resetarea parolei din pagina de autentificare" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Inapoi la Autentificare" diff --git a/addons/auth_signup/i18n/ru.po b/addons/auth_signup/i18n/ru.po index 639a1e9bc3c..cfd5975b07a 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-05-28 05:17+0000\n" -"X-Generator: Launchpad (build 16640)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "Разрешить регистрацию внешним пользов #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Подтвердите пароль" @@ -46,15 +46,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Сброс пароля" @@ -71,7 +71,7 @@ msgstr "Сброс пароля" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "Пожалуйста, введите пароль и подтвердите его." @@ -84,8 +84,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Регистрация" @@ -130,7 +130,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Пожалуйста, введите имя" @@ -147,7 +147,7 @@ msgstr "URL регистрации" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Пожалуйста, введите имя пользователя." @@ -158,7 +158,7 @@ msgid "Active" msgstr "Активен" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -183,7 +183,7 @@ msgstr "Имя" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "Пожалуйста, введите имя пользователя или адрес эл. почты." @@ -214,7 +214,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Вход" @@ -226,35 +226,35 @@ 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Вход" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Не выбрана база данных!" @@ -271,7 +271,7 @@ msgstr "Включить сброс пароля со страницы вход #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Вернуться к странице входа" diff --git a/addons/auth_signup/i18n/sl.po b/addons/auth_signup/i18n/sl.po index d547ca69084..7487608aa6a 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Potrdite geslo" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Ponastavi geslo" @@ -70,7 +70,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "" @@ -82,8 +82,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Prijava" @@ -119,7 +119,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Vnesite ime" @@ -136,7 +136,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "" @@ -147,7 +147,7 @@ msgid "Active" msgstr "Aktivno" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -170,7 +170,7 @@ msgstr "Ime" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -199,7 +199,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "Prijava" @@ -211,35 +211,35 @@ 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "Prijava" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "Nobena podatkovna zbirka ni izbrana!" @@ -256,7 +256,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "Nazaj na prijavo" diff --git a/addons/auth_signup/i18n/tr.po b/addons/auth_signup/i18n/tr.po index 3a78441e7f8..8f51c28dddf 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: auth_signup #: field:res.partner,signup_type:0 @@ -29,7 +29,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:16 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:19 #, python-format msgid "Confirm Password" msgstr "Parolayı Doğrula" @@ -45,15 +45,15 @@ msgid "base.config.settings" msgstr "base.config.settings" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:265 +#: code:addons/auth_signup/res_users.py:266 #, python-format msgid "Cannot send email: user has no email address." msgstr "Eposta gönderilemiyor: kullanıcının eposta adresi yok." #. 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:31 #, python-format msgid "Reset password" msgstr "Parolayı sıfırla" @@ -70,7 +70,7 @@ msgstr "Parola sıfırlandı" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:117 +#: code:addons/auth_signup/static/src/js/auth_signup.js:120 #, python-format msgid "Please enter a password and confirm it." msgstr "" @@ -82,8 +82,8 @@ 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 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:29 #, python-format msgid "Sign Up" msgstr "Üye Ol" @@ -119,7 +119,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:114 #, python-format msgid "Please enter a name." msgstr "Lütfen bir isim girin" @@ -136,7 +136,7 @@ msgstr "Kayıt URL" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:114 +#: code:addons/auth_signup/static/src/js/auth_signup.js:117 #, python-format msgid "Please enter a username." msgstr "Lütfen bir kullanıcı adı girin." @@ -147,7 +147,7 @@ msgid "Active" msgstr "Etkin" #. module: auth_signup -#: code:addons/auth_signup/res_users.py:269 +#: code:addons/auth_signup/res_users.py:270 #, python-format msgid "" "Cannot send email: no outgoing email server configured.\n" @@ -170,7 +170,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Please enter a username or email address." msgstr "" @@ -199,7 +199,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:22 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:25 #, python-format msgid "Log in" msgstr "" @@ -211,35 +211,35 @@ 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:123 #: code:addons/auth_signup/static/src/js/auth_signup.js:170 +#: code:addons/auth_signup/static/src/js/auth_signup.js:173 #, python-format msgid "Login" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:94 +#: code:addons/auth_signup/static/src/js/auth_signup.js:97 #, python-format msgid "Invalid signup token" msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/js/auth_signup.js:120 +#: code:addons/auth_signup/static/src/js/auth_signup.js:123 #, 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 +#: code:addons/auth_signup/static/src/js/auth_signup.js:111 +#: code:addons/auth_signup/static/src/js/auth_signup.js:170 #, python-format msgid "No database selected !" msgstr "" @@ -256,7 +256,7 @@ msgstr "" #. module: auth_signup #. openerp-web -#: code:addons/auth_signup/static/src/xml/auth_signup.xml:27 +#: code:addons/auth_signup/static/src/xml/auth_signup.xml:30 #, python-format msgid "Back to Login" msgstr "" diff --git a/addons/auth_signup/i18n/vi.po b/addons/auth_signup/i18n/vi.po index a79bbcb7bb4..a054f448c4b 100644 --- a/addons/auth_signup/i18n/vi.po +++ b/addons/auth_signup/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 497b872997f..385e028427e 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-07-03 05:14+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 a4377543f14..e53b8bc56e8 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 a8c84dcc1b9..5248bf4f424 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 5a33cb2e294..54a517ff792 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 75950e58009..199b2235670 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 7a65d9336ff..9eb815fd584 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 a005c95b6a5..388f2466afe 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 22169c55da4..203dc2415cc 100644 --- a/addons/base_action_rule/i18n/de.po +++ b/addons/base_action_rule/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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 0619ff54faf..00a39c1e63d 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 5ba02307b45..4eb9fb70ad7 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 7f0d6c8d016..de37efc01ee 100644 --- a/addons/base_action_rule/i18n/es_CR.po +++ b/addons/base_action_rule/i18n/es_CR.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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: base_action_rule diff --git a/addons/base_action_rule/i18n/es_EC.po b/addons/base_action_rule/i18n/es_EC.po index 2216ea3ae1e..d599e1f3320 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 ff190b1f4bd..6fb64cf0f72 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 e3062815dc5..cda542ae0e4 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 e424734e526..ec8d8e3b4e5 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 affdadbcca2..cc8681caf17 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -76,12 +76,12 @@ msgstr "base.action.rule.lead.test" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Closed" -msgstr "" +msgstr "Fermé" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "New" -msgstr "" +msgstr "Nouveau" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 @@ -96,7 +96,7 @@ msgstr "Conditions" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Pending" -msgstr "" +msgstr "En attente" #. module: base_action_rule #: field: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 bc9f72ecefd..74bc111f6d3 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 034feda5723..34154582dbf 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 796e1ce2eba..6aca5d68ed5 100644 --- a/addons/base_action_rule/i18n/hr.po +++ b/addons/base_action_rule/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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 475ef9a70ee..2ac4d4016d1 100644 --- a/addons/base_action_rule/i18n/hu.po +++ b/addons/base_action_rule/i18n/hu.po @@ -13,13 +13,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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "In Progress" -msgstr "" +msgstr "Folyamatban" #. module: base_action_rule #: view:base.action.rule:0 @@ -28,6 +28,9 @@ msgid "" "enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " "all users\"" msgstr "" +"- Ugyanebben a \"Keresés\" nézetben, válassza ki a \"Jelenlegi szűrő " +"elmentése\" menüt, írja be a nevet (Pl: Létrehoz 01/01/2012) és adja hozzá a " +"\"Ossza meg az összes felhasználóval\" lehetőséget" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule @@ -37,7 +40,7 @@ msgstr "Műveleti előírások" #. module: base_action_rule #: view:base.action.rule:0 msgid "Select a filter or a timer as condition." -msgstr "" +msgstr "Válasszon szűrőt vagy időzítőt mint lehetőséget." #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 @@ -47,17 +50,17 @@ msgstr "Felelős" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." -msgstr "" +msgstr "Példák: e-mail emlékeztetők, tárgyi szolgáltatás hívása, stb." #. module: base_action_rule #: field:base.action.rule,act_followers:0 msgid "Add Followers" -msgstr "" +msgstr "Követők hozzáadása" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 msgid "Set Responsible" -msgstr "" +msgstr "Felelős beállítása" #. module: base_action_rule #: help:base.action.rule,trg_date_range:0 @@ -66,21 +69,24 @@ msgid "" "delay before thetrigger date, like sending a reminder 15 minutes before a " "meeting." msgstr "" +"A emlékeztető dátumának késleltetése. Negatív számot is írhat ha az " +"emlékeztető kapcsolására az emlékeztető ideje előtt van szüksége, mint " +"emlékeztető küldése 15 perccel a találkozó előtt." #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test msgid "base.action.rule.lead.test" -msgstr "" +msgstr "base.action.rule.lead.test" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Closed" -msgstr "" +msgstr "Lezárt" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "New" -msgstr "" +msgstr "Új" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 @@ -95,17 +101,17 @@ msgstr "Feltételek" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Pending" -msgstr "" +msgstr "Függőben lévő" #. module: base_action_rule #: field:base.action.rule.lead.test,state:0 msgid "Status" -msgstr "" +msgstr "Állapot" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 msgid "Before Update Filter" -msgstr "" +msgstr "Szűró frissítése előtt" #. module: base_action_rule #: view:base.action.rule:0 @@ -117,6 +123,7 @@ msgstr "Műveleti előírások" msgid "" "If present, this condition must be satisfied after the update of the record." msgstr "" +"Ha létezik, ennek a feltételnek teljesülni kell a rekord frissítése után." #. module: base_action_rule #: view:base.action.rule:0 @@ -126,12 +133,12 @@ msgstr "Mezők módosítása" #. module: base_action_rule #: view:base.action.rule:0 msgid "The filter must therefore be available in this page." -msgstr "" +msgstr "A szűrőnek ezért elérhetőnek kell lennie ezen az oldalon." #. module: base_action_rule #: field:base.action.rule,filter_id:0 msgid "After Update Filter" -msgstr "" +msgstr "Szűrő frissítése után" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -141,7 +148,7 @@ msgstr "Órák" #. module: base_action_rule #: view:base.action.rule:0 msgid "To create a new filter:" -msgstr "" +msgstr "Új szűrő létrehozásához:" #. module: base_action_rule #: field:base.action.rule,active:0 @@ -162,11 +169,15 @@ msgid "" "while the postcondition filter is checked after the modification. A " "precondition filter will therefore not work during a creation." msgstr "" +"Egy műveleti szabály beállított, ha létrehozza vagy módosítja a \"Vonatkozó " +"Dokumentum Modell\"-t. Az előszűrő feltétele beállítható a módosítást " +"megelőzően, ugyanakkor az utófeltétel szűrő a módosítás után állítható be. " +"Az előfeltétel szűrő ezért nem működik a létrehozáskor." #. module: base_action_rule #: view:base.action.rule:0 msgid "Filter Condition" -msgstr "" +msgstr "Feltételek szűrése" #. module: base_action_rule #: view:base.action.rule:0 @@ -175,6 +186,9 @@ msgid "" "in the \"Search\" view (Example of filter based on Leads/Opportunities: " "Creation Date \"is equal to\" 01/01/2012)" msgstr "" +"- Menjen a \"Vonatkozó Dokumentum Modell\" oldalra és állítsa be a szűrési " +"paramétereket a \"Keresés\" nézetben (Például a szűrő az " +"Érdeklődések/Lehetőségek alapján: Létrehozás dátuma \"egyenlő\" 01/01/2012)" #. module: base_action_rule #: field:base.action.rule,name:0 @@ -206,7 +220,7 @@ msgstr "Napok" #. module: base_action_rule #: view:base.action.rule:0 msgid "Timer" -msgstr "" +msgstr "Időzítő" #. module: base_action_rule #: field:base.action.rule,trg_date_range_type:0 @@ -216,22 +230,22 @@ msgstr "Késedelem típusa" #. module: base_action_rule #: view:base.action.rule:0 msgid "Server actions to run" -msgstr "" +msgstr "Szerver műveletének futtatása" #. module: base_action_rule #: help:base.action.rule,active:0 msgid "When unchecked, the rule is hidden and will not be executed." -msgstr "" +msgstr "Ha nincs bejelölve, a szabály eltüntetett és nem végrehajtott." #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Cancelled" -msgstr "" +msgstr "Megszakítva" #. module: base_action_rule #: field:base.action.rule,model:0 msgid "Model" -msgstr "" +msgstr "Modell" #. module: base_action_rule #: field:base.action.rule,last_run:0 @@ -246,13 +260,14 @@ msgstr "Percek" #. module: base_action_rule #: field:base.action.rule,model_id:0 msgid "Related Document Model" -msgstr "" +msgstr "Ide vonatkozó dokumentum modell" #. module: base_action_rule #: help:base.action.rule,filter_pre_id:0 msgid "" "If present, this condition must be satisfied before the update of the record." msgstr "" +"Ha létezik, ennek a feltételnek teljesülnie kell a rekord frissítése előtt." #. module: base_action_rule #: field:base.action.rule,sequence:0 @@ -280,6 +295,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kattintson új automatikus művelet szabály létrehozásához. \n" +"

\n" +" Használjon automatikus műveleteket automatikus művelet " +"indításához \n" +" különböző képernyőkön. Például: ha egy érdeklődést egy " +"felhasználó létrehozott akkor\n" +" az automatikusan egy csoporthoz lesz iktatva, vagy egy\n" +" lehetőség, mely függőben van 14 nap után is el fog indítani " +"\n" +" egy automatikus emlékeztető e-mailt.\n" +"

\n" +" " #. module: base_action_rule #: field:base.action.rule,create_date:0 @@ -289,7 +317,7 @@ msgstr "Dátum létrehozása" #. module: base_action_rule #: field:base.action.rule.lead.test,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Utolsó művelet" #. module: base_action_rule #: field:base.action.rule.lead.test,partner_id:0 @@ -305,12 +333,12 @@ msgstr "Indítás dátuma" #: view:base.action.rule:0 #: field:base.action.rule,server_action_ids:0 msgid "Server Actions" -msgstr "" +msgstr "Szerver műveletek" #. module: base_action_rule #: field:base.action.rule.lead.test,name:0 msgid "Subject" -msgstr "" +msgstr "Tárgy" #~ msgid "" #~ "Check this if you want the rule to send an email to the responsible person." diff --git a/addons/base_action_rule/i18n/it.po b/addons/base_action_rule/i18n/it.po index e6fac54d83e..6692ef83e02 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 4ba033d2293..9ee39b7c1fc 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 2795d1f3b8d..998ad3397a0 100644 --- a/addons/base_action_rule/i18n/lt.po +++ b/addons/base_action_rule/i18n/lt.po @@ -9,18 +9,18 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 17:58+0000\n" -"Last-Translator: Paulius Sladkevičius \n" +"Last-Translator: Paulius Sladkevičius @ hbee \n" "Language-Team: Lithuanian \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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "In Progress" -msgstr "" +msgstr "Vykdoma" #. module: base_action_rule #: view:base.action.rule:0 @@ -43,7 +43,7 @@ msgstr "" #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 msgid "Responsible" -msgstr "Atsakingas" +msgstr "Atsakingas asmuo" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 @@ -76,12 +76,12 @@ msgstr "" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Closed" -msgstr "" +msgstr "Uždaryta" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "New" -msgstr "" +msgstr "Naujas" #. module: base_action_rule #: field:base.action.rule,trg_date_range:0 @@ -96,12 +96,12 @@ msgstr "Sąlygos" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Pending" -msgstr "" +msgstr "Laukianti" #. module: base_action_rule #: field:base.action.rule.lead.test,state:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 @@ -191,7 +191,7 @@ msgstr "Automatiniai veiksmai" #. module: base_action_rule #: help:base.action.rule,sequence:0 msgid "Gives the sequence order when displaying a list of rules." -msgstr "Suteikia eilės tvarką, pagal kurį atvaizduojamas taisyklių sąrašas" +msgstr "Eilės tvarka, pagal kurią išdėstomas taisyklių sąrašas." #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -226,12 +226,12 @@ msgstr "" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "Cancelled" -msgstr "" +msgstr "Atšauktas" #. module: base_action_rule #: field:base.action.rule,model:0 msgid "Model" -msgstr "" +msgstr "Modelis" #. module: base_action_rule #: field:base.action.rule,last_run:0 @@ -289,7 +289,7 @@ msgstr "Sukūrimo data" #. module: base_action_rule #: field:base.action.rule.lead.test,date_action_last:0 msgid "Last Action" -msgstr "" +msgstr "Paskutinis veiksmas" #. module: base_action_rule #: field:base.action.rule.lead.test,partner_id:0 @@ -299,7 +299,7 @@ msgstr "Partneris" #. module: base_action_rule #: field:base.action.rule,trg_date_id:0 msgid "Trigger Date" -msgstr "Įvykio data" +msgstr "Iššaukimo data" #. module: base_action_rule #: view:base.action.rule:0 @@ -310,7 +310,7 @@ msgstr "" #. module: base_action_rule #: field:base.action.rule.lead.test,name:0 msgid "Subject" -msgstr "" +msgstr "Tema" #~ msgid "Object" #~ msgstr "Objektas" diff --git a/addons/base_action_rule/i18n/lv.po b/addons/base_action_rule/i18n/lv.po index 3ba51babe47..d1a872a03d4 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 25366d5f367..3ce5919601e 100644 --- a/addons/base_action_rule/i18n/mk.po +++ b/addons/base_action_rule/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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -29,6 +29,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 @@ -48,12 +51,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 @@ -109,7 +112,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 @@ -137,7 +140,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 @@ -181,6 +184,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 @@ -222,7 +228,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 @@ -252,13 +258,14 @@ 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 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 @@ -311,7 +318,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_action_rule/i18n/mn.po b/addons/base_action_rule/i18n/mn.po index 25f87f25c84..74a4a7fdcfa 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 90fda28128b..0024397c236 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 0240a34e0a5..14e5617d930 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -302,13 +302,13 @@ msgstr "" "

\n" " Klik om een nieuwe automatische actie regel in te stellen\n" "

\n" -" gebruik automatische acties, om automatisch acties aan te " +" Gebruik automatische acties, om automatisch acties aan te " "roepen\n" " voor verschillende schermen. Bijvoorbeeld: Een lead " "aangemaakt door\n" " een specifieke gebruiker kan automatisch worden toegewezen " "aan een\n" -" specifiek verkoopteam. Of een prospect welke nog steeds d " +" specifiek verkoopteam. Of een prospect welke nog steeds de " "status 'in afwachting'\n" " heeft na 14 dagen activeert een herinnering e-mail.\n" "

\n" diff --git a/addons/base_action_rule/i18n/pl.po b/addons/base_action_rule/i18n/pl.po index 58d8cb483a5..8fddb092249 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 1edea6bb995..3a0fbbb5ec7 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 787c312e594..01508033c21 100644 --- a/addons/base_action_rule/i18n/pt_BR.po +++ b/addons/base_action_rule/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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 ab842f4e7ee..8ce347b8149 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 3ca5b1eab04..35112382f6d 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-06-01 05:16+0000\n" -"X-Generator: Launchpad (build 16660)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -294,7 +294,7 @@ msgstr "Последнее действие" #. module: base_action_rule #: field:base.action.rule.lead.test,partner_id:0 msgid "Partner" -msgstr "Контрагент" +msgstr "Партнер" #. module: base_action_rule #: field:base.action.rule,trg_date_id:0 diff --git a/addons/base_action_rule/i18n/sl.po b/addons/base_action_rule/i18n/sl.po index 7549ba38b0a..80a319ef6e9 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 16c174621d5..74f9c527500 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 a8a638f850e..314321b7ba5 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 208272808bd..37ed6a85553 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 8d91377706e..e7201f0121a 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 5865ab80580..1b3bbf45fb7 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -29,6 +29,9 @@ msgid "" "enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " "all users\"" msgstr "" +"-Bu aynı \"Arama\" görünümünde \"Geçerli Süzgeci Kaydet\" menüsünü seçin, " +"adını girin (Örn: 01/01/2012 yi oluştur) ve \"Bütün kullanıcılarla paylaş\" " +"seçeneğini ekleyin" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule @@ -38,7 +41,7 @@ msgstr "Eylem Kuralları" #. module: base_action_rule #: view:base.action.rule:0 msgid "Select a filter or a timer as condition." -msgstr "" +msgstr "Koşul olarak bir süzgeç ya da bir zaman sayacı seçin." #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 @@ -48,12 +51,12 @@ msgstr "Sorumlu" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." -msgstr "" +msgstr "Örnekler: eposta anımsatıcıları, nesne servisi çağır, v.b." #. module: base_action_rule #: field:base.action.rule,act_followers:0 msgid "Add Followers" -msgstr "" +msgstr "İzleyici Ekle" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 @@ -67,6 +70,9 @@ msgid "" "delay before thetrigger date, like sending a reminder 15 minutes before a " "meeting." msgstr "" +"Tetikleme tarihinden sonraki gecikme. Tetikleme tarihinden önce bir gecikme " +"gerektiriyorsa eksş bir değer girebilirsiniz, toplantı tarihinden 15 dakika " +"önce anımsatma gönderme gibi." #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test @@ -106,7 +112,7 @@ msgstr "Durum" #. module: base_action_rule #: field:base.action.rule,filter_pre_id:0 msgid "Before Update Filter" -msgstr "" +msgstr "Güncelleme Süzgeçi Öncesi" #. module: base_action_rule #: view:base.action.rule:0 @@ -117,7 +123,7 @@ msgstr "Eylem Kuralı" #: help:base.action.rule,filter_id:0 msgid "" "If present, this condition must be satisfied after the update of the record." -msgstr "" +msgstr "Varsa, bu koşul kaydın güncellenmesinden sonra tatminkar olmalıdır." #. module: base_action_rule #: view:base.action.rule:0 @@ -127,12 +133,12 @@ msgstr "Değiştirilecek Alanlar" #. module: base_action_rule #: view:base.action.rule:0 msgid "The filter must therefore be available in this page." -msgstr "" +msgstr "Bu yüzden süzgeçin bu sayfada olması gerekir." #. module: base_action_rule #: field:base.action.rule,filter_id:0 msgid "After Update Filter" -msgstr "" +msgstr "Güncelleme Süzgeçi Sonrası" #. module: base_action_rule #: selection:base.action.rule,trg_date_range_type:0 @@ -142,7 +148,7 @@ msgstr "Saatler" #. module: base_action_rule #: view:base.action.rule:0 msgid "To create a new filter:" -msgstr "" +msgstr "Yeni bir süzgeç oluşturmak için:" #. module: base_action_rule #: field:base.action.rule,active:0 @@ -163,11 +169,15 @@ msgid "" "while the postcondition filter is checked after the modification. A " "precondition filter will therefore not work during a creation." msgstr "" +"Bir işlem kuralı, \"İlişkili Belge Model\"ini oluştururken ya da " +"değiştirirken denetlenir. Önkoşul süzgeci, değiştirilmeden sonraki eski " +"koşul denetlenirken değiştirilmeden hemen önce denetlenir. Bundan dolayı bir " +"önkoşul süzgeci oluşturulma sırasında çalışmayacaktır." #. module: base_action_rule #: view:base.action.rule:0 msgid "Filter Condition" -msgstr "" +msgstr "Süzgeç Koşulu" #. module: base_action_rule #: view:base.action.rule:0 @@ -176,6 +186,9 @@ msgid "" "in the \"Search\" view (Example of filter based on Leads/Opportunities: " "Creation Date \"is equal to\" 01/01/2012)" msgstr "" +"- \"İlişkili Belge Modeli\" sayfanıza gidin ve \"Arama\" görünümündeki " +"süzgeç parametrelerini doldurun (Adaylara/Fırsatlara göre süzgeç örnekleri: " +"Oluşturma Tarihi \"eşittir\" 01/01/2012)" #. module: base_action_rule #: field:base.action.rule,name:0 @@ -216,12 +229,12 @@ msgstr "Gecikme türü" #. module: base_action_rule #: view:base.action.rule:0 msgid "Server actions to run" -msgstr "" +msgstr "Çalıştırılacak sunucu işlemleri" #. module: base_action_rule #: help:base.action.rule,active:0 msgid "When unchecked, the rule is hidden and will not be executed." -msgstr "" +msgstr "İşaret kaldırılırsa, kural gizlenecek ve çalıştırılamayacaktır." #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 @@ -252,7 +265,7 @@ msgstr "İlgili Döküman Modeli" #: help:base.action.rule,filter_pre_id:0 msgid "" "If present, this condition must be satisfied before the update of the record." -msgstr "" +msgstr "Varsa, bu koşul kaydın güncellenmesinden önce tatminkar olmalıdır." #. module: base_action_rule #: field:base.action.rule,sequence:0 @@ -280,6 +293,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir otomatik işlem kuralı ayarlamak için tıklayın. \n" +"

\n" +" Çeşitli ekranlarda otomatik tetikleme işlemleri için " +"otomatik\n" +" işlemler kullanın. Örnek: belirli bir kullanıcı tarafından " +"oluşturulan\n" +" bir aday otomatik olarak bir satış takımına ayarlanabilir ya " +"da bir fırsat\n" +" hala 14 günlük bir bekleme durumundayken bir otomatik " +"eposta\n" +" anımsatmasını tetikleyebilir.\n" +"

\n" +" " #. module: base_action_rule #: field:base.action.rule,create_date:0 diff --git a/addons/base_action_rule/i18n/zh_CN.po b/addons/base_action_rule/i18n/zh_CN.po index 19651bea3ea..284c51d10d1 100644 --- a/addons/base_action_rule/i18n/zh_CN.po +++ b/addons/base_action_rule/i18n/zh_CN.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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_action_rule #: selection:base.action.rule.lead.test,state:0 msgid "In Progress" -msgstr "" +msgstr "处理中" #. module: base_action_rule #: view:base.action.rule:0 @@ -28,7 +28,7 @@ msgid "" "- In this same \"Search\" view, select the menu \"Save Current Filter\", " "enter the name (Ex: Create the 01/01/2012) and add the option \"Share with " "all users\"" -msgstr "" +msgstr "在“搜索”框中,选择菜单“保存过滤器”,输入名字(如:创建于01/01/2012)并选择“与所有用户共享”" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule @@ -38,7 +38,7 @@ msgstr "动作规则" #. module: base_action_rule #: view:base.action.rule:0 msgid "Select a filter or a timer as condition." -msgstr "" +msgstr "选择过滤器或定时器作为条件。" #. module: base_action_rule #: field:base.action.rule.lead.test,user_id:0 @@ -48,7 +48,7 @@ msgstr "负责人" #. module: base_action_rule #: help:base.action.rule,server_action_ids:0 msgid "Examples: email reminders, call object service, etc." -msgstr "" +msgstr "如:电子邮件提醒,调用对象的服务等。" #. module: base_action_rule #: field:base.action.rule,act_followers:0 @@ -58,7 +58,7 @@ msgstr "" #. module: base_action_rule #: field:base.action.rule,act_user_id:0 msgid "Set Responsible" -msgstr "" +msgstr "设置权限" #. module: base_action_rule #: help:base.action.rule,trg_date_range:0 @@ -66,7 +66,7 @@ msgid "" "Delay after the trigger date.You can put a negative number if you need a " "delay before thetrigger date, like sending a reminder 15 minutes before a " "meeting." -msgstr "" +msgstr "延迟触发日期。如果在触发日期你需要一个延迟,你可以输入一个负数,如在会议前15分钟发送提醒" #. module: base_action_rule #: model:ir.model,name:base_action_rule.model_base_action_rule_lead_test diff --git a/addons/base_action_rule/i18n/zh_TW.po b/addons/base_action_rule/i18n/zh_TW.po index 01c74b0cf59..54bf65317b1 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 aa7872e0d23..9c123f55ffc 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Fout!" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Waarskuwing!" @@ -524,7 +524,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -743,7 +743,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1202,7 +1202,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1455,7 +1455,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/ar.po b/addons/base_calendar/i18n/ar.po index 1474bc80b7a..65056663b1f 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "إلى" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "خطأ!" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "تحذير!" @@ -523,7 +523,7 @@ msgid "Event alarm information" msgstr "معلومات عن منبه الحدث" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -742,7 +742,7 @@ msgid "Declined" msgstr "مرفوض" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1205,7 +1205,7 @@ msgid "Select Weekdays" msgstr "اختر أيام الأسبوع" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1460,7 +1460,7 @@ msgid "Weekday" msgstr "يوم العمل" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "الفترة لا يمكن أن تكون بالسالب (-)" diff --git a/addons/base_calendar/i18n/bg.po b/addons/base_calendar/i18n/bg.po index 7ac39e90b15..6822d77c6ad 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Грешка!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Предупреждение!" @@ -524,7 +524,7 @@ msgid "Event alarm information" msgstr "Информация за аларма на събитие" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -743,7 +743,7 @@ msgid "Declined" msgstr "Отказано" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1205,7 +1205,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1458,7 +1458,7 @@ msgid "Weekday" msgstr "Ден от седмицата" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/bn.po b/addons/base_calendar/i18n/bn.po index d365e5cd3a6..ae3c5a9b1fe 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "ভুল" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/bs.po b/addons/base_calendar/i18n/bs.po index cd4b1f6ca19..b11b84ebec0 100644 --- a/addons/base_calendar/i18n/bs.po +++ b/addons/base_calendar/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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Country: BOSNIA AND HERZEGOVINA\n" "Language: hr\n" "X-Poedit-Language: Bosnian\n" @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -524,7 +524,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -743,7 +743,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1202,7 +1202,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1455,7 +1455,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/ca.po b/addons/base_calendar/i18n/ca.po index b829f34e483..ac61cf6f889 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Error!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Avís!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Informació de l'avís de l'esdeveniment" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -746,7 +746,7 @@ msgid "Declined" msgstr "Rebutjat" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1213,7 +1213,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1472,7 +1472,7 @@ msgid "Weekday" msgstr "Dia de la setmana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/cs.po b/addons/base_calendar/i18n/cs.po index d40c0b4bb30..93ff64acfda 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Adresát" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Chyba!" @@ -365,9 +365,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Varování!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Informace budíku události" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Počet nemůže být záporný nebo nulový." @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Odmítnuto" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "Seskupení podle data není podporováno, použijte zobrazení kalendáře." @@ -1214,7 +1214,7 @@ msgid "Select Weekdays" msgstr "Vyberte dny v týdnu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1476,7 +1476,7 @@ msgid "Weekday" msgstr "Den v týdnu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Rozsah nemůže být záporný." diff --git a/addons/base_calendar/i18n/da.po b/addons/base_calendar/i18n/da.po index b3db05e9164..707c2cbfe9a 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Fejl!" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Advarsel!" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/de.po b/addons/base_calendar/i18n/de.po index 9a15df9d0eb..c50ca8c6efd 100644 --- a/addons/base_calendar/i18n/de.po +++ b/addons/base_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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Bis" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Fehler !" @@ -365,9 +365,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Warnung!" @@ -528,7 +528,7 @@ msgid "Event alarm information" msgstr "Termin Erinnerung" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Sie können nicht negativ oder 0 sein" @@ -747,7 +747,7 @@ msgid "Declined" msgstr "Abgesagt" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1224,7 +1224,7 @@ msgid "Select Weekdays" msgstr "Auswahl Wochentage" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1489,7 +1489,7 @@ msgid "Weekday" msgstr "Wochentag" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Zeitraum kann nicht negativ sein" diff --git a/addons/base_calendar/i18n/el.po b/addons/base_calendar/i18n/el.po index 25bca497058..81c67513627 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Λάθος!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Προειδοποίηση" @@ -524,7 +524,7 @@ msgid "Event alarm information" msgstr "Πληροφορίες Υπενθύμισης Γεγονότος" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -744,7 +744,7 @@ msgid "Declined" msgstr "Απορρίφθηκε" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1205,7 +1205,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1460,7 +1460,7 @@ msgid "Weekday" msgstr "Καθημερινή" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/es.po b/addons/base_calendar/i18n/es.po index 8e4f3352d2b..f8651b082d5 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "¡Error!" @@ -365,9 +365,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "¡Aviso!" @@ -528,7 +528,7 @@ msgid "Event alarm information" msgstr "Información del aviso del evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "La cuenta no puede ser negativa o cero" @@ -747,7 +747,7 @@ msgid "Declined" msgstr "Rechazada" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1224,7 +1224,7 @@ msgid "Select Weekdays" msgstr "Seleccione días de la semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1491,7 +1491,7 @@ msgid "Weekday" msgstr "Día de la semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "El intervalo no puede ser negativo" diff --git a/addons/base_calendar/i18n/es_CR.po b/addons/base_calendar/i18n/es_CR.po index 121b9b7652c..bbe823d9020 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: base_calendar @@ -251,7 +251,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "¡Error!" @@ -364,9 +364,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "¡Aviso!" @@ -527,7 +527,7 @@ msgid "Event alarm information" msgstr "Información del aviso del evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -746,7 +746,7 @@ msgid "Declined" msgstr "Rechazada" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1213,7 +1213,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1473,7 +1473,7 @@ msgid "Weekday" msgstr "Día de la semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/es_EC.po b/addons/base_calendar/i18n/es_EC.po index d1c66eca99f..05cdac71b0c 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "¡Error!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "¡Advertencia!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -745,7 +745,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1204,7 +1204,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1457,7 +1457,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/es_MX.po b/addons/base_calendar/i18n/es_MX.po index 9a2fe449d37..088bf6ea812 100644 --- a/addons/base_calendar/i18n/es_MX.po +++ b/addons/base_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-04-25 05:20+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/es_PY.po b/addons/base_calendar/i18n/es_PY.po index 6c1f18d8277..7c955648320 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "¡Error!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "¡Cuidado!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Información del aviso del evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Rechazada" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1212,7 +1212,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1472,7 +1472,7 @@ msgid "Weekday" msgstr "Día de la semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/et.po b/addons/base_calendar/i18n/et.po index 57bc8e5dd4f..f398c18544a 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Viga!" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/fa.po b/addons/base_calendar/i18n/fa.po index 75c914f4773..73d599dc857 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/fi.po b/addons/base_calendar/i18n/fi.po index 74dd324cc89..df6843c24de 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Vastaanottaja" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Virhe!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Varoitus!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Tapahtuman hälytystiedot" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Hylätty" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1212,7 +1212,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1469,7 +1469,7 @@ msgid "Weekday" msgstr "Arkipäivä" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/fr.po b/addons/base_calendar/i18n/fr.po index 9196823dfd6..d537558c886 100644 --- a/addons/base_calendar/i18n/fr.po +++ b/addons/base_calendar/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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -249,7 +249,7 @@ msgid "To" msgstr "À" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Erreur!" @@ -306,12 +306,12 @@ msgstr "Courriel à" #. module: base_calendar #: field:crm.meeting,name:0 msgid "Meeting Subject" -msgstr "" +msgstr "Titre de l'évènement" #. module: base_calendar #: view:calendar.event:0 msgid "End of Recurrence" -msgstr "" +msgstr "Fin de la récurrence" #. module: base_calendar #: view:calendar.event:0 @@ -332,7 +332,7 @@ msgstr "Choisir le jour où répéter le rendez-vous" #: view:crm.meeting:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting msgid "Meetings" -msgstr "" +msgstr "Évènements" #. module: base_calendar #: field:calendar.event,recurrent_id_date:0 @@ -358,13 +358,15 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Contient le résumé de la discussion (nombre de messages, ...). Ce résumé est " +"au format HTML pour permettre son utilisation dans la vue kanban." #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Avertissement!" @@ -523,7 +525,7 @@ msgid "Event alarm information" msgstr "Information sur l'alarme de l'évènement" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -538,7 +540,7 @@ msgstr "Date de création" #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting msgid "Meeting" -msgstr "" +msgstr "Réunion" #. module: base_calendar #: selection:calendar.event,rrule_type:0 @@ -591,7 +593,7 @@ msgstr "Jeu" #. module: base_calendar #: view:crm.meeting:0 msgid "Meeting Details" -msgstr "" +msgstr "Détails de l'évènement" #. module: base_calendar #: field:calendar.attendee,child_ids:0 @@ -742,7 +744,7 @@ msgid "Declined" msgstr "Refusé" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -847,7 +849,7 @@ msgstr "Nombre de répétitions" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet2 msgid "Internal Meeting" -msgstr "" +msgstr "Réunion interne" #. module: base_calendar #: view:calendar.event:0 @@ -925,7 +927,7 @@ msgstr "Date de l'événement" #. module: base_calendar #: view:crm.meeting:0 msgid "Invitations" -msgstr "" +msgstr "Invitations" #. module: base_calendar #: view:calendar.event:0 @@ -1100,7 +1102,7 @@ msgstr "Défini l'action à exécuter lorsque l'alarme se déclenche" #. module: base_calendar #: view:crm.meeting:0 msgid "Starting at" -msgstr "" +msgstr "Heure de début" #. module: base_calendar #: selection:calendar.event,end_type:0 @@ -1129,12 +1131,12 @@ msgstr "" #: field:calendar.todo,end_type:0 #: field:crm.meeting,end_type:0 msgid "Recurrence Termination" -msgstr "" +msgstr "Fin de la récurrence" #. module: base_calendar #: view:crm.meeting:0 msgid "Until" -msgstr "" +msgstr "Jusqu'à" #. module: base_calendar #: view:res.alarm:0 @@ -1206,10 +1208,10 @@ msgstr "Responsable" #. module: base_calendar #: view:crm.meeting:0 msgid "Select Weekdays" -msgstr "" +msgstr "Sélectionner les jours de la semaine" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1466,7 +1468,7 @@ msgid "Weekday" msgstr "Jour de la semaine" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1566,7 +1568,7 @@ msgstr "Samedi" #: field:calendar.todo,interval:0 #: field:crm.meeting,interval:0 msgid "Repeat Every" -msgstr "" +msgstr "Répéter tous les" #. module: base_calendar #: selection:calendar.event,byday:0 diff --git a/addons/base_calendar/i18n/gl.po b/addons/base_calendar/i18n/gl.po index ed24ea35584..8372714de56 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Erro!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Aviso!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Información do aviso do evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Rexeitado" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1212,7 +1212,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1472,7 +1472,7 @@ msgid "Weekday" msgstr "Día laborable" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/hr.po b/addons/base_calendar/i18n/hr.po index faaea757be8..50d937c180f 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Do" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Greška!" @@ -365,9 +365,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Upozorenje!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Informacija alarma događaja" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Broj ne smije biti negativan ili 0." @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Odbijeno" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "Grupiranje po datumu nije podržano. Koristite kalendar." @@ -1210,7 +1210,7 @@ msgid "Select Weekdays" msgstr "Odabir dana u tjednu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1474,7 +1474,7 @@ msgid "Weekday" msgstr "Dan u tjednu" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Interval ne može biti negativan" diff --git a/addons/base_calendar/i18n/hu.po b/addons/base_calendar/i18n/hu.po index b54cfc10e89..001f0e6e15a 100644 --- a/addons/base_calendar/i18n/hu.po +++ b/addons/base_calendar/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-20 04:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -249,7 +249,7 @@ msgid "To" msgstr "Címzett" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Hiba!" @@ -364,9 +364,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Vigyázat!" @@ -527,7 +527,7 @@ msgid "Event alarm information" msgstr "Találkozó riasztási információ" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Számláló nem lehet nulla vagy negatív." @@ -746,7 +746,7 @@ msgid "Declined" msgstr "Elutasítva" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1223,7 +1223,7 @@ msgid "Select Weekdays" msgstr "Munkanapokat válasszon" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1490,7 +1490,7 @@ msgid "Weekday" msgstr "Hétköznap" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Intervallum nem lehet negatív." diff --git a/addons/base_calendar/i18n/id.po b/addons/base_calendar/i18n/id.po index c3db2331811..8846e2dab81 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -524,7 +524,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -743,7 +743,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1202,7 +1202,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1455,7 +1455,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/it.po b/addons/base_calendar/i18n/it.po index aa379b0b063..0e30627cdd5 100644 --- a/addons/base_calendar/i18n/it.po +++ b/addons/base_calendar/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-15 15:25+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "A" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Errore!" @@ -365,9 +365,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Attenzione!" @@ -528,7 +528,7 @@ msgid "Event alarm information" msgstr "Informazioni avviso evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Il conteggio non può essere negativo o zero." @@ -748,7 +748,7 @@ msgid "Declined" msgstr "Rifiutato" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "Raggruppo per data non supportato, usa la vista calendario." @@ -1224,7 +1224,7 @@ msgid "Select Weekdays" msgstr "Giorni selezionati" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1491,7 +1491,7 @@ msgid "Weekday" msgstr "Giorno della settimana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "L'intervallo non può essere negativo" diff --git a/addons/base_calendar/i18n/ja.po b/addons/base_calendar/i18n/ja.po index 6369f967175..69933772b1e 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "終了" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "エラー" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "警告" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "イベントアラーム情報" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "拒否済" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "平日" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/ln.po b/addons/base_calendar/i18n/ln.po index dc7f0dad24f..eadd97fc234 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/lt.po b/addons/base_calendar/i18n/lt.po index eb3db124633..0d78573101f 100644 --- a/addons/base_calendar/i18n/lt.po +++ b/addons/base_calendar/i18n/lt.po @@ -9,19 +9,19 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 18:21+0000\n" -"Last-Translator: Paulius Sladkevičius \n" +"Last-Translator: Paulius Sladkevičius @ hbee \n" "Language-Team: Lithuanian \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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 #: selection:res.alarm,trigger_related:0 msgid "The event starts" -msgstr "" +msgstr "Įvykio pradžia" #. module: base_calendar #: view:calendar.event:0 @@ -36,13 +36,15 @@ msgid "" "This property defines the list of date/time exceptions for a recurring " "calendar component." msgstr "" +"Šis nustatymas apibrėžia sąrašą datų/laikų išimčių pasikartojantiems " +"įvykiams kalendoriuje." #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Week(s)" -msgstr "" +msgstr "Savaitė (-ės)" #. module: base_calendar #: field:calendar.event,we:0 @@ -61,12 +63,12 @@ msgstr "" #: help:calendar.todo,recurrency:0 #: help:crm.meeting,recurrency:0 msgid "Recurrent Meeting" -msgstr "" +msgstr "Pasikartojantis susitikimas" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet5 msgid "Feedback Meeting" -msgstr "" +msgstr "Susitikimas dėl atsakymo" #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view @@ -90,7 +92,7 @@ msgstr "Vaidmuo" #: view:calendar.event:0 #: view:crm.meeting:0 msgid "Invitation details" -msgstr "" +msgstr "Pakvietimo informacija" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -143,7 +145,7 @@ msgstr "" #: view:crm.meeting:0 #: field:crm.meeting,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Neperžiūrėtos žinutės" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -157,7 +159,7 @@ msgstr "Penktadienis" #: field:calendar.todo,allday:0 #: field:crm.meeting,allday:0 msgid "All Day" -msgstr "Visa diena" +msgstr "Visą dieną" #. module: base_calendar #: field:calendar.event,vtimezone:0 @@ -177,7 +179,7 @@ msgstr "Laisva" #. module: base_calendar #: help:crm.meeting,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Jeigu pažymėta, naujos žinutės reikalaus jūsų dėmesio." #. module: base_calendar #: help:calendar.attendee,rsvp:0 @@ -217,7 +219,7 @@ msgstr "Trečias" #: selection:calendar.alarm,trigger_related:0 #: selection:res.alarm,trigger_related:0 msgid "The event ends" -msgstr "" +msgstr "Įvykio pabaiga" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -229,12 +231,12 @@ msgstr "Paskutinis" #. module: base_calendar #: help:crm.meeting,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Žinučių ir pranešimų istorija" #. module: base_calendar #: field:crm.meeting,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Pranešimai" #. module: base_calendar #: selection:calendar.alarm,trigger_interval:0 @@ -245,10 +247,10 @@ msgstr "Dienos" #. module: base_calendar #: view:calendar.event:0 msgid "To" -msgstr "" +msgstr "Iki" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Klaida!" @@ -256,12 +258,12 @@ msgstr "Klaida!" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Chair Person" -msgstr "" +msgstr "Pirmininkas" #. module: base_calendar #: view:crm.meeting:0 msgid "My Meetings" -msgstr "" +msgstr "Mano susitikimai" #. module: base_calendar #: selection:calendar.alarm,action:0 @@ -300,17 +302,17 @@ msgstr "" #. module: base_calendar #: view:crm.meeting:0 msgid "Mail To" -msgstr "" +msgstr "Siųsti kam" #. module: base_calendar #: field:crm.meeting,name:0 msgid "Meeting Subject" -msgstr "" +msgstr "Susitikimo tema" #. module: base_calendar #: view:calendar.event:0 msgid "End of Recurrence" -msgstr "" +msgstr "Pasikartojimo pabaiga" #. module: base_calendar #: view:calendar.event:0 @@ -320,7 +322,7 @@ msgstr "Grupuoti pagal..." #. module: base_calendar #: view:calendar.event:0 msgid "Recurrency Option" -msgstr "" +msgstr "Pasikartojimo parinktys" #. module: base_calendar #: view:calendar.event:0 @@ -331,7 +333,7 @@ msgstr "" #: view:crm.meeting:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting msgid "Meetings" -msgstr "" +msgstr "Susitikimai" #. module: base_calendar #: field:calendar.event,recurrent_id_date:0 @@ -349,7 +351,7 @@ msgstr "" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Optional Participation" -msgstr "" +msgstr "Nebūtinas dalyvavimas" #. module: base_calendar #: help:crm.meeting,message_summary:0 @@ -357,13 +359,15 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Saugo pokalbių suvestinę (žinučių skaičius, ...). Ši apžvalga saugoma html " +"formatu, kad būtų galima įterpti į kanban rodinius." #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Įspėjimas!" @@ -376,6 +380,8 @@ msgid "" "If the active field is set to true, it will allow you to hide the " "event alarm information without removing it." msgstr "" +"Nebenaudojama įvykių priminimų informacija gali būti paslėpta, vietoj to, " +"kad būtų pašalinta." #. module: base_calendar #: field:calendar.alarm,repeat:0 @@ -402,7 +408,7 @@ msgstr "Organizatorius" #: field:calendar.todo,user_id:0 #: field:crm.meeting,user_id:0 msgid "Responsible" -msgstr "Atsakingas" +msgstr "Atsakingas asmuo" #. module: base_calendar #: view:calendar.event:0 @@ -461,7 +467,7 @@ msgstr "" #. module: base_calendar #: view:res.alarm:0 msgid "Reminder details" -msgstr "" +msgstr "Priminimo nustatymai" #. module: base_calendar #: field:calendar.attendee,parent_ids:0 @@ -473,12 +479,12 @@ msgstr "" #: selection:calendar.todo,select1:0 #: selection:crm.meeting,select1:0 msgid "Day of month" -msgstr "" +msgstr "Mėnesio diena" #. module: base_calendar #: field:crm.meeting,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Prenumeratoriai" #. module: base_calendar #: field:calendar.event,location:0 @@ -490,7 +496,7 @@ msgstr "Vieta" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Participation required" -msgstr "" +msgstr "Būtinas dalyvavimas" #. module: base_calendar #: view:calendar.event:0 @@ -522,7 +528,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -530,21 +536,21 @@ msgstr "" #. module: base_calendar #: field:crm.meeting,create_date:0 msgid "Creation Date" -msgstr "" +msgstr "Sukūrimo data" #. module: base_calendar #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting msgid "Meeting" -msgstr "" +msgstr "Susitikimas" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Month(s)" -msgstr "" +msgstr "Mėnesis (-iai)" #. module: base_calendar #: view:calendar.event:0 @@ -590,7 +596,7 @@ msgstr "Ket." #. module: base_calendar #: view:crm.meeting:0 msgid "Meeting Details" -msgstr "" +msgstr "Susitikimo informacija" #. module: base_calendar #: field:calendar.attendee,child_ids:0 @@ -608,14 +614,14 @@ msgstr "" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Year(s)" -msgstr "" +msgstr "Metai" #. module: base_calendar #: view:crm.meeting.type:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting_type #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_type msgid "Meeting Types" -msgstr "" +msgstr "Susitikimo tipai" #. module: base_calendar #: field:calendar.event,create_date:0 @@ -628,7 +634,7 @@ msgstr "Sukurtas" #: selection:calendar.todo,class:0 #: selection:crm.meeting,class:0 msgid "Public for Employees" -msgstr "" +msgstr "Viešas darbuotojams" #. module: base_calendar #: view:crm.meeting:0 @@ -650,12 +656,12 @@ msgstr "Kalba" #: field:calendar.todo,end_date:0 #: field:crm.meeting,end_date:0 msgid "Repeat Until" -msgstr "" +msgstr "Kartoti iki" #. module: base_calendar #: view:crm.meeting:0 msgid "Options" -msgstr "" +msgstr "Pasirinkimai" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -694,7 +700,7 @@ msgstr "Antradienis" #. module: base_calendar #: field:crm.meeting,categ_ids:0 msgid "Tags" -msgstr "" +msgstr "Žymos" #. module: base_calendar #: view:calendar.event:0 @@ -711,7 +717,7 @@ msgstr "Asmeninis" #: help:calendar.todo,count:0 #: help:crm.meeting,count:0 msgid "Repeat x times" -msgstr "Kartoti x kartų" +msgstr "Kiek kartų kartoti" #. module: base_calendar #: field:calendar.alarm,user_id:0 @@ -723,12 +729,12 @@ msgstr "Savininkas" #: help:calendar.todo,rrule_type:0 #: help:crm.meeting,rrule_type:0 msgid "Let the event automatically repeat at that interval" -msgstr "" +msgstr "Nustatykite įvykiui intervalą, kada būtų automatiškai pakartojamas" #. module: base_calendar #: model:ir.ui.menu,name:base_calendar.mail_menu_calendar msgid "Calendar" -msgstr "" +msgstr "Kalendorius" #. module: base_calendar #: field:calendar.attendee,cn:0 @@ -741,7 +747,7 @@ msgid "Declined" msgstr "Atsisakyta" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -770,7 +776,7 @@ msgstr "Privatus" #: field:calendar.todo,class:0 #: field:crm.meeting,class:0 msgid "Privacy" -msgstr "Privatumas" +msgstr "Slaptumas" #. module: base_calendar #: model:ir.model,name:base_calendar.model_res_alarm @@ -787,7 +793,7 @@ msgstr "Pen." #. module: base_calendar #: view:calendar.event:0 msgid "Invitation Detail" -msgstr "" +msgstr "Pakvietimo informacija" #. module: base_calendar #: field:calendar.attendee,member:0 @@ -806,7 +812,7 @@ msgstr "Įvykio vieta" #: field:calendar.todo,rrule:0 #: field:crm.meeting,rrule:0 msgid "Recurrent Rule" -msgstr "" +msgstr "Pasikartojimo taisyklė" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -821,12 +827,12 @@ msgstr "Priedas" #. module: base_calendar #: field:crm.meeting,date_closed:0 msgid "Closed" -msgstr "" +msgstr "Uždaryta" #. module: base_calendar #: view:calendar.event:0 msgid "From" -msgstr "" +msgstr "Nuo" #. module: base_calendar #: view:calendar.event:0 @@ -841,12 +847,12 @@ msgstr "Priminimas" #: selection:calendar.todo,end_type:0 #: selection:crm.meeting,end_type:0 msgid "Number of repetitions" -msgstr "" +msgstr "Pakartojimų skaičius" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet2 msgid "Internal Meeting" -msgstr "" +msgstr "Vidinis susitikimas" #. module: base_calendar #: view:calendar.event:0 @@ -863,17 +869,17 @@ msgstr "Įvykiai" #: field:calendar.todo,state:0 #: field:crm.meeting,state:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: base_calendar #: help:calendar.attendee,email:0 msgid "Email of Invited Person" -msgstr "" +msgstr "Pakviesto asmens el. paštas" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet1 msgid "Customer Meeting" -msgstr "" +msgstr "Susitikimas su pirkėju" #. module: base_calendar #: help:calendar.attendee,dir:0 @@ -899,12 +905,12 @@ msgstr "Pirmadienis" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet4 msgid "Open Discussion" -msgstr "" +msgstr "Atvira diskusija" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_model msgid "Models" -msgstr "" +msgstr "Modeliai" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -918,12 +924,12 @@ msgstr "Birželis" #: field:calendar.attendee,event_date:0 #: view:calendar.event:0 msgid "Event Date" -msgstr "" +msgstr "Įvykio data" #. module: base_calendar #: view:crm.meeting:0 msgid "Invitations" -msgstr "" +msgstr "Pakvietimai" #. module: base_calendar #: view:calendar.event:0 @@ -934,7 +940,7 @@ msgstr "" #. module: base_calendar #: field:crm.meeting,write_date:0 msgid "Write Date" -msgstr "" +msgstr "Įrašymo data" #. module: base_calendar #: field:calendar.attendee,delegated_from:0 @@ -944,7 +950,7 @@ msgstr "" #. module: base_calendar #: field:crm.meeting,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Ar prenumeratorius" #. module: base_calendar #: field:calendar.attendee,user_id:0 @@ -996,7 +1002,7 @@ msgstr "Spalis" #: selection:calendar.todo,state:0 #: view:crm.meeting:0 msgid "Uncertain" -msgstr "" +msgstr "Neaiškus" #. module: base_calendar #: constraint:calendar.event:0 @@ -1009,7 +1015,7 @@ msgstr "" #: field:calendar.alarm,trigger_occurs:0 #: field:res.alarm,trigger_occurs:0 msgid "Triggers" -msgstr "" +msgstr "Įvykdymas" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1022,7 +1028,7 @@ msgstr "Sausis" #: field:calendar.alarm,trigger_related:0 #: field:res.alarm,trigger_related:0 msgid "Related to" -msgstr "Susijęs su" +msgstr "Susietas su" #. module: base_calendar #: field:calendar.alarm,trigger_interval:0 @@ -1080,7 +1086,7 @@ msgstr "" #. module: base_calendar #: help:calendar.attendee,role:0 msgid "Participation role for the calendar user" -msgstr "" +msgstr "Pakviesto asmens vaidmuo susitikime" #. module: base_calendar #: field:calendar.attendee,delegated_to:0 @@ -1095,14 +1101,14 @@ msgstr "" #. module: base_calendar #: view:crm.meeting:0 msgid "Starting at" -msgstr "" +msgstr "Pradžia" #. module: base_calendar #: selection:calendar.event,end_type:0 #: selection:calendar.todo,end_type:0 #: selection:crm.meeting,end_type:0 msgid "End date" -msgstr "" +msgstr "Pabaigos data" #. module: base_calendar #: view:calendar.event:0 @@ -1116,28 +1122,30 @@ msgid "" "If the active field is set to true, it will allow you to hide the event " "alarm information without removing it." msgstr "" +"Nebenaudojama įvykių priminimų informacija gali būti paslėpta, vietoj to, " +"kad būtų pašalinta." #. module: base_calendar #: field:calendar.event,end_type:0 #: field:calendar.todo,end_type:0 #: field:crm.meeting,end_type:0 msgid "Recurrence Termination" -msgstr "" +msgstr "Pasikartojimo nutraukimas" #. module: base_calendar #: view:crm.meeting:0 msgid "Until" -msgstr "" +msgstr "Iki" #. module: base_calendar #: view:res.alarm:0 msgid "Reminder Details" -msgstr "" +msgstr "Priminimo nustatymai" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet3 msgid "Off-site Meeting" -msgstr "" +msgstr "Komandiruotė" #. module: base_calendar #: view:crm.meeting:0 @@ -1154,12 +1162,12 @@ msgstr "Atlikta" #: help:calendar.todo,interval:0 #: help:crm.meeting,interval:0 msgid "Repeat every (Days/Week/Month/Year)" -msgstr "" +msgstr "Kartoti kas (Dieną/Savaitę/Mėnesį/Metus)" #. module: base_calendar #: view:crm.meeting:0 msgid "All Day?" -msgstr "" +msgstr "Visą dieną?" #. module: base_calendar #: view:calendar.event:0 @@ -1180,6 +1188,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Paspauskite, kad suplanuotumėte susitikimą.\n" +"

\n" +" Kalendoriumi galima dalinti su darbuotojais. Taip pat jis pilnai " +"intergruojamas\n" +" su kitais moduliais kaip darbuotojų atostogų ar CRM moduliai.\n" +"

\n" +" " #. module: base_calendar #: help:calendar.alarm,description:0 @@ -1200,7 +1216,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1219,14 +1235,14 @@ msgstr "Kalendoriaus įvykis" #: field:calendar.todo,recurrency:0 #: field:crm.meeting,recurrency:0 msgid "Recurrent" -msgstr "" +msgstr "Pasikartojantis" #. module: base_calendar #: field:calendar.event,rrule_type:0 #: field:calendar.todo,rrule_type:0 #: field:crm.meeting,rrule_type:0 msgid "Recurrency" -msgstr "" +msgstr "Pasikartojimas" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -1240,7 +1256,7 @@ msgstr "Ketvirtadienis" #: field:calendar.todo,exrule:0 #: field:crm.meeting,exrule:0 msgid "Exception Rule" -msgstr "" +msgstr "Išimtinė taisyklė" #. module: base_calendar #: help:calendar.attendee,language:0 @@ -1261,6 +1277,8 @@ msgid "" "Defines a rule or repeating pattern of time to exclude from the recurring " "rule." msgstr "" +"Nustatoma taisyklė ar laiko pasikartojimo išraiška tam, kad nenaudoti " +"pasikartojimo taisyklėje." #. module: base_calendar #: field:calendar.event,month_list:0 @@ -1274,12 +1292,12 @@ msgstr "Mėnuo" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Day(s)" -msgstr "" +msgstr "Diena (-os)" #. module: base_calendar #: view:calendar.event:0 msgid "Confirmed Events" -msgstr "" +msgstr "Patvirtinti įvykiai" #. module: base_calendar #: field:calendar.attendee,dir:0 @@ -1323,7 +1341,7 @@ msgstr "" #. module: base_calendar #: view:crm.meeting:0 msgid "Search Meetings" -msgstr "" +msgstr "Susitikimų paieška" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_attachment @@ -1333,7 +1351,7 @@ msgstr "" #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" -msgstr "" +msgstr "Susitikimo tipai" #. module: base_calendar #: selection:calendar.attendee,state:0 @@ -1359,11 +1377,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad įvestumėte naują perspėjimo tipą.\n" +"

\n" +" Jūs galite įvesti papildomus įvykių perspėjimo tipus, kurie " +"gali būti\n" +" priskirti prie kalendoriaus įvykių ar susitikimų.\n" +"

\n" +" " #. module: base_calendar #: selection:crm.meeting,state:0 msgid "Unconfirmed" -msgstr "" +msgstr "Nepatvirtintas" #. module: base_calendar #: help:calendar.attendee,sent_by:0 @@ -1401,7 +1427,7 @@ msgstr "Pavadinimas" #: field:calendar.todo,exdate:0 #: field:crm.meeting,exdate:0 msgid "Exception Date/Times" -msgstr "" +msgstr "Išimtinė (-is) data/laikas" #. module: base_calendar #: help:calendar.alarm,name:0 @@ -1413,7 +1439,7 @@ msgstr "" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_message msgid "Message" -msgstr "" +msgstr "Pranešimas" #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 @@ -1443,7 +1469,7 @@ msgstr "" #. module: base_calendar #: view:calendar.event:0 msgid "Recurrency period" -msgstr "" +msgstr "Pasikartojimo periodas" #. module: base_calendar #: field:calendar.event,week_list:0 @@ -1453,7 +1479,7 @@ msgid "Weekday" msgstr "Savaitės diena" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" @@ -1491,7 +1517,7 @@ msgstr "ID" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "For information Purpose" -msgstr "" +msgstr "Informacinio pobūdžio" #. module: base_calendar #: field:calendar.event,select1:0 @@ -1532,7 +1558,7 @@ msgstr "Seka" #: 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 "Nustatykite priminimą šiuo laikui, prieš įvykstant įvykiui" #. module: base_calendar #: view:calendar.event:0 @@ -1552,7 +1578,7 @@ msgstr "Šeštadienis" #: field:calendar.todo,interval:0 #: field:crm.meeting,interval:0 msgid "Repeat Every" -msgstr "" +msgstr "Kartoti kas" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -1576,12 +1602,12 @@ msgstr "Laisvas/Užimtas" #: field:res.alarm,duration:0 #: field:res.alarm,trigger_duration:0 msgid "Duration" -msgstr "Trukmė" +msgstr "Laikotarpis" #. module: base_calendar #: field:calendar.alarm,trigger_date:0 msgid "Trigger Date" -msgstr "Įvykio data" +msgstr "Iššaukimo data" #. module: base_calendar #: help:calendar.alarm,attach:0 @@ -1659,9 +1685,6 @@ msgstr "Penktas" #~ msgid "Mark as" #~ msgstr "Pažymėti kaip" -#~ msgid "_Save" -#~ msgstr "Iš_saugoti" - #~ msgid "My Role" #~ msgstr "Mano vaidmuo" @@ -1715,3 +1738,6 @@ msgstr "Penktas" #~ msgid "Invite" #~ msgstr "Pakviesti" + +#~ msgid "_Save" +#~ msgstr "Į_rašyti" diff --git a/addons/base_calendar/i18n/lv.po b/addons/base_calendar/i18n/lv.po index 8d75aecaafe..b88cce82087 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Kļūda!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Uzmanību!" @@ -524,7 +524,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -743,7 +743,7 @@ msgid "Declined" msgstr "Noraidīts" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1202,7 +1202,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1457,7 +1457,7 @@ msgid "Weekday" msgstr "Nedēļas diena" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/mk.po b/addons/base_calendar/i18n/mk.po index 8a4c535cc76..28e91a010e6 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -36,6 +36,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 +63,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 @@ -112,7 +114,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 @@ -192,7 +194,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 @@ -248,7 +250,7 @@ msgid "To" msgstr "До" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Грешка!" @@ -256,7 +258,7 @@ msgstr "Грешка!" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Chair Person" -msgstr "" +msgstr "Претседател" #. module: base_calendar #: view:crm.meeting:0 @@ -273,7 +275,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 @@ -310,7 +312,7 @@ msgstr "Тема на состанокот" #. module: base_calendar #: view:calendar.event:0 msgid "End of Recurrence" -msgstr "" +msgstr "Крај на повторливоста" #. module: base_calendar #: view:calendar.event:0 @@ -325,7 +327,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 @@ -349,7 +351,7 @@ msgstr "Датум на завршување" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Optional Participation" -msgstr "" +msgstr "Опционо учество" #. module: base_calendar #: help:crm.meeting,message_summary:0 @@ -363,9 +365,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Внимание!" @@ -378,6 +380,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 @@ -446,7 +450,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 @@ -468,7 +472,7 @@ msgstr "Детали за потсетникот" #. module: base_calendar #: field:calendar.attendee,parent_ids:0 msgid "Delegrated From" -msgstr "" +msgstr "Делегирано од" #. module: base_calendar #: selection:calendar.event,select1:0 @@ -521,10 +525,10 @@ 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 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Бројот не може да биде негативен или 0." @@ -556,7 +560,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 @@ -725,7 +729,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 @@ -743,10 +747,11 @@ msgid "Declined" msgstr "Одбиено" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" +"Групирање по датум не е поддржано, наместо тоа употребете календарски приказ." #. module: base_calendar #: view:calendar.event:0 @@ -870,7 +875,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 +936,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 +980,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 +1003,7 @@ msgstr "Октомври" #: selection:calendar.todo,state:0 #: view:crm.meeting:0 msgid "Uncertain" -msgstr "" +msgstr "Неизвесно" #. module: base_calendar #: constraint:calendar.event:0 @@ -1059,7 +1064,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 +1083,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 +1100,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 +1126,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 @@ -1197,6 +1207,8 @@ msgid "" "calendar component, than that provided by the " "\"SUMMARY\" property" msgstr "" +"Дава покомплетен опис на календарската " +"компонента, од онаа дадена во \"РЕЗИМЕ\"" #. module: base_calendar #: view:calendar.event:0 @@ -1209,7 +1221,7 @@ msgid "Select Weekdays" msgstr "Избери работни денови" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1293,7 +1305,7 @@ msgstr "Потврдени настани" #. module: base_calendar #: field:calendar.attendee,dir:0 msgid "URI Reference" -msgstr "" +msgstr "URI Референца" #. module: base_calendar #: field:calendar.alarm,description:0 @@ -1379,12 +1391,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 @@ -1417,7 +1429,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 @@ -1425,6 +1437,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 @@ -1441,7 +1455,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 @@ -1466,10 +1480,10 @@ 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 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Интервалот не може да биде негативен" @@ -1524,7 +1538,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 @@ -1548,7 +1562,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 @@ -1597,7 +1611,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_calendar/i18n/mn.po b/addons/base_calendar/i18n/mn.po index 18740a2b427..7f35ade4419 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -251,7 +251,7 @@ msgid "To" msgstr "Хэнд" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Алдаа!" @@ -366,9 +366,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Сануулга!" @@ -529,7 +529,7 @@ msgid "Event alarm information" msgstr "Үйл явдлын мэдээлэл" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "тооллого 0" @@ -748,7 +748,7 @@ msgid "Declined" msgstr "Буурсан" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1222,7 +1222,7 @@ msgid "Select Weekdays" msgstr "Гарагуудыг сонгох" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1484,7 +1484,7 @@ msgid "Weekday" msgstr "Ажлын өдөр" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Интервал нь сөрөг байж болохгүй" diff --git a/addons/base_calendar/i18n/nb.po b/addons/base_calendar/i18n/nb.po index 942c89bd975..d8c2e9723ba 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Til." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Feil!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Advarsel!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Arrangement alarm informasjon." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Teller kan ikke være negativ eller 0." @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Avslått." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "Gruppe etter dato støttes ikke, bruk kalenderens visning i stedet." @@ -1204,7 +1204,7 @@ msgid "Select Weekdays" msgstr "Velg Hverdager." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1459,7 +1459,7 @@ msgid "Weekday" msgstr "Hverdag." #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Intervall kan ikke være negativ." diff --git a/addons/base_calendar/i18n/nl.po b/addons/base_calendar/i18n/nl.po index 92d515880d9..0a8f96c1f2a 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -51,7 +51,7 @@ msgstr "We(e)k(en)" #: field:calendar.todo,we:0 #: field:crm.meeting,we:0 msgid "Wed" -msgstr "woe" +msgstr "Woe" #. module: base_calendar #: selection:calendar.attendee,cutype:0 @@ -81,7 +81,7 @@ msgstr "Herinneringen" #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Sunday" -msgstr "zondag" +msgstr "Zondag" #. module: base_calendar #: field:calendar.attendee,role:0 @@ -134,7 +134,7 @@ msgstr "Uren" #: selection:calendar.todo,month_list:0 #: selection:crm.meeting,month_list:0 msgid "March" -msgstr "maart" +msgstr "Maart" #. module: base_calendar #: help:calendar.attendee,cutype:0 @@ -152,7 +152,7 @@ msgstr "Ongelezen berichten" #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Friday" -msgstr "vrijdag" +msgstr "Vrijdag" #. module: base_calendar #: field:calendar.event,allday:0 @@ -206,7 +206,7 @@ msgstr "Referentie" #: field:calendar.todo,tu:0 #: field:crm.meeting,tu:0 msgid "Tue" -msgstr "din" +msgstr "Din" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Aan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Fout!" @@ -366,9 +366,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Waarschuwing!" @@ -401,7 +401,7 @@ msgstr "Herhaal" #: field:crm.meeting,organizer:0 #: field:crm.meeting,organizer_id:0 msgid "Organizer" -msgstr "Organisator" +msgstr "Agenda" #. module: base_calendar #: view:calendar.event:0 @@ -458,7 +458,7 @@ msgstr "Kalender-taak" #: field:calendar.todo,su:0 #: field:crm.meeting,su:0 msgid "Sun" -msgstr "zon" +msgstr "Zon" #. module: base_calendar #: field:calendar.attendee,cutype:0 @@ -529,7 +529,7 @@ msgid "Event alarm information" msgstr "Alarminformatie gebeurtenis" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "telling mag niet negatief of nul zijn." @@ -592,12 +592,12 @@ msgstr "Geaccepteerd" #: field:calendar.todo,th:0 #: field:crm.meeting,th:0 msgid "Thu" -msgstr "don" +msgstr "Don" #. module: base_calendar #: view:crm.meeting:0 msgid "Meeting Details" -msgstr "Afspraak tdetails" +msgstr "Afspraak details" #. module: base_calendar #: field:calendar.attendee,child_ids:0 @@ -748,7 +748,7 @@ msgid "Declined" msgstr "Geweigerd" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1221,10 +1221,10 @@ msgstr "Verantwoordelijke gebruiker" #. module: base_calendar #: view:crm.meeting:0 msgid "Select Weekdays" -msgstr "Selecteer dagen van de qweek" +msgstr "Selecteer dagen van de week" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1475,7 +1475,7 @@ msgstr "April" #: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" -msgstr "E-mail adressen neit gevonden" +msgstr "E-mail adressen niet gevonden" #. module: base_calendar #: view:calendar.event:0 @@ -1490,7 +1490,7 @@ msgid "Weekday" msgstr "Weekdag" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Interval mag niet negatief zijn." diff --git a/addons/base_calendar/i18n/pl.po b/addons/base_calendar/i18n/pl.po index bd353595ad3..ed9e402c04b 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Do" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Błąd!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Uwaga!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Informacja alarmu zdarzenia" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Licznik nie może być 0" @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Odrzucono" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "Grupowanie po dacie nie jest dostępne. Stosuj widok kalendarzowy." @@ -1216,7 +1216,7 @@ msgid "Select Weekdays" msgstr "Wybierz dni tygodnia" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1479,7 +1479,7 @@ msgid "Weekday" msgstr "Dzień tygodnia" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Interwał nie może być ujemny." diff --git a/addons/base_calendar/i18n/pt.po b/addons/base_calendar/i18n/pt.po index 1745e13bfeb..e02663ce22d 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Erro!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Atenção!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Informações do alarme do evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Negado" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1209,10 +1209,10 @@ msgstr "Utilizador responsável" #. module: base_calendar #: view:crm.meeting:0 msgid "Select Weekdays" -msgstr "" +msgstr "Escolha dias da semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1471,7 +1471,7 @@ msgid "Weekday" msgstr "Dia de semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/pt_BR.po b/addons/base_calendar/i18n/pt_BR.po index 3b92e352a81..45725488e48 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -251,7 +251,7 @@ msgid "To" msgstr "Para" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Erro!" @@ -367,9 +367,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Aviso!" @@ -530,7 +530,7 @@ msgid "Event alarm information" msgstr "Informações do Alarme de Evento" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "Contador não pode ser negativo ou 0." @@ -749,7 +749,7 @@ msgid "Declined" msgstr "Recusado" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1227,7 +1227,7 @@ msgid "Select Weekdays" msgstr "Selecione dias da semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1495,7 +1495,7 @@ msgid "Weekday" msgstr "Dia da semana" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "O intervalo não pode ser negativo" diff --git a/addons/base_calendar/i18n/ro.po b/addons/base_calendar/i18n/ro.po index 2efd7dcfa18..17ca383e870 100644 --- a/addons/base_calendar/i18n/ro.po +++ b/addons/base_calendar/i18n/ro.po @@ -14,14 +14,14 @@ msgstr "" "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 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 #: selection:res.alarm,trigger_related:0 msgid "The event starts" -msgstr "Incepe evenimentul" +msgstr "Începe evenimentul" #. module: base_calendar #: view:calendar.event:0 @@ -36,15 +36,15 @@ msgid "" "This property defines the list of date/time exceptions for a recurring " "calendar component." msgstr "" -"Aceasta proprietate defineste lista exceptiilor datii/timpului pentru o " -"componenta recurenta a calendarului." +"Această proprietate definește lista excepțiilor datei/timpului pentru o " +"componenta recurentă a calendarului." #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Week(s)" -msgstr "Saptamani" +msgstr "Săptămâni" #. module: base_calendar #: field:calendar.event,we:0 @@ -56,19 +56,19 @@ msgstr "Miercuri" #. module: base_calendar #: selection:calendar.attendee,cutype:0 msgid "Unknown" -msgstr "Necunoscut(a)" +msgstr "Necunoscut(ă)" #. module: base_calendar #: help:calendar.event,recurrency:0 #: help:calendar.todo,recurrency:0 #: help:crm.meeting,recurrency:0 msgid "Recurrent Meeting" -msgstr "Intalnire recurenta" +msgstr "Întalnire recurentă" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet5 msgid "Feedback Meeting" -msgstr "Feedback Intalnire" +msgstr "Feedback întalnire" #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view @@ -81,7 +81,7 @@ msgstr "Alarme" #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Sunday" -msgstr "Duminica" +msgstr "Duminică" #. module: base_calendar #: field:calendar.attendee,role:0 @@ -92,7 +92,7 @@ msgstr "Rol" #: view:calendar.event:0 #: view:crm.meeting:0 msgid "Invitation details" -msgstr "Detalii invitatie" +msgstr "Detalii invitație" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -114,7 +114,7 @@ msgstr "Utilizatori" #: field:crm.meeting,day:0 #: selection:crm.meeting,select1:0 msgid "Date of month" -msgstr "Data din luna" +msgstr "Dată din lună" #. module: base_calendar #: selection:calendar.event,class:0 @@ -139,13 +139,13 @@ msgstr "Martie" #. module: base_calendar #: help:calendar.attendee,cutype:0 msgid "Specify the type of Invitation" -msgstr "Specifica tipul Invitatiei" +msgstr "Specifică tipul invitației" #. module: base_calendar #: view:crm.meeting:0 #: field:crm.meeting,message_unread:0 msgid "Unread Messages" -msgstr "Mesaje Necitite" +msgstr "Mesaje necitite" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -159,7 +159,7 @@ msgstr "Vineri" #: field:calendar.todo,allday:0 #: field:crm.meeting,allday:0 msgid "All Day" -msgstr "Toata ziua" +msgstr "Toată ziua" #. module: base_calendar #: field:calendar.event,vtimezone:0 @@ -174,17 +174,17 @@ msgstr "Fus orar" #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 msgid "Free" -msgstr "Gratuit" +msgstr "Liber" #. module: base_calendar #: help:crm.meeting,message_unread:0 msgid "If checked new messages require your attention." -msgstr "Daca este selectat, mesajele noi necesita atentia dumneavoastra." +msgstr "Dacă este selectat, mesajele noi necesită atenția dumneavoastră." #. module: base_calendar #: help:calendar.attendee,rsvp:0 msgid "Indicats whether the favor of a reply is requested" -msgstr "Indica daca este obligatoriu un raspuns" +msgstr "Indică dacă este obligatoriu un raspuns" #. module: base_calendar #: field:calendar.alarm,alarm_id:0 @@ -194,7 +194,7 @@ msgstr "Alarma de baza" #. module: base_calendar #: help:calendar.attendee,delegated_to:0 msgid "The users that the original request was delegated to" -msgstr "Utilizatorii carora le-a fost delegata cererea originala" +msgstr "Utilizatorii cărora le-a fost delegată cererea originală" #. module: base_calendar #: field:calendar.attendee,ref:0 @@ -206,7 +206,7 @@ msgstr "Ref eveniment" #: field:calendar.todo,tu:0 #: field:crm.meeting,tu:0 msgid "Tue" -msgstr "Marti" +msgstr "Marți" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -219,7 +219,7 @@ msgstr "Al treilea (a treia)" #: selection:calendar.alarm,trigger_related:0 #: selection:res.alarm,trigger_related:0 msgid "The event ends" -msgstr "Evenimentul se incheie" +msgstr "Evenimentul se încheie" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -231,7 +231,7 @@ msgstr "Ultimul/a" #. module: base_calendar #: help:crm.meeting,message_ids:0 msgid "Messages and communication history" -msgstr "Istoric mesaje si conversatii" +msgstr "Istoric mesaje și conversații" #. module: base_calendar #: field:crm.meeting,message_ids:0 @@ -247,10 +247,10 @@ msgstr "Zile" #. module: base_calendar #: view:calendar.event:0 msgid "To" -msgstr "Catre" +msgstr "Către" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Eroare!" @@ -258,12 +258,12 @@ msgstr "Eroare!" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Chair Person" -msgstr "Presedinte" +msgstr "Președinte" #. module: base_calendar #: view:crm.meeting:0 msgid "My Meetings" -msgstr "Intalnirile mele" +msgstr "Întâlnirile mele" #. module: base_calendar #: selection:calendar.alarm,action:0 @@ -281,7 +281,7 @@ msgstr "ID recurent" #: selection:calendar.event,state:0 #: selection:calendar.todo,state:0 msgid "Cancelled" -msgstr "Anulat(a)" +msgstr "Anulat(ă)" #. module: base_calendar #: selection:calendar.alarm,trigger_interval:0 @@ -292,7 +292,7 @@ msgstr "Minute" #. module: base_calendar #: selection:calendar.alarm,action:0 msgid "Display" -msgstr "Afiseaza" +msgstr "Afișează" #. module: base_calendar #: help:calendar.attendee,state:0 @@ -302,38 +302,38 @@ msgstr "Statusul participarii participantului" #. module: base_calendar #: view:crm.meeting:0 msgid "Mail To" -msgstr "E-mail catre" +msgstr "E-mail către" #. module: base_calendar #: field:crm.meeting,name:0 msgid "Meeting Subject" -msgstr "Subiectul Intalnirii" +msgstr "Subiectul întâlnirii" #. module: base_calendar #: view:calendar.event:0 msgid "End of Recurrence" -msgstr "Sfarsitul Recurentei" +msgstr "Sfârșitul Recurenței" #. module: base_calendar #: view:calendar.event:0 msgid "Group By..." -msgstr "Grupeaza dupa..." +msgstr "Grupează după..." #. module: base_calendar #: view:calendar.event:0 msgid "Recurrency Option" -msgstr "Optiune Recurenta" +msgstr "Opțiune Recurență" #. module: base_calendar #: view:calendar.event:0 msgid "Choose day where repeat the meeting" -msgstr "Alegeti ziua in care sa repetati intalnirea" +msgstr "Alegeți ziua în care să repetați întâlnirea" #. module: base_calendar #: view:crm.meeting:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting msgid "Meetings" -msgstr "Intalniri" +msgstr "Întâlniri" #. module: base_calendar #: field:calendar.event,recurrent_id_date:0 @@ -346,12 +346,12 @@ msgstr "Data ID-ului recurent" #: field:calendar.alarm,event_end_date:0 #: field:calendar.attendee,event_end_date:0 msgid "Event End Date" -msgstr "Data de sfarsit a evenimentului" +msgstr "Data de sfârșit a evenimentului" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Optional Participation" -msgstr "Participare Optionala" +msgstr "Participare Opțională" #. module: base_calendar #: help:crm.meeting,message_summary:0 @@ -359,15 +359,15 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" -"Contine rezumatul Chatter (numar de mesaje, ...). Acest rezumat este direct " -"in format HTML, icu scopul de a se introduce in vizualizari kanban." +"Conține rezumatul Chatter (număr de mesaje, ...). Acest rezumat este direct " +"în format HTML, cu scopul de a se introduce în vizualizări kanban." #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Avertizare!" @@ -380,8 +380,8 @@ msgid "" "If the active field is set to true, it will allow you to hide the " "event alarm information without removing it." msgstr "" -"Daca campul activ este setat pe adevarat, va va permite sa ascundeti " -"informatia despre alarma evenimentului fara a o sterge." +"Dacă câmpul activ este setat pe adevărat, vă va permite să ascundeți " +"informația despre alarma evenimentului fără a o șterge." #. module: base_calendar #: field:calendar.alarm,repeat:0 @@ -390,7 +390,7 @@ msgstr "" #: field:crm.meeting,count:0 #: field:res.alarm,repeat:0 msgid "Repeat" -msgstr "Repeta" +msgstr "Repetă" #. module: base_calendar #: field:calendar.event,organizer:0 @@ -420,7 +420,7 @@ msgstr "Eveniment" #: selection:calendar.alarm,trigger_occurs:0 #: selection:res.alarm,trigger_occurs:0 msgid "Before" -msgstr "Inainte" +msgstr "Înainte" #. module: base_calendar #: view:calendar.event:0 @@ -429,7 +429,7 @@ msgstr "Inainte" #: field:crm.meeting,date_open:0 #: selection:crm.meeting,state:0 msgid "Confirmed" -msgstr "Confirmat(a)" +msgstr "Confirmat(ă)" #. module: base_calendar #: field:calendar.alarm,attendee_ids:0 @@ -440,29 +440,29 @@ msgstr "Confirmat(a)" #: field:crm.meeting,attendee_ids:0 #: field:crm.meeting,partner_ids:0 msgid "Attendees" -msgstr "Participanti" +msgstr "Participanți" #. module: base_calendar #: view:calendar.event:0 msgid "Confirm" -msgstr "Confirma" +msgstr "Confirmă" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_todo msgid "Calendar Task" -msgstr "Sarcina Calendar" +msgstr "Sarcină Calendar" #. module: base_calendar #: field:calendar.event,su:0 #: field:calendar.todo,su:0 #: field:crm.meeting,su:0 msgid "Sun" -msgstr "Duminica" +msgstr "Duminică" #. module: base_calendar #: field:calendar.attendee,cutype:0 msgid "Invite Type" -msgstr "Tip invitatie" +msgstr "Tip invitație" #. module: base_calendar #: view:res.alarm:0 @@ -491,12 +491,12 @@ msgstr "Persoane interesate" #: field:calendar.todo,location:0 #: field:crm.meeting,location:0 msgid "Location" -msgstr "Locatie" +msgstr "Locație" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "Participation required" -msgstr "Este necesara participarea" +msgstr "Este necesară participarea" #. module: base_calendar #: view:calendar.event:0 @@ -504,7 +504,7 @@ msgstr "Este necesara participarea" #: field:calendar.todo,show_as:0 #: field:crm.meeting,show_as:0 msgid "Show Time as" -msgstr "Afiseaza timpul ca" +msgstr "Afișează timpul ca" #. module: base_calendar #: selection:calendar.alarm,action:0 @@ -520,37 +520,37 @@ msgstr "Camera" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Run" -msgstr "Executa" +msgstr "Execută" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_alarm msgid "Event alarm information" -msgstr "Informatii alarma eveniment" +msgstr "Informații alarmă eveniment" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." -msgstr "Valoarea nu poate fi negativa sau 0." +msgstr "Valoarea nu poate fi negativă sau 0." #. module: base_calendar #: field:crm.meeting,create_date:0 msgid "Creation Date" -msgstr "Data Crearii" +msgstr "Data creării" #. module: base_calendar #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting msgid "Meeting" -msgstr "Intalnire" +msgstr "Întâlnire" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Month(s)" -msgstr "Luna (luni)" +msgstr "Lună (luni)" #. module: base_calendar #: view:calendar.event:0 @@ -560,7 +560,7 @@ msgstr "Vizibilitate" #. module: base_calendar #: field:calendar.attendee,rsvp:0 msgid "Required Reply?" -msgstr "Necesita raspuns?" +msgstr "Necesită răspuns?" #. module: base_calendar #: field:calendar.event,base_calendar_url:0 @@ -572,7 +572,7 @@ msgstr "URL Caldav" #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_wizard_invite msgid "Invite wizard" -msgstr "Wizard Invitatie" +msgstr "Wizard invitație" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -584,7 +584,7 @@ msgstr "Iulie" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Accepted" -msgstr "Acceptat(a)" +msgstr "Acceptat(ă)" #. module: base_calendar #: field:calendar.event,th:0 @@ -596,7 +596,7 @@ msgstr "Joi" #. module: base_calendar #: view:crm.meeting:0 msgid "Meeting Details" -msgstr "Detaliile Intalnirii" +msgstr "Detaliile întâlnirii" #. module: base_calendar #: field:calendar.attendee,child_ids:0 @@ -607,7 +607,7 @@ msgstr "Delegat la" #: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" -msgstr "Urmatoarele contacte nu au adrese de email :" +msgstr "Următoarele contacte nu au adrese de email :" #. module: base_calendar #: selection:calendar.event,rrule_type:0 @@ -621,20 +621,20 @@ msgstr "An(i)" #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting_type #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_type msgid "Meeting Types" -msgstr "Tipuri de Intaliniri" +msgstr "Tipuri de întâliniri" #. module: base_calendar #: field:calendar.event,create_date:0 #: field:calendar.todo,create_date:0 msgid "Created" -msgstr "Creat(a)" +msgstr "Creat(ă)" #. module: base_calendar #: selection:calendar.event,class:0 #: selection:calendar.todo,class:0 #: selection:crm.meeting,class:0 msgid "Public for Employees" -msgstr "Public pentru Angajati" +msgstr "Public pentru Angajați" #. module: base_calendar #: view:crm.meeting:0 @@ -656,12 +656,12 @@ msgstr "Limba" #: field:calendar.todo,end_date:0 #: field:crm.meeting,end_date:0 msgid "Repeat Until" -msgstr "Repeta pana cand" +msgstr "Repetă până cand" #. module: base_calendar #: view:crm.meeting:0 msgid "Options" -msgstr "Optiuni" +msgstr "Opțiuni" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -695,7 +695,7 @@ msgstr "Decembrie" #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Tuesday" -msgstr "Marti" +msgstr "Marți" #. module: base_calendar #: field:crm.meeting,categ_ids:0 @@ -717,7 +717,7 @@ msgstr "Individual" #: help:calendar.todo,count:0 #: help:crm.meeting,count:0 msgid "Repeat x times" -msgstr "Repeta de x ori" +msgstr "Repetă de x ori" #. module: base_calendar #: field:calendar.alarm,user_id:0 @@ -729,7 +729,7 @@ msgstr "Proprietar" #: help:calendar.todo,rrule_type:0 #: help:crm.meeting,rrule_type:0 msgid "Let the event automatically repeat at that interval" -msgstr "Permite repetarea automata a evenimentului in acel interval" +msgstr "Permite repetarea automată a evenimentului în acel interval" #. module: base_calendar #: model:ir.ui.menu,name:base_calendar.mail_menu_calendar @@ -744,21 +744,21 @@ msgstr "Nume comun" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Declined" -msgstr "Refuzat(a)" +msgstr "Refuzat(ă)" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" -"Gruparea dupa data nu este acceptata, folositi in schimb vizualizarea " +"Gruparea după data nu este acceptată, folosiți în schimb vizualizarea " "calendar." #. module: base_calendar #: view:calendar.event:0 #: view:crm.meeting:0 msgid "Decline" -msgstr "Refuza" +msgstr "Refuză" #. module: base_calendar #: selection:calendar.attendee,cutype:0 @@ -778,12 +778,12 @@ msgstr "Privat" #: field:calendar.todo,class:0 #: field:crm.meeting,class:0 msgid "Privacy" -msgstr "Confidentialitate" +msgstr "Confidențialitate" #. module: base_calendar #: model:ir.model,name:base_calendar.model_res_alarm msgid "Basic Alarm Information" -msgstr "informatii de Baza Alarma" +msgstr "informații de Baza Alarma" #. module: base_calendar #: field:calendar.event,fr:0 @@ -795,7 +795,7 @@ msgstr "Vineri" #. module: base_calendar #: view:calendar.event:0 msgid "Invitation Detail" -msgstr "Detaliile invitatiei" +msgstr "Detaliile invitației" #. module: base_calendar #: field:calendar.attendee,member:0 @@ -807,29 +807,29 @@ msgstr "Membru" #: help:calendar.todo,location:0 #: help:crm.meeting,location:0 msgid "Location of Event" -msgstr "Locatia evenimentului" +msgstr "Locația evenimentului" #. module: base_calendar #: field:calendar.event,rrule:0 #: field:calendar.todo,rrule:0 #: field:crm.meeting,rrule:0 msgid "Recurrent Rule" -msgstr "Regula Recurenta" +msgstr "Regulă recurentă" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Draft" -msgstr "Ciorna" +msgstr "Ciornă" #. module: base_calendar #: field:calendar.alarm,attach:0 msgid "Attachment" -msgstr "Atasament" +msgstr "Atașament" #. module: base_calendar #: field:crm.meeting,date_closed:0 msgid "Closed" -msgstr "Inchis(a)" +msgstr "Închis(ă)" #. module: base_calendar #: view:calendar.event:0 @@ -849,12 +849,12 @@ msgstr "Memento" #: selection:calendar.todo,end_type:0 #: selection:crm.meeting,end_type:0 msgid "Number of repetitions" -msgstr "Numar de repetari" +msgstr "Număr de repetări" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet2 msgid "Internal Meeting" -msgstr "Intalnire Interna" +msgstr "Întalnire internă" #. module: base_calendar #: view:calendar.event:0 @@ -881,7 +881,7 @@ msgstr "Email-ul Persoanei Invitate" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet1 msgid "Customer Meeting" -msgstr "Intalnire Clienti" +msgstr "Întalnire Clienți" #. module: base_calendar #: help:calendar.attendee,dir:0 @@ -909,7 +909,7 @@ msgstr "Luni" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet4 msgid "Open Discussion" -msgstr "Deschide Discutia" +msgstr "Deschide Discuția" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_model @@ -933,7 +933,7 @@ msgstr "Data Evenimentului" #. module: base_calendar #: view:crm.meeting:0 msgid "Invitations" -msgstr "Invitatii" +msgstr "Invitații" #. module: base_calendar #: view:calendar.event:0 @@ -971,7 +971,7 @@ msgstr "Data" #. module: base_calendar #: view:calendar.event:0 msgid "Start Date" -msgstr "Data de inceput" +msgstr "Dată de început" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -983,7 +983,7 @@ msgstr "Noiembrie" #. module: base_calendar #: help:calendar.attendee,member:0 msgid "Indicate the groups that the attendee belongs to" -msgstr "Indica grupurile de care apartine participantul" +msgstr "Indică grupurile de care aparține participantul" #. module: base_calendar #: field:calendar.event,mo:0 @@ -1006,7 +1006,7 @@ msgstr "Octombrie" #: selection:calendar.todo,state:0 #: view:crm.meeting:0 msgid "Uncertain" -msgstr "Nesigur(a)" +msgstr "Nesigur(ă)" #. module: base_calendar #: constraint:calendar.event:0 @@ -1020,7 +1020,7 @@ msgstr "" #: field:calendar.alarm,trigger_occurs:0 #: field:res.alarm,trigger_occurs:0 msgid "Triggers" -msgstr "Declansatori" +msgstr "Declanșatori" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1062,23 +1062,23 @@ msgstr "Rezumat" #: field:crm.meeting,active:0 #: field:res.alarm,active:0 msgid "Active" -msgstr "Activ(a)" +msgstr "Activ(ă)" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #, python-format msgid "You cannot duplicate a calendar attendee." -msgstr "Nu puteti copia un participant in calendar." +msgstr "Nu puteți copia un participant în calendar." #. module: base_calendar #: view:calendar.event:0 msgid "Choose day in the month where repeat the meeting" -msgstr "Alegeti ziua din luna in care sa repetati intalnirea" +msgstr "Alegeți ziua din luna în care să repetați întalnirea" #. module: base_calendar #: field:calendar.alarm,action:0 msgid "Action" -msgstr "Actiune" +msgstr "Acțiune" #. module: base_calendar #: help:calendar.alarm,duration:0 @@ -1087,8 +1087,8 @@ msgid "" "Duration' and 'Repeat' are both optional, but if one occurs, so MUST the " "other" msgstr "" -"'Durata' si 'Repetare' sunt ambele optionale, dar daca una are loc, la fel " -"TREBUIE si cealalta" +"'Durata' și 'Repetare' sunt ambele opționale, dar dacă una este specificată " +"TREBUIE și cealaltă" #. module: base_calendar #: help:calendar.attendee,role:0 @@ -1104,24 +1104,24 @@ msgstr "Delegat la" #: help:calendar.alarm,action:0 msgid "Defines the action to be invoked when an alarm is triggered" msgstr "" -"Defineste actiunea care trebuie efectuata atunci cand este declansata alarma" +"Definește acțiunea care trebuie efectuată atunci când este declanșată alarma" #. module: base_calendar #: view:crm.meeting:0 msgid "Starting at" -msgstr "Incepand de la" +msgstr "Începând de la" #. module: base_calendar #: selection:calendar.event,end_type:0 #: selection:calendar.todo,end_type:0 #: selection:crm.meeting,end_type:0 msgid "End date" -msgstr "Data de sfarsit" +msgstr "Data de sfârșit" #. module: base_calendar #: view:calendar.event:0 msgid "Search Events" -msgstr "Cauta Evenimente" +msgstr "Caută evenimente" #. module: base_calendar #: help:calendar.alarm,active:0 @@ -1143,7 +1143,7 @@ msgstr "Incheiere Recurenta" #. module: base_calendar #: view:crm.meeting:0 msgid "Until" -msgstr "Pana la" +msgstr "Până la" #. module: base_calendar #: view:res.alarm:0 @@ -1153,12 +1153,12 @@ msgstr "Detalii Memento" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet3 msgid "Off-site Meeting" -msgstr "Intalnire in afara biroului" +msgstr "Întalnire în afara biroului" #. module: base_calendar #: view:crm.meeting:0 msgid "Day of Month" -msgstr "Ziua din Luna" +msgstr "Ziua din Lună" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -1170,12 +1170,12 @@ msgstr "Efectuat" #: help:calendar.todo,interval:0 #: help:crm.meeting,interval:0 msgid "Repeat every (Days/Week/Month/Year)" -msgstr "Repeta fiecare (Zile/Saptamana/Luna/An)" +msgstr "Repetă fiecare (Zile/Săptămână/Lună/An)" #. module: base_calendar #: view:crm.meeting:0 msgid "All Day?" -msgstr "Intreaga Zi?" +msgstr "Întreaga zi?" #. module: base_calendar #: view:calendar.event:0 @@ -1196,13 +1196,13 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Faceti click pentru a programa o noua intalnire.\n" +"

\n" +" Faceți clic pentru a programa o nouă întâlnire.\n" "

\n" -" Calendarul este impartit intre angajati si este complet integrat " +" Calendarul este împărțit între angajați și este complet integrat " "cu\n" -" alte aplicatii, cum ar fi concediile angajatilor sau " -"oportunitatile de\n" +" alte aplicații, cum ar fi concediile angajaților sau " +"oportunitățile de\n" " afaceri.\n" "

\n" " " @@ -1214,7 +1214,7 @@ msgid "" "calendar component, than that provided by the " "\"SUMMARY\" property" msgstr "" -"Ofera o descriere mai completa a componentei calendar decat cea oferita de " +"Oferă o descriere mai completă a componentei calendar decât cea oferită de " "proprietatea \"REZUMAT\"" #. module: base_calendar @@ -1225,17 +1225,17 @@ msgstr "Utilizator responsabil" #. module: base_calendar #: view:crm.meeting:0 msgid "Select Weekdays" -msgstr "Selectati Zilele Saptamanii" +msgstr "Selectați Zilele Saptamanii" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 #: selection:crm.meeting,show_as:0 #, python-format msgid "Busy" -msgstr "Ocupat(a)" +msgstr "Ocupat(ă)" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_event @@ -1254,7 +1254,7 @@ msgstr "Recurent" #: field:calendar.todo,rrule_type:0 #: field:crm.meeting,rrule_type:0 msgid "Recurrency" -msgstr "Recurenta" +msgstr "Recurență" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -1268,7 +1268,7 @@ msgstr "Joi" #: field:calendar.todo,exrule:0 #: field:crm.meeting,exrule:0 msgid "Exception Rule" -msgstr "Regula exceptiei" +msgstr "Regula excepției" #. module: base_calendar #: help:calendar.attendee,language:0 @@ -1291,8 +1291,8 @@ msgid "" "Defines a rule or repeating pattern of time to exclude from the recurring " "rule." msgstr "" -"Defineste o regula sau un tipar temporar care se repeta pentru a se exclude " -"de la regula recurenta." +"Definește o regulă sau un tipar temporar care se repetă pentru a se exclude " +"de la regula recurentă." #. module: base_calendar #: field:calendar.event,month_list:0 @@ -1316,7 +1316,7 @@ msgstr "Evenimente Confirmate" #. module: base_calendar #: field:calendar.attendee,dir:0 msgid "URI Reference" -msgstr "Referinta URI" +msgstr "Referința URI" #. module: base_calendar #: field:calendar.alarm,description:0 @@ -1340,12 +1340,12 @@ msgstr "Mai" #: selection:calendar.alarm,trigger_occurs:0 #: selection:res.alarm,trigger_occurs:0 msgid "After" -msgstr "Dupa" +msgstr "După" #. module: base_calendar #: selection:calendar.alarm,state:0 msgid "Stop" -msgstr "Opreste" +msgstr "Oprește" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_values @@ -1355,7 +1355,7 @@ msgstr "ir.valori" #. module: base_calendar #: view:crm.meeting:0 msgid "Search Meetings" -msgstr "Cauta Intalniri" +msgstr "Caută întâlniri" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_attachment @@ -1370,7 +1370,7 @@ msgstr "Tipul Intalnirii" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Delegated" -msgstr "Delegat(a)" +msgstr "Delegat(ă)" #. module: base_calendar #: field:calendar.event,sa:0 @@ -1391,12 +1391,12 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Faceti click pentru a seta un nou tip de alarma.\n" +"

\n" +" Faceți clic pentru a seta un nou tip de alarma.\n" "

\n" -" Puteti defini un tip personalizat de alarma pe calendar care " +" Puteți defini un tip personalizat de alarma pe calendar care " "poate fi\n" -" atribuit evenimentelor sau intalnirilor din calendar.\n" +" atribuit evenimentelor sau întâlnirilor din calendar.\n" "

\n" " " @@ -1417,7 +1417,7 @@ msgstr "" #: field:calendar.todo,date_deadline:0 #: field:crm.meeting,date_deadline:0 msgid "End Date" -msgstr "Data de sfarsit" +msgstr "Dată de sfârșit" #. module: base_calendar #: selection:calendar.event,month_list:0 @@ -1442,7 +1442,7 @@ msgstr "Nume" #: field:calendar.todo,exdate:0 #: field:crm.meeting,exdate:0 msgid "Exception Date/Times" -msgstr "Exceptie Data/Ore" +msgstr "Excepție Data/Ore" #. module: base_calendar #: help:calendar.alarm,name:0 @@ -1493,10 +1493,10 @@ msgstr "Perioada recurenta" #: field:calendar.todo,week_list:0 #: field:crm.meeting,week_list:0 msgid "Weekday" -msgstr "Zi lucratoare" +msgstr "Zi lucrătoare" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Intervalul nu poate fi negativ" @@ -1506,13 +1506,13 @@ msgstr "Intervalul nu poate fi negativ" #: field:calendar.todo,byday:0 #: field:crm.meeting,byday:0 msgid "By day" -msgstr "Dupa zi" +msgstr "După zi" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." -msgstr "Mai intai trebuie sa specificati data invitatiei." +msgstr "Mai întâi trebuie să specificați data invitației." #. module: base_calendar #: field:calendar.alarm,model_id:0 @@ -1534,19 +1534,19 @@ msgstr "ID" #. module: base_calendar #: selection:calendar.attendee,role:0 msgid "For information Purpose" -msgstr "In scop informativ" +msgstr "În scop informativ" #. module: base_calendar #: field:calendar.event,select1:0 #: field:calendar.todo,select1:0 #: field:crm.meeting,select1:0 msgid "Option" -msgstr "Optiune" +msgstr "Opțiune" #. module: base_calendar #: model:ir.model,name:base_calendar.model_calendar_attendee msgid "Attendee information" -msgstr "Informatii participant" +msgstr "Informații participant" #. module: base_calendar #: field:calendar.alarm,res_id:0 @@ -1556,19 +1556,19 @@ msgstr "ID resursa" #. module: base_calendar #: selection:calendar.attendee,state:0 msgid "Needs Action" -msgstr "Necesita actiune" +msgstr "Necesită acțiune" #. module: base_calendar #: field:calendar.attendee,sent_by:0 msgid "Sent By" -msgstr "Trimis de catre" +msgstr "Trimis de către" #. module: base_calendar #: field:calendar.event,sequence:0 #: field:calendar.todo,sequence:0 #: field:crm.meeting,sequence:0 msgid "Sequence" -msgstr "Secventa" +msgstr "Secvență" #. module: base_calendar #: help:calendar.event,alarm_id:0 @@ -1581,21 +1581,21 @@ msgstr "Setati o alarma acum, inainte ca evenimentul sa aiba loc" #: view:calendar.event:0 #: view:crm.meeting:0 msgid "Accept" -msgstr "Accepta" +msgstr "Acceptă" #. module: base_calendar #: selection:calendar.event,week_list:0 #: selection:calendar.todo,week_list:0 #: selection:crm.meeting,week_list:0 msgid "Saturday" -msgstr "Sambata" +msgstr "Sâmbătă" #. module: base_calendar #: field:calendar.event,interval:0 #: field:calendar.todo,interval:0 #: field:crm.meeting,interval:0 msgid "Repeat Every" -msgstr "Repeta fiecare" +msgstr "Repetă fiecare" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -1624,7 +1624,7 @@ msgstr "Durata" #. module: base_calendar #: field:calendar.alarm,trigger_date:0 msgid "Trigger Date" -msgstr "Data Declansare" +msgstr "Data declanșare" #. module: base_calendar #: help:calendar.alarm,attach:0 diff --git a/addons/base_calendar/i18n/ru.po b/addons/base_calendar/i18n/ru.po index cc6e98b09c7..c429060d7e8 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Кому" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Ошибка!" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Предупреждение!" @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Информация об уведомлении о событии" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Отклонено" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1211,7 +1211,7 @@ msgid "Select Weekdays" msgstr "Выберите дни недели" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1468,7 +1468,7 @@ msgid "Weekday" msgstr "День недели" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Интервал не может быть отрицательным." diff --git a/addons/base_calendar/i18n/sk.po b/addons/base_calendar/i18n/sk.po index abf9ea47aa9..37fb0af5784 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Chyba!" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Varovanie !" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/sl.po b/addons/base_calendar/i18n/sl.po index 4d1226d7a46..0e8495b4b5c 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "Za" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Napaka!" @@ -361,9 +361,9 @@ msgstr "Povzetek (število sporočil,..)" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Opozorilo!" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "Zavrnjeno" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "Delovni dan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/sq.po b/addons/base_calendar/i18n/sq.po index ca74462f395..bd9265313e1 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/sr.po b/addons/base_calendar/i18n/sr.po index 10c79bd00e4..c3df0c30f18 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Greška" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Upozorenje!" @@ -524,7 +524,7 @@ msgid "Event alarm information" msgstr "Informacija alarma događaja" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -743,7 +743,7 @@ msgid "Declined" msgstr "Odbijeno" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1208,7 +1208,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1467,7 +1467,7 @@ msgid "Weekday" msgstr "Sedmicni Dan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/sr@latin.po b/addons/base_calendar/i18n/sr@latin.po index 38ae24526d1..24672d6c880 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Greška" @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Upozorenje!" @@ -524,7 +524,7 @@ msgid "Event alarm information" msgstr "Informacija alarma događaja" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -743,7 +743,7 @@ msgid "Declined" msgstr "Odbijeno" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1208,7 +1208,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1467,7 +1467,7 @@ msgid "Weekday" msgstr "Sedmicni Dan" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/sv.po b/addons/base_calendar/i18n/sv.po index 8e7d88c386d..4ca19afa218 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:39+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -44,7 +44,7 @@ msgstr "" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Week(s)" -msgstr "" +msgstr "Vecka(or)" #. module: base_calendar #: field:calendar.event,we:0 @@ -68,7 +68,7 @@ msgstr "Återkommande möte" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet5 msgid "Feedback Meeting" -msgstr "" +msgstr "Återkopplingsmöte" #. module: base_calendar #: model:ir.actions.act_window,name:base_calendar.action_res_alarm_view @@ -145,7 +145,7 @@ msgstr "Ange typ av inbjudan" #: view:crm.meeting:0 #: field:crm.meeting,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Olästa meddelanden" #. module: base_calendar #: selection:calendar.event,week_list:0 @@ -179,7 +179,7 @@ msgstr "Fri" #. module: base_calendar #: help:crm.meeting,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Om ikryssad nya meddelanden som kräver din uppmärksamhet" #. module: base_calendar #: help:calendar.attendee,rsvp:0 @@ -231,12 +231,12 @@ msgstr "Senaste" #. module: base_calendar #: help:crm.meeting,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Meddelande- och kommunikationshistorik" #. module: base_calendar #: field:crm.meeting,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Meddelanden" #. module: base_calendar #: selection:calendar.alarm,trigger_interval:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Mottagare" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Fel!" @@ -263,7 +263,7 @@ msgstr "Styrelseperson" #. module: base_calendar #: view:crm.meeting:0 msgid "My Meetings" -msgstr "" +msgstr "Mina möten" #. module: base_calendar #: selection:calendar.alarm,action:0 @@ -302,17 +302,17 @@ msgstr "Deltagarens deltagarstatus" #. module: base_calendar #: view:crm.meeting:0 msgid "Mail To" -msgstr "" +msgstr "E-posta till" #. module: base_calendar #: field:crm.meeting,name:0 msgid "Meeting Subject" -msgstr "" +msgstr "Mötesämne" #. module: base_calendar #: view:calendar.event:0 msgid "End of Recurrence" -msgstr "" +msgstr "Slut på återkommande" #. module: base_calendar #: view:calendar.event:0 @@ -333,7 +333,7 @@ msgstr "Välj dag för det återkommande mötet" #: view:crm.meeting:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting msgid "Meetings" -msgstr "" +msgstr "Möten" #. module: base_calendar #: field:calendar.event,recurrent_id_date:0 @@ -363,9 +363,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Varning!" @@ -482,7 +482,7 @@ msgstr "Dag i månaden" #. module: base_calendar #: field:crm.meeting,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Följare" #. module: base_calendar #: field:calendar.event,location:0 @@ -526,7 +526,7 @@ msgid "Event alarm information" msgstr "Evenemangsalarminformation" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -534,21 +534,21 @@ msgstr "" #. module: base_calendar #: field:crm.meeting,create_date:0 msgid "Creation Date" -msgstr "" +msgstr "Registeringsdatum" #. module: base_calendar #: view:crm.meeting:0 #: model:ir.model,name:base_calendar.model_crm_meeting #: model:res.request.link,name:base_calendar.request_link_meeting msgid "Meeting" -msgstr "" +msgstr "Möte" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Month(s)" -msgstr "" +msgstr "Månad(er)" #. module: base_calendar #: view:calendar.event:0 @@ -594,7 +594,7 @@ msgstr "Tor" #. module: base_calendar #: view:crm.meeting:0 msgid "Meeting Details" -msgstr "" +msgstr "Mötesdetaljer" #. module: base_calendar #: field:calendar.attendee,child_ids:0 @@ -605,21 +605,21 @@ msgstr "Delegerad till" #: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" -msgstr "" +msgstr "Följande kontakter saknar e-postadress :" #. module: base_calendar #: selection:calendar.event,rrule_type:0 #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Year(s)" -msgstr "" +msgstr "År" #. module: base_calendar #: view:crm.meeting.type:0 #: model:ir.actions.act_window,name:base_calendar.action_crm_meeting_type #: model:ir.ui.menu,name:base_calendar.menu_crm_meeting_type msgid "Meeting Types" -msgstr "" +msgstr "Mötestyper" #. module: base_calendar #: field:calendar.event,create_date:0 @@ -637,7 +637,7 @@ msgstr "Publikt för anställda" #. module: base_calendar #: view:crm.meeting:0 msgid "hours" -msgstr "" +msgstr "timmar" #. module: base_calendar #: field:calendar.attendee,partner_id:0 @@ -659,7 +659,7 @@ msgstr "Repetera till" #. module: base_calendar #: view:crm.meeting:0 msgid "Options" -msgstr "" +msgstr "Alternativ" #. module: base_calendar #: selection:calendar.event,byday:0 @@ -698,7 +698,7 @@ msgstr "tisdag" #. module: base_calendar #: field:crm.meeting,categ_ids:0 msgid "Tags" -msgstr "" +msgstr "Etiketter" #. module: base_calendar #: view:calendar.event:0 @@ -732,7 +732,7 @@ msgstr "Låt evenemanget återkomma automatiskt med det intervallet" #. module: base_calendar #: model:ir.ui.menu,name:base_calendar.mail_menu_calendar msgid "Calendar" -msgstr "" +msgstr "Kalender" #. module: base_calendar #: field:calendar.attendee,cn:0 @@ -745,7 +745,7 @@ msgid "Declined" msgstr "Avslaget" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -825,7 +825,7 @@ msgstr "Bilaga" #. module: base_calendar #: field:crm.meeting,date_closed:0 msgid "Closed" -msgstr "" +msgstr "Avslutad" #. module: base_calendar #: view:calendar.event:0 @@ -850,7 +850,7 @@ msgstr "Antal repetioner" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet2 msgid "Internal Meeting" -msgstr "" +msgstr "Internt möte" #. module: base_calendar #: view:calendar.event:0 @@ -867,7 +867,7 @@ msgstr "Evenemang" #: field:calendar.todo,state:0 #: field:crm.meeting,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: base_calendar #: help:calendar.attendee,email:0 @@ -877,7 +877,7 @@ msgstr "E-post från inbjudna personer" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet1 msgid "Customer Meeting" -msgstr "" +msgstr "Kundmöte" #. module: base_calendar #: help:calendar.attendee,dir:0 @@ -929,7 +929,7 @@ msgstr "Evenemangsdatum" #. module: base_calendar #: view:crm.meeting:0 msgid "Invitations" -msgstr "" +msgstr "Inbjudningar" #. module: base_calendar #: view:calendar.event:0 @@ -950,7 +950,7 @@ msgstr "Delegerad från" #. module: base_calendar #: field:crm.meeting,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Är en följare" #. module: base_calendar #: field:calendar.attendee,user_id:0 @@ -1103,7 +1103,7 @@ msgstr "Definiera åtgärd som skall aktiveras med alarmet" #. module: base_calendar #: view:crm.meeting:0 msgid "Starting at" -msgstr "" +msgstr "Startdatum" #. module: base_calendar #: selection:calendar.event,end_type:0 @@ -1132,12 +1132,12 @@ msgstr "" #: field:calendar.todo,end_type:0 #: field:crm.meeting,end_type:0 msgid "Recurrence Termination" -msgstr "" +msgstr "Avsluta återkommande" #. module: base_calendar #: view:crm.meeting:0 msgid "Until" -msgstr "" +msgstr "Till" #. module: base_calendar #: view:res.alarm:0 @@ -1147,12 +1147,12 @@ msgstr "Påminnelsedetaljer" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet3 msgid "Off-site Meeting" -msgstr "" +msgstr "Möte utanför kontoret" #. module: base_calendar #: view:crm.meeting:0 msgid "Day of Month" -msgstr "" +msgstr "Dag i månaden" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -1169,7 +1169,7 @@ msgstr "Repetera varje (dag/vecka/månad/år)" #. module: base_calendar #: view:crm.meeting:0 msgid "All Day?" -msgstr "" +msgstr "Hel dag?" #. module: base_calendar #: view:calendar.event:0 @@ -1209,10 +1209,10 @@ msgstr "Ansvarig användare" #. module: base_calendar #: view:crm.meeting:0 msgid "Select Weekdays" -msgstr "" +msgstr "Välj veckodagar" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1289,7 +1289,7 @@ msgstr "Månad" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Day(s)" -msgstr "" +msgstr "Dag(ar)" #. module: base_calendar #: view:calendar.event:0 @@ -1338,7 +1338,7 @@ msgstr "ir.values" #. module: base_calendar #: view:crm.meeting:0 msgid "Search Meetings" -msgstr "" +msgstr "Sök möten" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_attachment @@ -1348,7 +1348,7 @@ msgstr "ir.attachment" #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" -msgstr "" +msgstr "Mötestyp" #. module: base_calendar #: selection:calendar.attendee,state:0 @@ -1378,7 +1378,7 @@ msgstr "" #. module: base_calendar #: selection:crm.meeting,state:0 msgid "Unconfirmed" -msgstr "" +msgstr "Obekräftad" #. module: base_calendar #: help:calendar.attendee,sent_by:0 @@ -1470,7 +1470,7 @@ msgid "Weekday" msgstr "Veckodag" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/th.po b/addons/base_calendar/i18n/th.po index f5582c3568c..c983ae226e2 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -249,7 +249,7 @@ msgid "To" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "ผิดพลาด!" @@ -362,9 +362,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "คำเตือน!" @@ -523,7 +523,7 @@ msgid "Event alarm information" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -742,7 +742,7 @@ msgid "Declined" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -1201,7 +1201,7 @@ msgid "Select Weekdays" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1454,7 +1454,7 @@ msgid "Weekday" msgstr "" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_calendar/i18n/tr.po b/addons/base_calendar/i18n/tr.po index d43f5eb92e0..2c1bd5e74e7 100644 --- a/addons/base_calendar/i18n/tr.po +++ b/addons/base_calendar/i18n/tr.po @@ -14,14 +14,14 @@ msgstr "" "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 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 #: selection:res.alarm,trigger_related:0 msgid "The event starts" -msgstr "Etkinlik Başlar" +msgstr "Etkinlik başlar" #. module: base_calendar #: view:calendar.event:0 @@ -250,7 +250,7 @@ msgid "To" msgstr "Kime" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "Hata!" @@ -365,9 +365,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "Uyarı!" @@ -484,7 +484,7 @@ msgstr "Ayın günü" #. module: base_calendar #: field:crm.meeting,message_follower_ids:0 msgid "Followers" -msgstr "Takipçiler" +msgstr "İzleyiciler" #. module: base_calendar #: field:calendar.event,location:0 @@ -528,10 +528,10 @@ msgid "Event alarm information" msgstr "Etkinlik alarm bilgisi" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." -msgstr "Sayım negatif ya da 0 olamaz." +msgstr "Sayım negatif veya 0 olamaz." #. module: base_calendar #: field:crm.meeting,create_date:0 @@ -607,7 +607,7 @@ msgstr "Yetkilendirilen" #: code:addons/base_calendar/crm_meeting.py:102 #, python-format msgid "The following contacts have no email address :" -msgstr "Aşağıdaki kişilerin eposta adresini Yok :" +msgstr "Aşağıdaki kişilerin eposta adresi yok :" #. module: base_calendar #: selection:calendar.event,rrule_type:0 @@ -747,7 +747,7 @@ msgid "Declined" msgstr "Reddedildi" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "" @@ -951,7 +951,7 @@ msgstr "Yetkilendiren" #. module: base_calendar #: field:crm.meeting,message_is_follower:0 msgid "Is a Follower" -msgstr "Takipçi" +msgstr "Bir İzleyicidir" #. module: base_calendar #: field:calendar.attendee,user_id:0 @@ -980,7 +980,7 @@ msgstr "Kasım" #. module: base_calendar #: help:calendar.attendee,member:0 msgid "Indicate the groups that the attendee belongs to" -msgstr "Katılanın bağlı olduğu grubu belirt" +msgstr "Katılımcının bağlı olduğu grubu belirtir" #. module: base_calendar #: field:calendar.event,mo:0 @@ -1010,7 +1010,7 @@ msgstr "Belirsiz" #: constraint:calendar.todo:0 #: constraint:crm.meeting:0 msgid "Error ! End date cannot be set before start date." -msgstr "Hata! Bitiş tarihi başlangıç ​​tarihinden önce ayarlanamaz." +msgstr "Hata! Bitiş tarihi başlangıç ​​tarihinden önceye ayarlanamaz." #. module: base_calendar #: field:calendar.alarm,trigger_occurs:0 @@ -1165,7 +1165,7 @@ msgstr "Yapıldı" #: help:calendar.todo,interval:0 #: help:crm.meeting,interval:0 msgid "Repeat every (Days/Week/Month/Year)" -msgstr "Her (Gün/Hafta/Ay/Yıl) Tekrarla" +msgstr "Her (Gün/Hafta/Ay/Yıl) yinele" #. module: base_calendar #: view:crm.meeting:0 @@ -1195,7 +1195,7 @@ msgstr "" " Yeni bir toplantı planlamak için tıklayın.\n" "

\n" " Takvim çalışanlar arasında paylaşılır ve çalışan tatilleri \n" -" ya da iş fırsatları gibi diğer uygulamalarla \n" +" veya iş fırsatları gibi diğer uygulamalarla \n" " tam entegredir.\n" "

\n" " " @@ -1207,8 +1207,9 @@ msgid "" "calendar component, than that provided by the " "\"SUMMARY\" property" msgstr "" -"Takvim bileşeninin tanımını \"ÖZET\" özelliğinden eldeedilenden daha tam " -"olarak belirtir." +"Takvim bileşeninin tanımını \"ÖZET\" " +"özelliğinden elde edilenden daha eksiksiz " +"belirtir." #. module: base_calendar #: view:calendar.event:0 @@ -1221,7 +1222,7 @@ msgid "Select Weekdays" msgstr "Hafta Günlerini Seçin" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1268,7 +1269,7 @@ msgstr "İstisnai Kural" msgid "" "To specify the language for text values in aproperty or property parameter." msgstr "" -"Bir özellikteki ya da özellik parametresine ait metin değerlerinin dilini " +"Bir özellikteki veya özellik değiştirgelerine ait metin değerlerinin dilini " "belirler." #. module: base_calendar @@ -1284,7 +1285,7 @@ msgid "" "Defines a rule or repeating pattern of time to exclude from the recurring " "rule." msgstr "" -"Yineleme kuralı dışında tutulan bir zaman tekrarlama modelini tanımlar." +"Yineleme kuralı dışında tutulacak bir kural ya da yineleme modeli tanımlar." #. module: base_calendar #: field:calendar.event,month_list:0 @@ -1303,7 +1304,7 @@ msgstr "Gün(ler)" #. module: base_calendar #: view:calendar.event:0 msgid "Confirmed Events" -msgstr "Onaylanmış Etkinlikler" +msgstr "Onaylı Etkinlikler" #. module: base_calendar #: field:calendar.attendee,dir:0 @@ -1441,8 +1442,8 @@ msgid "" "Contains the text to be used as the message subject for " "email or contains the text to be used for display" msgstr "" -"Eposta konusu olarak kullanılacak ya da görüntülenecek metin olarak " -"kullanılacak metni içerir." +"Eposta konusu olarak kullanılacak metni içerir ya da " +" görüntülenecek metni içerir." #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_message @@ -1487,7 +1488,7 @@ msgid "Weekday" msgstr "Hafta Günü" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "Aralık negatif olamaz" @@ -1566,7 +1567,7 @@ msgstr "Sıra" #: help:calendar.todo,alarm_id:0 #: help:crm.meeting,alarm_id:0 msgid "Set an alarm at this time, before the event occurs" -msgstr "Bu sefer etkinlik başlamadan önce alarm ayarla" +msgstr "Bu sefer etkinlik başlamadan önce alarmı ayarla" #. module: base_calendar #: view:calendar.event:0 @@ -1627,12 +1628,12 @@ msgid "" " * Points to a procedure resource, which is invoked when " " the alarm is triggered for procedure." msgstr "" -"* Alarmın ses çalması için tetiklendiği durumuna benzeterek, Bir ses " -"kaynağını işaret eder.\n" -" * Bir epostaya mesal eki olarak gönderilmek istenen " +"* Alarmın ses çalması için, tetiklendiği durumuna " +"benzeterek, bir ses kaynağını işaret eder.\n" +" * Bir epostaya mesaj eki olarak gönderilmek istenen " "dosya,\n" -" * Alarm işlem için tetiklendiğinde işlem kaynağını " -"işaret eder." +" * Alarm işlem için tetiklendiğinde işlem kaynağını " +" işaret eder." #. module: base_calendar #: selection:calendar.event,byday:0 diff --git a/addons/base_calendar/i18n/zh_CN.po b/addons/base_calendar/i18n/zh_CN.po index a5ede7a80c9..87c43d95889 100644 --- a/addons/base_calendar/i18n/zh_CN.po +++ b/addons/base_calendar/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-06-29 05:34+0000\n" -"Last-Translator: David.Xu \n" +"Last-Translator: DWXXX \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-30 05:56+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -525,7 +525,7 @@ msgstr "事件提醒信息" #: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." -msgstr "" +msgstr "计数不能为负值或0" #. module: base_calendar #: field:crm.meeting,create_date:0 @@ -728,7 +728,7 @@ msgstr "让事件在该时间间隔自动重复" #. module: base_calendar #: model:ir.ui.menu,name:base_calendar.mail_menu_calendar msgid "Calendar" -msgstr "" +msgstr "日历" #. module: base_calendar #: field:calendar.attendee,cn:0 @@ -744,7 +744,7 @@ msgstr "已拒绝" #: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." -msgstr "" +msgstr "目前不支持按日期分组,可以通过日历视图达到此目的。" #. module: base_calendar #: view:calendar.event:0 @@ -821,7 +821,7 @@ msgstr "附件" #. module: base_calendar #: field:crm.meeting,date_closed:0 msgid "Closed" -msgstr "" +msgstr "关闭" #. module: base_calendar #: view:calendar.event:0 @@ -846,7 +846,7 @@ msgstr "收件人数量" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet2 msgid "Internal Meeting" -msgstr "" +msgstr "内部会议" #. module: base_calendar #: view:calendar.event:0 @@ -863,7 +863,7 @@ msgstr "事件" #: field:calendar.todo,state:0 #: field:crm.meeting,state:0 msgid "Status" -msgstr "" +msgstr "状态" #. module: base_calendar #: help:calendar.attendee,email:0 @@ -873,7 +873,7 @@ msgstr "被邀请人的电子邮件" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet1 msgid "Customer Meeting" -msgstr "" +msgstr "客户会议" #. module: base_calendar #: help:calendar.attendee,dir:0 @@ -899,7 +899,7 @@ msgstr "周一" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet4 msgid "Open Discussion" -msgstr "" +msgstr "打开讨论板" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_model @@ -923,7 +923,7 @@ msgstr "事件日期" #. module: base_calendar #: view:crm.meeting:0 msgid "Invitations" -msgstr "" +msgstr "邀请" #. module: base_calendar #: view:calendar.event:0 @@ -934,7 +934,7 @@ msgstr "此" #. module: base_calendar #: field:crm.meeting,write_date:0 msgid "Write Date" -msgstr "" +msgstr "修改日期" #. module: base_calendar #: field:calendar.attendee,delegated_from:0 @@ -944,7 +944,7 @@ msgstr "委派来自" #. module: base_calendar #: field:crm.meeting,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "是一个关注者" #. module: base_calendar #: field:calendar.attendee,user_id:0 @@ -1003,7 +1003,7 @@ msgstr "不确定" #: constraint:calendar.todo:0 #: constraint:crm.meeting:0 msgid "Error ! End date cannot be set before start date." -msgstr "" +msgstr "出错!结束日期不能设置为早于开始日期。" #. module: base_calendar #: field:calendar.alarm,trigger_occurs:0 @@ -1095,7 +1095,7 @@ msgstr "定义触发报警时要调用的行动" #. module: base_calendar #: view:crm.meeting:0 msgid "Starting at" -msgstr "" +msgstr "开始于" #. module: base_calendar #: selection:calendar.event,end_type:0 @@ -1122,12 +1122,12 @@ msgstr "如果有效字段设为True,它将允许你隐藏提醒信息而不 #: field:calendar.todo,end_type:0 #: field:crm.meeting,end_type:0 msgid "Recurrence Termination" -msgstr "" +msgstr "重复终止" #. module: base_calendar #: view:crm.meeting:0 msgid "Until" -msgstr "" +msgstr "直到" #. module: base_calendar #: view:res.alarm:0 @@ -1137,12 +1137,12 @@ msgstr "提醒详情" #. module: base_calendar #: model:crm.meeting.type,name:base_calendar.categ_meet3 msgid "Off-site Meeting" -msgstr "" +msgstr "离线会议?" #. module: base_calendar #: view:crm.meeting:0 msgid "Day of Month" -msgstr "" +msgstr "该月该日" #. module: base_calendar #: selection:calendar.alarm,state:0 @@ -1159,7 +1159,7 @@ msgstr "重复间隔(日/周/月/年)" #. module: base_calendar #: view:crm.meeting:0 msgid "All Day?" -msgstr "" +msgstr "全天?" #. module: base_calendar #: view:calendar.event:0 @@ -1180,6 +1180,12 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 单击 安排一个新的会议\n" +"

\n" +" 日历在雇员和完全集成的其它应用(比如员工假期或者商机)间共享\n" +"

\n" +" " #. module: base_calendar #: help:calendar.alarm,description:0 @@ -1197,7 +1203,7 @@ msgstr "负责人" #. module: base_calendar #: view:crm.meeting:0 msgid "Select Weekdays" -msgstr "" +msgstr "选择工作日" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:1521 @@ -1274,7 +1280,7 @@ msgstr "月份" #: selection:calendar.todo,rrule_type:0 #: selection:crm.meeting,rrule_type:0 msgid "Day(s)" -msgstr "" +msgstr "天" #. module: base_calendar #: view:calendar.event:0 @@ -1323,7 +1329,7 @@ msgstr "ir.values" #. module: base_calendar #: view:crm.meeting:0 msgid "Search Meetings" -msgstr "" +msgstr "查找会议" #. module: base_calendar #: model:ir.model,name:base_calendar.model_ir_attachment @@ -1333,7 +1339,7 @@ msgstr "ir.attachment" #. module: base_calendar #: model:ir.model,name:base_calendar.model_crm_meeting_type msgid "Meeting Type" -msgstr "" +msgstr "会议类型" #. module: base_calendar #: selection:calendar.attendee,state:0 @@ -1359,11 +1365,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 单击可设置一个新的警报类型。\n" +"

\n" +" 您能定义一个个性化的日历警报类型,可以被指定给日历事件或者一次会面.\n" +"

\n" +" " #. module: base_calendar #: selection:crm.meeting,state:0 msgid "Unconfirmed" -msgstr "" +msgstr "未确认" #. module: base_calendar #: help:calendar.attendee,sent_by:0 @@ -1413,7 +1425,7 @@ msgstr "包含电子邮件主题中使用的文本或包含了用于显示的文 #. module: base_calendar #: model:ir.model,name:base_calendar.model_mail_message msgid "Message" -msgstr "" +msgstr "信息" #. module: base_calendar #: field:calendar.event,base_calendar_alarm_id:0 @@ -1438,7 +1450,7 @@ msgstr "4月" #: code:addons/base_calendar/crm_meeting.py:106 #, python-format msgid "Email addresses not found" -msgstr "" +msgstr "电子邮件地址未找到" #. module: base_calendar #: view:calendar.event:0 @@ -1456,7 +1468,7 @@ msgstr "工作日" #: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." -msgstr "" +msgstr "间隔不能为负数" #. module: base_calendar #: field:calendar.event,byday:0 @@ -1469,7 +1481,7 @@ msgstr "按天" #: code:addons/base_calendar/base_calendar.py:441 #, python-format msgid "First you have to specify the date of the invitation." -msgstr "" +msgstr "首先,必须确定邀请的日期" #. module: base_calendar #: field:calendar.alarm,model_id:0 @@ -1552,7 +1564,7 @@ msgstr "周六" #: field:calendar.todo,interval:0 #: field:crm.meeting,interval:0 msgid "Repeat Every" -msgstr "" +msgstr "逐个重复" #. module: base_calendar #: selection:calendar.event,byday:0 diff --git a/addons/base_calendar/i18n/zh_TW.po b/addons/base_calendar/i18n/zh_TW.po index f044cc14647..bb4f298a63d 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_calendar #: selection:calendar.alarm,trigger_related:0 @@ -248,7 +248,7 @@ msgid "To" msgstr "至" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1260 +#: code:addons/base_calendar/base_calendar.py:1262 #, python-format msgid "Error!" msgstr "錯誤!" @@ -361,9 +361,9 @@ msgstr "" #. module: base_calendar #: code:addons/base_calendar/base_calendar.py:399 #: code:addons/base_calendar/base_calendar.py:441 -#: code:addons/base_calendar/base_calendar.py:1013 #: code:addons/base_calendar/base_calendar.py:1015 -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1017 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Warning!" msgstr "警告!" @@ -522,7 +522,7 @@ msgid "Event alarm information" msgstr "活動警示資訊" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1015 +#: code:addons/base_calendar/base_calendar.py:1017 #, python-format msgid "Count cannot be negative or 0." msgstr "" @@ -741,7 +741,7 @@ msgid "Declined" msgstr "拒絕" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1460 +#: code:addons/base_calendar/base_calendar.py:1462 #, python-format msgid "Group by date is not supported, use the calendar view instead." msgstr "未支援以日期分組,請使用日曆式檢視。" @@ -1200,7 +1200,7 @@ msgid "Select Weekdays" msgstr "選擇平日" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1519 +#: code:addons/base_calendar/base_calendar.py:1521 #: selection:calendar.attendee,availability:0 #: selection:calendar.event,show_as:0 #: selection:calendar.todo,show_as:0 @@ -1453,7 +1453,7 @@ msgid "Weekday" msgstr "週日" #. module: base_calendar -#: code:addons/base_calendar/base_calendar.py:1013 +#: code:addons/base_calendar/base_calendar.py:1015 #, python-format msgid "Interval cannot be negative." msgstr "" diff --git a/addons/base_crypt/i18n/ar.po b/addons/base_crypt/i18n/ar.po index 61440649188..b59238238bb 100644 --- a/addons/base_crypt/i18n/ar.po +++ b/addons/base_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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/bg.po b/addons/base_crypt/i18n/bg.po index 706c3f27084..d33ce576239 100644 --- a/addons/base_crypt/i18n/bg.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/ca.po b/addons/base_crypt/i18n/ca.po index 409af9aa314..41bf3a5cb74 100644 --- a/addons/base_crypt/i18n/ca.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/cs.po b/addons/base_crypt/i18n/cs.po index 7c782cbc723..61af3b6ea3b 100644 --- a/addons/base_crypt/i18n/cs.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/da.po b/addons/base_crypt/i18n/da.po index 6160f5c4474..55305f7647c 100644 --- a/addons/base_crypt/i18n/da.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/de.po b/addons/base_crypt/i18n/de.po index ed97a279910..2efc596013a 100644 --- a/addons/base_crypt/i18n/de.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/el.po b/addons/base_crypt/i18n/el.po index eba33cc4fce..60c047f2e72 100644 --- a/addons/base_crypt/i18n/el.po +++ b/addons/base_crypt/i18n/el.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/en_GB.po b/addons/base_crypt/i18n/en_GB.po index 96c509b518e..5cf546d0781 100644 --- a/addons/base_crypt/i18n/en_GB.po +++ b/addons/base_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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/es.po b/addons/base_crypt/i18n/es.po index b5dcf46f559..e771e195de0 100644 --- a/addons/base_crypt/i18n/es.po +++ b/addons/base_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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/es_CL.po b/addons/base_crypt/i18n/es_CL.po index 285f4557101..3fd1d048b6b 100644 --- a/addons/base_crypt/i18n/es_CL.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/es_CR.po b/addons/base_crypt/i18n/es_CR.po index ca1f3821243..3d9c5d7ac13 100644 --- a/addons/base_crypt/i18n/es_CR.po +++ b/addons/base_crypt/i18n/es_CR.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: base_crypt diff --git a/addons/base_crypt/i18n/es_PY.po b/addons/base_crypt/i18n/es_PY.po index 684b0c44b51..e09a35beb3d 100644 --- a/addons/base_crypt/i18n/es_PY.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/et.po b/addons/base_crypt/i18n/et.po index 319ed5f7d3f..3bcdb366d44 100644 --- a/addons/base_crypt/i18n/et.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/fa.po b/addons/base_crypt/i18n/fa.po index 11cfa2eb96a..d7709d15620 100644 --- a/addons/base_crypt/i18n/fa.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/fi.po b/addons/base_crypt/i18n/fi.po index 2cec59a2c4e..9def5ee5bb0 100644 --- a/addons/base_crypt/i18n/fi.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/fr.po b/addons/base_crypt/i18n/fr.po index a41065463e1..bd4fbe2bc2c 100644 --- a/addons/base_crypt/i18n/fr.po +++ b/addons/base_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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/gl.po b/addons/base_crypt/i18n/gl.po index bf0c4ba8a66..7aeb0a1c096 100644 --- a/addons/base_crypt/i18n/gl.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/gu.po b/addons/base_crypt/i18n/gu.po index 0cb55c0f324..8ede75b3119 100644 --- a/addons/base_crypt/i18n/gu.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/hr.po b/addons/base_crypt/i18n/hr.po index f49e9cde151..0a6a3379977 100644 --- a/addons/base_crypt/i18n/hr.po +++ b/addons/base_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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/hu.po b/addons/base_crypt/i18n/hu.po index 5f8cf605f33..ae945b3515d 100644 --- a/addons/base_crypt/i18n/hu.po +++ b/addons/base_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-17 04:59+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/id.po b/addons/base_crypt/i18n/id.po index 3ac47abb0ed..5ac99ce6a94 100644 --- a/addons/base_crypt/i18n/id.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/it.po b/addons/base_crypt/i18n/it.po index 09da33ef429..7407fcbb26f 100644 --- a/addons/base_crypt/i18n/it.po +++ b/addons/base_crypt/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-03 16:03+0000\n" "PO-Revision-Date: 2012-11-28 19:47+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/ja.po b/addons/base_crypt/i18n/ja.po index 53cc697a775..40bdb8cc143 100644 --- a/addons/base_crypt/i18n/ja.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/lv.po b/addons/base_crypt/i18n/lv.po index c721eae311b..7c04058d734 100644 --- a/addons/base_crypt/i18n/lv.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/mn.po b/addons/base_crypt/i18n/mn.po index ec780cdebda..fb959c69891 100644 --- a/addons/base_crypt/i18n/mn.po +++ b/addons/base_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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/nb.po b/addons/base_crypt/i18n/nb.po index 1f9ceed13c8..928d27e8ab5 100644 --- a/addons/base_crypt/i18n/nb.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/nl.po b/addons/base_crypt/i18n/nl.po index ae5f27dd880..2eb7d4df902 100644 --- a/addons/base_crypt/i18n/nl.po +++ b/addons/base_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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/nl_BE.po b/addons/base_crypt/i18n/nl_BE.po index d77a3f14b47..dc2f65ee1c3 100644 --- a/addons/base_crypt/i18n/nl_BE.po +++ b/addons/base_crypt/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-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/oc.po b/addons/base_crypt/i18n/oc.po index bd05cb48d2b..fee3a5761a0 100644 --- a/addons/base_crypt/i18n/oc.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/pl.po b/addons/base_crypt/i18n/pl.po index ffd402b4c98..4e64a68a534 100644 --- a/addons/base_crypt/i18n/pl.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/pt.po b/addons/base_crypt/i18n/pt.po index 53806f4b3b3..f5f90e71636 100644 --- a/addons/base_crypt/i18n/pt.po +++ b/addons/base_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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/pt_BR.po b/addons/base_crypt/i18n/pt_BR.po index 394364388b8..032d9a307dd 100644 --- a/addons/base_crypt/i18n/pt_BR.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/ro.po b/addons/base_crypt/i18n/ro.po index 6c252be4455..8a94780c4c5 100644 --- a/addons/base_crypt/i18n/ro.po +++ b/addons/base_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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/ru.po b/addons/base_crypt/i18n/ru.po index b935e18619f..b3b380cb2bd 100644 --- a/addons/base_crypt/i18n/ru.po +++ b/addons/base_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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/sk.po b/addons/base_crypt/i18n/sk.po index 4f061b9a194..b3da52f2d31 100644 --- a/addons/base_crypt/i18n/sk.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/sl.po b/addons/base_crypt/i18n/sl.po index 7297ca8fc8a..8e980e7a82f 100644 --- a/addons/base_crypt/i18n/sl.po +++ b/addons/base_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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/sq.po b/addons/base_crypt/i18n/sq.po index 547fc87dece..48f9c2e4aa2 100644 --- a/addons/base_crypt/i18n/sq.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/sr@latin.po b/addons/base_crypt/i18n/sr@latin.po index eb56a0aaf64..178d5bb8f2a 100644 --- a/addons/base_crypt/i18n/sr@latin.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/sv.po b/addons/base_crypt/i18n/sv.po index 32b212fe45b..6696a3f3734 100644 --- a/addons/base_crypt/i18n/sv.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/tr.po b/addons/base_crypt/i18n/tr.po index e0f7aad1948..26c4ca35ce2 100644 --- a/addons/base_crypt/i18n/tr.po +++ b/addons/base_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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/vi.po b/addons/base_crypt/i18n/vi.po index 2265e70eb2e..8a2e112f652 100644 --- a/addons/base_crypt/i18n/vi.po +++ b/addons/base_crypt/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-07-01 05:14+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/zh_CN.po b/addons/base_crypt/i18n/zh_CN.po index 5f159bbb6bc..ac02175ec2d 100644 --- a/addons/base_crypt/i18n/zh_CN.po +++ b/addons/base_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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_crypt/i18n/zh_TW.po b/addons/base_crypt/i18n/zh_TW.po index 40958da56f8..f0e32acbe9c 100644 --- a/addons/base_crypt/i18n/zh_TW.po +++ b/addons/base_crypt/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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_crypt #: model:ir.model,name:base_crypt.model_res_users diff --git a/addons/base_gengo/i18n/ar.po b/addons/base_gengo/i18n/ar.po index c19b15d34ea..cb412aa176c 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/cs.po b/addons/base_gengo/i18n/cs.po index 91dc5ea941d..74e2f0555b4 100644 --- a/addons/base_gengo/i18n/cs.po +++ b/addons/base_gengo/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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 97c119a3861..afe7f6f348c 100644 --- a/addons/base_gengo/i18n/de.po +++ b/addons/base_gengo/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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_gengo #: view:res.company:0 @@ -110,6 +110,7 @@ msgstr "Gengo Übersetzungssergvice" msgid "" "The Gengo translation service selected is not supported for this language." msgstr "" +"Der Gengo Übersetzungsservice wird für diese Sprache nicht unterstützt" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 @@ -218,7 +219,7 @@ msgstr "Senden" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 msgid "Ultra" -msgstr "" +msgstr "Ultra" #. module: base_gengo #: model:ir.model,name:base_gengo.model_ir_translation diff --git a/addons/base_gengo/i18n/es.po b/addons/base_gengo/i18n/es.po index 917b0f323f3..770b57b6590 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 208345eadcd..fefbf94cbc0 100644 --- a/addons/base_gengo/i18n/fr.po +++ b/addons/base_gengo/i18n/fr.po @@ -14,18 +14,18 @@ msgstr "" "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 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_gengo #: view:res.company:0 msgid "Comments for Translator" -msgstr "" +msgstr "Commentaires pour traducteur" #. module: base_gengo #: field:ir.translation,job_id:0 msgid "Gengo Job ID" -msgstr "" +msgstr "Identifiant de la tâche Gengo" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:114 @@ -61,13 +61,13 @@ msgstr "Langue" #. module: base_gengo #: field:ir.translation,gengo_comment:0 msgid "Comments & Activity Linked to Gengo" -msgstr "" +msgstr "Commentaires et activité liés à Gengo" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:124 #, python-format msgid "Gengo Sync Translation (Response)" -msgstr "" +msgstr "Synchronisation de la traduction Gengo (Réponse)" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:72 diff --git a/addons/base_gengo/i18n/hr.po b/addons/base_gengo/i18n/hr.po index e63c9f9309e..0d73ffb3ab5 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 96ebf22939d..0124a557f86 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-17 04:59+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 3c3bb8b5eb6..3c95621966a 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 f97bc45146f..0371beb10b8 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_gengo #: view:res.company:0 @@ -25,7 +25,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 @@ -51,7 +51,7 @@ msgstr "base.gengo.translations" #. 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 @@ -61,7 +61,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 @@ -76,6 +76,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 @@ -91,6 +94,10 @@ msgid "" "--\n" " Commented on %s by %s." msgstr "" +"%s\n" +"\n" +"--\n" +" Коментирано на %s од %s." #. module: base_gengo #: field:ir.translation,gengo_translation:0 @@ -101,7 +108,7 @@ msgstr "" #: constraint:ir.translation:0 msgid "" "The Gengo translation service selected is not supported for this language." -msgstr "" +msgstr "Избраниот Gengo сервис за преведување не е поддржан за овој јазик." #. module: base_gengo #: selection:ir.translation,gengo_translation:0 @@ -114,6 +121,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 @@ -123,7 +132,7 @@ msgstr "" #. module: base_gengo #: view:ir.translation:0 msgid "To Approve In Gengo" -msgstr "" +msgstr "Да се одобри во Gengo" #. module: base_gengo #: view:res.company:0 @@ -160,14 +169,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 @@ -181,6 +190,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 @@ -189,6 +201,8 @@ msgid "" "Gengo connection failed with this message:\n" "``%s``" msgstr "" +"Gengo конекцијата е неуспешна со оваа порака:\n" +"``%s``" #. module: base_gengo #: view:res.company:0 @@ -223,7 +237,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_gengo/i18n/mn.po b/addons/base_gengo/i18n/mn.po index 3b9e6f2cc17..8a0a088f56a 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 eb87053a350..7160550f75b 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 65003ded54c..c8ca1d5ca02 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_gengo #: view:res.company:0 @@ -31,7 +31,7 @@ msgstr "Gengo Job ID" #: code:addons/base_gengo/wizard/base_gengo_translations.py:114 #, python-format msgid "This language is not supported by the Gengo translation services." -msgstr "" +msgstr "Deze taal wordt (nog) niet ondersteund door Gengo vertaal services." #. module: base_gengo #: field:res.company,gengo_comment:0 @@ -51,7 +51,7 @@ msgstr "base.gengo.translations" #. module: base_gengo #: help:res.company,gengo_auto_approve:0 msgid "Jobs are Automatically Approved by Gengo." -msgstr "" +msgstr "Opdrachten worden automatisch goedgekeurd door Gengo." #. module: base_gengo #: field:base.gengo.translations,lang_id:0 @@ -61,13 +61,13 @@ msgstr "Taal" #. module: base_gengo #: field:ir.translation,gengo_comment:0 msgid "Comments & Activity Linked to Gengo" -msgstr "" +msgstr "Reacties & Activiteiten gelinkt aan Gengo" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:124 #, python-format msgid "Gengo Sync Translation (Response)" -msgstr "" +msgstr "Gengo Synchroniseer vertaling" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:72 @@ -76,6 +76,8 @@ msgid "" "Gengo `Public Key` or `Private Key` are missing. Enter your Gengo " "authentication parameters under `Settings > Companies > Gengo Parameters`." msgstr "" +"Gengo 'Publieke Sleutel' of 'Prive Sleutel' missen. Vul uw Gengo gegevens in " +"onder 'Instellingen > Bedrijven > Gengo Gegevens'/" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 @@ -94,18 +96,19 @@ msgstr "" "%s\n" "\n" "--\n" -" Heeft opmerkingen op %s door %s." +" Reacties op %s door %s" #. module: base_gengo #: field:ir.translation,gengo_translation:0 msgid "Gengo Translation Service Level" -msgstr "" +msgstr "Gengo vertalingsservice niveau" #. module: base_gengo #: constraint:ir.translation:0 msgid "" "The Gengo translation service selected is not supported for this language." msgstr "" +"De gebruikte Gengo vertalingsservice wordt niet ondersteund voor deze taal" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 @@ -118,16 +121,18 @@ msgid "" "You can select here the service level you want for an automatic translation " "using Gengo." msgstr "" +"U kunt hier het service niveau voor de automatische vertaling door Gengo " +"selecteren." #. module: base_gengo #: field:base.gengo.translations,restart_send_job:0 msgid "Restart Sending Job" -msgstr "Start verstuur job opnieuw" +msgstr "Verzending opdacht opnieuw starten" #. module: base_gengo #: view:ir.translation:0 msgid "To Approve In Gengo" -msgstr "Gied te keuren in Gengo" +msgstr "Goed te keuren in Gengo" #. module: base_gengo #: view:res.company:0 @@ -148,7 +153,7 @@ msgstr "Gengo publieke sleutel" #: code:addons/base_gengo/wizard/base_gengo_translations.py:123 #, python-format msgid "Gengo Sync Translation (Request)" -msgstr "" +msgstr "Gengo Sync vertaling (Verzoek)" #. module: base_gengo #: view:ir.translation:0 @@ -164,14 +169,14 @@ msgstr "Automatisch vertalingen goedkeuren" #: 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: Handmatig vertalingen aanvragen" #. 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 authenticatie Fout" #. module: base_gengo #: model:ir.model,name:base_gengo.model_res_company @@ -185,6 +190,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 "" +"Noot: Als de vertalingsstatus 'In behandeling' is, staat deze klaar voor " +"goedkeuring om doorgevoerd te worden in dit systeem. Het is de bedoeling dat " +"u dit via u Gengo Account goedkeurt" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:82 @@ -193,11 +201,13 @@ msgid "" "Gengo connection failed with this message:\n" "``%s``" msgstr "" +"Gengo connectie mislukt met deze melding:\n" +"\"%s\"" #. module: base_gengo #: view:res.company:0 msgid "Gengo Parameters" -msgstr "" +msgstr "Gengo gegevens" #. module: base_gengo #: view:base.gengo.translations:0 @@ -227,7 +237,7 @@ msgstr "Pro" #. module: base_gengo #: view:base.gengo.translations:0 msgid "Gengo Request Form" -msgstr "" +msgstr "Gengo aanvraag formulier" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:114 @@ -241,6 +251,8 @@ msgid "" "This comment will be automatically be enclosed in each an every request sent " "to Gengo" msgstr "" +"Deze reactie wordt automatisch toegevoegd in elke aanvraag verzonden aan " +"Gengo" #. module: base_gengo #: view:base.gengo.translations:0 @@ -250,4 +262,4 @@ msgstr "Annuleren" #. module: base_gengo #: view:base.gengo.translations:0 msgid "or" -msgstr "" +msgstr "of" diff --git a/addons/base_gengo/i18n/pt.po b/addons/base_gengo/i18n/pt.po index b838cb89113..4abe00bf3ca 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_gengo #: view:res.company:0 @@ -80,7 +80,7 @@ msgstr "" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 msgid "Translation By Machine" -msgstr "" +msgstr "Tradução de máquina" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 diff --git a/addons/base_gengo/i18n/pt_BR.po b/addons/base_gengo/i18n/pt_BR.po index 6f98810e079..47c3e458621 100644 --- a/addons/base_gengo/i18n/pt_BR.po +++ b/addons/base_gengo/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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 4f915ba52bb..29a850aee4b 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 5be5008582a..23d7b87958a 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_gengo #: view:res.company:0 diff --git a/addons/base_gengo/i18n/th.po b/addons/base_gengo/i18n/th.po index e0b5ba3e2fc..3e820616019 100644 --- a/addons/base_gengo/i18n/th.po +++ b/addons/base_gengo/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-06-21 05:36+0000\n" -"X-Generator: Launchpad (build 16677)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 22197682162..ab66590974e 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_gengo #: view:res.company:0 @@ -80,7 +80,7 @@ msgstr "" #. module: base_gengo #: selection:ir.translation,gengo_translation:0 msgid "Translation By Machine" -msgstr "" +msgstr "Makine Tarafından Çeviri" #. module: base_gengo #: code:addons/base_gengo/wizard/base_gengo_translations.py:155 @@ -95,7 +95,7 @@ msgstr "" #. module: base_gengo #: field:ir.translation,gengo_translation:0 msgid "Gengo Translation Service Level" -msgstr "" +msgstr "Genge Çeviri Hizmet Düzeyi" #. module: base_gengo #: constraint:ir.translation:0 @@ -114,6 +114,8 @@ msgid "" "You can select here the service level you want for an automatic translation " "using Gengo." msgstr "" +"Genge otomatik çeviri servisi için istediğiniz hizmet düzeyini buradan " +"seçebilirsiniz" #. module: base_gengo #: field:base.gengo.translations,restart_send_job:0 @@ -193,7 +195,7 @@ msgstr "" #. module: base_gengo #: view:res.company:0 msgid "Gengo Parameters" -msgstr "" +msgstr "Gengo Parametreleri" #. module: base_gengo #: view:base.gengo.translations:0 diff --git a/addons/base_gengo/i18n/zh_CN.po b/addons/base_gengo/i18n/zh_CN.po index d923697bf68..f5a5b359274 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 66a8df723f6..db99ba3fde5 100644 --- a/addons/base_iban/i18n/ar.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 da3d6f2fcfd..eff9a5c1563 100644 --- a/addons/base_iban/i18n/bg.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 8703971789c..7ac614303aa 100644 --- a/addons/base_iban/i18n/bs.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 c9d95180402..f52fecd85ef 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 8a3290e1363..ae95b9ef96f 100644 --- a/addons/base_iban/i18n/cs.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 14e7fc468aa..9681f88654d 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 6ffb0a950a2..b6db7d9d3fe 100644 --- a/addons/base_iban/i18n/de.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 0be1c0aa872..9811aa748a8 100644 --- a/addons/base_iban/i18n/el.po +++ b/addons/base_iban/i18n/el.po @@ -9,8 +9,8 @@ msgstr "" "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 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/base_iban/i18n/en_GB.po b/addons/base_iban/i18n/en_GB.po index 9cb192c2ebf..357614f2a53 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 39b9008f088..2c6898aebbe 100644 --- a/addons/base_iban/i18n/es.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 3826aaccde4..fd64066c1ff 100644 --- a/addons/base_iban/i18n/es_AR.po +++ b/addons/base_iban/i18n/es_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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 61d94cb9521..ca0b28836eb 100644 --- a/addons/base_iban/i18n/es_CR.po +++ b/addons/base_iban/i18n/es_CR.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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: base_iban diff --git a/addons/base_iban/i18n/es_EC.po b/addons/base_iban/i18n/es_EC.po index 08af165333b..aa9408b8967 100644 --- a/addons/base_iban/i18n/es_EC.po +++ b/addons/base_iban/i18n/es_EC.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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 4a652f1c045..bdba27144c0 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 70ded600ed6..da9ec3daec6 100644 --- a/addons/base_iban/i18n/et.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 f533c6d2192..68a9a5089ba 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 e1e67bf93d3..f90921d771e 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 33f39071540..341cee4c3a1 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 b8fed3e600d..3bc5f34943b 100644 --- a/addons/base_iban/i18n/fr.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 54e06384446..db47425c30b 100644 --- a/addons/base_iban/i18n/gl.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 fbfae8cf4f8..cce8874b013 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 4eca0a7a197..6afad7703ba 100644 --- a/addons/base_iban/i18n/hr.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: hr\n" #. module: base_iban diff --git a/addons/base_iban/i18n/hu.po b/addons/base_iban/i18n/hu.po index a14c9a67884..8f4fed03cf2 100644 --- a/addons/base_iban/i18n/hu.po +++ b/addons/base_iban/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-17 04:59+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_iban #: constraint:res.partner.bank:0 diff --git a/addons/base_iban/i18n/id.po b/addons/base_iban/i18n/id.po index 8c3a224ef3c..263d5d5dbf7 100644 --- a/addons/base_iban/i18n/id.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 f3eb93b6bfb..74415956d80 100644 --- a/addons/base_iban/i18n/it.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 3406429bd09..b3deb73e923 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 67041755d7d..b522d0a6524 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 b6ec4bca784..5db545aa9a8 100644 --- a/addons/base_iban/i18n/lt.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_iban #: constraint:res.partner.bank:0 @@ -43,7 +43,7 @@ msgstr "" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_zip_field msgid "zip" -msgstr "zip" +msgstr "pašto kodas" #. module: base_iban #: help:res.partner.bank,iban:0 @@ -53,7 +53,7 @@ msgstr "Tarptautinis banko sąskaitos numeris" #. module: base_iban #: model:ir.model,name:base_iban.model_res_partner_bank msgid "Bank Accounts" -msgstr "" +msgstr "Banko sąskaitos" #. module: base_iban #: model:res.partner.bank.type.field,name:base_iban.bank_country_field diff --git a/addons/base_iban/i18n/lv.po b/addons/base_iban/i18n/lv.po index 165c9b55c09..d46546e5894 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 2cf1008bd94..86f707be964 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_iban #: constraint:res.partner.bank:0 @@ -25,14 +25,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,12 +47,12 @@ 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 msgid "International Bank Account Number" -msgstr "Интернационален број на банкарска сметка" +msgstr "Број на меѓународна банкарска сметка" #. module: base_iban #: model:ir.model,name:base_iban.model_res_partner_bank @@ -81,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 "IBAN-от е невалиде, треба да започнува со кодот на државата" +msgstr "IBAN-от е невалиден, треба да започнува со кодот на државата" #. module: base_iban #: model:res.partner.bank.type,name:base_iban.bank_iban diff --git a/addons/base_iban/i18n/mn.po b/addons/base_iban/i18n/mn.po index 446f6f3cf37..298307ebab2 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 48f9c25e37b..c666f0a5ef0 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 583b3802c50..7a9945db224 100644 --- a/addons/base_iban/i18n/nl.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 175916e3413..465748b9d40 100644 --- a/addons/base_iban/i18n/nl_BE.po +++ b/addons/base_iban/i18n/nl_BE.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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 48b5edc1101..82077540984 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 6e4edbb95b9..0d47099c693 100644 --- a/addons/base_iban/i18n/pl.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 e988380610b..1d154fed2da 100644 --- a/addons/base_iban/i18n/pt.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 f82d55f2637..c72614a3292 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 4fdb1987163..67053921961 100644 --- a/addons/base_iban/i18n/ro.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 1b700cbf594..8a0b3cc2b28 100644 --- a/addons/base_iban/i18n/ru.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 ec40c1f1ed2..13e7ccea5b2 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 6f3e7107546..547d3f47e29 100644 --- a/addons/base_iban/i18n/sl.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 3b0a866f76b..5c84f7a1f25 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 ac80277e12f..1864145db2d 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 a06215e6713..67270d45bfc 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 7045aba7bf8..457d249035a 100644 --- a/addons/base_iban/i18n/sv.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 4c21639b991..337941dd466 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 01e94922ed3..01b4f189a5c 100644 --- a/addons/base_iban/i18n/tlh.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 6bcdb10658b..fe45f5d8747 100644 --- a/addons/base_iban/i18n/tr.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 bf05aeb9221..41650699b67 100644 --- a/addons/base_iban/i18n/uk.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 29bb03a8527..519247a110f 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 c3442869c36..1c5605c5d4e 100644 --- a/addons/base_iban/i18n/zh_CN.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 496a52af6ed..f58dc445a9a 100644 --- a/addons/base_iban/i18n/zh_TW.po +++ b/addons/base_iban/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\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 ba70430c582..7aab79cbdca 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/cs.po b/addons/base_import/i18n/cs.po index e49e2198de7..b6f8fb541f0 100644 --- a/addons/base_import/i18n/cs.po +++ b/addons/base_import/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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/de.po b/addons/base_import/i18n/de.po index 2ae2d77e288..d16893365b6 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/es.po b/addons/base_import/i18n/es.po index 9cca9b9cf17..aa06858893a 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/et.po b/addons/base_import/i18n/et.po index 6313debea8b..4d36631da07 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/fr.po b/addons/base_import/i18n/fr.po index ac9198490b7..fdcf8080e70 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web @@ -47,6 +47,17 @@ msgid "" "give \n" " you an example for Products and their Categories." msgstr "" +"Lorsque vous utilisez des identifiants externes, vous pouvez importer des " +"fichiers CSV\n" +" avec la colonne \"Id. externe\" pour définir " +"l'identifiant externe\n" +" de chaque enregistrement que vous importez. " +"Ensuite, vous pourrez\n" +" faire référence à cet enregistrement avec des " +"colonnes comme \n" +" \"Champ / Id. externe\". Les deux fichiers " +"CVS suivants vous donnent\n" +" un exemple des produits et leurs catégories." #. module: base_import #. openerp-web @@ -206,7 +217,8 @@ msgstr "" "Notez que si votre fichier CSV \n" " utilise les tabulations comme séparateurs, OpenERP " "ne \n" -" détectera les séparations. Vous devrez changer les \n" +" détectera pas les séparations. Vous devrez changer " +"les \n" " options de format du fichier dans votre tableur. \n" " Voir la question suivante." @@ -319,6 +331,8 @@ msgid "" "How can I change the CSV file format options when \n" " saving in my spreadsheet application?" msgstr "" +"Comment puis-je changer les options de formatage du fichier CSV lorsque que " +"je sauvegarde dans mon tableur?" #. module: base_import #. openerp-web @@ -573,7 +587,7 @@ msgstr "" #: 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 "" +msgstr "Voici le début du fichier qu'il n'a pas été possible d'importer" #. module: base_import #: field:base_import.import,file_type:0 @@ -595,7 +609,7 @@ msgstr "base_import.tests.models.o2m" #: code:addons/base_import/static/src/xml/import.xml:360 #, python-format msgid "Import preview failed due to:" -msgstr "" +msgstr "La prévisualisation de l'import à échoué à cause de :" #. module: base_import #. openerp-web @@ -653,7 +667,7 @@ msgstr "" #: code:addons/base_import/models.py:264 #, python-format msgid "You must configure at least one field to import" -msgstr "" +msgstr "Vous devez paramétrer au moins un champ à importer" #. module: base_import #. openerp-web @@ -669,7 +683,7 @@ msgstr "" msgid "" "The first row of the\n" " file contains the label of the column" -msgstr "" +msgstr "La première ligne du fichier contient le titre de la colonne." #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_states @@ -681,7 +695,7 @@ msgstr "base_import.tests.models.char.states" #: code:addons/base_import/static/src/xml/import.xml:7 #, python-format msgid "Import a CSV File" -msgstr "" +msgstr "Importer un fichier CSV" #. module: base_import #. openerp-web @@ -715,7 +729,7 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" -msgstr "" +msgstr "Voici les valeurs correctes :" #. module: base_import #. openerp-web @@ -732,6 +746,8 @@ msgid "" "A single column was found in the file, this often means the file separator " "is incorrect" msgstr "" +"Une seule colonne a été trouvée dans le fichier. Cela signifie souvent que " +"le séparateur du fichier est incorrect" #. module: base_import #. openerp-web @@ -745,7 +761,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:301 #, python-format msgid "This SQL command will create the following CSV file:" -msgstr "" +msgstr "Cette commande SQL va créer le fichier CSV suivant :" #. module: base_import #. openerp-web @@ -755,6 +771,8 @@ msgid "" "The following CSV file shows how to import purchase \n" " orders with their respective purchase order lines:" msgstr "" +"Le fichier CSV suivant montre comment importer des commandes d'achat avec " +"leurs lignes de commande respectives :" #. module: base_import #. openerp-web @@ -859,6 +877,8 @@ msgid "" " \"External ID\". In PSQL, write the following " "command:" msgstr "" +"Nous allons d'abord exporter toutes les sociétés et leur \"Id. externe\". " +"Dans PSQL, écrivez la commande suivante :" #. module: base_import #. openerp-web @@ -874,7 +894,7 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." -msgstr "" +msgstr "Tout semble correct." #. module: base_import #. openerp-web @@ -893,7 +913,7 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" -msgstr "" +msgstr "à la ligne %d" #. module: base_import #. openerp-web @@ -975,6 +995,7 @@ msgid "" "What happens if I do not provide a value for a \n" " specific field?" msgstr "" +"Que se passe-t-il si je ne fournis pas une valeur pour un champ spécifique ?" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/hr.po b/addons/base_import/i18n/hr.po index b7c4238062c..511e513dff9 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/hu.po b/addons/base_import/i18n/hu.po index db143a0f032..88e05672b82 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-29 04:36+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web @@ -1332,6 +1332,14 @@ msgid "" " (displayed under the Browse CSV file bar after you \n" " select your file)." msgstr "" +"Alapértelmezetten az importálás előnézetben a vesszők mint mező \n" +" elválasztók és a kérdőjelek mint szöveg határolók \n" +" szerepelnek. Ha a csv fájlnak nincsenek meg ezek a " +"\n" +" beállításai, akkor módosíthatja a fájl formátum " +"lehetőségekkel \n" +" (kijelezve a kiválasztott CSV fájl böngészési sávja " +"alatt)." #. module: base_import #. openerp-web @@ -1388,8 +1396,14 @@ msgid "" "demo \n" " data." msgstr "" +"Példának, it van egy \n" +" purchase.order_functional_error_line_cant_adpat.CSV " +"\n" +" fájl egy pár árajánlatról amit beimportálhat, a demo " +"adat \n" +" alapján." #. module: base_import #: field:base_import.import,file:0 msgid "File" -msgstr "" +msgstr "Fájl" diff --git a/addons/base_import/i18n/it.po b/addons/base_import/i18n/it.po index b7b80e1afdd..0935b13496b 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/mk.po b/addons/base_import/i18n/mk.po index 02905005c5b..8211338df06 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/mn.po b/addons/base_import/i18n/mn.po index 5d00aabc9ce..a293c3991b8 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/nb.po b/addons/base_import/i18n/nb.po index 49071947e7e..2bf9dc6b9b1 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/nl.po b/addons/base_import/i18n/nl.po index e50425be045..d571454e402 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web @@ -84,7 +84,7 @@ msgid "" " record, defined by the ID postgresql column" msgstr "" "Land/Database ID: de unieke OpenERP ID voor een \n" -" record, gedefinieerd door de postgresql kolom id" +" record, gedefinieerd door de PostgreSQL kolom id" #. module: base_import #. openerp-web @@ -246,7 +246,7 @@ msgstr "Kan ik meerdere maken hetzelfde record importeren." #: code:addons/base_import/static/src/xml/import.xml:15 #, python-format msgid "Validate" -msgstr "Bevestigen" +msgstr "Controleren" #. module: base_import #. openerp-web @@ -358,9 +358,9 @@ msgid "" msgstr "" "Zoals u in dit bestand kunt zien, werken Fabien en Laurence\n" " voor grote bedrijven (company_1) en Eric werkt\n" -" voor het nedrijf Organi. De relatie tussen de " +" voor het bedrijf Organi. De relatie tussen de " "personen \n" -" en de bedrijven wordt egmaakt door gebruik te maken " +" en de bedrijven wordt gemaakt door gebruik te maken " "van de \n" " External ID van de bedrijven. We hebben een prefix " "gemaakt voor de \n" @@ -448,7 +448,7 @@ msgstr "" "\"Verkoopbaar\" (bijv. \"Div.\n" " Producten / Verkoopbaar\" & \"Overige producten / " "Verkoopbaar\"),\n" -" zal de import validate stoppen, maar u kunt nog " +" zal de import validatie stoppen, maar u kunt nog " "steeds uw data importeren.\n" " Toch raden wij u niet aan de data te importeren " "omdat deze allemaal worden\n" @@ -655,7 +655,7 @@ msgstr "Het zal het volgende CSV bestand produceren" #: 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 "Hier is de start van het bestand welke we niet konden improteren:" +msgstr "Hier is de start van het bestand welke we niet konden importeren:" #. module: base_import #: field:base_import.import,file_type:0 @@ -996,7 +996,7 @@ msgid "" "command:" msgstr "" "We zullen eerst alle bedrijven met de \n" -" \"External ID\" exproteren. In PSQL, schrijf het " +" \"External ID\" exporteren. In PSQL, schrijf het " "volgende commando:" #. module: base_import @@ -1190,8 +1190,8 @@ msgid "" " import an other record that links to the first\n" " one, use" msgstr "" -"kolom in OpenERP. Waneer u\n" -" een ander record importeerd, welke verwijst naar de " +"kolom in OpenERP. Wanneer u\n" +" een ander record importeert, welke verwijst naar de " "eerste\n" " gebruik," diff --git a/addons/base_import/i18n/pl.po b/addons/base_import/i18n/pl.po index 94589878948..baf0718bcd8 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/pt.po b/addons/base_import/i18n/pt.po index 5a1edc57a7f..06f2ec005e5 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web @@ -56,6 +56,8 @@ msgid "" "How to export/import different tables from an SQL \n" " application to OpenERP?" msgstr "" +"Como exportar/importar diferentes tabelas de uma \n" +"aplicação SQL para o OpenERP?" #. module: base_import #. openerp-web @@ -96,6 +98,8 @@ msgid "" "For the country \n" " Belgium, you can use one of these 3 ways to import:" msgstr "" +"Para o país \n" +" Bélgica, pode usar um destes 3 métodos de importação:" #. module: base_import #. openerp-web @@ -166,7 +170,7 @@ msgstr "Não importar" #: code:addons/base_import/static/src/xml/import.xml:24 #, python-format msgid "Select the" -msgstr "" +msgstr "Selecione o" #. module: base_import #. openerp-web @@ -199,7 +203,7 @@ msgstr "base_import.tests.models.o2m.child" #: code:addons/base_import/static/src/xml/import.xml:239 #, python-format msgid "Can I import several times the same record?" -msgstr "" +msgstr "Posso importar o mesmo registo várias vezes?" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/pt_BR.po b/addons/base_import/i18n/pt_BR.po index ebb8d794879..831f63c6f1b 100644 --- a/addons/base_import/i18n/pt_BR.po +++ b/addons/base_import/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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web @@ -146,6 +146,12 @@ msgid "" "companies) TO \n" " '/tmp/company.csv' with CSV HEADER;" msgstr "" +"copiar \n" +" (Selecione 'company_' | | ID como \"ID externo\", " +"company_name \n" +" como \"Nome\", 'True' como \"é uma empresa\" de " +"empresas) TO \n" +" \"/ Tmp / company.csv\" com CSV HEADER;" #. module: base_import #. openerp-web @@ -210,6 +216,13 @@ msgid "" "\n" " See the following question." msgstr "" +"Observe que caso seu Arquivo CSV\n" +" tenha tabulações como separadores, o OpenERP não " +"irá\n" +" detectar as separações. Você irá precisar trocar o\n" +" a opção de formato de arquivo em seu programa de " +"planilha eletrônica. \n" +" Confira essa questão." #. module: base_import #. openerp-web @@ -341,6 +354,19 @@ msgid "" "orignial \n" " database)." msgstr "" +"Como você pode ver neste arquivo, Fabien e Laurence \n" +" estão trabalhando para a empresa Bigees (company_1) " +"e \n" +" Eric está trabalhando para a empresa Organização. A " +"relação \n" +" entre pessoas e empresas é feito usando o \n" +" ID externo das empresas. Tivemos de prefixo \n" +" \"ID externo\" com o nome do quadro, para evitar um " +"\n" +" conflito de ID entre pessoas e empresas (person_1 \n" +" e company_1 que compartilhavam o mesmo ID 1 no " +"orignial \n" +" banco de dados)." #. module: base_import #. openerp-web @@ -355,6 +381,14 @@ msgid "" "\n" " '/tmp/person.csv' with CSV" msgstr "" +"cópia (selecione \n" +" 'Person_' | | ID como \"ID externo\", como " +"PERSON_NAME \n" +" \"Nome\", 'False' como \"é uma empresa\", \"company_ " +"'| | company_id\n" +" como \"Empresa Relacionada / ID externo\" de " +"pessoas) TO \n" +" \"/ Tmp / person.csv\" com CSV" #. module: base_import #. openerp-web @@ -376,6 +410,8 @@ msgid "" "External ID,Name,Is a \n" " Company,Related Company/External ID" msgstr "" +"Identificação externa, nome, é um \n" +" Company, Empresa Relacionada / ID externo" #. module: base_import #. openerp-web @@ -404,6 +440,23 @@ msgid "" "category \n" " hierarchy." msgstr "" +"Se, por exemplo, você tem duas categorias de produtos \n" +" com o nome da criança \"vendável\" (ou seja, \"Misc. " +"\n" +" Produtos / vendável \"e\" Outros Produtos / vendável " +"\"),\n" +" sua validação é interrompida, mas você ainda pode " +"importar \n" +" seus dados. No entanto, recomendamos que você não " +"importe o \n" +" dados, porque todos eles serão ligados ao primeiro \n" +" Categoria 'vendável' encontrado na lista de " +"Categoria de Produtos \n" +" (\"Misc. Produtos / Sellable\"). Recomendamos que " +"você modifique \n" +" um dos valores duplicados 'ou a sua categoria de " +"produto \n" +" hierarquia." #. module: base_import #. openerp-web @@ -415,6 +468,9 @@ msgid "" "\n" " PSQL:" msgstr "" +"Para criar o arquivo CSV para as pessoas, ligadas a \n" +" empresas, vamos usar o comando SQL a seguir na \n" +" PSQL:" #. module: base_import #. openerp-web @@ -426,6 +482,11 @@ msgid "" " (in 'Save As' dialog box > click 'Tools' dropdown \n" " list > Encoding tab)." msgstr "" +"Microsoft Excel permitirá \n" +" modificar apenas a codificação ao salvar \n" +" (Em \"Salvar como\" caixa de diálogo suspensa> " +"clique em 'Ferramentas' \n" +" lista> guia Encoding)." #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 @@ -442,6 +503,12 @@ msgid "" " later, it's thus good practice to specify it\n" " whenever possible" msgstr "" +"também será usado para atualizar o original\n" +" importar se você precisar voltar a importar os dados " +"modificados\n" +" mais tarde, é, portanto, uma boa prática para " +"especificá-lo\n" +" sempre que possível" #. module: base_import #. openerp-web @@ -451,6 +518,8 @@ msgid "" "file to import. If you need a sample importable file, you\n" " can use the export tool to generate one." msgstr "" +"arquivo para importar. Se você precisa de um arquivo modelo, você\n" +" pode usar a ferramenta de exportação para gerar um." #. module: base_import #. openerp-web @@ -490,6 +559,11 @@ msgid "" " field corresponding to the column. This makes imports\n" " simpler especially when the file has many columns." msgstr "" +"Se o arquivo contiver\n" +" os nomes das colunas, OpenERP pode tentar auto-detectar a\n" +" campo correspondente à coluna. Isso faz com que a " +"importação\n" +" simples, especialmente quando o arquivo tem muitas colunas." #. module: base_import #. openerp-web @@ -534,6 +608,17 @@ msgid "" "filter \n" " settings' > Save)." msgstr "" +"Se você editar e salvar arquivos CSV em folha de cálculo \n" +" aplicativos, configurações regionais do seu " +"computador irá \n" +" ser aplicado para o separador e delimitador. \n" +" Nós sugerimos que você use o OpenOffice ou BrOffice " +"Calc \n" +" como eles vão permitir que você modifique as três " +"opções \n" +" (Em \"Salvar como\" caixa de diálogo> Marque a caixa " +"\"Editar filtro \n" +" configurações> Salvar)." #. module: base_import #. openerp-web @@ -604,6 +689,10 @@ msgid "" "\n" " that imported it)" msgstr "" +"País / ID externo: o ID deste registro \n" +" referenciado em outro aplicativo (ou o arquivo XML. " +"\n" +" que importou)" #. module: base_import #. openerp-web @@ -632,6 +721,17 @@ msgid "" "\n" " per field you want to import." msgstr "" +"Alguns campos de definir uma relação com outro \n" +" objeto. Por exemplo, o país de um contato é um \n" +" vincular a um registro de objeto do 'País'. Quando " +"você \n" +" deseja importar esses campos, OpenERP terá que \n" +" recriar vínculos entre os diferentes registros. \n" +" Para ajudá-lo a importar esses campos, OpenERP " +"fornece 3 \n" +" mecanismos. Você deve usar um e apenas um mecanismo " +"\n" +" por campo que você deseja importar." #. module: base_import #. openerp-web @@ -645,6 +745,14 @@ msgid "" " then you will encode it as follow \"Manufacturer,\n" " Retailer\" in the same column of your CSV file." msgstr "" +"As etiquetas devem ser separadas por uma vírgula, sem qualquer \n" +" espaçamento. Por exemplo, se você quiser, cliente a " +"ser \n" +" forrado de ambas as marcas \"fabricante\" e " +"\"Retailer ' \n" +" então você vai codificá-lo como acompanhamento \"do " +"fabricante,\n" +" Retailer \"na mesma coluna do seu arquivo CSV." #. module: base_import #: code:addons/base_import/models.py:264 @@ -657,7 +765,7 @@ msgstr "Você precisa configurar pelo menos um campo para importar" #: code:addons/base_import/static/src/xml/import.xml:304 #, python-format msgid "company_2,Organi,True" -msgstr "" +msgstr "company_2, Organização, Verdadeiro" #. module: base_import #. openerp-web @@ -667,6 +775,8 @@ msgid "" "The first row of the\n" " file contains the label of the column" msgstr "" +"A primeira linha do\n" +" arquivo contém os títulos das colunas" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_states @@ -737,7 +847,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 @@ -754,6 +864,9 @@ msgid "" "The following CSV file shows how to import purchase \n" " orders with their respective purchase order lines:" msgstr "" +"O seguinte arquivo CSV mostra como importar compra \n" +" ordens com suas respectivas linhas de ordem de " +"compra:" #. module: base_import #. openerp-web @@ -763,6 +876,8 @@ msgid "" "What can I do when the Import preview table isn't \n" " displayed correctly?" msgstr "" +"O que posso fazer quando a tabela de visualização de Importação não é \n" +" exibido corretamente?" #. module: base_import #: field:base_import.tests.models.char,value:0 @@ -786,14 +901,14 @@ 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 #: code:addons/base_import/static/src/xml/import.xml:149 #, python-format msgid "Country/External ID: base.be" -msgstr "" +msgstr "País / ID externo: base.be" #. module: base_import #. openerp-web @@ -808,6 +923,14 @@ msgid "" " the company he work for. (If you want to test this \n" " example, here is a" msgstr "" +"Como exemplo, suponha que você tenha um banco de dados SQL \n" +" com duas tabelas que deseja importar: empresas e \n" +" pessoas. Cada pessoa pertence a uma empresa, para " +"que você \n" +" vai ter que recriar a ligação entre uma pessoa e \n" +" a empresa que ele trabalha. (Se você quer testar " +"este \n" +" exemplo, aqui está uma" #. module: base_import #. openerp-web @@ -848,6 +971,19 @@ msgid "" "\n" " table. (like 'company_1', 'person_1' instead of '1')" msgstr "" +"Para gerir as relações entre as tabelas, \n" +" você pode utilizar as instalações \"ID Externas\" de " +"OpenERP. \n" +" O \"ID externo\" de um registro é o identificador " +"único \n" +" desse registro em outro aplicativo. Este \"External " +"\n" +" ID \"deve ser accoss únicos todos os registros de " +"todos os \n" +" objetos, por isso é uma boa prática para este " +"prefixo \n" +" \"ID externo\" com o nome do aplicativo ou \n" +" tabela. (Como 'company_1', 'person_1' em vez de '1 ')" #. module: base_import #. openerp-web @@ -858,6 +994,8 @@ msgid "" " \"External ID\". In PSQL, write the following " "command:" msgstr "" +"Vamos primeiro exportar todas as empresas e seus \n" +" \"ID externo\". Em PSQL, escreva o seguinte comando:" #. module: base_import #. openerp-web @@ -867,6 +1005,8 @@ msgid "" "How can I import a one2many relationship (e.g. several \n" " Order Lines of a Sales Order)?" msgstr "" +"Como posso importar um relacionamento one2many (por exemplo, vários \n" +" Encomendar Linhas de uma Ordem de Sales)?" #. module: base_import #. openerp-web @@ -886,6 +1026,11 @@ msgid "" " use make use of the external ID for this field \n" " 'Category'." msgstr "" +"No entanto, se você não quiser mudar a sua \n" +" configuração de categorias de produtos, recomendamos " +"que você \n" +" usar fazer uso da ID externo para este campo \n" +" 'Categoria'." #. module: base_import #. openerp-web @@ -902,13 +1047,15 @@ msgid "" "How can I import a many2many relationship field \n" " (e.g. a customer that has multiple tags)?" msgstr "" +"Como posso importar um campo de relacionamento many2many \n" +" (Por exemplo, um cliente que tem várias marcas)?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:80 #, python-format msgid "XXX/ID" -msgstr "" +msgstr "XXX / ID" #. module: base_import #. openerp-web @@ -924,6 +1071,14 @@ msgid "" " link between each person and the company they work \n" " for)." msgstr "" +"Se você precisar importar dados de diferentes tabelas, \n" +" você terá de recriar as relações entre registros \n" +" pertencentes a diferentes tabelas. (Por exemplo, se " +"você importar \n" +" empresas e pessoas, você terá de recriar o \n" +" ligação entre cada pessoa e da empresa em que " +"trabalham \n" +" for)." #. module: base_import #. openerp-web @@ -936,13 +1091,18 @@ msgid "" " Here is when you should use one or the other, \n" " according to your need:" msgstr "" +"De acordo com a sua necessidade, você deve usar \n" +" uma dessas três maneiras de referenciar registros " +"nas relações. \n" +" Aqui é quando você deve usar um ou o outro, \n" +" de acordo com a sua necessidade:" #. 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 "" +msgstr "person_4, Ramsy, False, company_3" #. module: base_import #. openerp-web @@ -958,6 +1118,14 @@ msgid "" " will set the EMPTY value in the field, instead of \n" " assigning the default value." msgstr "" +"Se você não definir todos os campos em seu arquivo CSV, \n" +" OpenERP irá atribuir o valor padrão para todos os " +"não \n" +" campos definidos. Mas se você\n" +" definir os campos com valores vazios em seu arquivo " +"CSV, OpenERP \n" +" irá definir o valor vazio em campo, em vez de \n" +" atribuir o valor padrão." #. module: base_import #. openerp-web @@ -974,6 +1142,8 @@ msgid "" "What happens if I do not provide a value for a \n" " specific field?" msgstr "" +"O que acontece se eu não fornecer um valor para a \n" +" campo específico?" #. module: base_import #. openerp-web @@ -987,7 +1157,7 @@ msgstr "Perguntas Freqüentes" #: code:addons/base_import/static/src/xml/import.xml:305 #, python-format msgid "company_3,Boum,True" -msgstr "" +msgstr "company_3, Boum, Verdadeiro" #. module: base_import #. openerp-web @@ -1001,6 +1171,12 @@ msgid "" "spreadsheet \n" " application." msgstr "" +"Este recurso \n" +" permite que você use a ferramenta de importação / " +"exportação de OpenERP para \n" +" modificar um lote de registros na planilha favorito " +"\n" +" aplicação." #. module: base_import #. openerp-web @@ -1011,6 +1187,10 @@ msgid "" " import an other record that links to the first\n" " one, use" msgstr "" +"coluna no OpenERP. Quando você\n" +" importar um outro registro que os links para o " +"primeiro\n" +" um, utilizar" #. module: base_import #. openerp-web @@ -1031,6 +1211,18 @@ msgid "" " take care of creating or modifying each record \n" " depending if it's new or not." msgstr "" +"Se você importar um arquivo que contém um dos \n" +" coluna \"ID externo\" ou \"ID do banco de dados\", " +"registra que \n" +" Já foram importados será modificado em vez de \n" +" sendo criado. Isto é muito útil, pois permite que " +"você \n" +" para importar várias vezes o mesmo arquivo CSV ao " +"ter \n" +" fiz algumas mudanças entre duas importações. OpenERP " +"vontade \n" +" cuidar da criação ou modificação de cada registro \n" +" dependendo se é novo ou não." #. module: base_import #. openerp-web @@ -1056,6 +1248,10 @@ msgid "" " identifier from the original application and\n" " map it to the" msgstr "" +"A fim de recriar as relações entre\n" +" diferentes registros, você deve usar o único\n" +" identificador da aplicação original e\n" +" mapeá-lo para o" #. module: base_import #. openerp-web @@ -1082,6 +1278,16 @@ msgid "" "\n" " the fields relative to the order." msgstr "" +"Se você deseja importar pedidos de vendas com vários \n" +" linhas da ordem, por cada linha do pedido, você " +"precisa reservar \n" +" uma linha específica no arquivo CSV. A primeira " +"linha da ordem \n" +" serão importados na mesma linha como a informação \n" +" em relação à ordem. Quaisquer linhas adicionais será " +"necessário um \n" +" linha addtional que não tem qualquer informação \n" +" os campos relativos à ordem." #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_related @@ -1105,7 +1311,7 @@ msgstr "para o identificador único original." #: code:addons/base_import/static/src/xml/import.xml:318 #, python-format msgid "person_3,Eric,False,company_2" -msgstr "" +msgstr "person_3, Eric, False, company_2" #. module: base_import #: field:base_import.import,res_model:0 @@ -1134,6 +1340,15 @@ msgid "" " to the first company). You must first import the \n" " companies and then the persons." msgstr "" +"Os dois arquivos produzidos estão prontos para serem importados \n" +" OpenERP sem qualquer modificação. Depois de ter \n" +" importado esses dois arquivos CSV, você terá 4 " +"contatos \n" +" e três empresas. (Os primeiros dois contatos estão " +"ligados \n" +" para a primeira empresa). Primeiro, você deve " +"importar o \n" +" empresas e, em seguida, as pessoas." #. module: base_import #. openerp-web @@ -1147,6 +1362,13 @@ msgid "" " (displayed under the Browse CSV file bar after you \n" " select your file)." msgstr "" +"Por padrão, a visualização de importação é fixado em vírgulas como \n" +" separadores de campo e aspas como texto \n" +" delimitadores. Se o seu arquivo CSV não tem estes \n" +" configurações, você pode modificar as opções de " +"formato de arquivo \n" +" (Exibido na barra arquivo CSV Procurar depois de \n" +" selecione o arquivo)." #. module: base_import #. openerp-web @@ -1175,14 +1397,14 @@ msgstr "ID Externo" #: code:addons/base_import/static/src/xml/import.xml:39 #, python-format msgid "File Format Options…" -msgstr "" +msgstr "Opções de formato ..." #. 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 "entre as linhas% d e% d" #. module: base_import #. openerp-web @@ -1203,8 +1425,14 @@ msgid "" "demo \n" " data." msgstr "" +"Como um exemplo, aqui é \n" +" purchase.order_functional_error_line_cant_adpat.CSV " +"\n" +" arquivo de algumas citações que você pode importar, " +"com base na demonstração \n" +" dados." #. module: base_import #: field:base_import.import,file:0 msgid "File" -msgstr "" +msgstr "Arquivo" diff --git a/addons/base_import/i18n/ro.po b/addons/base_import/i18n/ro.po index 2139fae0f76..c4785521ab7 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/ru.po b/addons/base_import/i18n/ru.po index df0f22e75b1..a47660222c1 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/sl.po b/addons/base_import/i18n/sl.po index a2962d82182..cd33226ba92 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web diff --git a/addons/base_import/i18n/tr.po b/addons/base_import/i18n/tr.po index b91002eb5d0..093d5a80850 100644 --- a/addons/base_import/i18n/tr.po +++ b/addons/base_import/i18n/tr.po @@ -14,22 +14,22 @@ msgstr "" "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 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:451 #, python-format msgid "Get all possible values" -msgstr "" +msgstr "Bütün olası değerleri al" #. 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 "" +msgstr "Başka bir uygulamadan veri içeaktarmanız mı gerekiyor?" #. module: base_import #. openerp-web @@ -56,13 +56,15 @@ msgid "" "How to export/import different tables from an SQL \n" " application to OpenERP?" msgstr "" +"Bir SQL uygulamasından değişik tablolar OpenERP ye nasıl \n" +" alınır/verilir?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:331 #, python-format msgid "Relation Fields" -msgstr "" +msgstr "İlişki Alanları" #. module: base_import #. openerp-web @@ -72,6 +74,8 @@ msgid "" "Country/Database ID: the unique OpenERP ID for a \n" " record, defined by the ID postgresql column" msgstr "" +"Ülke/Veritabanı ID: bir kayıt için eşsiz OpenERP ID, \n" +" ID psotgresql sütunu tarafından tanımlanır" #. module: base_import #. openerp-web @@ -96,13 +100,15 @@ msgid "" "For the country \n" " Belgium, you can use one of these 3 ways to import:" msgstr "" +"Belçika ülkesi için, \n" +" bu 3 içeaktarma yönteminden birini kullanabilirsiniz:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:303 #, python-format msgid "company_1,Bigees,True" -msgstr "company_1,Bigees,True" +msgstr "company_1,Bigees,Doğru" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o @@ -127,7 +133,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:206 #, python-format msgid "CSV file for Manufacturer, Retailer" -msgstr "" +msgstr "Üretici, Satıcı için CSV dosyası" #. module: base_import #. openerp-web @@ -139,20 +145,24 @@ msgid "" "\n" " data from a third party application." msgstr "" +"Bunu kullan \n" +" Ülke/Dış ID: Bir üçüncü partiden veri " +"içeaktaracağınızda \n" +" Dış Id kullanın." #. 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 "" +msgstr "person_1,Fabien,False,company_1" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:80 #, python-format msgid "XXX/External ID" -msgstr "" +msgstr "XXX/DışID" #. module: base_import #. openerp-web @@ -166,7 +176,7 @@ msgstr "Aktarma" #: code:addons/base_import/static/src/xml/import.xml:24 #, python-format msgid "Select the" -msgstr "" +msgstr "Bunu seç" #. module: base_import #. openerp-web @@ -187,7 +197,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:141 #, python-format msgid "Country: the name or code of the country" -msgstr "" +msgstr "Ülke: ülke adı ya da kodu" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_o2m_child @@ -199,7 +209,7 @@ msgstr "base_import.tests.models.o2m.child" #: code:addons/base_import/static/src/xml/import.xml:239 #, python-format msgid "Can I import several times the same record?" -msgstr "" +msgstr "Aynı kaydı birçok sefer içeaktarabilir miyim?" #. module: base_import #. openerp-web @@ -213,7 +223,7 @@ msgstr "Onayla" #: code:addons/base_import/static/src/xml/import.xml:55 #, python-format msgid "Map your data to OpenERP" -msgstr "" +msgstr "Verilerinizi OpenERP ye eşleştirin" #. module: base_import #. openerp-web @@ -224,6 +234,9 @@ msgid "" " the easiest way when your data come from CSV files \n" " that have been created manually." msgstr "" +"Ülke Kullan: Bu \n" +" verilerinizin elle oluşturulan CSV dosyalarından \n" +" geldiği durumlarda en kolay yoldur." #. module: base_import #. openerp-web @@ -233,6 +246,8 @@ msgid "" "What's the difference between Database ID and \n" " External ID?" msgstr "" +"Veritabanı ID ile Dış ID arasındaki fark \n" +" nedir?" #. module: base_import #. openerp-web @@ -257,12 +272,12 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:302 #, python-format msgid "External ID,Name,Is a Company" -msgstr "" +msgstr "Dış ID,Adı, Bir Firmadır" #. module: base_import #: field:base_import.tests.models.preview,somevalue:0 msgid "Some Value" -msgstr "" +msgstr "Birkaç Değer" #. module: base_import #. openerp-web @@ -272,6 +287,8 @@ msgid "" "The following CSV file shows how to import \n" " suppliers and their respective contacts" msgstr "" +"Aşağıdaki CSV dosyası tedarikçi ve ilgili \n" +" kişilerinin nasıl içeaktarılacağını gösterir" #. module: base_import #. openerp-web @@ -342,7 +359,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:233 #, python-format msgid "Suppliers and their respective contacts" -msgstr "" +msgstr "Tedarikçiler ve ilgili Kişileri" #. module: base_import #. openerp-web @@ -390,7 +407,7 @@ msgstr "" #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 msgid "Other Variable" -msgstr "" +msgstr "Diğer Değişken" #. module: base_import #. openerp-web @@ -420,11 +437,13 @@ msgid "" "Country/Database \n" " ID: 21" msgstr "" +"Ülke/Veritabanı \n" +" ID: 21" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char msgid "base_import.tests.models.char" -msgstr "" +msgstr "base_import.tests.models.char" #. module: base_import #: help:base_import.import,file:0 @@ -454,7 +473,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:26 #, python-format msgid ".CSV" -msgstr "" +msgstr ".CSV" #. module: base_import #. openerp-web @@ -464,16 +483,18 @@ msgid "" ". The issue is\n" " usually an incorrect file encoding." msgstr "" +". Sorun\n" +" genellikle bir yanlış dosya şifrelemesidir." #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o_required msgid "base_import.tests.models.m2o.required" -msgstr "" +msgstr "base_import.tests.models.m2o.required" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly msgid "base_import.tests.models.char.noreadonly" -msgstr "" +msgstr "base_import.tests.models.char.noreadonly" #. module: base_import #. openerp-web @@ -501,32 +522,32 @@ msgstr "CSV dosyası:" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_preview msgid "base_import.tests.models.preview" -msgstr "" +msgstr "base_import.tests.models.preview" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_required msgid "base_import.tests.models.char.required" -msgstr "" +msgstr "base_import.tests.models.char.required" #. module: base_import #: code:addons/base_import/models.py:112 #, python-format msgid "Database ID" -msgstr "" +msgstr "Veritabanı ID" #. 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 "" +msgstr "Aşağıdaki CSV dosyasını oluşturacaktır:" #. 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 "" +msgstr "İçeaktaramadığımız dosyanın başı:" #. module: base_import #: field:base_import.import,file_type:0 @@ -548,7 +569,7 @@ msgstr "base_import.tests.models.o2m" #: code:addons/base_import/static/src/xml/import.xml:360 #, python-format msgid "Import preview failed due to:" -msgstr "" +msgstr "İçeaktarma hatasının nedeni<:" #. module: base_import #. openerp-web @@ -566,12 +587,12 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:35 #, python-format msgid "Reload data to check changes." -msgstr "" +msgstr "Değişiklikleri denetlemek için veriyi yeniden yükleyin." #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_readonly msgid "base_import.tests.models.char.readonly" -msgstr "" +msgstr "base_import.tests.models.char.readonly" #. module: base_import #. openerp-web @@ -606,7 +627,7 @@ msgstr "" #: code:addons/base_import/models.py:264 #, python-format msgid "You must configure at least one field to import" -msgstr "" +msgstr "İçeaktarma yapabilmek için enaz bir alanı yapılandırmalısınız" #. module: base_import #. openerp-web @@ -623,37 +644,39 @@ msgid "" "The first row of the\n" " file contains the label of the column" msgstr "" +"Dosyanın ilk satırı\n" +" sütunun adını içerir" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_states msgid "base_import.tests.models.char.states" -msgstr "" +msgstr "base_import.tests.models.char.states" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:7 #, python-format msgid "Import a CSV File" -msgstr "" +msgstr "Bir CSV Dosyası içeaktar" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:74 #, python-format msgid "Quoting:" -msgstr "" +msgstr "Çıkan:" #. 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 "" +msgstr "base_import.tests.models.m2o.required.related" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:293 #, python-format msgid ")." -msgstr "" +msgstr ")." #. module: base_import #. openerp-web @@ -668,14 +691,14 @@ msgstr "İçe Aktar" #: code:addons/base_import/static/src/js/import.js:438 #, python-format msgid "Here are the possible values:" -msgstr "" +msgstr "Olası değerler:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "The" -msgstr "" +msgstr "Bu" #. module: base_import #. openerp-web @@ -685,6 +708,7 @@ msgid "" "A single column was found in the file, this often means the file separator " "is incorrect" msgstr "" +"Dosyada tek bir satır bulunmuştur, bu ayırıcının yanlış olduğu anlamına gelir" #. module: base_import #. openerp-web @@ -698,7 +722,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:301 #, python-format msgid "This SQL command will create the following CSV file:" -msgstr "" +msgstr "Bu SQL komutu aşağıdaki CSV dosyasını oluşturacaktır:" #. module: base_import #. openerp-web @@ -708,6 +732,9 @@ msgid "" "The following CSV file shows how to import purchase \n" " orders with their respective purchase order lines:" msgstr "" +"Aşağıdaki CSV dosyası satınalma siparişlerini ilgili satınalma \n" +" sipariş kalemleri ile birlikte nasıl " +"içeaktarılacağını gösterir:" #. module: base_import #. openerp-web @@ -812,6 +839,9 @@ msgid "" " \"External ID\". In PSQL, write the following " "command:" msgstr "" +"Önce bütün şirketleri ve şirketlerin \n" +" \"Dış ID\"lerini dışaaktaracağız. PSQL de, aşağıdaki " +"komutu yazı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 cd0fe1c403d..0a5f61f9d1f 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_import #. openerp-web @@ -113,12 +113,12 @@ msgstr "对于国 家" #: code:addons/base_import/static/src/xml/import.xml:303 #, python-format msgid "company_1,Bigees,True" -msgstr "" +msgstr "company_1,Bigees,True" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_m2o msgid "base_import.tests.models.m2o" -msgstr "" +msgstr "base_import.tests.models.m2o" #. module: base_import #. openerp-web @@ -160,14 +160,14 @@ msgstr "使用" #: code:addons/base_import/static/src/xml/import.xml:316 #, python-format msgid "person_1,Fabien,False,company_1" -msgstr "" +msgstr "person_1,Fabien,False,company_1" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:80 #, python-format msgid "XXX/External ID" -msgstr "" +msgstr "XXX/External ID" #. module: base_import #. openerp-web @@ -212,7 +212,7 @@ 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 "" +msgstr "base_import.tests.models.o2m.child" #. module: base_import #. openerp-web @@ -283,7 +283,7 @@ msgstr "如果我有多对一的字段怎么做?" #: code:addons/base_import/static/src/xml/import.xml:302 #, python-format msgid "External ID,Name,Is a Company" -msgstr "" +msgstr "External ID,Name,Is a Company" #. module: base_import #: field:base_import.tests.models.preview,somevalue:0 @@ -329,6 +329,13 @@ msgid "" "orignial \n" " database)." msgstr "" +"在这个文件中你会发现, Fabien 和 Laurence \n" +" 目前就职于 Bigees 公司 (company_1) 而 \n" +" Eric 就职于Organi 公司。个人和公司之间的关联 \n" +" 通过公司的 External ID 完成。\n" +" 我们需要使用 表名来为 \"External ID \"加前缀,\n" +" 从而避免个人和公司之间的ID冲突。(person_1 \n" +" 和 company_1 在原始数据库中共享相同的 ID 1 )." #. module: base_import #. openerp-web @@ -349,12 +356,12 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:148 #, python-format msgid "Country: Belgium" -msgstr "" +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 "" +msgstr "base_import.tests.models.char.stillreadonly" #. module: base_import #. openerp-web @@ -363,7 +370,7 @@ msgstr "" msgid "" "External ID,Name,Is a \n" " Company,Related Company/External ID" -msgstr "" +msgstr "External ID,Name, 是一个公司,关联公司/External ID" #. module: base_import #. openerp-web @@ -392,6 +399,15 @@ msgid "" "category \n" " hierarchy." msgstr "" +"比方说你有两个产品目录 \n" +" 下级名称是 \"可销售的\" (如. \"杂项. \n" +" 产品/可销售\" & \"其他产品/可销售\"),\n" +" 你的验证机制已经停止但仍可以导入你的数据. \n" +" 然而我们不建议你此时导入数据 \n" +" 因为他们全部会被连接到第一个\n" +" 位于产品目录列表的'可销售的' 目录 \n" +" (\"杂项. 产品/可销售\"). 我们建议你修改 \n" +" 其中的一个重复值或者修改你的产品目录层级关系." #. module: base_import #. openerp-web @@ -403,6 +419,9 @@ msgid "" "\n" " PSQL:" msgstr "" +"为了创建对于连接到公司的人员 \n" +" CVS文件,我们将在PSQL中使用以下的 \n" +" SQL命令:" #. module: base_import #. openerp-web @@ -414,6 +433,10 @@ msgid "" " (in 'Save As' dialog box > click 'Tools' dropdown \n" " list > Encoding tab)." msgstr "" +"当需要保存时,Microsoft Excel \n" +" 将仅允许您修改编码\n" +" (在 '另存' 对话框中 > 点击 '工具' 下拉\n" +" 清单 > 编码选项)。" #. module: base_import #: field:base_import.tests.models.preview,othervalue:0 @@ -430,6 +453,10 @@ msgid "" " later, it's thus good practice to specify it\n" " whenever possible" msgstr "" +"亦将被用于升级原始的\n" +" 导入(如果以后您需要再次导入修改的数据)\n" +" ,因而这也是非常好的做法来指定它\n" +" 无论何时可以的话" #. module: base_import #. openerp-web @@ -439,6 +466,8 @@ msgid "" "file to import. If you need a sample importable file, you\n" " can use the export tool to generate one." msgstr "" +"要导入的文件。如果你需要一个可导的样本文件,您\n" +" 您可以先使用导出工具来生成一个。" #. module: base_import #. openerp-web @@ -454,7 +483,7 @@ msgstr "" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char msgid "base_import.tests.models.char" -msgstr "" +msgstr "base_import.tests.models.char" #. module: base_import #: help:base_import.import,file:0 @@ -502,12 +531,12 @@ 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 "" +msgstr "base_import.tests.models.m2o.required" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_noreadonly msgid "base_import.tests.models.char.noreadonly" -msgstr "" +msgstr "base_import.tests.models.char.noreadonly" #. module: base_import #. openerp-web @@ -524,29 +553,35 @@ msgid "" "filter \n" " settings' > Save)." msgstr "" +"如果您在电子表格应用中编辑并保存 CSV 文件, \n" +" 你的电脑中的地域设置将会 \n" +" 影响分隔符和定界符的使用。 \n" +" 我们建议您使用 OpenOffice 或 LibreOffice Calc, \n" +" 因为它们允许您修改全部这三个选项 \n" +" (在'另存为'对话框中 > 点选 ' 编辑过滤设置' > 保存)。" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:30 #, python-format msgid "CSV File:" -msgstr "" +msgstr "CSV 文件:" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_preview msgid "base_import.tests.models.preview" -msgstr "" +msgstr "base_import.tests.models.preview" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_required msgid "base_import.tests.models.char.required" -msgstr "" +msgstr "base_import.tests.models.char.required" #. module: base_import #: code:addons/base_import/models.py:112 #, python-format msgid "Database ID" -msgstr "" +msgstr "Database ID" #. module: base_import #. openerp-web @@ -565,24 +600,24 @@ msgstr "下面是我们无法导入的起始文件:" #. module: base_import #: field:base_import.import,file_type:0 msgid "File Type" -msgstr "" +msgstr "文件类型" #. module: base_import #: model:ir.model,name:base_import.model_base_import_import msgid "base_import.import" -msgstr "" +msgstr "base_import.import" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_o2m msgid "base_import.tests.models.o2m" -msgstr "" +msgstr "base_import.tests.models.o2m" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:360 #, python-format msgid "Import preview failed due to:" -msgstr "" +msgstr "导入预览文件失败" #. module: base_import #. openerp-web @@ -605,7 +640,7 @@ 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 "" +msgstr "base_import.tests.models.char.readonly" #. module: base_import #. openerp-web @@ -652,7 +687,7 @@ msgstr "You must configure at least one field to import" #: code:addons/base_import/static/src/xml/import.xml:304 #, python-format msgid "company_2,Organi,True" -msgstr "" +msgstr "company_2,Organi,True" #. module: base_import #. openerp-web @@ -662,37 +697,39 @@ msgid "" "The first row of the\n" " file contains the label of the column" msgstr "" +"文件的第一行\n" +" 包括栏目标签" #. module: base_import #: model:ir.model,name:base_import.model_base_import_tests_models_char_states msgid "base_import.tests.models.char.states" -msgstr "" +msgstr "base_import.tests.models.char.states" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:7 #, python-format msgid "Import a CSV File" -msgstr "" +msgstr "导入一个CSV文件" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:74 #, python-format msgid "Quoting:" -msgstr "" +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 "" +msgstr "base_import.tests.models.m2o.required.related" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:293 #, python-format msgid ")." -msgstr "" +msgstr ")." #. module: base_import #. openerp-web @@ -700,21 +737,21 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:396 #, python-format msgid "Import" -msgstr "" +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 "" +msgstr "这里是可能的值:" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "The" -msgstr "" +msgstr "这" #. module: base_import #. openerp-web @@ -723,21 +760,21 @@ msgstr "" msgid "" "A single column was found in the file, this often means the file separator " "is incorrect" -msgstr "" +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 "" +msgstr "转储一个 PostgreSQL 数据库" #. 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 "" +msgstr "这个 SQL 命令将创建以下 的CSV文件:" #. module: base_import #. openerp-web @@ -746,7 +783,7 @@ msgstr "" msgid "" "The following CSV file shows how to import purchase \n" " orders with their respective purchase order lines:" -msgstr "" +msgstr "下列CSV文件显示如何导入采购订单以及它们各自的采购订单明细:" #. module: base_import #. openerp-web @@ -755,7 +792,7 @@ msgstr "" msgid "" "What can I do when the Import preview table isn't \n" " displayed correctly?" -msgstr "" +msgstr "当导入预览表显示不正确时,我该怎么办?" #. module: base_import #: field:base_import.tests.models.char,value:0 @@ -772,21 +809,21 @@ msgstr "" #: field:base_import.tests.models.o2m.child,parent_id:0 #: field:base_import.tests.models.o2m.child,value:0 msgid "unknown" -msgstr "" +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 "" +msgstr "person_2,Laurence,False,company_1" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:149 #, python-format msgid "Country/External ID: base.be" -msgstr "" +msgstr "Country/External ID: base.be" #. module: base_import #. openerp-web @@ -801,27 +838,30 @@ msgid "" " the company he work for. (If you want to test this \n" " example, here is a" msgstr "" +"例如,假设您有一个包含两个表的SQL数据库要导入:companies 和 persons。 \n" +" 每个人员属于一个公司,因此您必须创建 人和其就职公司之间的\n" +" 连接。(如果您要测试这个例子,这就有一个" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:427 #, python-format msgid "(%d more)" -msgstr "" +msgstr "( %d 更多)" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:227 #, python-format msgid "File for some Quotations" -msgstr "" +msgstr "引用的文件" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:72 #, python-format msgid "Encoding:" -msgstr "" +msgstr "编码:" #. module: base_import #. openerp-web @@ -841,6 +881,14 @@ msgid "" "\n" " table. (like 'company_1', 'person_1' instead of '1')" msgstr "" +"为了管理多表之间的关联, \n" +" 您可以使用 OpenERP 的 \"External ID\" 便利。 \n" +" 一个记录的\"External ID\" 是此记录在另一个\n" +" 应用中的唯一标识符。此 \"External \n" +" ID\" 必须是在所有对象的所有记录中 \n" +" 独一无二,所以,用这个应用或表的名字 \n" +" 向 \"External ID\" 加前缀,是一个很好的 \n" +" 做法。(例如:用 'company_1‘ 或 'person_1' 代替 '1')" #. module: base_import #. openerp-web @@ -851,6 +899,8 @@ msgid "" " \"External ID\". In PSQL, write the following " "command:" msgstr "" +"我们将首先导出所有的公司和它们的\"External ID\"。\n" +" 在 PSQL 中,写入以下的命令:" #. module: base_import #. openerp-web @@ -860,13 +910,15 @@ msgid "" "How can I import a one2many relationship (e.g. several \n" " Order Lines of a Sales Order)?" msgstr "" +"如何导入一个 one2many 的关系(例如: 一个销售 \n" +" 订单的多个订单行)?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:404 #, python-format msgid "Everything seems valid." -msgstr "" +msgstr "看上去一切正常。" #. module: base_import #. openerp-web @@ -879,13 +931,17 @@ msgid "" " use make use of the external ID for this field \n" " 'Category'." msgstr "" +"但是,如果您不希望改变您的 \n" +" 产品分类配置,我们建议你 \n" +" 对此 'Category' 字段,使用 \n" +" external ID。" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:421 #, python-format msgid "at row %d" -msgstr "" +msgstr "在 %d 行" #. module: base_import #. openerp-web @@ -895,13 +951,15 @@ msgid "" "How can I import a many2many relationship field \n" " (e.g. a customer that has multiple tags)?" msgstr "" +"如何导入一个多对多( many2many )的关系 \n" +" (例如:一个顾客有多个标签)?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:80 #, python-format msgid "XXX/ID" -msgstr "" +msgstr "XXX/ID" #. module: base_import #. openerp-web @@ -917,6 +975,8 @@ msgid "" " link between each person and the company they work \n" " for)." msgstr "" +"如果您需要从不同的表导入数据,您必须创建属于不同表之间记录的关系。\n" +" (例如:如果您导入公司和人员,您将必须创建每一个人和其就职公司间的连接 )。" #. module: base_import #. openerp-web @@ -929,13 +989,17 @@ msgid "" " Here is when you should use one or the other, \n" " according to your need:" msgstr "" +"按照您的需要, 您应该使用 \n" +" 这三种方式之一在关联中引用记录。 \n" +" 这里是介绍您何时使用何种方式, \n" +" 根据您所需要:" #. 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 "" +msgstr "person_4,Ramsy,False,company_3" #. module: base_import #. openerp-web @@ -957,7 +1021,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:20 #, python-format msgid "Cancel" -msgstr "" +msgstr "取消" #. module: base_import #. openerp-web @@ -967,20 +1031,22 @@ msgid "" "What happens if I do not provide a value for a \n" " specific field?" msgstr "" +"对于一个特定的字段,如果我不提供一个值,将 \n" +" 会发生什么?" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:68 #, python-format msgid "Frequently Asked Questions" -msgstr "" +msgstr "常见问题" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:305 #, python-format msgid "company_3,Boum,True" -msgstr "" +msgstr "company_3,Boum,True" #. module: base_import #. openerp-web @@ -994,6 +1060,10 @@ msgid "" "spreadsheet \n" " application." msgstr "" +"此特性 \n" +" 允许您使用OpenERP的导入/导出工具来 \n" +" 修改一批记录---用您喜爱的电子表格 \n" +" 应用!" #. module: base_import #. openerp-web @@ -1024,20 +1094,27 @@ msgid "" " take care of creating or modifying each record \n" " depending if it's new or not." msgstr "" +"如果您导入一个包括以下栏目之一的文件, \n" +" \"External ID\" 或者 \"Database ID\",已 \n" +" 经导入的记录将会被修改而不是被创建。 \n" +" 允许您多次导入同一CSV文件,在两次导 \n" +" 入之间只做些变更,这非常有用。 \n" +" OpenERP 将根据记录是否为新的来决定\n" +" 创建或修改每一个记录," #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:169 #, python-format msgid "CSV file for categories" -msgstr "" +msgstr "类别的CSV文件" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/js/import.js:330 #, python-format msgid "Normal Fields" -msgstr "" +msgstr "正常字段" #. module: base_import #. openerp-web @@ -1055,7 +1132,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:170 #, python-format msgid "CSV file for Products" -msgstr "" +msgstr "产品的CSV文件" #. module: base_import #. openerp-web @@ -1079,31 +1156,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 "名称" #. 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 "原始的唯一标识" #. 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 "person_3,Eric,False,company_2" #. module: base_import #: field:base_import.import,res_model:0 msgid "Model" -msgstr "" +msgstr "型号" #. module: base_import #. openerp-web @@ -1111,7 +1188,7 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "ID" -msgstr "" +msgstr "ID" #. module: base_import #. openerp-web @@ -1146,12 +1223,12 @@ msgstr "" #: code:addons/base_import/static/src/js/import.js:73 #, python-format msgid "Separator:" -msgstr "" +msgstr "分隔符:" #. module: base_import #: field:base_import.import,file_name:0 msgid "File Name" -msgstr "" +msgstr "文件名" #. module: base_import #. openerp-web @@ -1161,28 +1238,28 @@ msgstr "" #: code:addons/base_import/static/src/xml/import.xml:82 #, python-format msgid "External ID" -msgstr "" +msgstr "外部标识" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:39 #, python-format msgid "File Format Options…" -msgstr "" +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 "" +msgstr "在第 %d 行和第 %d 行之间" #. module: base_import #. openerp-web #: code:addons/base_import/static/src/xml/import.xml:19 #, python-format msgid "or" -msgstr "" +msgstr "或" #. module: base_import #. openerp-web @@ -1196,8 +1273,10 @@ msgid "" "demo \n" " data." msgstr "" +"作为一个例子,这里包含了部分报价单的文件 purchase.order_functional_error_line_cant_adpat.CSV " +"可以被导入,它基于 演示数据。" #. module: base_import #: field:base_import.import,file:0 msgid "File" -msgstr "" +msgstr "文件" diff --git a/addons/base_report_designer/i18n/ar.po b/addons/base_report_designer/i18n/ar.po index 09d24ef3452..e1190ac0fe6 100644 --- a/addons/base_report_designer/i18n/ar.po +++ b/addons/base_report_designer/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\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 3b5e641e498..4acdccc5298 100644 --- a/addons/base_report_designer/i18n/bg.po +++ b/addons/base_report_designer/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\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 f432a2d8847..4542638beb3 100644 --- a/addons/base_report_designer/i18n/bs.po +++ b/addons/base_report_designer/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\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 9f1ff178e49..553924016e8 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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 af829e3cfaa..60e64a52585 100644 --- a/addons/base_report_designer/i18n/cs.po +++ b/addons/base_report_designer/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 c7f3d1f589b..8266952b2f5 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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 51279bfc620..aa6bc94fac2 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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 cf1c3d395a1..dd1a2f66db5 100644 --- a/addons/base_report_designer/i18n/el.po +++ b/addons/base_report_designer/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/base_report_designer/i18n/en_GB.po b/addons/base_report_designer/i18n/en_GB.po index 50099e300c3..28d09fdbfc3 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 8b9d700d586..91c238c5449 100644 --- a/addons/base_report_designer/i18n/es.po +++ b/addons/base_report_designer/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 8cb6bd244c7..df61eb0d387 100644 --- a/addons/base_report_designer/i18n/es_AR.po +++ b/addons/base_report_designer/i18n/es_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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 5aa5025c9d8..d07c6e1a5b2 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/es_EC.po b/addons/base_report_designer/i18n/es_EC.po index 604a54597c5..41660e2dfdd 100644 --- a/addons/base_report_designer/i18n/es_EC.po +++ b/addons/base_report_designer/i18n/es_EC.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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 356d6ffb4ac..a55d82594c4 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 1482c8ed4b6..015cd4e9467 100644 --- a/addons/base_report_designer/i18n/et.po +++ b/addons/base_report_designer/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 bd545fca4ee..dcf936fc7ad 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 4d0e6b7c46b..3df6f99bb7b 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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 0bbe6bae0a9..620cee19919 100644 --- a/addons/base_report_designer/i18n/fr.po +++ b/addons/base_report_designer/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 207b76c8860..73f935710e7 100644 --- a/addons/base_report_designer/i18n/gl.po +++ b/addons/base_report_designer/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 ac488e3b760..4aaf22694e9 100644 --- a/addons/base_report_designer/i18n/hr.po +++ b/addons/base_report_designer/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: hr\n" #. module: base_report_designer diff --git a/addons/base_report_designer/i18n/hu.po b/addons/base_report_designer/i18n/hu.po index 55f53e2386c..d199754f88f 100644 --- a/addons/base_report_designer/i18n/hu.po +++ b/addons/base_report_designer/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-17 04:59+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw diff --git a/addons/base_report_designer/i18n/id.po b/addons/base_report_designer/i18n/id.po index 29aaebf08e2..0119ef217d9 100644 --- a/addons/base_report_designer/i18n/id.po +++ b/addons/base_report_designer/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 220c5c2beb4..88c28914c8d 100644 --- a/addons/base_report_designer/i18n/it.po +++ b/addons/base_report_designer/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 19:53+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 6e3d7c96500..7f031d97aca 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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 b8225f916f7..c436d85d08b 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 07e94409425..62c4730f41a 100644 --- a/addons/base_report_designer/i18n/lt.po +++ b/addons/base_report_designer/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 20dc09451c5..edad376e0bc 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw @@ -33,8 +33,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 @@ -49,7 +49,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 @@ -91,7 +91,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 @@ -167,7 +167,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/mn.po b/addons/base_report_designer/i18n/mn.po index 2a311a86e3a..4b2ef8c7c9a 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 728a9b29e6f..c8749172317 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 92c2d768a88..117217bcb9e 100644 --- a/addons/base_report_designer/i18n/nl.po +++ b/addons/base_report_designer/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 5500173f064..c523a46e002 100644 --- a/addons/base_report_designer/i18n/nl_BE.po +++ b/addons/base_report_designer/i18n/nl_BE.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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 00f17f88385..ad7350e0d39 100644 --- a/addons/base_report_designer/i18n/pl.po +++ b/addons/base_report_designer/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 562698c78a6..fb361be422c 100644 --- a/addons/base_report_designer/i18n/pt.po +++ b/addons/base_report_designer/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 cb7a8478a45..d37ba5c9b5e 100644 --- a/addons/base_report_designer/i18n/pt_BR.po +++ b/addons/base_report_designer/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 db64e902c0c..03901f6869a 100644 --- a/addons/base_report_designer/i18n/ro.po +++ b/addons/base_report_designer/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 8bd1ee5c3d3..80718f19991 100644 --- a/addons/base_report_designer/i18n/ru.po +++ b/addons/base_report_designer/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 7e4d16ff0be..5f35972639f 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 2a411995a05..ad0b6fe5436 100644 --- a/addons/base_report_designer/i18n/sl.po +++ b/addons/base_report_designer/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 0f9cc16335e..24a44c57fa6 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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\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 d7ad33ca791..2cd9fa11b22 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 e9b21572618..b6f485c31a6 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 0b732da52b1..dbefd45827e 100644 --- a/addons/base_report_designer/i18n/sv.po +++ b/addons/base_report_designer/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 e9169745d2f..4058c5d1c3a 100644 --- a/addons/base_report_designer/i18n/tlh.po +++ b/addons/base_report_designer/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 5ae77de1c0f..ae90b638f22 100644 --- a/addons/base_report_designer/i18n/tr.po +++ b/addons/base_report_designer/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_report_designer #: model:ir.model,name:base_report_designer.model_base_report_sxw @@ -79,7 +79,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_report_designer/i18n/uk.po b/addons/base_report_designer/i18n/uk.po index 62f5f376c0f..4e1b1bcbbf7 100644 --- a/addons/base_report_designer/i18n/uk.po +++ b/addons/base_report_designer/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 bc76e6dee3e..d4a16f8559e 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 880c458bfb8..c2bae90225e 100644 --- a/addons/base_report_designer/i18n/zh_CN.po +++ b/addons/base_report_designer/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 e2e8b2fdf8b..ef0daf90e01 100644 --- a/addons/base_report_designer/i18n/zh_TW.po +++ b/addons/base_report_designer/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 f3ccb29d411..f48191e38ad 100644 --- a/addons/base_setup/i18n/ar.po +++ b/addons/base_setup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 17c6c43b4a6..c7f1a8e4e03 100644 --- a/addons/base_setup/i18n/bg.po +++ b/addons/base_setup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 64d98abdb94..06cca60909e 100644 --- a/addons/base_setup/i18n/bs.po +++ b/addons/base_setup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 defea84abbc..83b826e03da 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 43ffbfbfb5f..c2b15945b29 100644 --- a/addons/base_setup/i18n/cs.po +++ b/addons/base_setup/i18n/cs.po @@ -13,35 +13,35 @@ msgstr "" "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 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\n" #. module: base_setup #: view:sale.config.settings:0 msgid "Emails Integration" -msgstr "" +msgstr "Integrace e-mailů" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Guest" -msgstr "" +msgstr "Host" #. module: base_setup #: view:sale.config.settings:0 msgid "Contacts" -msgstr "" +msgstr "Kontakty" #. module: base_setup #: model:ir.model,name:base_setup.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings" #. module: base_setup #: field:base.config.settings,module_auth_oauth:0 msgid "" "Use external authentication providers, sign in with google, facebook, ..." -msgstr "" +msgstr "Použít externí poskytovatele přihlášení (Google, Facebook...)" #. module: base_setup #: view:sale.config.settings:0 @@ -55,88 +55,93 @@ msgid "" "OpenERP using specific\n" " plugins for your preferred email application." msgstr "" +"OpenERP umožňuje automaticky vytvářet leady (nebo jiné dokumenty) z " +"příchozích e-mailů.\n" +"E-maily můžete s OpenERP synchronizovat automaticky z běžných POP3/IMAP " +"účtů, pomocí skriptu pro přímou integraci s e-mailovým serverem, nebo " +"manuálně s použitím plug-inu pro vašeho e-mailového klienta." #. module: base_setup #: field:sale.config.settings,module_sale:0 msgid "SALE" -msgstr "" +msgstr "PRODEJ" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" -msgstr "" +msgstr "Člen" #. module: base_setup #: view:base.config.settings:0 msgid "Portal access" -msgstr "" +msgstr "Přístup k portálu" #. module: base_setup #: view:base.config.settings:0 msgid "Authentication" -msgstr "" +msgstr "Autentizace" #. module: base_setup #: view:sale.config.settings:0 msgid "Quotations and Sales Orders" -msgstr "" +msgstr "Nabídky a přijaté objednávky" #. module: base_setup #: view:base.config.settings:0 #: model:ir.actions.act_window,name:base_setup.action_general_configuration #: model:ir.ui.menu,name:base_setup.menu_general_configuration msgid "General Settings" -msgstr "" +msgstr "Obecná nastavení" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Donor" -msgstr "" +msgstr "Dárce" #. module: base_setup #: view:base.config.settings:0 msgid "Email" -msgstr "" +msgstr "E-mail" #. module: base_setup #: field:sale.config.settings,module_crm:0 msgid "CRM" -msgstr "" +msgstr "CRM" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Patient" -msgstr "" +msgstr "Pacient" #. module: base_setup #: field:base.config.settings,module_base_import:0 msgid "Allow users to import data from CSV files" -msgstr "" +msgstr "Umožnit uživatelům import z CSV" #. module: base_setup #: field:base.config.settings,module_multi_company:0 msgid "Manage multiple companies" -msgstr "" +msgstr "Spravovat více firem" #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" -msgstr "" +msgstr "V e-mailovém klientovi" #. module: base_setup #: view:base.config.settings:0 msgid "--db-filter=YOUR_DATABAE" -msgstr "" +msgstr "--db-filter=VAŠE_DATABÁZE" #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 msgid "Get contacts automatically from linkedIn" -msgstr "" +msgstr "Získat kontakty automaticky z LinkedIn" #. module: base_setup #: field:sale.config.settings,module_plugin_thunderbird:0 msgid "Enable Thunderbird plug-in" -msgstr "" +msgstr "Povolit Thunderbird plug-in" #. module: base_setup #: view:base.setup.terminology:0 @@ -146,22 +151,22 @@ msgstr "res_config_contents" #. module: base_setup #: view:sale.config.settings:0 msgid "Customer Features" -msgstr "" +msgstr "Zákaznické funkce" #. module: base_setup #: view:base.config.settings:0 msgid "Import / Export" -msgstr "" +msgstr "Import / Export" #. module: base_setup #: view:sale.config.settings:0 msgid "Sale Features" -msgstr "" +msgstr "Prodejní funkce" #. module: base_setup #: field:sale.config.settings,module_plugin_outlook:0 msgid "Enable Outlook plug-in" -msgstr "" +msgstr "Povolit Outlook plug-in" #. module: base_setup #: view:base.setup.terminology:0 @@ -169,21 +174,23 @@ msgid "" "You can use this wizard to change the terminologies for customers in the " "whole application." msgstr "" +"Tohoto průvodce můžete použít pro úpravu terminologie na míru zákazníka v " +"celé aplikaci." #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Tenant" -msgstr "" +msgstr "Instance/zákazník (\"tenant\")" #. module: base_setup #: help:base.config.settings,module_share:0 msgid "Share or embbed any screen of openerp." -msgstr "" +msgstr "Sdílet nebo vložit kteroukoli obrazovku OpenERP" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Customer" -msgstr "" +msgstr "Zákazník" #. module: base_setup #: help:sale.config.settings,module_web_linkedin:0 @@ -191,6 +198,8 @@ msgid "" "When you create a new contact (person or company), you will be able to load " "all the data from LinkedIn (photos, address, etc)." msgstr "" +"Budete moci k novým kontaktům (osobám nebo firmám) automaticky doplnit " +"kontaktní informace (fotografie, adresy atd.) z LinkedIn." #. module: base_setup #: help:base.config.settings,module_multi_company:0 @@ -199,6 +208,9 @@ msgid "" "companies.\n" " This installs the module multi_company." msgstr "" +"Pracujte v prostředí více firem, s příslušným řízením přístupu k jednotlivým " +"firmám.\n" +"Bude nainstalován modul multi_company." #. module: base_setup #: view:base.config.settings:0 @@ -207,6 +219,9 @@ msgid "" "You can\n" " launch the OpenERP Server with the option" msgstr "" +"Veřejný portál je přístupný, pokud pracujete s jedinou databází.\n" +" Můžete spustit OpenERP server s " +"parametrem" #. module: base_setup #: view:base.config.settings:0 @@ -214,16 +229,18 @@ msgid "" "You will find more options in your company details: address for the header " "and footer, overdue payments texts, etc." msgstr "" +"Více nastavení najdete v detailech společnosti: adresa do záhlaví a zápatí, " +"texty upomínek atd." #. module: base_setup #: model:ir.model,name:base_setup.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: base_setup #: field:base.setup.terminology,partner:0 msgid "How do you call a Customer" -msgstr "" +msgstr "Jak nazýváte zákazníka" #. module: base_setup #: view:base.config.settings:0 @@ -237,21 +254,24 @@ msgid "" "projects,\n" " etc." msgstr "" +"Když pošlete dokument zákazníkovi (nabídku, fakturu), bude se moci " +"zaregistrovat a získat přístup ke všem svým dokumentům, čtení firemních " +"novinek, kontrole svých projektů atd." #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology msgid "base.setup.terminology" -msgstr "" +msgstr "base.setup.terminology" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Client" -msgstr "" +msgstr "Klient" #. module: base_setup #: help:base.config.settings,module_portal_anonymous:0 msgid "Enable the public part of openerp, openerp becomes a public website." -msgstr "" +msgstr "Povolit veřejný web OpenERP." #. module: base_setup #: help:sale.config.settings,module_plugin_thunderbird:0 @@ -264,22 +284,26 @@ msgid "" " Partner from the selected emails.\n" " This installs the module plugin_thunderbird." msgstr "" +"Plug-in umožňuje připojit e-maily a jejich přílohy k objektům v OpenERP " +"(partnerům nebo leadům).\n" +"Z vybraných e-mailů můžete vytvářet nové partnery a leady.\n" +"Bude nainstalován modul plugin_thunderbird." #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Partner" -msgstr "" +msgstr "Partner" #. module: base_setup #: model:ir.actions.act_window,name:base_setup.action_partner_terminology_config_form msgid "Use another word to say \"Customer\"" -msgstr "" +msgstr "Použijte jiný výraz pro \"zákazník\"" #. module: base_setup #: model:ir.actions.act_window,name:base_setup.action_sale_config #: view:sale.config.settings:0 msgid "Configure Sales" -msgstr "" +msgstr "Konfigurovat prodej" #. module: base_setup #: help:sale.config.settings,module_plugin_outlook:0 @@ -292,16 +316,20 @@ msgid "" " email into an OpenERP mail message with attachments.\n" " This installs the module plugin_outlook." msgstr "" +"Plug-in umožňuje připojit e-maily a jejich přílohy k objektům v OpenERP " +"(partnerům nebo leadům).\n" +"Z vybraných e-mailů můžete vytvářet nové partnery a leady.\n" +"Bude nainstalován modul plugin_outlook." #. module: base_setup #: view:base.config.settings:0 msgid "Options" -msgstr "" +msgstr "Možnosti" #. module: base_setup #: field:base.config.settings,module_portal:0 msgid "Activate the customer portal" -msgstr "" +msgstr "Aktivovat zákaznický portál" #. module: base_setup #: view:base.config.settings:0 @@ -310,36 +338,38 @@ msgid "" " Once activated, the login page will be " "replaced by the public website." msgstr "" +"Pokud toto aktivujete, přihlašovací stránka OpenERP bude nahrazena veřejným " +"webem." #. module: base_setup #: field:base.config.settings,module_share:0 msgid "Allow documents sharing" -msgstr "" +msgstr "Povolit sdílení dokumentů" #. module: base_setup #: view:base.config.settings:0 msgid "(company news, jobs, contact form, etc.)" -msgstr "" +msgstr "(firemní novinky, pracovní příležitosti, kontaktní formulář atd.)" #. module: base_setup #: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" -msgstr "" +msgstr "Aktivovat veřejný portál" #. module: base_setup #: view:base.config.settings:0 msgid "Configure outgoing email servers" -msgstr "" +msgstr "Konfigurovat odchozí e-mailové servery" #. module: base_setup #: view:sale.config.settings:0 msgid "Social Network Integration" -msgstr "" +msgstr "Integrace sociální sítě" #. module: base_setup #: help:base.config.settings,module_portal:0 msgid "Give your customers access to their documents." -msgstr "" +msgstr "Dejte svým zákazníkům přístup k jejich dokumentům." #. module: base_setup #: view:base.config.settings:0 @@ -351,23 +381,23 @@ msgstr "Storno" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Použít" #. module: base_setup #: view:base.setup.terminology:0 msgid "Specify Your Terminology" -msgstr "" +msgstr "Určete svou terminologii" #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "or" -msgstr "" +msgstr "nebo" #. module: base_setup #: view:base.config.settings:0 msgid "Configure your company data" -msgstr "" +msgstr "Nastavte data své společnosti" #~ msgid "City" #~ msgstr "Město" diff --git a/addons/base_setup/i18n/da.po b/addons/base_setup/i18n/da.po index cdd909ef068..06099648809 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 dc856a16bd4..0be47fb704a 100644 --- a/addons/base_setup/i18n/de.po +++ b/addons/base_setup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 dfd93286980..9e67e1ec91a 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 4040364ed7c..4ac500ca3f8 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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 a443203dff8..9a3f3939380 100644 --- a/addons/base_setup/i18n/es.po +++ b/addons/base_setup/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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -910,9 +910,6 @@ msgstr "Configurar datos de su compañía" #~ msgid "migrade.application.installer.modules" #~ msgstr "migrade.application.installer.modules" -#~ msgid "Interface" -#~ msgstr "Interfáz:" - #~ msgid "" #~ "Sets default language for the all user interface, when UI translations are " #~ "available. If you want to Add new Language, you can add it from 'Load an " @@ -976,3 +973,6 @@ msgstr "Configurar datos de su compañía" #~ "Esto definirá las preferencias por defecto para los nuevos usuarios y " #~ "actualizará las existentes. Después los usuarios podrán modifcarlas " #~ "libremente desde su propio formulario de preferencias." + +#~ msgid "Interface" +#~ msgstr "Interfaz" diff --git a/addons/base_setup/i18n/es_AR.po b/addons/base_setup/i18n/es_AR.po index 41e728a8df1..c3143f7e00e 100644 --- a/addons/base_setup/i18n/es_AR.po +++ b/addons/base_setup/i18n/es_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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 6e9f950ea8f..4e3cfaccf65 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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 8124a83ee09..d4979b4248a 100644 --- a/addons/base_setup/i18n/es_CR.po +++ b/addons/base_setup/i18n/es_CR.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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: base_setup diff --git a/addons/base_setup/i18n/es_EC.po b/addons/base_setup/i18n/es_EC.po index e779ad2a630..57e36c8bbc7 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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 c092170e486..bb4fdc60129 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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 2560b9725ec..53c8bfcd024 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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 5c964ca36ff..72913332d0b 100644 --- a/addons/base_setup/i18n/et.po +++ b/addons/base_setup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 75f91dc997d..bde536235a6 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 8275c6877c8..737e3a18db6 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 6f368dae8ed..aa59f29110d 100644 --- a/addons/base_setup/i18n/fr.po +++ b/addons/base_setup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -128,12 +128,12 @@ msgstr "Gérer plusieurs sociétés" #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" -msgstr "" +msgstr "Sur le client de messagerie" #. module: base_setup #: view:base.config.settings:0 msgid "--db-filter=YOUR_DATABAE" -msgstr "" +msgstr "--db-filter=VOTRE_BASE_DE_DONNEES" #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 @@ -187,7 +187,7 @@ msgstr "Résident" #. module: base_setup #: help:base.config.settings,module_share:0 msgid "Share or embbed any screen of openerp." -msgstr "" +msgstr "Partagez ou embarquez n'importe quel écran d'OpenERP." #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -254,6 +254,13 @@ msgid "" "projects,\n" " etc." msgstr "" +"Lorsque vous envoyez un document à un client\n" +" (devis, facture), votre client pourra\n" +" s'inscrire pour obtenir tous ses " +"documents, \n" +" lire les nouvelles de la société, " +"consulter ses projets, \n" +" etc." #. module: base_setup #: model:ir.model,name:base_setup.model_base_setup_terminology @@ -330,7 +337,7 @@ msgstr "Options" #. module: base_setup #: field:base.config.settings,module_portal:0 msgid "Activate the customer portal" -msgstr "" +msgstr "Activer le portail client" #. module: base_setup #: view:base.config.settings:0 @@ -368,7 +375,7 @@ msgstr "Intégration aux réseaux sociaux" #. module: base_setup #: help:base.config.settings,module_portal:0 msgid "Give your customers access to their documents." -msgstr "" +msgstr "Donner à vos clients l'accès à leur documents" #. module: base_setup #: view:base.config.settings:0 diff --git a/addons/base_setup/i18n/gl.po b/addons/base_setup/i18n/gl.po index c80390f436a..772d50f67d0 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 b4e2d7b2dff..1950ce35344 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 1f29d2a6f6c..72ccc660ffb 100644 --- a/addons/base_setup/i18n/hr.po +++ b/addons/base_setup/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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: hr\n" #. module: base_setup diff --git a/addons/base_setup/i18n/hu.po b/addons/base_setup/i18n/hu.po index 922d55151d4..9a344089eb0 100644 --- a/addons/base_setup/i18n/hu.po +++ b/addons/base_setup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 cb6accf3cb0..4ca7c42d42e 100644 --- a/addons/base_setup/i18n/id.po +++ b/addons/base_setup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 cad54a171a0..6824e106b23 100644 --- a/addons/base_setup/i18n/it.po +++ b/addons/base_setup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 f91c648f1e0..417f1e35446 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -86,7 +86,7 @@ msgstr "" #: model:ir.actions.act_window,name:base_setup.action_general_configuration #: model:ir.ui.menu,name:base_setup.menu_general_configuration msgid "General Settings" -msgstr "" +msgstr "一般設定" #. module: base_setup #: selection:base.setup.terminology,partner:0 diff --git a/addons/base_setup/i18n/ko.po b/addons/base_setup/i18n/ko.po index 5b07e96b697..5ec52572808 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 ed24a95aceb..7591f5f50cf 100644 --- a/addons/base_setup/i18n/lt.po +++ b/addons/base_setup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -29,7 +29,7 @@ msgstr "" #. module: base_setup #: view:sale.config.settings:0 msgid "Contacts" -msgstr "" +msgstr "Kontaktai" #. module: base_setup #: model:ir.model,name:base_setup.model_base_config_settings @@ -63,7 +63,7 @@ msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" -msgstr "" +msgstr "Narys" #. module: base_setup #: view:base.config.settings:0 @@ -78,7 +78,7 @@ msgstr "" #. module: base_setup #: view:sale.config.settings:0 msgid "Quotations and Sales Orders" -msgstr "" +msgstr "Pasiūlymai ir pardavimo užsakymai" #. module: base_setup #: view:base.config.settings:0 @@ -95,7 +95,7 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Email" -msgstr "" +msgstr "El. paštas" #. module: base_setup #: field:sale.config.settings,module_crm:0 @@ -182,7 +182,7 @@ msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Customer" -msgstr "" +msgstr "Pirkėjas" #. module: base_setup #: help:sale.config.settings,module_web_linkedin:0 @@ -267,7 +267,7 @@ msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Partner" -msgstr "" +msgstr "Partneris" #. module: base_setup #: model:ir.actions.act_window,name:base_setup.action_partner_terminology_config_form @@ -295,7 +295,7 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Options" -msgstr "" +msgstr "Pasirinkimai" #. module: base_setup #: field:base.config.settings,module_portal:0 @@ -344,13 +344,13 @@ msgstr "" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "Cancel" -msgstr "" +msgstr "Atšaukti" #. module: base_setup #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Taikyti" #. module: base_setup #: view:base.setup.terminology:0 @@ -361,7 +361,7 @@ msgstr "" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "or" -msgstr "" +msgstr "arba" #. module: base_setup #: view:base.config.settings:0 diff --git a/addons/base_setup/i18n/lv.po b/addons/base_setup/i18n/lv.po index 68a8507bd20..4f373a7765c 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 e2a3d20492d..89af175e45a 100644 --- a/addons/base_setup/i18n/mk.po +++ b/addons/base_setup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -126,7 +126,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/mn.po b/addons/base_setup/i18n/mn.po index f3071950b2a..4ae8ebb58e6 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 6809e31e463..d7f3c57d4dc 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 4132da9da5e..40af09a9748 100644 --- a/addons/base_setup/i18n/nl.po +++ b/addons/base_setup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -223,7 +223,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 @@ -356,9 +356,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_setup/i18n/nl_BE.po b/addons/base_setup/i18n/nl_BE.po index 518ada07a5c..48d083cf753 100644 --- a/addons/base_setup/i18n/nl_BE.po +++ b/addons/base_setup/i18n/nl_BE.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-04-27 05:44+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 a92e31a9f63..678a251b2ac 100644 --- a/addons/base_setup/i18n/pl.po +++ b/addons/base_setup/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 0b43756561a..fc8b4eb5bc1 100644 --- a/addons/base_setup/i18n/pt.po +++ b/addons/base_setup/i18n/pt.po @@ -13,13 +13,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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_setup #: view:sale.config.settings:0 msgid "Emails Integration" -msgstr "" +msgstr "Integração de e-mails" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -41,6 +41,7 @@ msgstr "base.config.settings" msgid "" "Use external authentication providers, sign in with google, facebook, ..." msgstr "" +"Utilizar provedores de autenticação externa, entrar com google, facebook, ..." #. module: base_setup #: view:sale.config.settings:0 @@ -95,7 +96,7 @@ msgstr "Doador" #. module: base_setup #: view:base.config.settings:0 msgid "Email" -msgstr "" +msgstr "E-mail" #. module: base_setup #: field:sale.config.settings,module_crm:0 @@ -135,7 +136,7 @@ msgstr "Conseguir os contactos automaticamente (através do linkedIn)" #. module: base_setup #: field:sale.config.settings,module_plugin_thunderbird:0 msgid "Enable Thunderbird plug-in" -msgstr "" +msgstr "Activar plug-in do Thunderbird" #. module: base_setup #: view:base.setup.terminology:0 @@ -160,7 +161,7 @@ msgstr "" #. module: base_setup #: field:sale.config.settings,module_plugin_outlook:0 msgid "Enable Outlook plug-in" -msgstr "" +msgstr "Activar plug-in do Outlook" #. module: base_setup #: view:base.setup.terminology:0 @@ -192,6 +193,8 @@ msgid "" "When you create a new contact (person or company), you will be able to load " "all the data from LinkedIn (photos, address, etc)." msgstr "" +"Quando cria um novo contacto (pessoa ou empresa), tem a possibilidade de " +"carregar todos os dados a partir do LinkedIn (fotografias, morada, etc) ." #. module: base_setup #: help:base.config.settings,module_multi_company:0 @@ -302,7 +305,7 @@ msgstr "Opções" #. module: base_setup #: field:base.config.settings,module_portal:0 msgid "Activate the customer portal" -msgstr "" +msgstr "Activar o portal do cliente" #. module: base_setup #: view:base.config.settings:0 @@ -320,17 +323,17 @@ msgstr "Permitir a partilha de documentos" #. module: base_setup #: view:base.config.settings:0 msgid "(company news, jobs, contact form, etc.)" -msgstr "" +msgstr "(notícias da empresa, vagas, formulário de contacto.)" #. module: base_setup #: field:base.config.settings,module_portal_anonymous:0 msgid "Activate the public portal" -msgstr "" +msgstr "Activar o portal público" #. module: base_setup #: view:base.config.settings:0 msgid "Configure outgoing email servers" -msgstr "" +msgstr "Configurar servidores de saída de email" #. module: base_setup #: view:sale.config.settings:0 @@ -368,7 +371,7 @@ msgstr "ou" #. module: base_setup #: view:base.config.settings:0 msgid "Configure your company data" -msgstr "" +msgstr "Configurar dados da sua empresa" #~ msgid "City" #~ msgstr "Cidade" diff --git a/addons/base_setup/i18n/pt_BR.po b/addons/base_setup/i18n/pt_BR.po index 95758620ac0..ebc61cf05a9 100644 --- a/addons/base_setup/i18n/pt_BR.po +++ b/addons/base_setup/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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 ddfdcdc56d3..217b53118da 100644 --- a/addons/base_setup/i18n/ro.po +++ b/addons/base_setup/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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 ab26ce496d6..8d8a4ab26d1 100644 --- a/addons/base_setup/i18n/ru.po +++ b/addons/base_setup/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-06-18 05:46+0000\n" -"X-Generator: Launchpad (build 16673)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -60,7 +60,7 @@ msgstr "" #. module: base_setup #: field:sale.config.settings,module_sale:0 msgid "SALE" -msgstr "" +msgstr "ПРОДАЖА" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -122,7 +122,7 @@ msgstr "Управление несколькими компаниями" #. module: base_setup #: view:sale.config.settings:0 msgid "On Mail Client" -msgstr "" +msgstr "На почтовом клиенте" #. module: base_setup #: view:base.config.settings:0 diff --git a/addons/base_setup/i18n/sk.po b/addons/base_setup/i18n/sk.po index 50be7238508..6de037a7fd0 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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 42ea3348057..5bced137a0f 100644 --- a/addons/base_setup/i18n/sl.po +++ b/addons/base_setup/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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 9a98baa18bb..52a402e50db 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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 c5569b9dcfd..bfa4e5eeb47 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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 3e1e7750f28..775100aa451 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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 2ebdfd158d9..9a8aaa078ec 100644 --- a/addons/base_setup/i18n/sv.po +++ b/addons/base_setup/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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 a410709fcd0..abadde22d1a 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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -25,17 +25,17 @@ msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Guest" -msgstr "" +msgstr "ไม่ใช่สมาชิก" #. module: base_setup #: view:sale.config.settings:0 msgid "Contacts" -msgstr "" +msgstr "ที่อยู่ติดต่อ" #. module: base_setup #: model:ir.model,name:base_setup.model_base_config_settings msgid "base.config.settings" -msgstr "" +msgstr "base.config.settings" #. module: base_setup #: field:base.config.settings,module_auth_oauth:0 @@ -64,7 +64,7 @@ msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Member" -msgstr "" +msgstr "สมาชิก" #. module: base_setup #: view:base.config.settings:0 @@ -74,7 +74,7 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Authentication" -msgstr "" +msgstr "การยืนยันตัวบุคคล" #. module: base_setup #: view:sale.config.settings:0 @@ -86,7 +86,7 @@ msgstr "" #: model:ir.actions.act_window,name:base_setup.action_general_configuration #: model:ir.ui.menu,name:base_setup.menu_general_configuration msgid "General Settings" -msgstr "" +msgstr "การตั้งค่าทั่วไป" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -96,12 +96,12 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Email" -msgstr "" +msgstr "อีเมล์" #. module: base_setup #: field:sale.config.settings,module_crm:0 msgid "CRM" -msgstr "" +msgstr "CRM" #. module: base_setup #: selection:base.setup.terminology,partner:0 @@ -126,7 +126,7 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "--db-filter=YOUR_DATABAE" -msgstr "" +msgstr "--db-filter=YOUR_DATABAE" #. module: base_setup #: field:sale.config.settings,module_web_linkedin:0 @@ -141,7 +141,7 @@ msgstr "" #. module: base_setup #: view:base.setup.terminology:0 msgid "res_config_contents" -msgstr "" +msgstr "res_config_contents" #. module: base_setup #: view:sale.config.settings:0 @@ -151,7 +151,7 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Import / Export" -msgstr "" +msgstr "นำเข้า / ส่งออก" #. module: base_setup #: view:sale.config.settings:0 @@ -218,7 +218,7 @@ msgstr "" #. module: base_setup #: model:ir.model,name:base_setup.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: base_setup #: field:base.setup.terminology,partner:0 @@ -246,7 +246,7 @@ msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Client" -msgstr "" +msgstr "ไคลเอนต์" #. module: base_setup #: help:base.config.settings,module_portal_anonymous:0 @@ -268,7 +268,7 @@ msgstr "" #. module: base_setup #: selection:base.setup.terminology,partner:0 msgid "Partner" -msgstr "" +msgstr "คู่ค้า" #. module: base_setup #: model:ir.actions.act_window,name:base_setup.action_partner_terminology_config_form @@ -296,7 +296,7 @@ msgstr "" #. module: base_setup #: view:base.config.settings:0 msgid "Options" -msgstr "" +msgstr "ตัวเลือก" #. module: base_setup #: field:base.config.settings,module_portal:0 @@ -351,7 +351,7 @@ msgstr "ยกเลิก" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "Apply" -msgstr "" +msgstr "ใช้งาน" #. module: base_setup #: view:base.setup.terminology:0 @@ -362,12 +362,12 @@ msgstr "" #: view:base.config.settings:0 #: view:sale.config.settings:0 msgid "or" -msgstr "" +msgstr "หรือ" #. module: base_setup #: view:base.config.settings:0 msgid "Configure your company data" -msgstr "" +msgstr "กำหนดค่าข้อมูลของ บริษัท" #~ msgid "" #~ "A profile sets a pre-selection of modules for specific needs. These profiles " diff --git a/addons/base_setup/i18n/tlh.po b/addons/base_setup/i18n/tlh.po index de4cb21af9f..08e0a95f155 100644 --- a/addons/base_setup/i18n/tlh.po +++ b/addons/base_setup/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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 45091e281fd..a081aaf8a5a 100644 --- a/addons/base_setup/i18n/tr.po +++ b/addons/base_setup/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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_setup #: view:sale.config.settings:0 @@ -176,8 +176,8 @@ msgid "" "You can use this wizard to change the terminologies for customers in the " "whole application." msgstr "" -"Bu sihirbazı kullanarak uygulamanın içinde müşterileriniz için farklı " -"terimler atayabilirsiniz. (Hasta, cari, müşteri,iş ortağı gibi)" +"Bu sihirbazı kullanarak tüm uygulamanın içinde müşteri terminolojilerini " +"değiştirebilirsiniz." #. module: base_setup #: selection:base.setup.terminology,partner:0 diff --git a/addons/base_setup/i18n/uk.po b/addons/base_setup/i18n/uk.po index f0af1d7d897..d55beab1c41 100644 --- a/addons/base_setup/i18n/uk.po +++ b/addons/base_setup/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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 14565a6ca00..0156960400e 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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 32e96a396a2..02f1f9b4251 100644 --- a/addons/base_setup/i18n/zh_CN.po +++ b/addons/base_setup/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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\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 532af36337c..8f22282c720 100644 --- a/addons/base_setup/i18n/zh_TW.po +++ b/addons/base_setup/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-16 05:12+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:04+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_setup #: view:sale.config.settings:0 diff --git a/addons/base_vat/i18n/ar.po b/addons/base_vat/i18n/ar.po index bb57b2cbf81..8e029036d2f 100644 --- a/addons/base_vat/i18n/ar.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "تأكد من صحته" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "الشركات" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "خطأ!" diff --git a/addons/base_vat/i18n/bg.po b/addons/base_vat/i18n/bg.po index 2f61192d91a..849bae7adc7 100644 --- a/addons/base_vat/i18n/bg.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "Фирми" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/bs.po b/addons/base_vat/i18n/bs.po index a86aeaf76ea..d3d7ce52042 100644 --- a/addons/base_vat/i18n/bs.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/ca.po b/addons/base_vat/i18n/ca.po index 0264100c68a..675aaafc0b1 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/cs.po b/addons/base_vat/i18n/cs.po index 8da61c31886..d6ad289b791 100644 --- a/addons/base_vat/i18n/cs.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Ověřit platnost" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Společnosti" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Chyba!" diff --git a/addons/base_vat/i18n/da.po b/addons/base_vat/i18n/da.po index 3cad3ba4a2c..66e86d21824 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/de.po b/addons/base_vat/i18n/de.po index 693168d5d31..219333c0a9a 100644 --- a/addons/base_vat/i18n/de.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Gültigkeit überprüfen" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Unternehmen" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Fehler !" diff --git a/addons/base_vat/i18n/el.po b/addons/base_vat/i18n/el.po index 028aef8d59d..37fcbdb4657 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/en_AU.po b/addons/base_vat/i18n/en_AU.po index 7cd31409371..b55bee8eb28 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/en_GB.po b/addons/base_vat/i18n/en_GB.po index 5d1a30b3f9f..52408a4ed90 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Check Validity" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,7 +43,7 @@ msgid "Companies" msgstr "Companies" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Error!" diff --git a/addons/base_vat/i18n/es.po b/addons/base_vat/i18n/es.po index c556542c4bf..db6f2aba997 100644 --- a/addons/base_vat/i18n/es.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Verificar validez" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "Compañías" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "¡Error!" diff --git a/addons/base_vat/i18n/es_AR.po b/addons/base_vat/i18n/es_AR.po index c96957eba85..bdd29dd223c 100644 --- a/addons/base_vat/i18n/es_AR.po +++ b/addons/base_vat/i18n/es_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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/es_CL.po b/addons/base_vat/i18n/es_CL.po index 2e05efab36a..a87a6dee6ed 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,7 +43,7 @@ msgid "Companies" msgstr "Compañías" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/es_CR.po b/addons/base_vat/i18n/es_CR.po index 9d80c22a940..b66079116dd 100644 --- a/addons/base_vat/i18n/es_CR.po +++ b/addons/base_vat/i18n/es_CR.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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: base_vat @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,7 +43,7 @@ msgid "Companies" msgstr "Compañias" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/es_EC.po b/addons/base_vat/i18n/es_EC.po index bad3f7ba83b..bd8462b25ea 100644 --- a/addons/base_vat/i18n/es_EC.po +++ b/addons/base_vat/i18n/es_EC.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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "Compañías" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/es_MX.po b/addons/base_vat/i18n/es_MX.po index 30fb421b98d..adca53d17cf 100644 --- a/addons/base_vat/i18n/es_MX.po +++ b/addons/base_vat/i18n/es_MX.po @@ -14,16 +14,16 @@ msgstr "" "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 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 msgid "Check Validity" -msgstr "" +msgstr "Verificar validez" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -38,13 +38,13 @@ msgstr "" #. module: base_vat #: model:ir.model,name:base_vat.model_res_company msgid "Companies" -msgstr "" +msgstr "Empresas" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" -msgstr "" +msgstr "¡Error!" #. module: base_vat #: help:res.partner,vat_subjected:0 @@ -52,11 +52,13 @@ msgid "" "Check this box if the partner is subjected to the VAT. It will be used for " "the VAT legal statement." msgstr "" +"Marque esta opción si la empresa está sujeta al IVA. Será utilizado para la " +"declaración legal del IVA." #. module: base_vat #: model:ir.model,name:base_vat.model_res_partner msgid "Partner" -msgstr "" +msgstr "Empresa" #. module: base_vat #: help:res.company,vat_check_vies:0 diff --git a/addons/base_vat/i18n/es_PY.po b/addons/base_vat/i18n/es_PY.po index fbf8a2fbea1..7d7ce65aa97 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/et.po b/addons/base_vat/i18n/et.po index 0d2a334ab40..5b1ddb6e9c4 100644 --- a/addons/base_vat/i18n/et.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/eu.po b/addons/base_vat/i18n/eu.po index 7f26826d372..4a4196dd268 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/fa.po b/addons/base_vat/i18n/fa.po index da370ce2871..035bf6c3aed 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/fi.po b/addons/base_vat/i18n/fi.po index 91b225e70ba..edbc5be2207 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,7 +43,7 @@ msgid "Companies" msgstr "Yritykset" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/fr.po b/addons/base_vat/i18n/fr.po index 581b3fbf727..873f1ad5ac8 100644 --- a/addons/base_vat/i18n/fr.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Vérifier la validité" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Sociétés" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Erreur!" diff --git a/addons/base_vat/i18n/gl.po b/addons/base_vat/i18n/gl.po index 10d41cfebb5..273df9451e7 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/gu.po b/addons/base_vat/i18n/gu.po index ca858737f2a..5ddcfc736f4 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "કંપનીઓ" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/hr.po b/addons/base_vat/i18n/hr.po index 6ca2b250bb7..92e841ad903 100644 --- a/addons/base_vat/i18n/hr.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Provjera točnosti" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Organizacije" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Greška!" diff --git a/addons/base_vat/i18n/hu.po b/addons/base_vat/i18n/hu.po index 8f80dba97c4..99b4668b285 100644 --- a/addons/base_vat/i18n/hu.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Érvényesség ellenőrzés" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Vállalatok" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Hiba!" diff --git a/addons/base_vat/i18n/id.po b/addons/base_vat/i18n/id.po index b48c4d84606..147c473a600 100644 --- a/addons/base_vat/i18n/id.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Perusahaan" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/it.po b/addons/base_vat/i18n/it.po index a3809839058..319a637f163 100644 --- a/addons/base_vat/i18n/it.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Verifica Validità" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Aziende" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Errore!" diff --git a/addons/base_vat/i18n/ja.po b/addons/base_vat/i18n/ja.po index 3cedeffa2e4..a2493d27b9f 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,7 +43,7 @@ msgid "Companies" msgstr "会社" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/ko.po b/addons/base_vat/i18n/ko.po index 6ecfb77a26a..e3995ddd0cf 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/lt.po b/addons/base_vat/i18n/lt.po index 823ee1b2391..68fdf20d7c7 100644 --- a/addons/base_vat/i18n/lt.po +++ b/addons/base_vat/i18n/lt.po @@ -13,49 +13,51 @@ msgstr "" "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 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 msgid "Check Validity" -msgstr "" +msgstr "Tikrinti kodą" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" "Note: the expected format is %s" msgstr "" +"Šis PVM kodas nėra teisingas.\n" +"Pastaba: tikėtinas kodo formatas yra %s" #. module: base_vat #: field:res.company,vat_check_vies:0 msgid "VIES VAT Check" -msgstr "" +msgstr "VIES PVM tikrinimas" #. module: base_vat #: model:ir.model,name:base_vat.model_res_company msgid "Companies" -msgstr "" +msgstr "Įmonės" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" -msgstr "" +msgstr "Klaida!" #. module: base_vat #: help:res.partner,vat_subjected:0 msgid "" "Check this box if the partner is subjected to the VAT. It will be used for " "the VAT legal statement." -msgstr "" +msgstr "Pažymėkite šį lauką jeigu partneris yra PVM mokėtojas." #. module: base_vat #: model:ir.model,name:base_vat.model_res_partner msgid "Partner" -msgstr "" +msgstr "Partneris" #. module: base_vat #: help:res.company,vat_check_vies:0 @@ -63,6 +65,8 @@ msgid "" "If checked, Partners VAT numbers will be fully validated against EU's VIES " "service rather than via a simple format validation (checksum)." msgstr "" +"Jeigu pažymėta, partnerių PVM kodai bus patikrinti ES VIES sistemoje, vietoj " +"paprasto kodo formato patikrinimo (kontrolinės sumos)." #. module: base_vat #: field:res.partner,vat_subjected:0 diff --git a/addons/base_vat/i18n/lv.po b/addons/base_vat/i18n/lv.po index e18ff5923e9..816b21691b7 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/mk.po b/addons/base_vat/i18n/mk.po index 4c9af641c82..9df0d9360f9 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Провери валидност" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,7 +43,7 @@ msgid "Companies" msgstr "Компании" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Грешка!" @@ -53,7 +53,9 @@ msgstr "Грешка!" 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 @@ -70,4 +72,4 @@ msgstr "" #. module: base_vat #: field:res.partner,vat_subjected:0 msgid "VAT Legal Statement" -msgstr "" +msgstr "ДДВ пријава" diff --git a/addons/base_vat/i18n/mn.po b/addons/base_vat/i18n/mn.po index 6471411c1b5..95b54600f55 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Зөв байдлыг Шалгах" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,7 +43,7 @@ msgid "Companies" msgstr "Компаниуд" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Алдаа!" diff --git a/addons/base_vat/i18n/nb.po b/addons/base_vat/i18n/nb.po index 4e6652408a4..2dd60f27cf1 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,7 +43,7 @@ msgid "Companies" msgstr "Firmaer" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/nl.po b/addons/base_vat/i18n/nl.po index 87100d48e1f..543f3134e2e 100644 --- a/addons/base_vat/i18n/nl.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Controleer geldigheid" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Bedrijven" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Fout!" diff --git a/addons/base_vat/i18n/nl_BE.po b/addons/base_vat/i18n/nl_BE.po index a2fe05c5705..f3b57269f3c 100644 --- a/addons/base_vat/i18n/nl_BE.po +++ b/addons/base_vat/i18n/nl_BE.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-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Geldigheid controleren" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Bedrijven" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Fout" diff --git a/addons/base_vat/i18n/oc.po b/addons/base_vat/i18n/oc.po index ca80eaaa622..6fb96bac567 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/pl.po b/addons/base_vat/i18n/pl.po index a2dae8fecc3..24891613035 100644 --- a/addons/base_vat/i18n/pl.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Sprawdź poprawność" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Firmy" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Błąd!" diff --git a/addons/base_vat/i18n/pt.po b/addons/base_vat/i18n/pt.po index 77a0d7f9366..4bd7236db84 100644 --- a/addons/base_vat/i18n/pt.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Verificar a validade" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Empresas" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Erro!" diff --git a/addons/base_vat/i18n/pt_BR.po b/addons/base_vat/i18n/pt_BR.po index 020987602e7..2520de74ef3 100644 --- a/addons/base_vat/i18n/pt_BR.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "Verificar Validade" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -43,7 +43,7 @@ msgid "Companies" msgstr "Empresas" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Erro!" diff --git a/addons/base_vat/i18n/ro.po b/addons/base_vat/i18n/ro.po index 14a41d592f2..794a3eaeb87 100644 --- a/addons/base_vat/i18n/ro.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Verifica Valabilitatea" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Companii" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Eroare!" diff --git a/addons/base_vat/i18n/ru.po b/addons/base_vat/i18n/ru.po index 9ea9cb8c057..ba95217e7f0 100644 --- a/addons/base_vat/i18n/ru.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Проверить правильность" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Компании" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Ошибка!" diff --git a/addons/base_vat/i18n/sk.po b/addons/base_vat/i18n/sk.po index 19cc2205377..7514190b3ae 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "Spoločnosti" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/sl.po b/addons/base_vat/i18n/sl.po index 247d21e471f..4fcfdf29ddd 100644 --- a/addons/base_vat/i18n/sl.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Kontrola pravilnosti" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Podjetja" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Napaka!" diff --git a/addons/base_vat/i18n/sq.po b/addons/base_vat/i18n/sq.po index 882fa23f193..90707e656d3 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/sr.po b/addons/base_vat/i18n/sr.po index 91813d9c44a..08889d1b080 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/sr@latin.po b/addons/base_vat/i18n/sr@latin.po index de06f5f095b..b88a812ab37 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/sv.po b/addons/base_vat/i18n/sv.po index 73ae184460b..b95ff1ce6bb 100644 --- a/addons/base_vat/i18n/sv.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Bolag" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/th.po b/addons/base_vat/i18n/th.po index f3f9fc1728f..c131fd33718 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/tlh.po b/addons/base_vat/i18n/tlh.po index eb206880a57..9f46bd7080a 100644 --- a/addons/base_vat/i18n/tlh.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/tr.po b/addons/base_vat/i18n/tr.po index 43f58bdd83e..e9dc7bdf210 100644 --- a/addons/base_vat/i18n/tr.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "Geçerliliğini Kontrol et" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -42,7 +42,7 @@ msgid "Companies" msgstr "Firmalar" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "Hata!" diff --git a/addons/base_vat/i18n/uk.po b/addons/base_vat/i18n/uk.po index 69ec2aedd6a..d207ae681a2 100644 --- a/addons/base_vat/i18n/uk.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/vi.po b/addons/base_vat/i18n/vi.po index 867b7822375..5ee0f1c80c6 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -23,7 +23,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -41,7 +41,7 @@ msgid "Companies" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "" diff --git a/addons/base_vat/i18n/zh_CN.po b/addons/base_vat/i18n/zh_CN.po index 3e75d462c10..0a5981c0edd 100644 --- a/addons/base_vat/i18n/zh_CN.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "检查有效性" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "公司" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "错误!" diff --git a/addons/base_vat/i18n/zh_TW.po b/addons/base_vat/i18n/zh_TW.po index bfb64298fb8..604eaf04ffc 100644 --- a/addons/base_vat/i18n/zh_TW.po +++ b/addons/base_vat/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: base_vat #: view:res.partner:0 @@ -22,7 +22,7 @@ msgid "Check Validity" msgstr "" #. module: base_vat -#: code:addons/base_vat/base_vat.py:147 +#: code:addons/base_vat/base_vat.py:152 #, python-format msgid "" "This VAT number does not seem to be valid.\n" @@ -40,7 +40,7 @@ msgid "Companies" msgstr "公司" #. module: base_vat -#: code:addons/base_vat/base_vat.py:111 +#: code:addons/base_vat/base_vat.py:113 #, python-format msgid "Error!" msgstr "錯誤!" diff --git a/addons/board/i18n/ar.po b/addons/board/i18n/ar.po index 65dd9a9c30e..d3e84437a13 100644 --- a/addons/board/i18n/ar.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 dcaeb9f2943..c8da684825c 100644 --- a/addons/board/i18n/bg.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 82d7ebb00f7..08d6b065b67 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 3a0945927c8..b8ba7f0debc 100644 --- a/addons/board/i18n/bs.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 05964ca0900..36a5c73f097 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 bbc3f153b1b..4d54b787319 100644 --- a/addons/board/i18n/cs.po +++ b/addons/board/i18n/cs.po @@ -13,53 +13,53 @@ msgstr "" "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 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\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,14 +174,14 @@ 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" #~ msgid "Configuration" #~ msgstr "Konfigurace" diff --git a/addons/board/i18n/da.po b/addons/board/i18n/da.po index dc008bafa70..21b5b2c2550 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 7f8081ea65c..34fd29b2666 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 f0a2ebef7f0..a226518c0dd 100644 --- a/addons/board/i18n/el.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/board/i18n/en_GB.po b/addons/board/i18n/en_GB.po index 38f89e93455..4c250bd50ef 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 a5867200dae..129cbc2297f 100644 --- a/addons/board/i18n/es.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 55043fd3d58..585b0b38991 100644 --- a/addons/board/i18n/es_AR.po +++ b/addons/board/i18n/es_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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 1d9d36e2f1b..900603de217 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 34f29c02d7a..684b51926dd 100644 --- a/addons/board/i18n/es_CR.po +++ b/addons/board/i18n/es_CR.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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: board diff --git a/addons/board/i18n/es_EC.po b/addons/board/i18n/es_EC.po index 8bca188aebe..6ecc15597b4 100644 --- a/addons/board/i18n/es_EC.po +++ b/addons/board/i18n/es_EC.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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 06b7547a964..06815849601 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 2a67114e9d5..774fcade7d1 100644 --- a/addons/board/i18n/et.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 f6d632874eb..bb24667fbe4 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 08d6c9037ef..195d8ac53c1 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 c5a8ee609ad..c3b4589e82a 100644 --- a/addons/board/i18n/fr.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 f308956049b..87b6be209b9 100644 --- a/addons/board/i18n/gl.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 622fd452f55..e4b5d530ddc 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 67b6ba0ff1c..b9f50423890 100644 --- a/addons/board/i18n/hr.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 b3fa8480729..247f69317a3 100644 --- a/addons/board/i18n/hu.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 b2793e9d54e..2cbb88ad45f 100644 --- a/addons/board/i18n/id.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 14d5a41d401..c7d0ceebec4 100644 --- a/addons/board/i18n/it.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 fab1b78e4f7..eab66f304f3 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 62e5976a1c1..230376a5327 100644 --- a/addons/board/i18n/ko.po +++ b/addons/board/i18n/ko.po @@ -14,88 +14,88 @@ msgstr "" "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 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 "게시판 생성" #. module: board #: view:board.create:0 msgid "Create" -msgstr "" +msgstr "생성" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:4 #, python-format msgid "Reset Layout.." -msgstr "" +msgstr "레이아웃 재설정" #. module: board #: view:board.create:0 msgid "Create New Dashboard" -msgstr "" +msgstr "새로운 대시보드 생성" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:40 #, python-format msgid "Choose dashboard layout" -msgstr "" +msgstr "대시보드 레이아웃 선택" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:70 #, python-format msgid "Add" -msgstr "" +msgstr "추가" #. 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 "정말로 이 아이템을 제거하시겠습니까?" #. module: board #: model:ir.model,name:board.model_board_board msgid "Board" -msgstr "" +msgstr "게시판" #. module: board #: view:board.board:0 #: model:ir.actions.act_window,name:board.open_board_my_dash_action #: model:ir.ui.menu,name:board.menu_board_my_dash msgid "My Dashboard" -msgstr "" +msgstr "내 대시보드" #. module: board #: field:board.create,name:0 msgid "Board Name" -msgstr "" +msgstr "게시판 명칭" #. module: board #: model:ir.model,name:board.model_board_create msgid "Board Creation" -msgstr "" +msgstr "게시판 생성" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:67 #, python-format msgid "Add to Dashboard" -msgstr "" +msgstr "대시보드에 추가" #. 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 @@ -121,33 +121,33 @@ msgstr "" #: code:addons/board/static/src/xml/board.xml:6 #, python-format msgid "Reset" -msgstr "" +msgstr "초기화" #. module: board #: field:board.create,menu_parent_id:0 msgid "Parent Menu" -msgstr "페어런트 메뉴" +msgstr "상위 메뉴" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:8 #, python-format msgid "Change Layout.." -msgstr "" +msgstr "레이아웃 변경" #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:93 #, python-format msgid "Edit Layout" -msgstr "" +msgstr "레이아웃 편집" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:10 #, python-format msgid "Change Layout" -msgstr "" +msgstr "레이아웃 변경" #. module: board #: view:board.create:0 @@ -157,14 +157,14 @@ msgstr "취소" #. module: board #: view:board.create:0 msgid "or" -msgstr "" +msgstr "또는" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:69 #, python-format msgid "Title of new dashboard item" -msgstr "" +msgstr "새로운 대시보드 아이템의 제목" #~ msgid "Dashboard Definition" #~ msgstr "대시보드 정의" diff --git a/addons/board/i18n/ln.po b/addons/board/i18n/ln.po index 4308bdf809f..1a70361a8f7 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 596be45780a..1e2abfdbce0 100644 --- a/addons/board/i18n/lt.po +++ b/addons/board/i18n/lt.po @@ -8,57 +8,57 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-13 22:30+0000\n" -"Last-Translator: Paulius Sladkevičius \n" +"Last-Translator: Paulius Sladkevičius @ hbee \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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 "Sukurti skydelį" #. module: board #: view:board.create:0 msgid "Create" -msgstr "" +msgstr "Sukurti" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:4 #, python-format msgid "Reset Layout.." -msgstr "" +msgstr "Atstatyti išdėstymą.." #. module: board #: view:board.create:0 msgid "Create New Dashboard" -msgstr "" +msgstr "Sukurti naują skydelį" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:40 #, python-format msgid "Choose dashboard layout" -msgstr "" +msgstr "Pasirinkite skydelių išdėstymą" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:70 #, python-format msgid "Add" -msgstr "" +msgstr "Pridėti" #. 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 "Ar tikrai norite ištrinti šį elementą?" #. module: board #: model:ir.model,name:board.model_board_board @@ -70,12 +70,12 @@ msgstr "Lenta" #: 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 "Mano skydeliai" #. module: board #: field:board.create,name:0 msgid "Board Name" -msgstr "" +msgstr "Skydelio pavadinimas" #. module: board #: model:ir.model,name:board.model_board_create @@ -87,7 +87,7 @@ msgstr "" #: code:addons/board/static/src/xml/board.xml:67 #, python-format msgid "Add to Dashboard" -msgstr "" +msgstr "Įdėti į skydelį" #. module: board #. openerp-web @@ -114,39 +114,56 @@ msgid "" " \n" " " msgstr "" +"
\n" +"

\n" +" Jūsų neturite savo skydelių.\n" +"

\n" +" Kad pridėtumėte pirmąjį elementą į šį skydelį, eikite į " +"bet\n" +" kurį meniu, perjungite rodinį į sąrašas ar diagrama ir " +"paspauskite\n" +" „Įdėti į skydelį“ išsamios paieškos " +"pasirinktyse.\n" +"

\n" +" Jūs galite atsirinkti ir sugrupuoti duomenis prieš " +"įdedant\n" +" juos į skydelį naudojantis filtro pasirinktimis.\n" +"

\n" +"
\n" +" " #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:6 #, python-format msgid "Reset" -msgstr "" +msgstr "Atstatyti" #. module: board #: field:board.create,menu_parent_id:0 msgid "Parent Menu" -msgstr "Bazinis meniu" +msgstr "Tėvinis meniu" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:8 #, python-format msgid "Change Layout.." -msgstr "" +msgstr "Keisti išdėstymą.." #. module: board #. openerp-web #: code:addons/board/static/src/js/dashboard.js:93 #, python-format msgid "Edit Layout" -msgstr "" +msgstr "Keisti išdėstymą" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:10 #, python-format msgid "Change Layout" -msgstr "" +msgstr "Keisti išdėstymą" #. module: board #: view:board.create:0 @@ -156,14 +173,14 @@ msgstr "Atšaukti" #. module: board #: view:board.create:0 msgid "or" -msgstr "" +msgstr "arba" #. module: board #. openerp-web #: code:addons/board/static/src/xml/board.xml:69 #, python-format msgid "Title of new dashboard item" -msgstr "" +msgstr "Naujo skydelio elemento pavadinimas" #~ msgid "Author" #~ msgstr "Autorius" diff --git a/addons/board/i18n/lv.po b/addons/board/i18n/lv.po index 59d2c318361..1285ce8194e 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 d8790943ad9..e39ccd7d001 100644 --- a/addons/board/i18n/mk.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create diff --git a/addons/board/i18n/mn.po b/addons/board/i18n/mn.po index d13bdfc42bd..292da8952f9 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 953ca5d6197..07f09e20464 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 30e5d3b3995..f73761b3ee1 100644 --- a/addons/board/i18n/nl.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 8ddd466e441..fd2a819cf18 100644 --- a/addons/board/i18n/nl_BE.po +++ b/addons/board/i18n/nl_BE.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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 54495b31a90..50df177fbe2 100644 --- a/addons/board/i18n/pl.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 fcb53938864..fa9c9a5027e 100644 --- a/addons/board/i18n/pt.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 1e60cca4440..3669f01afd3 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 3d884873249..7fbe1ec229c 100644 --- a/addons/board/i18n/ro.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 bd365acf5ec..f497356053b 100644 --- a/addons/board/i18n/ru.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 708f87a5d1d..016d92184ba 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 58f456f1886..af49573770a 100644 --- a/addons/board/i18n/sl.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 c9fc6c9da4f..a58fb3d877c 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 f27fbf2f3ca..b7644ec0acd 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 b696b6be8e9..83b57722018 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 996c61e4987..7db9afd0fef 100644 --- a/addons/board/i18n/sv.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 b04bac9c563..6eca90cedc2 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: board #: model:ir.actions.act_window,name:board.action_board_create @@ -26,7 +26,7 @@ msgstr "" #. module: board #: view:board.create:0 msgid "Create" -msgstr "" +msgstr "สร้าง" #. module: board #. openerp-web @@ -52,7 +52,7 @@ msgstr "" #: code:addons/board/static/src/xml/board.xml:70 #, python-format msgid "Add" -msgstr "" +msgstr "เพิ่ม" #. module: board #. openerp-web @@ -64,14 +64,14 @@ msgstr "" #. module: board #: model:ir.model,name:board.model_board_board msgid "Board" -msgstr "" +msgstr "กระดาน" #. module: board #: view:board.board:0 #: model:ir.actions.act_window,name:board.open_board_my_dash_action #: model:ir.ui.menu,name:board.menu_board_my_dash msgid "My Dashboard" -msgstr "" +msgstr "กระดานส่วนตัว" #. module: board #: field:board.create,name:0 @@ -95,7 +95,7 @@ msgstr "" #: 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 @@ -121,7 +121,7 @@ msgstr "" #: code:addons/board/static/src/xml/board.xml:6 #, python-format msgid "Reset" -msgstr "" +msgstr "คืนค่าเดิม" #. module: board #: field:board.create,menu_parent_id:0 @@ -157,7 +157,7 @@ msgstr "ยกเลิก" #. module: board #: view:board.create:0 msgid "or" -msgstr "" +msgstr "หรือ" #. module: board #. openerp-web diff --git a/addons/board/i18n/tlh.po b/addons/board/i18n/tlh.po index f99bc55bd0e..2a7cb6223ee 100644 --- a/addons/board/i18n/tlh.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 62805ea3d18..eb3f31716f8 100644 --- a/addons/board/i18n/tr.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 c3f061bd814..f526597e106 100644 --- a/addons/board/i18n/uk.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 cd4ec2e2b08..76cabe75c1e 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 c446d4f14aa..d07152c3b5b 100644 --- a/addons/board/i18n/zh_CN.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 19d64a46c4f..70146e53844 100644 --- a/addons/board/i18n/zh_TW.po +++ b/addons/board/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 bfb8998e14d..f19678cec78 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 e28b6441ee3..fad18f31c5d 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 d8cb8a45f94..5265cef8f6d 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 ea676f0221d..b86bd80f9bf 100644 --- a/addons/claim_from_delivery/i18n/cs.po +++ b/addons/claim_from_delivery/i18n/cs.po @@ -14,23 +14,23 @@ msgstr "" "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 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 msgid "Claims" -msgstr "" +msgstr "Reklamace" #. module: claim_from_delivery #: model:res.request.link,name:claim_from_delivery.request_link_claim_from_delivery msgid "Delivery Order" -msgstr "" +msgstr "Objednávka doručení" #. module: claim_from_delivery #: model:ir.actions.act_window,name:claim_from_delivery.action_claim_from_delivery msgid "Claim From Delivery" -msgstr "" +msgstr "Reklamace doručení" #~ msgid "Claim" #~ msgstr "Pohledávka" diff --git a/addons/claim_from_delivery/i18n/da.po b/addons/claim_from_delivery/i18n/da.po index 5808eeb7038..5f29ddc3f10 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 703498d70ee..56b2cb97d21 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 6ff82222299..4b65efd4d74 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 1dbb3d2c21b..283db394d27 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 5cd1f6675a9..09afb968bef 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 eafd83418f9..13defe96fc5 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 08fe476cbaf..f8932209720 100644 --- a/addons/claim_from_delivery/i18n/es_CR.po +++ b/addons/claim_from_delivery/i18n/es_CR.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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: claim_from_delivery diff --git a/addons/claim_from_delivery/i18n/es_EC.po b/addons/claim_from_delivery/i18n/es_EC.po index 32150db1afe..36853426278 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 6d58d10b089..2f6baf196f2 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 34961b63c46..4093553dafc 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 c2767dc649a..f76faa5b941 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 3f45a10094d..8c03a9c4db2 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 a32e850fd86..c91b86e4ffb 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 71cda4bfde6..e4f4d00cdb5 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 55a64483b21..7e2c4f916ef 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 f614040965b..8838f292dd4 100644 --- a/addons/claim_from_delivery/i18n/hu.po +++ b/addons/claim_from_delivery/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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 cbb317615b9..0ed4073fb85 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 6de72ddfa2a..e11c6f5e019 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 7bcbae53d09..75b64438a73 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 fff3cf71d54..7632bd1417e 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 abbae0ebc2b..061446c4273 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 58fa1e2b12e..9985c4dfc3d 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 @@ -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/claim_from_delivery/i18n/mn.po b/addons/claim_from_delivery/i18n/mn.po index 4fe13ee7566..6d7a645c4a3 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 c22d3bc44e1..004267f778c 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 519c732e073..5e38ab9d728 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 38aab39e523..66540e6de65 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-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 2b2b298ca7d..de1f2b2b542 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 67d206b20b8..2b310bb1480 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 e849647cdf1..a8d57aa171f 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 94dc19361fc..0f7abd77006 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 802328df80a..a586d9eb53c 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 ffcf8fc2781..e3b7bb37d5d 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-06-06 05:21+0000\n" -"X-Generator: Launchpad (build 16667)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 7ade7b5f053..8bc331f5fc6 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 005b2addfcb..83883d7ef42 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 7485c1e0a29..8463bf34217 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 98af8333864..e0175d296c4 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 3a0a5b9d456..6701ee595d5 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 4cd7d5d2b6b..a2c2aec2c2d 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 9e2be091410..f0b4d7e8e7e 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: claim_from_delivery #: view:stock.picking.out:0 diff --git a/addons/claim_from_delivery/i18n/vi.po b/addons/claim_from_delivery/i18n/vi.po index f308bafb1ea..ff409d13902 100644 --- a/addons/claim_from_delivery/i18n/vi.po +++ b/addons/claim_from_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-07-01 05:14+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 13b40bdec2a..cf1c794a184 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 57920900399..6ac352371e4 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 c20d97cf5ca..fbe87e9d8ac 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 9c0ae4f65c2..12bc47c5ad5 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 119531fed68..6988c802a0a 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 4b40f0f8b2e..e94fbd208b1 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 68d30fcdccf..cb55a276edb 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 d4b8e87b899..957cf0c4b05 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 04:57+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 96f335c1258..47d8bb375c3 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 d28426ab8ad..189c4cd2b06 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 81c113445c7..59d8999828b 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts @@ -29,6 +29,13 @@ msgid "" "

\n" " " msgstr "" +"Click to add a contact in your address book.\n" +"

\n" +" OpenERP omogućavajednostavno praćenje svih aktivnosti vezanih " +"uz vaše partnere; rasprave i razgovori, povijest međusobnih poslova, " +"razmjenjene dokumente i slično...\n" +"

\n" +" " #. module: contacts #: model:ir.actions.act_window,name:contacts.action_contacts diff --git a/addons/contacts/i18n/hu.po b/addons/contacts/i18n/hu.po index 7f547c811f9..3e0e237f72c 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 01a7463a74a..f764d0009c7 100644 --- a/addons/contacts/i18n/it.po +++ b/addons/contacts/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 19:52+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/ko.po b/addons/contacts/i18n/ko.po index 19e46f9e0b0..9e0e6167495 100644 --- a/addons/contacts/i18n/ko.po +++ b/addons/contacts/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-06-30 05:56+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/lt.po b/addons/contacts/i18n/lt.po index f785a308009..377703f8f05 100644 --- a/addons/contacts/i18n/lt.po +++ b/addons/contacts/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-04-25 05:20+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 634d6ea50e4..3a57291b773 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts @@ -30,9 +30,9 @@ msgid "" " " msgstr "" "

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

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

\n" " " diff --git a/addons/contacts/i18n/mn.po b/addons/contacts/i18n/mn.po index b92780bb922..9b3d854a7d2 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 5d612da1cf8..d38bfcef88d 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/nl_BE.po b/addons/contacts/i18n/nl_BE.po index 78fdb540ad6..a9ba749935b 100644 --- a/addons/contacts/i18n/nl_BE.po +++ b/addons/contacts/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-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 8d14a9a23a4..6ebc2138a17 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 3d65499f9d7..7caf49cb3ff 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 961c7ec3393..dfc5fb509c4 100644 --- a/addons/contacts/i18n/pt_BR.po +++ b/addons/contacts/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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 4ceeb98c909..2dc77e8c52a 100644 --- a/addons/contacts/i18n/ro.po +++ b/addons/contacts/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-10 09:13+0000\n" -"Last-Translator: Fekete Mihai \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts @@ -29,13 +29,13 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Clic pentru a adauga o persoana de contact in agenda " -"dumneavoastra.\n" +"

\n" +" Faceți clic pentru a adăuga o persoană de contact în agenda " +"dumneavoastră.\n" " \n" -" OpenERP va ajuta sa urmariti cu usurinta toate activitatile " +" OpenERP vă ajută să urmăriți cu ușurință toate activitățile " "legate de\n" -" un client, discutii, istoria oportunitati de afaceri,\n" +" un client, discuții, istoria oportunități de afaceri,\n" " documente, etc.\n" " \n" " " diff --git a/addons/contacts/i18n/ru.po b/addons/contacts/i18n/ru.po index 4748d2ad350..e092267e2c3 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 37920c49d8b..e4791a8a8e6 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 7311bfce7c6..8895705f378 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/th.po b/addons/contacts/i18n/th.po index a75ecac2237..049bcfbd7fa 100644 --- a/addons/contacts/i18n/th.po +++ b/addons/contacts/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-05-16 05:12+0000\n" -"X-Generator: Launchpad (build 16626)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts @@ -34,4 +34,4 @@ msgstr "" #: model:ir.actions.act_window,name:contacts.action_contacts #: model:ir.ui.menu,name:contacts.menu_contacts msgid "Contacts" -msgstr "" +msgstr "ผู้ติดต่อ" diff --git a/addons/contacts/i18n/tr.po b/addons/contacts/i18n/tr.po index 7edf58f02e4..8eddb2c4c92 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: contacts #: model:ir.actions.act_window,help:contacts.action_contacts diff --git a/addons/contacts/i18n/vi.po b/addons/contacts/i18n/vi.po index d404d947fe2..59f5d8ca03a 100644 --- a/addons/contacts/i18n/vi.po +++ b/addons/contacts/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 b6b90099f0b..326d4c8e070 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 ca7c08f10ef..e724ec2e5ee 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 e93ee4c36b8..85a6ba527d7 100644 --- a/addons/crm/i18n/ar.po +++ b/addons/crm/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-16 05:07+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:59+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -29,7 +29,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -183,8 +183,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -295,7 +295,7 @@ msgid "Prospect Partner" msgstr "شريك متوقع" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "بدون موضوع" @@ -442,7 +442,7 @@ msgid "#Opportunities" msgstr "عدد الفرص" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -711,7 +711,7 @@ msgid "Statistics Dashboard" msgstr "لوحة الاحصائيات" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -771,7 +771,7 @@ msgid "Exclusive" msgstr "خاص" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -939,7 +939,7 @@ msgid "Next Action" msgstr "الإجراء التالي" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1029,7 +1029,7 @@ msgid "Creation Date" msgstr "تاريخ الإنشاء" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1221,7 +1221,9 @@ msgid "Days to Close" msgstr "الأيام للغلق" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "مجهول" @@ -1306,7 +1308,7 @@ msgid "Lead Description" msgstr "وصف العروض" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "الفرص المدمجة" @@ -1870,7 +1872,7 @@ msgid "Leads" msgstr "العروض" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1964,7 +1966,6 @@ msgid "Global CC" msgstr "Global CC" #. 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 @@ -2901,7 +2902,7 @@ msgid "Working Hours" msgstr "ساعات العمل" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/bg.po b/addons/crm/i18n/bg.po index c8291ec1ddf..4d574feb441 100644 --- a/addons/crm/i18n/bg.po +++ b/addons/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-16 05:07+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:59+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -29,7 +29,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -183,8 +183,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -293,7 +293,7 @@ msgid "Prospect Partner" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "" @@ -437,7 +437,7 @@ msgid "#Opportunities" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -704,7 +704,7 @@ msgid "Statistics Dashboard" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -764,7 +764,7 @@ msgid "Exclusive" msgstr "Изключителност" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -932,7 +932,7 @@ msgid "Next Action" msgstr "Следващо действие" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1022,7 +1022,7 @@ msgid "Creation Date" msgstr "Дата на създаване" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1209,7 +1209,9 @@ msgid "Days to Close" msgstr "Дни до затваряне" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "неизвестен" @@ -1292,7 +1294,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1852,7 +1854,7 @@ msgid "Leads" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1946,7 +1948,6 @@ 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 @@ -2874,7 +2875,7 @@ msgid "Working Hours" msgstr "Работно време" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/bs.po b/addons/crm/i18n/bs.po index 4d355fb9d95..b73e302ab35 100644 --- a/addons/crm/i18n/bs.po +++ b/addons/crm/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-16 05:07+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:59+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -29,7 +29,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -183,8 +183,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -293,7 +293,7 @@ msgid "Prospect Partner" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "" @@ -437,7 +437,7 @@ msgid "#Opportunities" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -704,7 +704,7 @@ msgid "Statistics Dashboard" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -764,7 +764,7 @@ msgid "Exclusive" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -932,7 +932,7 @@ msgid "Next Action" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1022,7 +1022,7 @@ msgid "Creation Date" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1209,7 +1209,9 @@ msgid "Days to Close" msgstr "" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "" @@ -1292,7 +1294,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1852,7 +1854,7 @@ msgid "Leads" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1946,7 +1948,6 @@ 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 @@ -2874,7 +2875,7 @@ msgid "Working Hours" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/ca.po b/addons/crm/i18n/ca.po index 31d50c265c5..c2dc64d12f2 100644 --- a/addons/crm/i18n/ca.po +++ b/addons/crm/i18n/ca.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-16 05:07+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:59+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -29,7 +29,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -183,8 +183,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -295,7 +295,7 @@ msgid "Prospect Partner" msgstr "Soci prospecte" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "" @@ -443,7 +443,7 @@ msgid "#Opportunities" msgstr "nº oportunitats" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -713,7 +713,7 @@ msgid "Statistics Dashboard" msgstr "Taulell d'estadístiques" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -773,7 +773,7 @@ msgid "Exclusive" msgstr "Exclusiu" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -941,7 +941,7 @@ msgid "Next Action" msgstr "Següent acció" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1031,7 +1031,7 @@ msgid "Creation Date" msgstr "Data creació" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1222,7 +1222,9 @@ msgid "Days to Close" msgstr "Dies per al tancament" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "Desconegut" @@ -1305,7 +1307,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1870,7 +1872,7 @@ msgid "Leads" msgstr "Iniciatives" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1964,7 +1966,6 @@ msgid "Global CC" msgstr "CC global" #. 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 @@ -2903,7 +2904,7 @@ msgid "Working Hours" msgstr "Hores de treball" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/cs.po b/addons/crm/i18n/cs.po index ff3641cfb78..f2b326f122c 100644 --- a/addons/crm/i18n/cs.po +++ b/addons/crm/i18n/cs.po @@ -13,14 +13,14 @@ msgstr "" "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 05:07+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:59+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-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,9 +28,11 @@ 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 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -38,7 +40,7 @@ msgstr "" #: selection:crm.lead.report,type:0 #, python-format msgid "Lead" -msgstr "" +msgstr "Zájemce" #. module: crm #: view:crm.lead:0 @@ -55,6 +57,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 +72,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 +83,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 +103,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,35 +120,35 @@ 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 #: 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 #: help:crm.lead.report,creation_day:0 msgid "Creation day" -msgstr "" +msgstr "Den vytvoření" #. module: crm #: field:crm.segmentation.line,name:0 @@ -152,7 +159,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 @@ -162,7 +169,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 @@ -172,7 +179,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 @@ -182,10 +189,12 @@ 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 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -204,7 +213,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 @@ -222,7 +231,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 @@ -233,46 +242,46 @@ msgstr "Stav" #. 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.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 #: code:addons/crm/crm_lead.py:1010 #, python-format msgid "%s a call for the %s." -msgstr "" +msgstr "%s telefonát pro %s." #. 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 @@ -287,22 +296,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 +#: code:addons/crm/crm_lead.py:1002 #, 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 @@ -310,8 +321,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 @@ -326,6 +337,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 @@ -339,27 +359,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 @@ -378,12 +399,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 @@ -391,21 +424,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 @@ -415,7 +448,7 @@ msgstr "Datum aktualizace" #. module: crm #: field:crm.case.section,user_id:0 msgid "Team Leader" -msgstr "" +msgstr "Vedoucí týmu" #. module: crm #: help:crm.case.stage,probability:0 @@ -423,6 +456,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 @@ -437,24 +472,25 @@ 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 +#: code:addons/crm/crm_lead.py:640 #, python-format 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 #: view:crm.lead:0 msgid "Leads that are assigned to one of the sale teams I manage, or to me" -msgstr "" +msgstr "Zájemci přiřazení někomu z obchodních týmů, které řídím, nebo mně" #. 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 @@ -468,11 +504,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 @@ -481,7 +525,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 @@ -496,17 +540,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 @@ -518,7 +562,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 @@ -540,7 +584,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 @@ -551,23 +595,26 @@ 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 #: model:email.template,subject:crm.email_template_opportunity_mail msgid "Opportunity ${object.name | h})" -msgstr "" +msgstr "Příležitost ${object.name | h})" #. module: crm #: view:crm.case.categ:0 @@ -577,7 +624,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 @@ -585,33 +632,35 @@ 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 #: 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 @@ -625,6 +674,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 @@ -632,11 +688,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 @@ -647,29 +705,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 @@ -679,12 +737,12 @@ 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 #: field:crm.case.stage,probability:0 @@ -694,12 +752,12 @@ msgstr "Pravděpodobnost (%)" #. 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 @@ -707,7 +765,7 @@ msgid "Statistics Dashboard" msgstr "Statistická nástěnka" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -728,12 +786,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 @@ -743,7 +801,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 @@ -754,7 +812,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:calendar.attendee,categ_id:0 @@ -764,18 +822,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 +#: code:addons/crm/crm_lead.py:600 #, 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 @@ -784,7 +842,7 @@ msgstr "" #: view:crm.opportunity2phonecall:0 #: view:crm.phonecall2phonecall:0 msgid "or" -msgstr "" +msgstr "nebo" #. module: crm #: field:crm.lead.report,create_date:0 @@ -803,6 +861,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 @@ -818,7 +878,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 @@ -836,7 +896,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 @@ -846,7 +906,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 @@ -856,22 +916,22 @@ msgstr "Odchozí" #. module: crm #: view:crm.lead:0 msgid "Mark Won" -msgstr "Označit jako vítězné" +msgstr "Označit 'získáno'" #. module: crm #: model:ir.filters,name:crm.filter_usa_lead msgid "Leads from USA" -msgstr "" +msgstr "Zájemci u USA" #. 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 @@ -883,13 +943,13 @@ 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 #: field:crm.lead,day_open:0 @@ -913,11 +973,12 @@ 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" #. 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 @@ -925,7 +986,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 @@ -935,10 +996,10 @@ msgid "Next Action" msgstr "Další akce" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." -msgstr "" +msgstr "Kontakt nastaven jako %s." #. module: crm #: selection:crm.lead.report,state:0 @@ -950,12 +1011,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 @@ -965,12 +1026,12 @@ msgstr "Předmět" #. module: crm #: view:crm.lead:0 msgid "New Leads" -msgstr "" +msgstr "Noví zájemci" #. 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 @@ -978,6 +1039,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 @@ -1001,12 +1064,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 @@ -1025,20 +1088,20 @@ msgid "Creation Date" msgstr "Datum vytvoření" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, 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.case.stage:0 @@ -1052,17 +1115,17 @@ 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.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 @@ -1080,21 +1143,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 #: selection:crm.lead.report,creation_month:0 @@ -1118,28 +1184,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 @@ -1155,12 +1233,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 @@ -1168,6 +1246,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 @@ -1175,6 +1255,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 @@ -1182,12 +1264,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 @@ -1195,16 +1279,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 @@ -1212,7 +1298,9 @@ msgid "Days to Close" msgstr "Dnů k uzavření" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "neznámé" @@ -1221,7 +1309,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 @@ -1234,7 +1322,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 @@ -1245,7 +1333,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 @@ -1260,22 +1348,26 @@ 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 #: view:crm.phonecall.report:0 msgid "Date of call" -msgstr "" +msgstr "datum telefonátu" #. module: crm #: help:crm.lead,section_id:0 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 @@ -1283,27 +1375,29 @@ 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 #: view:crm.lead:0 msgid "Lead Description" -msgstr "" +msgstr "Popis zájemce" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, 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 @@ -1313,7 +1407,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 @@ -1323,12 +1417,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 @@ -1348,34 +1442,34 @@ msgstr "Zrušit" #. module: crm #: view:crm.lead:0 msgid "Opportunities Assigned to Me or My Team(s)" -msgstr "" +msgstr "Příležitosti přiřazené mně nebo mým týmům" #. 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 @@ -1386,18 +1480,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 @@ -1407,17 +1501,17 @@ 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 #: model:ir.model,name:crm.model_res_users msgid "Users" -msgstr "" +msgstr "Uživatelé" #. 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 @@ -1427,18 +1521,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 @@ -1455,18 +1549,22 @@ 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 #: field:crm.lead.report,date_closed:0 @@ -1477,19 +1575,19 @@ msgstr "Datum uzavření" #. 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.lead:0 @@ -1508,22 +1606,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 @@ -1536,7 +1634,7 @@ msgstr "Seskupit podle..." #. 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 @@ -1548,7 +1646,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 @@ -1562,11 +1660,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 @@ -1576,18 +1677,18 @@ msgstr "Příchozí" #. module: crm #: view:crm.phonecall.report:0 msgid "Month of call" -msgstr "" +msgstr "měsíc" #. module: crm #: 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 @@ -1596,11 +1697,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 @@ -1613,7 +1717,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 @@ -1639,7 +1743,7 @@ msgstr "Odpovědět-komu" #. module: crm #: view:crm.lead:0 msgid "Display" -msgstr "" +msgstr "Zobrazit" #. module: crm #: view:board.board:0 @@ -1649,7 +1753,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 @@ -1657,7 +1761,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 @@ -1665,7 +1769,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 @@ -1675,12 +1779,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 @@ -1690,7 +1794,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 @@ -1706,61 +1810,62 @@ 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 #: view:crm.lead:0 msgid "Leads Assigned to Me or My Team(s)" -msgstr "" +msgstr "Zájemci přiřazení mně a mým týmům" #. 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 @@ -1782,7 +1887,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 @@ -1794,29 +1899,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 @@ -1826,18 +1931,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 @@ -1852,41 +1957,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 +#: code:addons/crm/crm_lead.py:579 #, 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 @@ -1894,6 +1999,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 @@ -1907,7 +2014,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 @@ -1922,12 +2029,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 @@ -1941,7 +2048,7 @@ msgstr "Čekající" #. 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 @@ -1949,7 +2056,6 @@ msgid "Global CC" msgstr "Celkové CC" #. 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 @@ -1960,7 +2066,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 @@ -1975,7 +2081,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 @@ -1988,7 +2094,7 @@ msgstr "Aktivní" #. module: crm #: selection:crm.segmentation.line,operator:0 msgid "Mandatory Expression" -msgstr "Povinný výraz" +msgstr "Povinné pravidlo" #. module: crm #: view:crm.lead:0 @@ -2000,22 +2106,22 @@ msgstr "Poslat poštu" #: 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 @@ -2045,38 +2151,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 @@ -2084,11 +2190,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 #: help:crm.case.section,alias_id:0 @@ -2096,29 +2204,31 @@ 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 "Unassigned Opportunities" -msgstr "" +msgstr "Nepřiřazené příležitosti" #. 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 @@ -2131,6 +2241,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 @@ -2140,7 +2252,7 @@ msgstr "Informace účastníka" #. module: crm #: view:crm.segmentation:0 msgid "Segmentation Test" -msgstr "" +msgstr "Vyhodnocovací pravidlo" #. module: crm #: view:crm.segmentation:0 @@ -2152,13 +2264,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 @@ -2187,6 +2299,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 @@ -2194,27 +2317,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 @@ -2234,42 +2359,42 @@ 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 #: view:crm.lead:0 msgid "Unassigned Leads" -msgstr "" +msgstr "Nepřiřazení zájemci" #. 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 @@ -2281,13 +2406,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 @@ -2301,7 +2426,7 @@ msgstr "Zrušeno" #. module: crm #: field:crm.lead,color:0 msgid "Color Index" -msgstr "" +msgstr "Barevné značení" #. module: crm #: model:ir.actions.act_window,help:crm.action_report_crm_phonecall @@ -2311,26 +2436,29 @@ 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.segmentation.line,expr_operator:0 msgid "Operator" -msgstr "" +msgstr "Operátor" #. module: crm #: view:crm.lead:0 @@ -2341,7 +2469,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 @@ -2351,12 +2479,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 @@ -2366,7 +2494,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 @@ -2376,14 +2504,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 @@ -2402,11 +2530,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 @@ -2434,7 +2578,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 @@ -2444,16 +2588,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 @@ -2472,37 +2620,48 @@ 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 #: 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 @@ -2518,6 +2677,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 @@ -2530,12 +2700,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 @@ -2547,7 +2717,7 @@ msgstr "Prosinec" #. module: crm #: view:crm.phonecall:0 msgid "Date of Call" -msgstr "" +msgstr "Datum telefonátu" #. module: crm #: view:crm.lead:0 @@ -2563,7 +2733,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 @@ -2573,12 +2743,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 @@ -2596,17 +2766,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 @@ -2623,13 +2793,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 @@ -2642,7 +2812,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 @@ -2670,12 +2840,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 @@ -2711,12 +2881,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 @@ -2731,7 +2901,7 @@ msgstr "Oček.uzavření" #. module: crm #: help:crm.lead.report,deadline_year:0 msgid "Expected closing year" -msgstr "" +msgstr "Očekávaný rok uzavření" #. module: crm #: model:ir.model,name:crm.model_crm_case_stage @@ -2742,7 +2912,7 @@ msgstr "Fáze případu" #: 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 @@ -2752,12 +2922,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 @@ -2768,17 +2939,17 @@ 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 "Create date" -msgstr "" +msgstr "Datum vytvoření" #. module: crm #: view:crm.lead:0 msgid "at" -msgstr "" +msgstr "na" #. module: crm #: model:crm.case.stage,name:crm.stage_lead1 @@ -2787,7 +2958,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 @@ -2843,21 +3014,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 @@ -2872,7 +3056,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 @@ -2880,7 +3064,7 @@ msgid "Working Hours" msgstr "Pracovní hodiny" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 @@ -2905,13 +3089,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 @@ -2944,12 +3128,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 @@ -2969,7 +3153,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 @@ -2979,7 +3163,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 @@ -2997,12 +3181,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 @@ -3016,6 +3200,14 @@ 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 "My Draft " #~ msgstr "Můj koncept " diff --git a/addons/crm/i18n/da.po b/addons/crm/i18n/da.po index 6254aa87352..7f7fabb6622 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-16 05:07+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:59+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -30,7 +30,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -184,8 +184,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -294,7 +294,7 @@ msgid "Prospect Partner" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "" @@ -438,7 +438,7 @@ msgid "#Opportunities" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -705,7 +705,7 @@ msgid "Statistics Dashboard" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -765,7 +765,7 @@ msgid "Exclusive" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -933,7 +933,7 @@ msgid "Next Action" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1023,7 +1023,7 @@ msgid "Creation Date" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1210,7 +1210,9 @@ msgid "Days to Close" msgstr "" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "" @@ -1293,7 +1295,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1853,7 +1855,7 @@ msgid "Leads" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1947,7 +1949,6 @@ 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 @@ -2875,7 +2876,7 @@ msgid "Working Hours" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/de.po b/addons/crm/i18n/de.po index fa763d31a70..b1ca89b57a7 100644 --- a/addons/crm/i18n/de.po +++ b/addons/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-16 05:08+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:00+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -32,7 +32,7 @@ msgstr "" "eingehenden E-Mails neue Interessenten erzeugen." #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -193,8 +193,8 @@ msgstr "" "html Format, um Sie später in einer Kanban Ansicht einfügen zu können." #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -305,7 +305,7 @@ msgid "Prospect Partner" msgstr "Interessent" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Kein Betreff" @@ -482,7 +482,7 @@ msgid "#Opportunities" msgstr "Anzahl Chancen" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -781,7 +781,7 @@ msgid "Statistics Dashboard" msgstr "Statistik Anzeigetafel" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -841,7 +841,7 @@ msgid "Exclusive" msgstr "Exklusiv" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "Von %s : %s" @@ -1011,7 +1011,7 @@ msgid "Next Action" msgstr "Nächster Schritt" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "Partner wurde verändert zu %s." @@ -1104,7 +1104,7 @@ msgid "Creation Date" msgstr "Erzeugt am" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "Interessent wurde in Chance ungewandelt" @@ -1317,7 +1317,9 @@ msgid "Days to Close" msgstr "Tage b. Beend." #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "unbekannt" @@ -1405,7 +1407,7 @@ msgid "Lead Description" msgstr "Interessent Beschreibung" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Zusammengefasste Chancen" @@ -1983,7 +1985,7 @@ msgid "Leads" msgstr "Interessenten" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "Zusammengefasste Interessenten" @@ -2079,7 +2081,6 @@ msgid "Global CC" msgstr "Generelle E-Mail Kopie (CC)" #. 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 @@ -3093,7 +3094,7 @@ msgid "Working Hours" msgstr "Arbeitsstunden" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/el.po b/addons/crm/i18n/el.po index 337355d3cef..0fb432ee683 100644 --- a/addons/crm/i18n/el.po +++ b/addons/crm/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-16 05:08+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:00+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" @@ -32,7 +32,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -186,8 +186,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -298,7 +298,7 @@ msgid "Prospect Partner" msgstr "Προσδοκούμενος Συνεργάτης" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "" @@ -444,7 +444,7 @@ msgid "#Opportunities" msgstr "# Ευκαιρίες" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -713,7 +713,7 @@ msgid "Statistics Dashboard" msgstr "Ταμπλό Στατιστικών" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -773,7 +773,7 @@ msgid "Exclusive" msgstr "Αποκλειστικά" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -941,7 +941,7 @@ msgid "Next Action" msgstr "Επόμενη Ενέργεια" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1031,7 +1031,7 @@ msgid "Creation Date" msgstr "Ημερ/νία Δημιουργίας" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1222,7 +1222,9 @@ msgid "Days to Close" msgstr "Μέρες για Κλείσιμο" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "άγνωστο" @@ -1305,7 +1307,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1867,7 +1869,7 @@ msgid "Leads" msgstr "Υποψήφιοι Πελάτες" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1961,7 +1963,6 @@ 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 @@ -2889,7 +2890,7 @@ msgid "Working Hours" msgstr "Ώρες Εργασίας" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/es.po b/addons/crm/i18n/es.po index 5d70624f8ea..e7cd4d770e9 100644 --- a/addons/crm/i18n/es.po +++ b/addons/crm/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-16 05:09+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:01+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -31,7 +31,7 @@ msgstr "" "desde los correos entrantes." #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -192,8 +192,8 @@ msgstr "" "directamente en formato HTML para poder ser insertado en las vistas kanban." #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -306,7 +306,7 @@ msgid "Prospect Partner" msgstr "Socio prospecto" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Sin asunto" @@ -314,7 +314,7 @@ msgstr "Sin asunto" #. module: crm #: field:crm.lead,contact_name:0 msgid "Contact Name" -msgstr "Nombre de contacto" +msgstr "Nombre del contacto" #. module: crm #: help:crm.segmentation,categ_id:0 @@ -475,7 +475,7 @@ msgid "#Opportunities" msgstr "# Oportunidades" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -769,7 +769,7 @@ msgid "Statistics Dashboard" msgstr "Tablero de estadísticas" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -831,7 +831,7 @@ msgid "Exclusive" msgstr "Exclusivo" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "De %s : %s" @@ -1002,7 +1002,7 @@ msgid "Next Action" msgstr "Acción siguiente" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "Empresa establecida a %s." @@ -1094,7 +1094,7 @@ msgid "Creation Date" msgstr "Fecha creación" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "Iniciativa convertida a oportunidad" @@ -1305,7 +1305,9 @@ msgid "Days to Close" msgstr "Días para el cierre" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "desconocido" @@ -1396,7 +1398,7 @@ msgid "Lead Description" msgstr "Descripción de la iniciativa" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Oportunidades fusionadas" @@ -1487,7 +1489,7 @@ msgstr "Otro" #: field:crm.phonecall,opportunity_id:0 #: model:ir.model,name:crm.model_crm_lead msgid "Lead/Opportunity" -msgstr "Inicaitiva / Oportunbidad" +msgstr "Iniciativa/Oportunidad" #. module: crm #: model:ir.actions.act_window,name:crm.action_merge_opportunities @@ -1970,7 +1972,7 @@ msgid "Leads" msgstr "Iniciativas" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "Combinar iniciativas" @@ -2066,7 +2068,6 @@ msgid "Global CC" msgstr "CC Global" #. 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 @@ -3070,7 +3071,7 @@ msgid "Working Hours" msgstr "Horario de trabajo" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/es_AR.po b/addons/crm/i18n/es_AR.po index 524cdd9fa8f..aa3f989bfad 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-08-16 05:12+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:01+0000\n" +"X-Generator: Launchpad (build 16753)\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 bd1189e1097..785a1ae9818 100644 --- a/addons/crm/i18n/es_CR.po +++ b/addons/crm/i18n/es_CR.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-16 05:09+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: crm @@ -30,7 +30,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -184,8 +184,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -296,7 +296,7 @@ msgid "Prospect Partner" msgstr "Socio prospecto" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Sin Asunto" @@ -444,7 +444,7 @@ msgid "#Opportunities" msgstr "# Oportunidades" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -714,7 +714,7 @@ msgid "Statistics Dashboard" msgstr "Tablero de estadísticas" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -774,7 +774,7 @@ msgid "Exclusive" msgstr "Exclusivo" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "De %s : %s" @@ -942,7 +942,7 @@ msgid "Next Action" msgstr "Acción siguiente" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1032,7 +1032,7 @@ msgid "Creation Date" msgstr "Fecha creación" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1227,7 +1227,9 @@ msgid "Days to Close" msgstr "Días para el cierre" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "desconocido" @@ -1312,7 +1314,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Oportunidades fusionadas" @@ -1877,7 +1879,7 @@ msgid "Leads" msgstr "Iniciativas" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1971,7 +1973,6 @@ msgid "Global CC" msgstr "CC Global" #. 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 @@ -2912,7 +2913,7 @@ msgid "Working Hours" msgstr "Horario de trabajo" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/es_EC.po b/addons/crm/i18n/es_EC.po index dc158fc6ab7..539bd1b3fff 100644 --- a/addons/crm/i18n/es_EC.po +++ b/addons/crm/i18n/es_EC.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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -29,7 +29,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -183,8 +183,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -295,7 +295,7 @@ msgid "Prospect Partner" msgstr "Socio prospecto" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "" @@ -443,7 +443,7 @@ msgid "#Opportunities" msgstr "# Oportunidades" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -713,7 +713,7 @@ msgid "Statistics Dashboard" msgstr "Tablero de estadísticas" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -773,7 +773,7 @@ msgid "Exclusive" msgstr "Exclusivo" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -941,7 +941,7 @@ msgid "Next Action" msgstr "Acción siguiente" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1031,7 +1031,7 @@ msgid "Creation Date" msgstr "Fecha creación" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1222,7 +1222,9 @@ msgid "Days to Close" msgstr "Días para el cierre" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "desconocido" @@ -1305,7 +1307,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1870,7 +1872,7 @@ msgid "Leads" msgstr "Iniciativas" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1964,7 +1966,6 @@ msgid "Global CC" msgstr "CC Global" #. 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 @@ -2903,7 +2904,7 @@ msgid "Working Hours" msgstr "Horario de trabajo" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/es_MX.po b/addons/crm/i18n/es_MX.po index 5e347b16f67..ec79649b441 100644 --- a/addons/crm/i18n/es_MX.po +++ b/addons/crm/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-29 04:36+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -32,7 +32,7 @@ msgstr "" "desde los correos entrantes." #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -193,8 +193,8 @@ msgstr "" "directamente en formato HTML para poder ser insertado en las vistas kanban." #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -307,7 +307,7 @@ msgid "Prospect Partner" msgstr "Socio prospecto" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Sin asunto" @@ -476,7 +476,7 @@ msgid "#Opportunities" msgstr "# Oportunidades" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -770,7 +770,7 @@ msgid "Statistics Dashboard" msgstr "Tablero de estadísticas" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -832,7 +832,7 @@ msgid "Exclusive" msgstr "Exclusivo" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "De %s : %s" @@ -1003,7 +1003,7 @@ msgid "Next Action" msgstr "Acción siguiente" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "Empresa establecida a %s." @@ -1095,7 +1095,7 @@ msgid "Creation Date" msgstr "Fecha creación" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "Iniciativa convertida a oportunidad" @@ -1306,7 +1306,9 @@ msgid "Days to Close" msgstr "Días para el cierre" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "desconocido" @@ -1397,7 +1399,7 @@ msgid "Lead Description" msgstr "Descripción de la iniciativa" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Oportunidades fusionadas" @@ -1971,7 +1973,7 @@ msgid "Leads" msgstr "Iniciativas" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "Combinar iniciativas" @@ -2067,7 +2069,6 @@ msgid "Global CC" msgstr "CC Global" #. 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 @@ -3071,7 +3072,7 @@ msgid "Working Hours" msgstr "Horario de trabajo" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/es_PY.po b/addons/crm/i18n/es_PY.po index 582c2079332..db87bd5c6f1 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -30,7 +30,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -184,8 +184,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -296,7 +296,7 @@ msgid "Prospect Partner" msgstr "Socio prospecto" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "" @@ -444,7 +444,7 @@ msgid "#Opportunities" msgstr "# Oportunidades" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -714,7 +714,7 @@ msgid "Statistics Dashboard" msgstr "Tablero de estadísticas" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -774,7 +774,7 @@ msgid "Exclusive" msgstr "Exclusivo" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -942,7 +942,7 @@ msgid "Next Action" msgstr "Acción siguiente" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1032,7 +1032,7 @@ msgid "Creation Date" msgstr "Fecha creación" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1223,7 +1223,9 @@ msgid "Days to Close" msgstr "Días para el cierre" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "desconocido" @@ -1306,7 +1308,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1871,7 +1873,7 @@ msgid "Leads" msgstr "Iniciativas" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1965,7 +1967,6 @@ msgid "Global CC" msgstr "CC Global" #. 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 @@ -2904,7 +2905,7 @@ msgid "Working Hours" msgstr "Horario de trabajo" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/et.po b/addons/crm/i18n/et.po index 359ca3e93de..97db9796b76 100644 --- a/addons/crm/i18n/et.po +++ b/addons/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-16 05:08+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:59+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -29,7 +29,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -183,8 +183,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -293,7 +293,7 @@ msgid "Prospect Partner" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "" @@ -439,7 +439,7 @@ msgid "#Opportunities" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -706,7 +706,7 @@ msgid "Statistics Dashboard" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -766,7 +766,7 @@ msgid "Exclusive" msgstr "Eksklusiivne" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -934,7 +934,7 @@ msgid "Next Action" msgstr "Järgmine Toiming" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1024,7 +1024,7 @@ msgid "Creation Date" msgstr "Loomise Kuupäev" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1213,7 +1213,9 @@ msgid "Days to Close" msgstr "" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "" @@ -1296,7 +1298,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1856,7 +1858,7 @@ msgid "Leads" msgstr "Algatused" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1950,7 +1952,6 @@ 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 @@ -2878,7 +2879,7 @@ msgid "Working Hours" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/fi.po b/addons/crm/i18n/fi.po index 9c6448fba4f..fed04159661 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-16 05:08+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:59+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -30,7 +30,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -184,8 +184,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -296,7 +296,7 @@ msgid "Prospect Partner" msgstr "Ehdokaskumppani" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "" @@ -442,7 +442,7 @@ msgid "#Opportunities" msgstr "Mahdollisuuksien määrä" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -711,7 +711,7 @@ msgid "Statistics Dashboard" msgstr "Tilastojen työpöytä" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -771,7 +771,7 @@ msgid "Exclusive" msgstr "Poissulkeva" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -939,7 +939,7 @@ msgid "Next Action" msgstr "Seuraava Toimenpide" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1029,7 +1029,7 @@ msgid "Creation Date" msgstr "Luontipäivämäärä" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1220,7 +1220,9 @@ msgid "Days to Close" msgstr "Päivää sulkemiseen" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "Tuntematon" @@ -1303,7 +1305,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1863,7 +1865,7 @@ msgid "Leads" msgstr "Liidit" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1957,7 +1959,6 @@ 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 @@ -2888,7 +2889,7 @@ msgid "Working Hours" msgstr "Työtunnit" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/fr.po b/addons/crm/i18n/fr.po index b9fc1dcbf30..8046993d95f 100644 --- a/addons/crm/i18n/fr.po +++ b/addons/crm/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-16 05:08+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:00+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -31,7 +31,7 @@ msgstr "" "pistes à partir de courriels entrant." #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -71,7 +71,7 @@ msgstr "Action" #. module: crm #: model:ir.actions.server,name:crm.action_set_team_sales_department msgid "Set team to Sales Department" -msgstr "" +msgstr "Définir l'équipe du service commercial" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 @@ -192,8 +192,8 @@ msgstr "" "est au format HTML pour permettre son utilisation dans la vue kanban" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -305,7 +305,7 @@ msgid "Prospect Partner" msgstr "Prospect" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Pas de sujet" @@ -479,7 +479,7 @@ msgid "#Opportunities" msgstr "Nb. d'opportunités" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -777,7 +777,7 @@ msgid "Statistics Dashboard" msgstr "Tableau de bord de statistiques" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -839,7 +839,7 @@ msgid "Exclusive" msgstr "Sélection exclusive" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "De %s: %s" @@ -1011,7 +1011,7 @@ msgid "Next Action" msgstr "Prochaine action" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "Les partenaire à été positionné à %s." @@ -1104,7 +1104,7 @@ msgid "Creation Date" msgstr "Date de création" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "Piste convertie en opportunité" @@ -1319,7 +1319,9 @@ msgid "Days to Close" msgstr "Jours avant clôture" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "inconnu" @@ -1409,7 +1411,7 @@ msgid "Lead Description" msgstr "Description de la piste" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Opportunités fusionnées" @@ -1945,7 +1947,7 @@ msgstr "Équipes commerciales" #. module: crm #: field:crm.case.stage,case_default:0 msgid "Default to New Sales Team" -msgstr "" +msgstr "Par défaut à la nouvelle équipe commerciale" #. module: crm #: view:crm.lead:0 @@ -1984,7 +1986,7 @@ msgid "Leads" msgstr "Pistes" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "Pistes fusionnées" @@ -2080,7 +2082,6 @@ msgid "Global CC" msgstr "Copie à" #. 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 @@ -2506,6 +2507,7 @@ msgstr "Confirmée" #: model:ir.model,name:crm.model_crm_partner_binding msgid "Handle partner binding or generation in CRM wizards." msgstr "" +"Gère la relation ou la génération du partenaire dans les assistants du CRM" #. module: crm #: model:ir.actions.act_window,name:crm.act_oppor_stage_user @@ -2862,7 +2864,7 @@ msgstr "Rue 2" #. module: crm #: field:sale.config.settings,module_crm_helpdesk:0 msgid "Manage Helpdesk and Support" -msgstr "Gérer l'assitance et le support" +msgstr "Gérer l'assistance et le support" #. module: crm #: field:crm.lead.report,delay_open:0 @@ -3086,7 +3088,7 @@ msgid "Working Hours" msgstr "Heures de travail" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/gl.po b/addons/crm/i18n/gl.po index 76d4834d1ac..787cd7b2193 100644 --- a/addons/crm/i18n/gl.po +++ b/addons/crm/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-16 05:08+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:00+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -31,7 +31,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -185,8 +185,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -295,7 +295,7 @@ msgid "Prospect Partner" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "" @@ -441,7 +441,7 @@ msgid "#Opportunities" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -708,7 +708,7 @@ msgid "Statistics Dashboard" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -768,7 +768,7 @@ msgid "Exclusive" msgstr "Exclusivo" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -936,7 +936,7 @@ msgid "Next Action" msgstr "Seguinte acción" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1026,7 +1026,7 @@ msgid "Creation Date" msgstr "Data de creación" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1215,7 +1215,9 @@ msgid "Days to Close" msgstr "" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "" @@ -1298,7 +1300,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1858,7 +1860,7 @@ msgid "Leads" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1952,7 +1954,6 @@ 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 @@ -2880,7 +2881,7 @@ msgid "Working Hours" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/gu.po b/addons/crm/i18n/gu.po index 05aeeb46847..59021b546de 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-16 05:08+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:00+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -30,7 +30,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -184,8 +184,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -294,7 +294,7 @@ msgid "Prospect Partner" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "કોઈ વિષય નથી" @@ -438,7 +438,7 @@ msgid "#Opportunities" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -705,7 +705,7 @@ msgid "Statistics Dashboard" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -765,7 +765,7 @@ msgid "Exclusive" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -933,7 +933,7 @@ msgid "Next Action" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1023,7 +1023,7 @@ msgid "Creation Date" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1210,7 +1210,9 @@ msgid "Days to Close" msgstr "" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "" @@ -1293,7 +1295,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1853,7 +1855,7 @@ msgid "Leads" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1947,7 +1949,6 @@ 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 @@ -2875,7 +2876,7 @@ msgid "Working Hours" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/hr.po b/addons/crm/i18n/hr.po index 626d9bd8ff6..bb82e0c5cc1 100644 --- a/addons/crm/i18n/hr.po +++ b/addons/crm/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-16 05:09+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:01+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: hr\n" #. module: crm @@ -28,11 +28,11 @@ msgid "" "Allows you to configure your incoming mail server, and create leads from " "incoming emails." msgstr "" -"Omogućuje konfiguriranje dolaznoog mail poslužitelja, i kreira potencijalne " -"prodaje iz dolaznih poruka." +"Omogućuje konfiguriranje dolaznog mail poslužitelja i kreira potencijale iz " +"dolaznih poruka." #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -40,7 +40,7 @@ msgstr "" #: selection:crm.lead.report,type:0 #, python-format msgid "Lead" -msgstr "Potencijali" +msgstr "Potencijal" #. module: crm #: view:crm.lead:0 @@ -188,8 +188,8 @@ msgstr "" "da bi mogao biti ubačen u kanban pogled." #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -226,7 +226,7 @@ msgstr "Telefonski poziv" #. module: crm #: field:crm.lead,opt_out:0 msgid "Opt-Out" -msgstr "Isključiti" +msgstr "Isključiti iz masove e-pošte" #. module: crm #: view:crm.lead:0 @@ -257,7 +257,7 @@ msgstr "Isključeni odgovori :" #. module: crm #: model:ir.model,name:crm.model_crm_merge_opportunity msgid "Merge opportunities" -msgstr "" +msgstr "Spoji prilike" #. module: crm #: view:crm.lead.report:0 @@ -300,7 +300,7 @@ msgid "Prospect Partner" msgstr "Izgledni partner" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Bez naslova" @@ -308,7 +308,7 @@ msgstr "Bez naslova" #. module: crm #: field:crm.lead,contact_name:0 msgid "Contact Name" -msgstr "Contact Name" +msgstr "Naziv kontakta" #. module: crm #: help:crm.segmentation,categ_id:0 @@ -345,6 +345,8 @@ msgstr "Kontakt" msgid "" "When escalating to this team override the salesman with the team leader." msgstr "" +"U slučaju eskalacije neke prilike u ovom timu, zamijeni dodijeljenog " +"prodavača sa vođom tima" #. module: crm #: model:process.transition,name:crm.process_transition_opportunitymeeting0 @@ -365,7 +367,7 @@ msgstr "Kada se prepozna pravi projekt / prilika" #. module: crm #: field:res.partner,opportunity_ids:0 msgid "Leads and Opportunities" -msgstr "Prodajni tragovi i prilike" +msgstr "Potencijali i prilike" #. module: crm #: model:ir.actions.act_window,help:crm.relate_partner_opportunities @@ -448,12 +450,12 @@ msgid "#Opportunities" msgstr "#Prilika" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." msgstr "" -"Molimo odaberite jedan ili više elemenata (lead ilioportunity) iz liste." +"Molimo odaberite jedan ili više elemenata (potencijal ili prilika) iz liste." #. module: crm #: view:crm.lead:0 @@ -505,7 +507,7 @@ msgstr "Postavke" #. module: crm #: view:crm.lead:0 msgid "Escalate" -msgstr "Eskalirati" +msgstr "Eskaliraj" #. module: crm #: view:crm.lead:0 @@ -560,6 +562,10 @@ msgid "" " If the call needs to be done then the status is set " "to 'Not Held'." msgstr "" +"Status je postavljen na 'Obaviti' kada slučaj nastane. Ako je slučaj u " +"tijeku, status je postavljen na 'Otvoreno'. Status se postavlja na 'Održan' " +"kada poziv završi. Ako poziv treba obaviti status se postavlja na 'Nije " +"održan'." #. module: crm #: field:crm.case.section,message_summary:0 @@ -669,7 +675,7 @@ msgstr "Analiza tel. poziva" #. module: crm #: view:crm.lead:0 msgid "Leads Form" -msgstr "Kartica potencijalnog kontakta" +msgstr "Obrazac potencijala" #. module: crm #: view:crm.segmentation:0 @@ -710,7 +716,7 @@ msgstr "Vjerojatnost sklapanja posla bi trebala biti između 0% i 100%!" #. module: crm #: view:crm.lead:0 msgid "Leads Generation" -msgstr "Generiranje potencijalnih kontakata" +msgstr "" #. module: crm #: view:board.board:0 @@ -718,7 +724,7 @@ msgid "Statistics Dashboard" msgstr "Kokpit statistike" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -739,7 +745,7 @@ msgstr "Televizija" #. module: crm #: model:ir.actions.act_window,name:crm.action_crm_send_mass_convert msgid "Convert to opportunities" -msgstr "" +msgstr "Pretvori u prilike" #. module: crm #: model:ir.model,name:crm.model_sale_config_settings @@ -765,7 +771,7 @@ msgstr "Traži telefonske pozive" #: view:crm.lead.report:0 msgid "" "Leads/Opportunities that are assigned to one of the sale teams I manage" -msgstr "" +msgstr "Potencijali/prilike dodijeljene prodajnom timu kojim upravljam" #. module: crm #: field:calendar.attendee,categ_id:0 @@ -778,7 +784,7 @@ msgid "Exclusive" msgstr "Isključujući" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "Od %s do %s" @@ -872,7 +878,7 @@ msgstr "Označi kao dobiven" #. module: crm #: model:ir.filters,name:crm.filter_usa_lead msgid "Leads from USA" -msgstr "" +msgstr "Potencijalni kontakti iz SAD" #. module: crm #: view:crm.lead:0 @@ -882,7 +888,7 @@ msgstr "Označi kao izgubljen" #. module: crm #: model:ir.filters,name:crm.filter_draft_lead msgid "Draft Leads" -msgstr "" +msgstr "Potencijal u skici" #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -943,10 +949,10 @@ msgstr "Sastanci" #: field:crm.lead,title_action:0 #: field:crm.phonecall,date_action_next:0 msgid "Next Action" -msgstr "Siljedeća akcija" +msgstr "Sljedeća akcija" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -956,7 +962,7 @@ msgstr "" #: selection:crm.phonecall,state:0 #: selection:crm.phonecall.report,state:0 msgid "Draft" -msgstr "Nacrt" +msgstr "Skica" #. module: crm #: view:crm.segmentation:0 @@ -966,7 +972,7 @@ msgstr "Segmentacije Partnera" #. module: crm #: view:crm.lead.report:0 msgid "Show only opportunity" -msgstr "" +msgstr "Prikaži samo prilike" #. module: crm #: field:crm.lead,name:0 @@ -994,7 +1000,7 @@ msgstr "" #: model:crm.case.stage,name:crm.stage_lead6 #: view:crm.lead:0 msgid "Won" -msgstr "Won" +msgstr "Dobiven" #. module: crm #: field:crm.lead.report,delay_expected:0 @@ -1036,10 +1042,10 @@ msgid "Creation Date" msgstr "Datum kreiranja" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" -msgstr "" +msgstr "Potencijal je pretvoren u priliku" #. module: crm #: selection:crm.segmentation.line,expr_name:0 @@ -1091,6 +1097,8 @@ msgid "" "Allows you to communicate with Customer, process Customer query, and " "provide better help and support. This installs the module crm_helpdesk." msgstr "" +"Omogućuje vam da komunicirate s kupcima, obrađujete upite kupaca, te " +"osigurate bolju pomoć i podršku. Ovo instalira modul crm_helpdesk." #. module: crm #: view:crm.lead:0 @@ -1100,7 +1108,7 @@ msgstr "Briši" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_create msgid "Opportunity created" -msgstr "" +msgstr "Prilika je izrađena" #. module: crm #: view:crm.lead:0 @@ -1140,7 +1148,7 @@ msgstr "Max Partner ID procesiran" msgid "" "Setting this stage will change the probability automatically on the " "opportunity." -msgstr "" +msgstr "Postavljanjem ove faze automatski se mijenja vjerojatnost prilike." #. module: crm #: view:crm.lead:0 @@ -1150,7 +1158,7 @@ msgstr "" #. module: crm #: model:ir.ui.menu,name:crm.menu_crm_payment_mode_act msgid "Payment Modes" -msgstr "" +msgstr "Načini plaćanja" #. module: crm #: field:crm.lead.report,opening_date:0 @@ -1179,8 +1187,6 @@ msgid "" "If the active field is set to true, it will allow you to hide the sales team " "without removing it." msgstr "" -"If the active field is set to true, it will allow you to hide the sales team " -"without removing it." #. module: crm #: help:crm.case.stage,case_default:0 @@ -1195,12 +1201,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 "" +"Ovo se polje koristi za razlikovanje faza povezanih sa potencijalima od faza " +"povezanih sa prilikama, ili da odredi faze dostupne za oba tipa." #. 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 "Potencijal je kreiran" #. module: crm #: help:crm.segmentation,sales_purchase_active:0 @@ -1227,7 +1235,9 @@ msgid "Days to Close" msgstr "Dana za zatvaranje" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "nepoznato" @@ -1265,7 +1275,7 @@ msgstr "Pozivi u stanju zatvoreno" #. module: crm #: view:crm.phonecall.report:0 msgid "Search" -msgstr "Search" +msgstr "Pretraživanje" #. module: crm #: help:crm.lead,state:0 @@ -1275,22 +1285,25 @@ msgid "" "set to 'Done'. If the case needs to be reviewed then the Status is set to " "'Pending'." msgstr "" +"Status 'skica' se postavlja kada je slučaj nastao. Ako je slučaj u tijeku " +"status se postavlja na 'Otvoreno'. Kada je slučaj gotov, status se postavlja " +"na 'Gotovo'. Status je 'Na čekanju' ako slučaj treba preispitati." #. module: crm #: model:crm.case.section,name:crm.crm_case_section_1 msgid "Sales Marketing Department" -msgstr "" +msgstr "Odjel marketinga" #. module: crm #: view:crm.phonecall.report:0 msgid "Date of call" -msgstr "Dagtum zvanja" +msgstr "Datum poziva" #. module: crm #: help:crm.lead,section_id:0 msgid "" "When sending mails, the default email address is taken from the sales team." -msgstr "" +msgstr "Kada se šalje mail, predodređena adresa se uzima iz prodajnog tima." #. module: crm #: view:crm.phonecall:0 @@ -1298,6 +1311,7 @@ msgid "" "Phone Calls Assigned to the current user or with a team having the current " "user as team leader" msgstr "" +"Pozivi dodijeljeni trenutnom korisniku ili timu kojem je korisnik vođa" #. module: crm #: view:crm.segmentation:0 @@ -1310,7 +1324,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Spojene prilike" @@ -1318,7 +1332,7 @@ msgstr "Spojene prilike" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor7 msgid "Consulting" -msgstr "" +msgstr "Savjetovanje" #. module: crm #: field:crm.case.section,code:0 @@ -1328,7 +1342,7 @@ msgstr "Šifra" #. module: crm #: view:sale.config.settings:0 msgid "Features" -msgstr "Mogućnosti" +msgstr "Značajke" #. module: crm #: field:crm.case.section,child_ids:0 @@ -1373,7 +1387,7 @@ msgstr "Informacija" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities which are in pending state" -msgstr "" +msgstr "Potencijal/prilike koji su u stanju čekanja" #. module: crm #: view:crm.phonecall:0 @@ -1383,7 +1397,7 @@ msgstr "Za napraviti" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_lost msgid "Opportunity lost" -msgstr "" +msgstr "Izgubljena prilika" #. module: crm #: field:crm.lead2opportunity.partner,action:0 @@ -1407,12 +1421,12 @@ msgstr "Potencijal/prilika" #: 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 "Spoji potencijale/prilike" #. module: crm #: help:crm.case.stage,sequence:0 msgid "Used to order stages. Lower is better." -msgstr "" +msgstr "Koristi za poredak faza. Niže je bolje." #. module: crm #: model:ir.actions.act_window,name:crm.crm_phonecall_categ_action @@ -1470,11 +1484,10 @@ msgid "" "mainly used by the sales manager in order to do the periodic review with the " "teams of the sales pipeline." msgstr "" -"Opportunities Analysis gives you an instant access to your opportunities " -"with information such as the expected revenue, planned cost, missed " -"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." +"Analiza prilika daje vam brz pristup vašim poslovnim prilikama s " +"informacijama kao što su očekivani prihod, planirani troškovi, propušteni " +"rokovi ili broj interakcija po prilici. Voditelj prodaje uglavnom koristi " +"ovaj izvještaj kako bi sa timovima obavio periodični pregled prodaje." #. module: crm #: field:crm.case.categ,name:0 @@ -1486,7 +1499,7 @@ msgstr "Naziv" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities that are assigned to me" -msgstr "" +msgstr "Potencijali/prilike dodijeljene meni" #. module: crm #: field:crm.lead.report,date_closed:0 @@ -1528,12 +1541,12 @@ msgstr "Visok" #. module: crm #: model:process.node,note:crm.process_node_partner0 msgid "Convert to prospect to business partner" -msgstr "Pretv u Izglenog Partnera pa u Poslovnog Partnera" +msgstr "Prebaci u izglednog pa u poslovnog partnera" #. module: crm #: model:ir.model,name:crm.model_crm_payment_mode msgid "CRM Payment Mode" -msgstr "" +msgstr "CRM način plaćanja" #. module: crm #: view:crm.lead.report:0 @@ -1543,7 +1556,7 @@ msgstr "Završeni potencijali i prilike" #. module: crm #: field:crm.lead.report,delay_close:0 msgid "Delay to Close" -msgstr "Delay to Close" +msgstr "Odgoda do zatvaranja" #. module: crm #: view:crm.lead:0 @@ -1556,24 +1569,24 @@ msgstr "Grupiraj po..." #. module: crm #: view:crm.merge.opportunity:0 msgid "Merge Leads/Opportunities" -msgstr "" +msgstr "Spoji potencijale/prilike" #. module: crm #: field:crm.case.section,parent_id:0 msgid "Parent Team" -msgstr "Parent Team" +msgstr "Nadređeni tim" #. 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 "Ne spajaj s kupcem" #. module: crm #: field:crm.lead,date_action:0 msgid "Next Action Date" -msgstr "Datum slijedeće akcije" +msgstr "Datum sljedeće akcije" #. module: crm #: help:crm.case.stage,state:0 @@ -1582,11 +1595,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 "" +"Status vašeg dokumenta automatski će se promijeniti odabirom faze. Na " +"primjer, ako je faza povezana sa statusom 'Zatvori', kada dokument dosegne " +"tu fazu, automatski se zatvara." #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Assign opportunities to" -msgstr "" +msgstr "Dodijeli prilike" #. module: crm #: model:crm.case.categ,name:crm.categ_phone1 @@ -1616,6 +1632,10 @@ 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 "" +"Analiza poslovnih prilika vam omogućuje da provjerite različite CMR povezane " +"informacije poput tretmana kašnjenja ili broj potencijalnih kontakta po " +"državi. Kako bi dobili preciznu analizu, možete sortirati potencijalne " +"kontakte po različitim grupama." #. module: crm #: model:crm.case.categ,name:crm.categ_oppor3 @@ -1644,7 +1664,7 @@ msgstr "Bilješke" #. module: crm #: field:crm.segmentation.line,expr_value:0 msgid "Value" -msgstr "Value" +msgstr "Vrijednost" #. module: crm #: field:crm.lead,partner_name:0 @@ -1654,7 +1674,7 @@ msgstr "Naziv kupca" #. module: crm #: field:crm.case.section,reply_to:0 msgid "Reply-To" -msgstr "Reply-To" +msgstr "Odgovori na" #. module: crm #: view:crm.lead:0 @@ -1690,7 +1710,7 @@ msgstr "Održan" #. module: crm #: view:crm.lead:0 msgid "Extra Info" -msgstr "Dodatni podaci" +msgstr "Dodatne informacije" #. module: crm #: view:crm.lead:0 @@ -1726,12 +1746,13 @@ msgstr "Prioritet" #. module: crm #: model:ir.model,name:crm.model_crm_lead2opportunity_partner msgid "Lead To Opportunity Partner" -msgstr "Potencijalni kontakt u partnera prilike" +msgstr "Potencijal u partnera prilike" #. module: crm #: help:crm.lead,partner_id:0 msgid "Linked partner (optional). Usually created when converting the lead." msgstr "" +"Povezan partner (opcionalno). Obično se kreira kod pretvorbe potencijala." #. module: crm #: field:crm.lead,payment_mode:0 @@ -1743,12 +1764,12 @@ msgstr "Način plaćanja" #. module: crm #: model:ir.model,name:crm.model_crm_lead2opportunity_partner_mass msgid "Mass Lead To Opportunity Partner" -msgstr "" +msgstr "Masovni potencijal u partnera prilike" #. module: crm #: view:sale.config.settings:0 msgid "On Mail Server" -msgstr "" +msgstr "Na mail poslužitelju" #. module: crm #: model:ir.actions.act_window,name:crm.open_board_statistical_dash @@ -1760,7 +1781,7 @@ msgstr "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 "Segmentacija kontakata" #. module: crm #: model:process.node,note:crm.process_node_meeting0 @@ -1796,13 +1817,13 @@ msgstr "Očekivani prihod" #. module: crm #: view:crm.lead:0 msgid "Referrer" -msgstr "Referrer" +msgstr "Osoba koja je uputila" #. module: crm #: help:crm.lead,type:0 #: help:crm.lead.report,type:0 msgid "Type is used to separate Leads and Opportunities" -msgstr "Tip se koristi za razlikovanje potencijalnih kontakta i prilika." +msgstr "Tip se koristi za razlikovanje potencijala od prilika." #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -1824,7 +1845,7 @@ msgstr "Odjel podrške" #. module: crm #: view:crm.lead.report:0 msgid "Show only lead" -msgstr "" +msgstr "Prikaži samo potencijal" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_section_act @@ -1836,12 +1857,12 @@ msgstr "Prodajni timovi" #. module: crm #: field:crm.case.stage,case_default:0 msgid "Default to New Sales Team" -msgstr "" +msgstr "Predodređeno za novi prodajni tim" #. module: crm #: view:crm.lead:0 msgid "Team" -msgstr "Team" +msgstr "Tim" #. module: crm #: view:crm.lead.report:0 @@ -1857,7 +1878,7 @@ msgstr "Nije održano" #. module: crm #: field:crm.lead.report,probability:0 msgid "Probability" -msgstr "Probability" +msgstr "Vjerojatnost" #. module: crm #: view:crm.lead.report:0 @@ -1872,13 +1893,13 @@ msgstr "Mjesec" #: model:ir.ui.menu,name:crm.menu_crm_leads #: model:process.node,name:crm.process_node_leads0 msgid "Leads" -msgstr "Potencijalni kontakti" +msgstr "Potencijali" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" -msgstr "" +msgstr "Spoji potencijale" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor5 @@ -1889,7 +1910,7 @@ msgstr "Dizajn" #: selection:crm.lead2opportunity.partner,name:0 #: selection:crm.lead2opportunity.partner.mass,name:0 msgid "Merge with existing opportunities" -msgstr "" +msgstr "Spoji sa postojećim prilikama" #. module: crm #: view:crm.phonecall.report:0 @@ -1901,7 +1922,7 @@ msgstr "Za obaviti" #: 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 "Potencijal u priliku" #. module: crm #: field:crm.lead,user_email:0 @@ -1914,6 +1935,7 @@ msgid "" "The name of the future partner company that will be created while converting " "the lead into opportunity" msgstr "" +"Ime budućeg partnera koji će se kreirati konverzijom potencijala u priliku" #. module: crm #: field:crm.opportunity2phonecall,note:0 @@ -1947,7 +1969,7 @@ msgstr "Otvori prilike" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead2 msgid "Email Campaign - Services" -msgstr "" +msgstr "E-mail kampanja - usluge" #. module: crm #: selection:crm.case.stage,state:0 @@ -1966,10 +1988,9 @@ msgstr "Istraži Priliku" #. module: crm #: field:crm.lead,email_cc:0 msgid "Global CC" -msgstr "Global CC" +msgstr "Globalni CC" #. 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 @@ -1986,7 +2007,7 @@ msgstr "Pretraga faza" #: help:crm.lead.report,delay_open:0 #: help:crm.phonecall.report,delay_open:0 msgid "Number of Days to open the case" -msgstr "Number of Days to open the case" +msgstr "Broj danas za otvaranje slučaja" #. module: crm #: field:crm.lead,phone:0 @@ -2025,17 +2046,17 @@ msgstr "Kreiraj novog klijenta" #. module: crm #: field:crm.lead.report,deadline_day:0 msgid "Exp. Closing Day" -msgstr "" +msgstr "Očekivani dan zatvaranja" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor2 msgid "Software" -msgstr "Software" +msgstr "Softver" #. module: crm #: field:crm.case.section,change_responsible:0 msgid "Reassign Escalated" -msgstr "" +msgstr "Eskalirati ponovnu dodijelu" #. module: crm #: view:crm.lead.report:0 @@ -2086,7 +2107,7 @@ msgstr "Direktni marketing" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor1 msgid "Product" -msgstr "Proizvod" +msgstr "Artikl" #. module: crm #: field:crm.lead.report,creation_year:0 @@ -2096,7 +2117,7 @@ msgstr "Godina kreiranja" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Conversion Options" -msgstr "" +msgstr "Opcije konverzije" #. module: crm #: view:crm.case.section:0 @@ -2104,6 +2125,8 @@ msgid "" "Follow this salesteam to automatically track the events associated to users " "of this team." msgstr "" +"Prati ovaj prodajni tim kako bih automatski pratili događaje povezane sa " +"članovima tima." #. module: crm #: view:crm.lead:0 @@ -2116,6 +2139,8 @@ msgid "" "The email address associated with this team. New emails received will " "automatically create new leads assigned to the team." msgstr "" +"Ovaj e-mail adresa je pridružena ovom timu. Svi novoprimljeni e-mailovi će " +"automatski otvoriti nove potencijale za tim." #. module: crm #: view:crm.lead:0 @@ -2125,14 +2150,14 @@ msgstr "Nedodjeljene prilike" #. module: crm #: view:crm.lead:0 msgid "Search Leads" -msgstr "Traži potencijalne kontakte" +msgstr "Traži potencijale" #. module: crm #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,delay_open:0 msgid "Delay to open" -msgstr "Delay to open" +msgstr "Odgoda otvaranja" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_categ_phone_outgoing0 @@ -2151,6 +2176,8 @@ msgid "" "From which campaign (seminar, marketing campaign, mass mailing, ...) did " "this contact come from?" msgstr "" +"Iz koje kampanje (seminar, marketnig kampanja, masovna e-pošta) je došao " +"kontakt?" #. module: crm #: model:ir.model,name:crm.model_calendar_attendee @@ -2165,14 +2192,14 @@ msgstr "Test segmentacije" #. module: crm #: view:crm.segmentation:0 msgid "Continue Process" -msgstr "Nastavi Process" +msgstr "Nastavi proces" #. 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 "Prebaci u priliku" #. module: crm #: field:crm.opportunity2phonecall,user_id:0 @@ -2214,6 +2241,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 "" +"Ova faza nije vidljiva, na primjer u statusnoj liniji ili kanban pogledu, " +"kada nema zapisa u toj fazi za prikaz." #. module: crm #: field:crm.lead.report,nbr:0 @@ -2224,22 +2253,22 @@ msgstr "# Slučaja" #. module: crm #: help:crm.phonecall,section_id:0 msgid "Sales team to which Case belongs to." -msgstr "Sales team to which Case belongs to." +msgstr "Prodajni tim kojem slučaj pripada." #. module: crm #: model:crm.case.resource.type,name:crm.type_lead6 msgid "Banner Ads" -msgstr "" +msgstr "Baner oglas" #. module: crm #: field:crm.merge.opportunity,opportunity_ids:0 msgid "Leads/Opportunities" -msgstr "" +msgstr "Potencijali/prilike" #. module: crm #: field:crm.lead,fax:0 msgid "Fax" -msgstr "Fax" +msgstr "Faks" #. module: crm #: field:crm.lead,company_id:0 @@ -2249,7 +2278,7 @@ msgstr "Fax" #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,company_id:0 msgid "Company" -msgstr "Organizacija" +msgstr "Tvrtka" #. module: crm #: selection:crm.segmentation,state:0 @@ -2259,7 +2288,7 @@ msgstr "U tijeku" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_convert_to_opportunity msgid "Lead converted into an opportunity" -msgstr "" +msgstr "Potencijal pretvoren u priliku" #. module: crm #: view:crm.lead:0 @@ -2269,7 +2298,7 @@ msgstr "Nedodjeljeni potencijali" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_won msgid "Opportunity won" -msgstr "" +msgstr "Dobivena prilika" #. module: crm #: field:crm.case.categ,object_id:0 @@ -2296,7 +2325,7 @@ msgstr "Usluge postprodaje" #: field:crm.lead,message_ids:0 #: field:crm.phonecall,message_ids:0 msgid "Messages" -msgstr "Messages" +msgstr "Poruke" #. module: crm #: help:crm.lead,channel_id:0 @@ -2331,15 +2360,14 @@ msgid "" "several criteria and drill down the information, by adding more groups in " "the report." msgstr "" -"From this report, you can analyse the performance of your sales team, based " -"on their phone calls. You can group or filter the information according to " -"several criteria and drill down the information, by adding more groups in " -"the report." +"Iz ovog izvješća možete analizirati učinkovitost vašeg prodajnog tima na " +"temelju njihovih telefonskih poziva. Možete grupirati ili filtrirati podatke " +"prema nekoliko kriterija i drill down, dodavanjem više grupa u izvještaj." #. module: crm #: field:crm.case.stage,fold:0 msgid "Fold by Default" -msgstr "" +msgstr "Standardno preklopi" #. module: crm #: field:crm.case.stage,state:0 @@ -2365,12 +2393,12 @@ msgstr "Zakaži/Log Poziv" #. module: crm #: view:crm.merge.opportunity:0 msgid "Select Leads/Opportunities" -msgstr "" +msgstr "Odaberi potencijale/prilike" #. module: crm #: selection:crm.phonecall,state:0 msgid "Confirmed" -msgstr "Potvrđeno" +msgstr "Potvrđen" #. module: crm #: model:ir.model,name:crm.model_crm_partner_binding @@ -2395,12 +2423,12 @@ msgstr "Nepročitane poruke" #. module: crm #: field:crm.phonecall.report,section_id:0 msgid "Section" -msgstr "Grupa" +msgstr "Odjel" #. module: crm #: selection:crm.segmentation.line,operator:0 msgid "Optional Expression" -msgstr "Opcijski Izraz" +msgstr "Dodatni izraz" #. module: crm #: field:crm.case.section,message_follower_ids:0 @@ -2430,7 +2458,7 @@ msgstr "" #. module: crm #: field:sale.config.settings,fetchmail_lead:0 msgid "Create leads from incoming mails" -msgstr "" +msgstr "Izradi potencijale iz dolazne e-pošte" #. module: crm #: view:crm.lead:0 @@ -2446,7 +2474,7 @@ msgstr "E-mail" #: view:crm.lead.report:0 #: field:crm.lead.report,channel_id:0 msgid "Channel" -msgstr "Channel" +msgstr "Kanal" #. module: crm #: view:crm.opportunity2phonecall:0 @@ -2468,20 +2496,16 @@ msgid "" "If checked, remove the category from partners that doesn't match " "segmentation criterions" msgstr "" -"Check if the category is limited to partners that match the segmentation " -"criterions. \n" -"If checked, remove the category from partners that doesn't match " -"segmentation criterions" #. module: crm #: model:process.transition,note:crm.process_transition_leadopportunity0 msgid "Creating business opportunities from Leads" -msgstr "Kreiranje poslovnih prilika iz pot. kontakata" +msgstr "Kreiranje poslovnih prilika iz potencijala" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead3 msgid "Email Campaign - Products" -msgstr "Email kampanja - Proizvodi" +msgstr "Email kampanja - artikli" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_categ_phone_incoming0 @@ -2524,13 +2548,13 @@ msgstr "Moji pozivi" #. module: crm #: model:crm.case.stage,name:crm.stage_lead3 msgid "Qualification" -msgstr "Qualification" +msgstr "Kvalifikacija" #. module: crm #: field:crm.lead2opportunity.partner,name:0 #: field:crm.lead2opportunity.partner.mass,name:0 msgid "Conversion Action" -msgstr "" +msgstr "Akcija konverzije" #. module: crm #: model:ir.actions.act_window,help:crm.crm_lead_categ_action @@ -2558,12 +2582,12 @@ msgstr "Kolovoz" #: model:mail.message.subtype,name:crm.mt_lead_lost #: model:mail.message.subtype,name:crm.mt_salesteam_lead_lost msgid "Opportunity Lost" -msgstr "" +msgstr "Izgubljena prilika" #. module: crm #: field:crm.lead.report,deadline_month:0 msgid "Exp. Closing Month" -msgstr "" +msgstr "Očekivani mjesec zatvaranja" #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -2596,17 +2620,17 @@ msgstr "Prodaje Nabave" #. module: crm #: view:crm.lead:0 msgid "Schedule Meeting" -msgstr "Dogovori Sastanak" +msgstr "Dogovori sastanak" #. module: crm #: field:crm.lead.report,deadline_year:0 msgid "Ex. Closing Year" -msgstr "" +msgstr "Očekivana godina zatvaranja" #. module: crm #: model:ir.actions.client,name:crm.action_client_crm_menu msgid "Open Sale Menu" -msgstr "Otvori izbornik Prodaja" +msgstr "Otvori izbornik prodaje" #. module: crm #: field:crm.lead,date_open:0 @@ -2618,7 +2642,7 @@ msgstr "Otvoren" #: view:crm.case.section:0 #: field:crm.case.section,member_ids:0 msgid "Team Members" -msgstr "Team Members" +msgstr "Članovi tima" #. module: crm #: view:crm.opportunity2phonecall:0 @@ -2634,7 +2658,7 @@ msgstr "Planirani troškovi" #. module: crm #: help:crm.lead,date_deadline:0 msgid "Estimate of the date on which the opportunity will be won." -msgstr "" +msgstr "Procjena datuma kada će prilika biti dobivena." #. module: crm #: help:crm.lead,email_cc:0 @@ -2656,12 +2680,12 @@ msgstr "Zabilježeni pozivi" #: model:mail.message.subtype,name:crm.mt_lead_won #: model:mail.message.subtype,name:crm.mt_salesteam_lead_won msgid "Opportunity Won" -msgstr "" +msgstr "Dobivena prilika" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_section_act_tree msgid "Cases by Sales Team" -msgstr "Cases by Sales Team" +msgstr "Slučajevi po prodajnom timu" #. module: crm #: view:crm.lead:0 @@ -2702,7 +2726,7 @@ msgstr "Upravljanje helpdeskom i podrškom" #. module: crm #: field:crm.lead.report,delay_open:0 msgid "Delay to Open" -msgstr "Delay to Open" +msgstr "Odgoda do otvaranja" #. module: crm #: field:crm.lead.report,user_id:0 @@ -2738,7 +2762,7 @@ msgstr "Ugovor" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead4 msgid "Twitter Ads" -msgstr "Twitter Ads" +msgstr "Twitter oglasi" #. module: crm #: field:crm.lead.report,creation_day:0 @@ -2748,7 +2772,7 @@ msgstr "Dan kreiranja" #. module: crm #: view:crm.lead.report:0 msgid "Planned Revenues" -msgstr "Planned Revenues" +msgstr "Planirani prihodi" #. module: crm #: view:crm.lead:0 @@ -2785,6 +2809,8 @@ msgstr "Zabilježi poziv" #: help:sale.config.settings,group_fund_raising:0 msgid "Allows you to trace and manage your activities for fund raising." msgstr "" +"Omogućava vam upravljanje i praćenje vaših aktivnosti za prikupljanje " +"sredstava." #. module: crm #: field:crm.meeting,phonecall_id:0 @@ -2879,7 +2905,7 @@ msgstr "Interne bilješke" #. module: crm #: view:crm.lead:0 msgid "New Opportunities" -msgstr "" +msgstr "Nove prilike" #. module: crm #: field:crm.segmentation.line,operator:0 @@ -2894,20 +2920,20 @@ msgstr "Ulica" #. module: crm #: field:crm.lead,referred:0 msgid "Referred By" -msgstr "Referred By" +msgstr "Upućen od strane" #. module: crm #: view:crm.phonecall:0 msgid "Reset to Todo" -msgstr "" +msgstr "Vrati na status uraditi" #. module: crm #: field:crm.case.section,working_hours:0 msgid "Working Hours" -msgstr "Radno vrijeme(od-do)" +msgstr "Radno vrijeme" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 @@ -2926,19 +2952,19 @@ msgstr "Veljača" #. module: crm #: view:crm.phonecall:0 msgid "Schedule a Meeting" -msgstr "Dogovori Sastanak" +msgstr "Dogovori sastanak" #. module: crm #: model:crm.case.stage,name:crm.stage_lead8 #: view:crm.lead:0 msgid "Lost" -msgstr "Lost" +msgstr "Izgubljen" #. 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 "Zatvoreni/otkazani potencijali ne mogu se pretvoriti u prilike." #. module: crm #: view:crm.lead:0 @@ -2976,7 +3002,7 @@ msgstr "Naziv kampanje" #. module: crm #: view:crm.segmentation:0 msgid "Profiling" -msgstr "Profiling" +msgstr "Profiliranje" #. module: crm #: model:ir.model,name:crm.model_crm_phonecall_report @@ -2986,7 +3012,7 @@ msgstr "Tel. pozivi po korisniku i odabiru" #. module: crm #: model:crm.case.stage,name:crm.stage_lead5 msgid "Negotiation" -msgstr "Negotiation" +msgstr "Pregovaranje" #. module: crm #: model:ir.model,name:crm.model_crm_phonecall2phonecall @@ -3029,7 +3055,7 @@ msgstr "Bilten" #. module: crm #: model:mail.message.subtype,name:crm.mt_salesteam_lead_stage msgid "Opportunity Stage Changed" -msgstr "" +msgstr "Faza prilike je promijenjena" #. module: crm #: model:ir.actions.act_window,help:crm.crm_lead_stage_act diff --git a/addons/crm/i18n/hu.po b/addons/crm/i18n/hu.po index 791273361eb..04f4a285a42 100644 --- a/addons/crm/i18n/hu.po +++ b/addons/crm/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-07-26 05:14+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:00+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: model:crm.case.stage,name:crm.stage_lead3 diff --git a/addons/crm/i18n/id.po b/addons/crm/i18n/id.po index 703fcb20375..60ba4c04b3d 100644 --- a/addons/crm/i18n/id.po +++ b/addons/crm/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-16 05:08+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:00+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -29,7 +29,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -183,8 +183,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -293,7 +293,7 @@ msgid "Prospect Partner" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "" @@ -437,7 +437,7 @@ msgid "#Opportunities" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -704,7 +704,7 @@ msgid "Statistics Dashboard" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -764,7 +764,7 @@ msgid "Exclusive" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -932,7 +932,7 @@ msgid "Next Action" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1022,7 +1022,7 @@ msgid "Creation Date" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1209,7 +1209,9 @@ msgid "Days to Close" msgstr "" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "" @@ -1292,7 +1294,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1852,7 +1854,7 @@ msgid "Leads" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1946,7 +1948,6 @@ 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 @@ -2874,7 +2875,7 @@ msgid "Working Hours" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/it.po b/addons/crm/i18n/it.po index 8157b76552b..b85973c69a1 100644 --- a/addons/crm/i18n/it.po +++ b/addons/crm/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-15 08:58+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \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-16 05:08+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:00+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -31,7 +31,7 @@ msgstr "" "email ricevute." #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -187,8 +187,8 @@ msgstr "" "direttamente in html così da poter essere inserito nelle viste kanban." #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -299,7 +299,7 @@ msgid "Prospect Partner" msgstr "Prospect Partner" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Nessun Oggetto" @@ -472,7 +472,7 @@ msgid "#Opportunities" msgstr "# Opportunità" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -769,7 +769,7 @@ msgid "Statistics Dashboard" msgstr "Dashboard statistiche" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -830,7 +830,7 @@ msgid "Exclusive" msgstr "Esclusivo" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "Da %s : %s" @@ -1002,10 +1002,10 @@ msgid "Next Action" msgstr "Prossima Azione" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." -msgstr "" +msgstr "Partner Impostatti a %s." #. module: crm #: selection:crm.lead.report,state:0 @@ -1094,7 +1094,7 @@ msgid "Creation Date" msgstr "Data di Creazione" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "Lead convertito in Opportunità" @@ -1295,7 +1295,9 @@ msgid "Days to Close" msgstr "Giorni per la chiusura" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "sconosciuto" @@ -1385,7 +1387,7 @@ msgid "Lead Description" msgstr "Descrizione Lead" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Unisci opportunità" @@ -1958,7 +1960,7 @@ msgid "Leads" msgstr "Lead" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "Unisci lead" @@ -2054,7 +2056,6 @@ msgid "Global CC" msgstr "CC globale" #. 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 @@ -3053,7 +3054,7 @@ msgid "Working Hours" msgstr "Ore lavorative" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/ja.po b/addons/crm/i18n/ja.po index 07fcd07cdb4..14346dbe7e1 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-16 05:08+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:00+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -30,7 +30,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -184,8 +184,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -294,7 +294,7 @@ msgid "Prospect Partner" msgstr "予想パートナ" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "無題" @@ -438,7 +438,7 @@ msgid "#Opportunities" msgstr "商談の数" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -705,7 +705,7 @@ msgid "Statistics Dashboard" msgstr "統計ダッシュボード" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -765,7 +765,7 @@ msgid "Exclusive" msgstr "排他" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "%s から:%s" @@ -933,7 +933,7 @@ msgid "Next Action" msgstr "次のアクション" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1023,7 +1023,7 @@ msgid "Creation Date" msgstr "作成日" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1210,7 +1210,9 @@ msgid "Days to Close" msgstr "終了日" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "不明" @@ -1293,7 +1295,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "統合された商談" @@ -1855,7 +1857,7 @@ msgid "Leads" msgstr "リード" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1949,7 +1951,6 @@ msgid "Global CC" msgstr "グローバルCC" #. 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 @@ -2881,7 +2882,7 @@ msgid "Working Hours" msgstr "労働時間" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/ko.po b/addons/crm/i18n/ko.po index 4fdc9f39220..48621648539 100644 --- a/addons/crm/i18n/ko.po +++ b/addons/crm/i18n/ko.po @@ -14,23 +14,23 @@ msgstr "" "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 05:08+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:00+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 msgid "# Leads" -msgstr "" +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 "" +msgstr "수신메일서버를 설정하고 수신 이메일로부터 리드를 생성할 수 있게 함." #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -38,13 +38,13 @@ msgstr "" #: selection:crm.lead.report,type:0 #, python-format msgid "Lead" -msgstr "" +msgstr "리드" #. module: crm #: 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,52 +101,52 @@ 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 msgid "CRM Lead Analysis" -msgstr "" +msgstr "CRM 리드 분석" #. module: crm #: view:crm.lead.report:0 #: 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 #: 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 "체크할 경우, 새로운 메시지를 주목할 필요가 있습니다." #. module: crm #: help:crm.lead.report,creation_day:0 msgid "Creation day" -msgstr "" +msgstr "생성일" #. module: crm #: field:crm.segmentation.line,name:0 @@ -152,7 +157,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 @@ -162,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 "캠페인" #. 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 @@ -181,15 +186,15 @@ 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 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" -msgstr "" +msgstr "경고!" #. module: crm #: view:crm.lead:0 @@ -204,41 +209,41 @@ 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 #: field:crm.lead,state_id:0 msgid "State" -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 @@ -253,14 +258,14 @@ msgstr "재외된 답변들:" #. module: crm #: model:ir.model,name:crm.model_crm_merge_opportunity msgid "Merge opportunities" -msgstr "" +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 "" +msgstr "리드 분석" #. module: crm #: code:addons/crm/crm_lead.py:1010 @@ -272,7 +277,7 @@ 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 @@ -286,23 +291,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 +#: code:addons/crm/crm_lead.py:1002 #, 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 @@ -324,40 +329,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 @@ -376,12 +390,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 @@ -389,7 +414,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 @@ -403,24 +428,24 @@ 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 msgid "Team Leader" -msgstr "" +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 "" +msgstr "이 백분율은 이 단계의 사례가 성공하는 기본/평균 확률을 묘사합니다" #. module: crm #: view:crm.lead:0 @@ -435,14 +460,14 @@ msgstr "카테고리" #. module: crm #: view:crm.lead.report:0 msgid "#Opportunities" -msgstr "" +msgstr "기회#" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." -msgstr "" +msgstr "목록 화면에서 하나 이상의 요소(리드 또는 기회)를 선택하십시오." #. module: crm #: view:crm.lead:0 @@ -452,7 +477,7 @@ 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 @@ -466,11 +491,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 @@ -484,56 +517,56 @@ msgstr "상태" #. module: crm #: view:crm.lead2opportunity.partner:0 msgid "Create Opportunity" -msgstr "" +msgstr "기회 생성" #. module: crm #: view:sale.config.settings:0 msgid "Configure" -msgstr "" +msgstr "구성" #. module: crm #: view:crm.lead:0 msgid "Escalate" -msgstr "" +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 #: 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 @@ -549,18 +582,20 @@ 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 #: 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 #: model:email.template,subject:crm.email_template_opportunity_mail @@ -570,12 +605,12 @@ 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 @@ -583,6 +618,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 #: view:crm.segmentation:0 @@ -592,24 +629,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 @@ -623,24 +660,31 @@ 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 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 @@ -651,12 +695,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 @@ -667,22 +711,22 @@ msgstr "파트너 세그먼테이션" #. module: crm #: field:crm.lead,company_currency:0 msgid "Currency" -msgstr "" +msgstr "통화" #. module: crm #: field:crm.lead.report,probable_revenue:0 msgid "Probable Revenue" -msgstr "" +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 #: field:crm.case.stage,probability:0 @@ -692,20 +736,20 @@ 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 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 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -716,22 +760,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 @@ -741,23 +785,23 @@ 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 msgid "" "Leads/Opportunities that are assigned to one of the sale teams I manage" -msgstr "" +msgstr "내가 관리하는 영업팀에게 할당된 리드/기회" #. module: crm #: field:calendar.attendee,categ_id:0 msgid "Event Type" -msgstr "" +msgstr "행사 유형" #. module: crm #: field:crm.segmentation,exclusif:0 @@ -765,15 +809,15 @@ msgid "Exclusive" msgstr "배타적" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" -msgstr "" +msgstr "%s이(가) 보냄 : %s" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Convert to Opportunities" -msgstr "" +msgstr "기회로 전환" #. module: crm #: view:crm.lead2opportunity.partner:0 @@ -782,41 +826,41 @@ 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 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 #: 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 @@ -829,59 +873,59 @@ 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 "Mark Won" -msgstr "" +msgstr "수주 성공으로 표시" #. module: crm #: model:ir.filters,name:crm.filter_usa_lead msgid "Leads from USA" -msgstr "" +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 @@ -892,13 +936,13 @@ msgstr "경고 !" #. module: crm #: field:crm.lead,day_open:0 msgid "Days to Open" -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 @@ -915,7 +959,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 @@ -923,20 +967,20 @@ msgstr "" #: view:res.partner:0 #: field:res.partner,meeting_ids:0 msgid "Meetings" -msgstr "" +msgstr "미팅" #. 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 "다음 조치" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." -msgstr "" +msgstr "%s(으)로 설정된 협력업체 ." #. module: crm #: selection:crm.lead.report,state:0 @@ -948,17 +992,17 @@ 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 @@ -968,7 +1012,7 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Show Sales Team" -msgstr "" +msgstr "영업팀 보기" #. module: crm #: help:sale.config.settings,module_crm_claim:0 @@ -976,22 +1020,24 @@ 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 #: 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 @@ -999,12 +1045,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 @@ -1012,7 +1058,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 @@ -1020,23 +1066,23 @@ 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 +#: code:addons/crm/crm_lead.py:715 #, 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.case.stage:0 @@ -1045,22 +1091,22 @@ 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.phonecall.report:0 msgid "Phone calls which are in pending state" -msgstr "" +msgstr "보류 상태의 통화" #. module: crm #: view:crm.case.section:0 @@ -1070,7 +1116,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 @@ -1078,28 +1124,30 @@ 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 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 #: 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 @@ -1116,76 +1164,87 @@ msgid "" "

\n" " " msgstr "" +"

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

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

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

\n" +" " #. 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 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 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 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 #: model:mail.message.subtype,name:crm.mt_salesteam_lead msgid "Lead Created" -msgstr "" +msgstr "리드가 생성됨" #. module: crm #: help:crm.segmentation,sales_purchase_active:0 @@ -1193,8 +1252,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 @@ -1204,24 +1263,26 @@ 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 +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format 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 @@ -1234,23 +1295,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 @@ -1260,34 +1321,36 @@ 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 msgid "Sales Marketing Department" -msgstr "" +msgstr "영업홍보부" #. module: crm #: view:crm.phonecall.report:0 msgid "Date of call" -msgstr "" +msgstr "통화일" #. module: crm #: 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 msgid "Segmentation Description" -msgstr "세그먼테이션 설명" +msgstr "분할 설명" #. module: crm #: view:crm.lead:0 @@ -1295,40 +1358,40 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, 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 @@ -1353,61 +1416,61 @@ 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 #: 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 #: 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 #: model:ir.model,name:crm.model_res_users @@ -1417,34 +1480,34 @@ 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 @@ -1454,7 +1517,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 @@ -1466,36 +1529,36 @@ msgstr "이름" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities that are assigned to me" -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 #: 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.lead:0 #: view:crm.phonecall:0 msgid "Creation" -msgstr "" +msgstr "생성일" #. module: crm #: selection:crm.lead,priority:0 @@ -1508,22 +1571,22 @@ 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 msgid "Leads/Opportunities which are in done state" -msgstr "" +msgstr "종료 상태의 리드/기회" #. module: crm #: field:crm.lead.report,delay_close:0 msgid "Delay to Close" -msgstr "" +msgstr "마감까지의 지연" #. module: crm #: view:crm.lead:0 @@ -1531,29 +1594,29 @@ msgstr "" #: view:crm.phonecall:0 #: view:crm.phonecall.report:0 msgid "Group By..." -msgstr "" +msgstr "분류 기준..." #. 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 @@ -1562,32 +1625,34 @@ 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 #: 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 @@ -1596,11 +1661,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 @@ -1608,18 +1675,18 @@ 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 #: field:crm.segmentation.line,expr_value:0 @@ -1629,27 +1696,27 @@ 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 @@ -1657,7 +1724,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 @@ -1665,32 +1732,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 @@ -1706,51 +1773,51 @@ 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 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 msgid "Mass Lead To Opportunity Partner" -msgstr "" +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 #: view:crm.lead:0 @@ -1760,91 +1827,91 @@ 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 msgid "Lead / Customer" -msgstr "" +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 @@ -1852,54 +1919,54 @@ 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 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" -msgstr "" +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 @@ -1922,12 +1989,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 @@ -1936,37 +2003,36 @@ msgstr "" #: selection:crm.lead.report,state:0 #: selection:crm.phonecall.report,state:0 msgid "Pending" -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 #: 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 #: 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 @@ -1975,7 +2041,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 @@ -1983,12 +2049,12 @@ 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 #: view:crm.lead:0 @@ -2000,34 +2066,34 @@ msgstr "" #: 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 @@ -2040,62 +2106,62 @@ 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 #: 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 @@ -2105,20 +2171,20 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Search Leads" -msgstr "" +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 "" +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 @@ -2130,12 +2196,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 @@ -2145,32 +2211,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 @@ -2187,39 +2253,49 @@ 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 msgid "Leads/Opportunities" -msgstr "" +msgstr "리드/기회" #. module: crm #: field:crm.lead,fax:0 msgid "Fax" -msgstr "" +msgstr "팩스" #. module: crm #: field:crm.lead,company_id:0 @@ -2229,17 +2305,17 @@ 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 msgid "Lead converted into an opportunity" -msgstr "" +msgstr "기회로 전환된 리드" #. module: crm #: view:crm.lead:0 @@ -2249,45 +2325,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 @@ -2296,12 +2372,12 @@ msgstr "" #: selection:crm.phonecall,state:0 #: selection:crm.phonecall.report,state:0 msgid "Cancelled" -msgstr "" +msgstr "취소됨" #. module: crm #: field:crm.lead,color:0 msgid "Color Index" -msgstr "" +msgstr "컬러 색인" #. module: crm #: model:ir.actions.act_window,help:crm.action_report_crm_phonecall @@ -2311,79 +2387,81 @@ 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.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 @@ -2402,11 +2480,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 @@ -2422,19 +2512,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 @@ -2444,16 +2534,18 @@ 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 msgid "Creating business opportunities from Leads" -msgstr "" +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 @@ -2472,37 +2564,48 @@ 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 #: 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 @@ -2518,47 +2621,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 @@ -2568,35 +2680,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 @@ -2606,7 +2718,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 @@ -2615,23 +2727,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 @@ -2639,17 +2753,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 @@ -2662,63 +2776,63 @@ 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 #: view:crm.lead:0 @@ -2728,44 +2842,44 @@ msgstr "" #. module: crm #: help:crm.lead.report,deadline_year:0 msgid "Expected closing year" -msgstr "" +msgstr "예상 마감년도" #. module: crm #: model:ir.model,name:crm.model_crm_case_stage msgid "Stage of case" -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 @@ -2784,12 +2898,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 @@ -2815,14 +2929,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 @@ -2840,16 +2954,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 @@ -2859,56 +2984,56 @@ 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 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead: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 "" +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 @@ -2916,7 +3041,7 @@ msgstr "" #: view:crm.lead.report:0 #: field:crm.lead.report,country_id:0 msgid "Country" -msgstr "" +msgstr "국가" #. module: crm #: view:crm.lead:0 @@ -2924,49 +3049,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 @@ -2976,30 +3101,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 @@ -3013,6 +3138,13 @@ msgid "" "

\n" " " msgstr "" +"

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

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

\n" +" " #~ msgid "Delay After Trigger Date:" #~ msgstr "트리거 날짜 이후 지연:" diff --git a/addons/crm/i18n/lo.po b/addons/crm/i18n/lo.po index b33c5cabcce..52b69316f28 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-16 05:08+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:00+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -30,7 +30,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -184,8 +184,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -294,7 +294,7 @@ msgid "Prospect Partner" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "" @@ -438,7 +438,7 @@ msgid "#Opportunities" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -705,7 +705,7 @@ msgid "Statistics Dashboard" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -765,7 +765,7 @@ msgid "Exclusive" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -933,7 +933,7 @@ msgid "Next Action" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1023,7 +1023,7 @@ msgid "Creation Date" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1210,7 +1210,9 @@ msgid "Days to Close" msgstr "" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "" @@ -1293,7 +1295,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1853,7 +1855,7 @@ msgid "Leads" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1947,7 +1949,6 @@ 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 @@ -2875,7 +2876,7 @@ msgid "Working Hours" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/lt.po b/addons/crm/i18n/lt.po index 594a7b564b8..404a93e4ff0 100644 --- a/addons/crm/i18n/lt.po +++ b/addons/crm/i18n/lt.po @@ -13,14 +13,14 @@ msgstr "" "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 05:08+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:00+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: lt\n" #. module: crm #: view:crm.lead.report:0 msgid "# Leads" -msgstr "" +msgstr "# Iniciatyvos" #. module: crm #: help:sale.config.settings,fetchmail_lead:0 @@ -30,7 +30,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -70,7 +70,7 @@ msgstr "" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Select Opportunities" -msgstr "Pažymėti galimybės" +msgstr "Pasirinkite pardavimų galimybes" #. module: crm #: model:res.groups,name:crm.group_fund_raising @@ -96,7 +96,7 @@ msgstr "Etapo pavadinimas" #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 msgid "Salesperson" -msgstr "" +msgstr "Pardavėjas" #. module: crm #: model:ir.model,name:crm.model_crm_lead_report @@ -108,23 +108,23 @@ msgstr "CRM iniciatyvų analizė" #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,day:0 msgid "Day" -msgstr "Diena" +msgstr "Data" #. module: crm #: view:crm.lead:0 msgid "Company Name" -msgstr "" +msgstr "Įmonės pavadinimas" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor6 msgid "Training" -msgstr "" +msgstr "Apmokymai" #. 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 "Pardavimų kategorijos" #. module: crm #: view:crm.lead.report:0 @@ -136,7 +136,7 @@ msgstr "Išlaidos laikotarpio pabaigai" #: help:crm.lead,message_unread:0 #: help:crm.phonecall,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Jeigu pažymėta, naujos žinutės reikalaus jūsų dėmesio." #. module: crm #: help:crm.lead.report,creation_day:0 @@ -152,7 +152,7 @@ msgstr "Taisyklės pavadinimas" #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "It's only possible to convert one phonecall at a time." -msgstr "" +msgstr "Konvertuoti įmanoma tik vieną telefono skambutį vienu metu." #. module: crm #: view:crm.case.resource.type:0 @@ -182,14 +182,16 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Saugo pokalbių suvestinę (žinučių skaičius, ...). Ši apžvalga saugoma html " +"formatu, kad būtų galima įterpti į kanban rodinius." #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" -msgstr "Įspėjimas" +msgstr "Įspėjimas!" #. module: crm #: view:crm.lead:0 @@ -228,17 +230,17 @@ msgstr "Draudžia siųsti" #: view:crm.lead:0 #: field:crm.lead,state_id:0 msgid "State" -msgstr "Būsena" +msgstr "Savivaldybė" #. module: crm #: field:res.partner,meeting_count:0 msgid "# Meetings" -msgstr "" +msgstr "# Susitikimai" #. module: crm #: model:ir.actions.server,name:crm.action_email_reminder_lead msgid "Reminder to User" -msgstr "" +msgstr "Priminimas vartotojui" #. module: crm #: field:crm.segmentation,segmentation_line:0 @@ -293,10 +295,10 @@ msgstr "" #. module: crm #: model:process.transition,name:crm.process_transition_leadpartner0 msgid "Prospect Partner" -msgstr "Galimas partneris" +msgstr "Galimas kontaktas" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Nėra temos" @@ -312,8 +314,8 @@ msgid "" "The partner category that will be added to partners that match the " "segmentation criterions after computation." msgstr "" -"Partnerio kategorija, kuri bus pridėta partneriams, kurie atitinka " -"segmentavimo kriterijus po segmentavimo." +"Kategorija, kuri bus priskirta kontaktams, atitinkantiems segmentavimo " +"kriterijus." #. module: crm #: model:ir.actions.act_window,help:crm.crm_segmentation_tree-act @@ -328,6 +330,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte naują pirkėjų segmentą.\n" +"

\n" +" Sukurtas kategorijas galėsite priskirti savo\n" +" kontaktams, o tai palengvins bendravimą su jais.\n" +" Segmentavimo įrankis gali automatiškai priskirti kontaktams\n" +" kategoriją pagal nustatytus kriterijus.\n" +"

\n" +" " #. module: crm #: field:crm.opportunity2phonecall,contact_name:0 @@ -341,6 +352,8 @@ msgstr "Kontaktas" msgid "" "When escalating to this team override the salesman with the team leader." msgstr "" +"Kuomet pardavimo galimybė yra plėtojama šiai komandai, komandos vadovas bus " +"nustatytas kaip atsakingas asmuo." #. module: crm #: model:process.transition,name:crm.process_transition_opportunitymeeting0 @@ -385,7 +398,7 @@ msgstr "" #: model:crm.case.stage,name:crm.stage_lead7 #: view:crm.lead:0 msgid "Dead" -msgstr "" +msgstr "Nepavykęs" #. module: crm #: field:crm.case.section,message_unread:0 @@ -393,7 +406,7 @@ msgstr "" #: field:crm.lead,message_unread:0 #: field:crm.phonecall,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Neperžiūrėtos žinutės" #. module: crm #: view:crm.segmentation:0 @@ -407,7 +420,7 @@ msgstr "Segmentacija" #: selection:crm.lead2opportunity.partner.mass,action:0 #: selection:crm.partner.binding,action:0 msgid "Link to an existing customer" -msgstr "" +msgstr "Susieti su esamu pirkėju" #. module: crm #: field:crm.lead,write_date:0 @@ -417,7 +430,7 @@ msgstr "Atnaujinimo data" #. module: crm #: field:crm.case.section,user_id:0 msgid "Team Leader" -msgstr "Komandos lyderis" +msgstr "Komandos vadovas" #. module: crm #: help:crm.case.stage,probability:0 @@ -425,6 +438,8 @@ msgid "" "This percentage depicts the default/average probability of the Case for this " "stage to be a success" msgstr "" +"Numatytoji/vidutinė tikimybė, kad šiame etape esanti pardavimo galimybė bus " +"laimėta." #. module: crm #: view:crm.lead:0 @@ -442,7 +457,7 @@ msgid "#Opportunities" msgstr "Pardavimų galimybės" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -470,6 +485,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte pardavimų komandą.\n" +"

\n" +" Naudokite pardavimų komandas organizuotumėte pardavėjus ar\n" +" padalinius į skirtingas komandas. Kiekviena komanda dirbs " +"su\n" +" savo pardavimų galimybių sąrašu.\n" +"

\n" +" " #. module: crm #: model:process.transition,note:crm.process_transition_opportunitymeeting0 @@ -508,7 +532,7 @@ msgstr "El. laiškai" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_stage msgid "Stage changed" -msgstr "" +msgstr "Pakeistas etapas" #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -564,7 +588,7 @@ msgstr "Santrauka" #. module: crm #: view:crm.merge.opportunity:0 msgid "Merge" -msgstr "" +msgstr "Sulieti" #. module: crm #: model:email.template,subject:crm.email_template_opportunity_mail @@ -596,7 +620,7 @@ msgstr "Profiliavimo parinktys" #. module: crm #: view:crm.phonecall.report:0 msgid "#Phone calls" -msgstr "Telefonų skambučiai" +msgstr "#Telefono skambučiai" #. module: crm #: sql_constraint:crm.case.section:0 @@ -606,14 +630,14 @@ msgstr "Pardavimų komandos kodas turi būti unikalus!" #. module: crm #: help:crm.lead,email_from:0 msgid "Email address of the contact" -msgstr "" +msgstr "Kontakto el. pašto adresas" #. module: crm #: selection:crm.case.stage,state:0 #: view:crm.lead:0 #: selection:crm.lead,state:0 msgid "In Progress" -msgstr "Vykdomas" +msgstr "Vykdoma" #. module: crm #: model:ir.actions.act_window,help:crm.crm_phonecall_categ_action @@ -627,6 +651,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte naują kategoriją.\n" +"

\n" +" Sukurkite specialias telefono skambučių kategorijas, kurios " +"padės\n" +" lengviau valdyti į sistemą įvedamus skambučius.\n" +"

\n" +" " #. module: crm #: help:crm.case.section,reply_to:0 @@ -673,7 +705,7 @@ msgstr "Partnerio segmentavimas" #. module: crm #: field:crm.lead,company_currency:0 msgid "Currency" -msgstr "" +msgstr "Valiuta" #. module: crm #: field:crm.lead.report,probable_revenue:0 @@ -688,7 +720,7 @@ msgstr "Sukūrimo mėnuo" #. module: crm #: help:crm.segmentation,name:0 msgid "The name of the segmentation." -msgstr "Segmentacijos pavadinimas." +msgstr "Segmento pavadinimas" #. module: crm #: field:crm.case.stage,probability:0 @@ -711,7 +743,7 @@ msgid "Statistics Dashboard" msgstr "Veiklos monintoringo statistika" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -732,12 +764,12 @@ msgstr "Televizija" #. module: crm #: model:ir.actions.act_window,name:crm.action_crm_send_mass_convert msgid "Convert to opportunities" -msgstr "" +msgstr "Konvertuoti į pardavimų galimybes" #. 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 @@ -747,7 +779,7 @@ msgstr "Stabdyti procesą" #. module: crm #: field:crm.case.section,alias_id:0 msgid "Alias" -msgstr "" +msgstr "Alternatyvus vardas" #. module: crm #: view:crm.phonecall:0 @@ -758,7 +790,7 @@ msgstr "Telefono skambučių paieška" #: view:crm.lead.report:0 msgid "" "Leads/Opportunities that are assigned to one of the sale teams I manage" -msgstr "" +msgstr "Iniciatyvos/Galimybės priskirtos vienai iš mano vadovaujamų komandų" #. module: crm #: field:calendar.attendee,categ_id:0 @@ -771,7 +803,7 @@ msgid "Exclusive" msgstr "Išskirtinis" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "Nuo %s : %s" @@ -779,7 +811,7 @@ msgstr "Nuo %s : %s" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Convert to Opportunities" -msgstr "" +msgstr "Konvertuoti į pardavimų galimybes" #. module: crm #: view:crm.lead2opportunity.partner:0 @@ -788,18 +820,18 @@ msgstr "" #: view:crm.opportunity2phonecall:0 #: view:crm.phonecall2phonecall:0 msgid "or" -msgstr "" +msgstr "arba" #. module: crm #: field:crm.lead.report,create_date:0 #: field:crm.phonecall.report,create_date:0 msgid "Create Date" -msgstr "Sukurimo data" +msgstr "Sukūrimo data" #. module: crm #: field:crm.lead,ref2:0 msgid "Reference 2" -msgstr "Nuoroda 2" +msgstr "Susiejimas 2" #. module: crm #: help:crm.case.stage,section_ids:0 @@ -817,7 +849,7 @@ msgstr "Reikalavimai" #. module: crm #: field:crm.lead,zip:0 msgid "Zip" -msgstr "Pašto indeksas" +msgstr "Pašto kodas" #. module: crm #: view:crm.phonecall:0 @@ -840,12 +872,12 @@ msgstr "Pardavimo galimybės" #. module: crm #: field:crm.segmentation,categ_id:0 msgid "Partner Category" -msgstr "Partnerio kategorija" +msgstr "Kontakto kategorija" #. module: crm #: field:crm.lead,probability:0 msgid "Success Rate (%)" -msgstr "Sėkmės rodiklis (%)" +msgstr "Pasisekimo tikimybė (%)" #. module: crm #: field:crm.segmentation,sales_purchase_active:0 @@ -860,7 +892,7 @@ msgstr "Išeinantys" #. module: crm #: view:crm.lead:0 msgid "Mark Won" -msgstr "Pažymėti laimėta" +msgstr "Pažymėti kaip laimėtą" #. module: crm #: model:ir.filters,name:crm.filter_usa_lead @@ -870,7 +902,7 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Mark Lost" -msgstr "Pažymėti prarasta" +msgstr "Pažymėti kaip prarastą" #. module: crm #: model:ir.filters,name:crm.filter_draft_lead @@ -887,7 +919,7 @@ msgstr "Kovas" #. module: crm #: view:crm.lead:0 msgid "Send Email" -msgstr "" +msgstr "Siųsti el. laišką" #. module: crm #: code:addons/crm/wizard/crm_lead_to_opportunity.py:89 @@ -909,7 +941,7 @@ msgstr "Mobilus tel." #. module: crm #: field:crm.lead,ref:0 msgid "Reference" -msgstr "Nuoroda" +msgstr "Susiejimas" #. module: crm #: view:crm.lead:0 @@ -939,7 +971,7 @@ msgid "Next Action" msgstr "Kitas veiksmas" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -964,7 +996,7 @@ msgstr "Rodyti tik galimybes" #. module: crm #: field:crm.lead,name:0 msgid "Subject" -msgstr "Tema" +msgstr "Aprašymas" #. module: crm #: view:crm.lead:0 @@ -1010,7 +1042,7 @@ msgstr "Tipas" #. module: crm #: view:crm.segmentation:0 msgid "Compute Segmentation" -msgstr "Apskaičiuoti segmentaciją" +msgstr "Segmentuoti" #. module: crm #: selection:crm.lead,priority:0 @@ -1029,7 +1061,7 @@ msgid "Creation Date" msgstr "Sukūrimo data" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1056,7 +1088,7 @@ msgstr "Etapas" #. module: crm #: view:crm.phonecall.report:0 msgid "Phone Calls that are assigned to me" -msgstr "" +msgstr "Skambučiai priskirti man" #. module: crm #: field:crm.lead,user_login:0 @@ -1066,7 +1098,7 @@ msgstr "Naudotojo registracijos vardas" #. module: crm #: view:crm.phonecall.report:0 msgid "Phone calls which are in pending state" -msgstr "Skambučiai esantys laukiamoje būsenoje" +msgstr "Skambučiai, kurie dar nėra atlikti" #. module: crm #: view:crm.case.section:0 @@ -1088,7 +1120,7 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Delete" -msgstr "" +msgstr "Ištrinti" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_create @@ -1122,11 +1154,23 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte pardavimo galimybę.\n" +"

\n" +" OpenERP padeda valdyti pardavimų procesą stebint potencialius\n" +" pardavimus bei leidžia geriau nuspėti ateities pajamas.\n" +"

\n" +" Jūs galite suplanuoti susitikimus ar telefono skambučius\n" +" tiesiai iš pardavimų galimybių, konvertuoti jas į komercinius\n" +" pasiūlymus, prisegti susijusius dokumentus, sekti bendravimą, ir " +"kt.\n" +"

\n" +" " #. module: crm #: field:crm.segmentation,partner_id:0 msgid "Max Partner ID processed" -msgstr "Maksimalus galimas partnerio ID" +msgstr "Maksimalus galimas kontakto ID" #. module: crm #: help:crm.case.stage,on_change:0 @@ -1134,6 +1178,8 @@ msgid "" "Setting this stage will change the probability automatically on the " "opportunity." msgstr "" +"Pažymėjus, tikimybė bus automatiškai nustatoma ant šiame etape esančių " +"pardavimo galimybių." #. module: crm #: view:crm.lead:0 @@ -1143,7 +1189,7 @@ msgstr "" #. module: crm #: model:ir.ui.menu,name:crm.menu_crm_payment_mode_act msgid "Payment Modes" -msgstr "" +msgstr "Mokėjimo būdai" #. module: crm #: field:crm.lead.report,opening_date:0 @@ -1181,6 +1227,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 "" +"Pažymėjus, šis etapas bus naudojamas visų, naujai sukurtų, pardavimo " +"komandų. Tai neįtakos esamų pardavimo komandų." #. module: crm #: help:crm.case.stage,type:0 @@ -1188,12 +1236,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 "" +"Šis laukas naudojamas išskirti ar etapas susijęs su iniciatyva, ar su " +"pardavimo galimybė, ar su abiem tipais." #. 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 "Sukurta iniciatyva" #. module: crm #: help:crm.segmentation,sales_purchase_active:0 @@ -1217,10 +1267,12 @@ msgstr "Registruoti skambutį" #. module: crm #: field:crm.lead,day_close:0 msgid "Days to Close" -msgstr "Dienų skaičius kol užvėrė" +msgstr "Dienų skaičius iki užvėrimo" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "nežinomas" @@ -1229,7 +1281,7 @@ msgstr "nežinomas" #: field:crm.lead,message_is_follower:0 #: field:crm.phonecall,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Ar prenumeratorius" #. module: crm #: field:crm.opportunity2phonecall,date:0 @@ -1242,18 +1294,18 @@ msgstr "Data" #. module: crm #: model:crm.case.section,name:crm.crm_case_section_4 msgid "Online Support" -msgstr "" +msgstr "Online palaikymas" #. module: crm #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 msgid "Extended Filters..." -msgstr "Išplėsti filtrai..." +msgstr "Išplėstiniai filtrai..." #. module: crm #: view:crm.phonecall.report:0 msgid "Phone calls which are in closed state" -msgstr "" +msgstr "Atlikti skambučiai" #. module: crm #: view:crm.phonecall.report:0 @@ -1268,11 +1320,15 @@ msgid "" "set to 'Done'. If the case needs to be reviewed then the Status is set to " "'Pending'." msgstr "" +"Būsena yra nustatoma į „Naujas“, kuomet sukuriama iniciatyva. Jeigu " +"iniciatyva yra vykdoma, būsena nustatoma į „Vykdoma“. Įvykdžius iniciatyvą, " +"būsena nustatoma į „Uždaryta“. Jeigu iniciatyva turi būti peržiūrėta, būsena " +"nustatoma į „Laukianti“." #. module: crm #: model:crm.case.section,name:crm.crm_case_section_1 msgid "Sales Marketing Department" -msgstr "" +msgstr "Pardavimų rinkodaros skyrius" #. module: crm #: view:crm.phonecall.report:0 @@ -1284,6 +1340,8 @@ msgstr "Skambučio data" msgid "" "When sending mails, the default email address is taken from the sales team." msgstr "" +"Siunčiant el. laiškus, pardavimų komandos vadovo el. pašto adresas yra " +"naudojamas kaip numatytasis." #. module: crm #: view:crm.phonecall:0 @@ -1291,6 +1349,8 @@ msgid "" "Phone Calls Assigned to the current user or with a team having the current " "user as team leader" msgstr "" +"Skambučiai priskirti esamam naudotojui arba susieti su komanda, kurios " +"vadovas yra esamasis naudotojas" #. module: crm #: view:crm.segmentation:0 @@ -1303,7 +1363,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Sulieti galimybes" @@ -1311,7 +1371,7 @@ msgstr "Sulieti galimybes" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor7 msgid "Consulting" -msgstr "" +msgstr "Konsultavimas" #. module: crm #: field:crm.case.section,code:0 @@ -1321,7 +1381,7 @@ msgstr "Kodas" #. module: crm #: view:sale.config.settings:0 msgid "Features" -msgstr "" +msgstr "Požymiai" #. module: crm #: field:crm.case.section,child_ids:0 @@ -1331,17 +1391,17 @@ msgstr "Vaikinės komandos" #. module: crm #: view:crm.phonecall.report:0 msgid "Phone calls which are in draft and open state" -msgstr "" +msgstr "Planuojami skambučiai" #. module: crm #: field:crm.lead2opportunity.partner.mass,user_ids:0 msgid "Salesmen" -msgstr "" +msgstr "Pardavėjai" #. module: crm #: view:crm.lead:0 msgid "References" -msgstr "Nuorodos" +msgstr "Susiejimai" #. module: crm #: view:crm.lead2opportunity.partner:0 @@ -1361,34 +1421,34 @@ msgstr "" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor4 msgid "Information" -msgstr "" +msgstr "Informacija" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities which are in pending state" -msgstr "" +msgstr "Iniciatyvos/Galimybės, kurių būsena yra „Laukiama“" #. module: crm #: view:crm.phonecall:0 msgid "To Do" -msgstr "Darbas" +msgstr "Neatlikti skambučiai" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_lost msgid "Opportunity lost" -msgstr "" +msgstr "Pralaimėta galimybė" #. 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 "Susiejimas su pirkėju" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor8 msgid "Other" -msgstr "Kita" +msgstr "Kitas" #. module: crm #: field:crm.phonecall,opportunity_id:0 @@ -1400,12 +1460,13 @@ msgstr "Iniciatyva/Galimybė" #: 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 "Sulieti iniciatyvas/pardavimų galimybes" #. module: crm #: help:crm.case.stage,sequence:0 msgid "Used to order stages. Lower is better." msgstr "" +"Šis skaičius naudojamas etapų išdėstymui. Pirmumas mažesnei reikšmei." #. module: crm #: model:ir.actions.act_window,name:crm.crm_phonecall_categ_action @@ -1415,7 +1476,7 @@ msgstr "Telefono skambučių kategorijos" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities which are in open state" -msgstr "" +msgstr "Atviros iniciatyvos/galimybės" #. module: crm #: model:ir.model,name:crm.model_res_users @@ -1425,7 +1486,7 @@ msgstr "" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_stage msgid "Stage Changed" -msgstr "" +msgstr "Pakeistas etapas" #. module: crm #: field:crm.case.stage,section_ids:0 @@ -1452,7 +1513,7 @@ msgstr "Pardavimo suma" #: view:crm.phonecall.report:0 #: model:ir.actions.act_window,name:crm.act_crm_opportunity_crm_phonecall_new msgid "Phone calls" -msgstr "Telefonų skambučiai" +msgstr "Telefono skambučiai" #. module: crm #: model:ir.actions.act_window,help:crm.action_report_crm_opportunity @@ -1478,7 +1539,7 @@ msgstr "Pavadinimas" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities that are assigned to me" -msgstr "" +msgstr "Iniciatyvos/Galimybės priskirtos man" #. module: crm #: field:crm.lead.report,date_closed:0 @@ -1496,12 +1557,12 @@ msgstr "Mano įvykis (-ai)" #: help:crm.lead,message_ids:0 #: help:crm.phonecall,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Žinučių ir pranešimų istorija" #. module: crm #: view:crm.lead:0 msgid "Show Countries" -msgstr "" +msgstr "Rodyti Valstybes" #. module: crm #: view:crm.lead:0 @@ -1515,22 +1576,22 @@ msgstr "Sukurta" #: selection:crm.phonecall,priority:0 #: selection:crm.phonecall.report,priority:0 msgid "High" -msgstr "Didelis" +msgstr "Aukštas" #. module: crm #: model:process.node,note:crm.process_node_partner0 msgid "Convert to prospect to business partner" -msgstr "Konvertuoti galimą klientą į verslo partnerius" +msgstr "Konvertuoti kandidatą į verslo kontaktą" #. module: crm #: model:ir.model,name:crm.model_crm_payment_mode msgid "CRM Payment Mode" -msgstr "" +msgstr "CRM Mokėjimo būdas" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities which are in done state" -msgstr "" +msgstr "Iniciatyvos/Galimybės, kurios yra užvertos" #. module: crm #: field:crm.lead.report,delay_close:0 @@ -1548,7 +1609,7 @@ msgstr "Grupuoti pagal..." #. module: crm #: view:crm.merge.opportunity:0 msgid "Merge Leads/Opportunities" -msgstr "" +msgstr "Sulieti iniciatyvas/pardavimų galimybes" #. module: crm #: field:crm.case.section,parent_id:0 @@ -1560,7 +1621,7 @@ msgstr "Tėvinė komanda" #: selection:crm.lead2opportunity.partner.mass,action:0 #: selection:crm.partner.binding,action:0 msgid "Do not link to a customer" -msgstr "" +msgstr "Nesusieti su pirkėju" #. module: crm #: field:crm.lead,date_action:0 @@ -1574,11 +1635,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 "" +"Pardavimo galimybės būsena bus automatiškai pakeista priklausomai nuo etapo. " +"Pavyzdžiui, jeigu etapas yra susietas su būsena \"Uždaryta\", pardavimų " +"galimybei pasiekus šį etapą, ji bus uždaryta." #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Assign opportunities to" -msgstr "" +msgstr "Pardavimų galimybės priskyrimas" #. module: crm #: model:crm.case.categ,name:crm.categ_phone1 @@ -1588,7 +1652,7 @@ msgstr "Įeinantys" #. module: crm #: view:crm.phonecall.report:0 msgid "Month of call" -msgstr "" +msgstr "Skambučio mėnuo" #. module: crm #: code:addons/crm/crm_phonecall.py:290 @@ -1612,7 +1676,7 @@ msgstr "" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor3 msgid "Services" -msgstr "" +msgstr "Paslaugos" #. module: crm #: selection:crm.lead,priority:0 @@ -1636,12 +1700,12 @@ msgstr "Pastabos" #. module: crm #: field:crm.segmentation.line,expr_value:0 msgid "Value" -msgstr "Vertė" +msgstr "Reikšmė" #. module: crm #: field:crm.lead,partner_name:0 msgid "Customer Name" -msgstr "Kliento pavadinimas" +msgstr "Pirkėjo pavadinimas" #. module: crm #: field:crm.case.section,reply_to:0 @@ -1651,7 +1715,7 @@ msgstr "Atsakyti (kam)" #. module: crm #: view:crm.lead:0 msgid "Display" -msgstr "" +msgstr "Vaizdavimas" #. module: crm #: view:board.board:0 @@ -1661,7 +1725,7 @@ msgstr "Pardavimo galimybės pagal etapą" #. module: crm #: model:process.transition,note:crm.process_transition_leadpartner0 msgid "Prospect is converting to business partner" -msgstr "Galimas klientas konvertuojamas į verslo partnerį" +msgstr "Kandidatas konvertuojamas į kontaktą" #. module: crm #: view:crm.case.channel:0 @@ -1687,12 +1751,12 @@ msgstr "Papildoma informacija" #. module: crm #: view:crm.lead:0 msgid "Fund Raising" -msgstr "" +msgstr "Lėšų rinkimas" #. module: crm #: view:crm.lead:0 msgid "Edit..." -msgstr "" +msgstr "Keisti..." #. module: crm #: model:crm.case.resource.type,name:crm.type_lead5 @@ -1702,7 +1766,7 @@ msgstr "Google Adwords" #. module: crm #: view:crm.case.section:0 msgid "Select Stages for this Sales Team" -msgstr "" +msgstr "Pasirinkti pardavimų komandos naudojamus etapus" #. module: crm #: view:crm.lead:0 @@ -1713,7 +1777,7 @@ msgstr "" #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,priority:0 msgid "Priority" -msgstr "Prioritetas" +msgstr "Svarbumas" #. module: crm #: model:ir.model,name:crm.model_crm_lead2opportunity_partner @@ -1724,13 +1788,15 @@ msgstr "" #: help:crm.lead,partner_id:0 msgid "Linked partner (optional). Usually created when converting the lead." msgstr "" +"Susietas kontaktas (nebūtinas). Dažniausiai kontaktas būna sukuriamas " +"konvertuojant iniciatyvą." #. 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 "Mokėjimo būdas" #. module: crm #: model:ir.model,name:crm.model_crm_lead2opportunity_partner_mass @@ -1752,7 +1818,7 @@ msgstr "" #: 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 "Kontaktų segmentavimas" #. module: crm #: model:process.node,note:crm.process_node_meeting0 @@ -1806,7 +1872,7 @@ msgstr "Liepa" #. module: crm #: view:crm.lead:0 msgid "Lead / Customer" -msgstr "Iniciatyva / Klientas" +msgstr "Iniciatyva / pirkėjas" #. module: crm #: model:crm.case.section,name:crm.crm_case_section_2 @@ -1828,7 +1894,7 @@ msgstr "Pardavimų komandos" #. module: crm #: field:crm.case.stage,case_default:0 msgid "Default to New Sales Team" -msgstr "" +msgstr "Numatytasis naujoms pardavimų komandoms" #. module: crm #: view:crm.lead:0 @@ -1838,7 +1904,7 @@ msgstr "Komanda" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities which are in New state" -msgstr "" +msgstr "Naujos iniciatyvos/galimybės" #. module: crm #: selection:crm.phonecall,state:0 @@ -1867,7 +1933,7 @@ msgid "Leads" msgstr "Iniciatyvos" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1875,13 +1941,13 @@ msgstr "" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor5 msgid "Design" -msgstr "" +msgstr "Projektavimas" #. module: crm #: selection:crm.lead2opportunity.partner,name:0 #: selection:crm.lead2opportunity.partner.mass,name:0 msgid "Merge with existing opportunities" -msgstr "" +msgstr "Sulieti su esamomis pardavimų galimybėmis" #. module: crm #: view:crm.phonecall.report:0 @@ -1893,7 +1959,7 @@ msgstr "Planuojamas" #: 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 "Iniciatyva į galimybę" #. module: crm #: field:crm.lead,user_email:0 @@ -1906,12 +1972,14 @@ msgid "" "The name of the future partner company that will be created while converting " "the lead into opportunity" msgstr "" +"Būsimo kontakto įmonės pavadinimas, kuris bus sukurtas konvertuojant " +"iniciatyvą į pardavimo galimybę" #. module: crm #: field:crm.opportunity2phonecall,note:0 #: field:crm.phonecall2phonecall,note:0 msgid "Note" -msgstr "Užrašai" +msgstr "Pastaba" #. module: crm #: selection:crm.lead,priority:0 @@ -1919,7 +1987,7 @@ msgstr "Užrašai" #: selection:crm.phonecall,priority:0 #: selection:crm.phonecall.report,priority:0 msgid "Low" -msgstr "Mažas" +msgstr "Žemas" #. module: crm #: selection:crm.case.stage,state:0 @@ -1929,7 +1997,7 @@ msgstr "Mažas" #: selection:crm.lead.report,state:0 #: field:crm.phonecall,date_closed:0 msgid "Closed" -msgstr "Užvertas" +msgstr "Uždaryta" #. module: crm #: view:crm.lead:0 @@ -1939,7 +2007,7 @@ msgstr "Atviros galimybės" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead2 msgid "Email Campaign - Services" -msgstr "" +msgstr "El. laiškai - Paslaugos" #. module: crm #: selection:crm.case.stage,state:0 @@ -1948,7 +2016,7 @@ msgstr "" #: selection:crm.lead.report,state:0 #: selection:crm.phonecall.report,state:0 msgid "Pending" -msgstr "Laukti" +msgstr "Laukiama" #. module: crm #: model:process.transition,name:crm.process_transition_leadopportunity0 @@ -1961,13 +2029,12 @@ msgid "Global CC" msgstr "Bendras CC" #. 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 #: model:ir.ui.menu,name:crm.menu_crm_config_phonecall msgid "Phone Calls" -msgstr "Telefonų skambučiai" +msgstr "Telefono skambučiai" #. module: crm #: view:crm.case.stage:0 @@ -2012,7 +2079,7 @@ msgstr "Siųsti el. laikšą" #: selection:crm.lead2opportunity.partner.mass,action:0 #: selection:crm.partner.binding,action:0 msgid "Create a new customer" -msgstr "" +msgstr "Sukurti naują pirkėją" #. module: crm #: field:crm.lead.report,deadline_day:0 @@ -2022,12 +2089,12 @@ msgstr "" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor2 msgid "Software" -msgstr "" +msgstr "Programinė įranga" #. module: crm #: field:crm.case.section,change_responsible:0 msgid "Reassign Escalated" -msgstr "" +msgstr "Priskirti plėtojamą" #. module: crm #: view:crm.lead.report:0 @@ -2046,7 +2113,7 @@ msgstr "Įvairūs" #: view:crm.lead.report:0 #: selection:crm.lead.report,state:0 msgid "Open" -msgstr "Atverti" +msgstr "Atvira" #. module: crm #: view:crm.lead:0 @@ -2057,18 +2124,18 @@ msgstr "Miestas" #. module: crm #: selection:crm.case.stage,type:0 msgid "Both" -msgstr "" +msgstr "Abu" #. module: crm #: view:crm.phonecall:0 msgid "Call Done" -msgstr "" +msgstr "Skambutis atliktas" #. module: crm #: view:crm.phonecall:0 #: field:crm.phonecall,user_id:0 msgid "Responsible" -msgstr "Atsakingas" +msgstr "Atsakingas asmuo" #. module: crm #: model:crm.case.section,name:crm.crm_case_section_3 @@ -2078,7 +2145,7 @@ msgstr "" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor1 msgid "Product" -msgstr "" +msgstr "Produktas" #. module: crm #: field:crm.lead.report,creation_year:0 @@ -2088,7 +2155,7 @@ msgstr "Sukūrimo metai" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Conversion Options" -msgstr "" +msgstr "Konvertavimo pasirinktys" #. module: crm #: view:crm.case.section:0 @@ -2096,11 +2163,13 @@ msgid "" "Follow this salesteam to automatically track the events associated to users " "of this team." msgstr "" +"Prenumeruokite šią pardavimų komandą, kad galėtumėte sekti įvykius " +"susijusius su komandos nariais." #. module: crm #: view:crm.lead:0 msgid "Address" -msgstr "" +msgstr "Adresas" #. module: crm #: help:crm.case.section,alias_id:0 @@ -2143,16 +2212,18 @@ msgid "" "From which campaign (seminar, marketing campaign, mass mailing, ...) did " "this contact come from?" msgstr "" +"Kampanija, kurios dėka buvo gautas šis kontaktas (seminaras, marketingo " +"kampanija, masinis laiškų siuntimas, ...)" #. module: crm #: model:ir.model,name:crm.model_calendar_attendee msgid "Attendee information" -msgstr "Dalyvio informacija" +msgstr "Dalyvių informacija" #. module: crm #: view:crm.segmentation:0 msgid "Segmentation Test" -msgstr "Segmentacijos testas" +msgstr "Segmentavimo kriterijai" #. module: crm #: view:crm.segmentation:0 @@ -2164,7 +2235,7 @@ msgstr "Tęsti procesą" #: selection:crm.lead2opportunity.partner.mass,name:0 #: model:ir.actions.act_window,name:crm.action_crm_lead2opportunity_partner msgid "Convert to opportunity" -msgstr "" +msgstr "Konvertuoti į pardavimų galimybę" #. module: crm #: field:crm.opportunity2phonecall,user_id:0 @@ -2182,7 +2253,7 @@ msgstr "Paskutinis veiksmas" #: field:crm.phonecall,duration:0 #: field:crm.phonecall.report,duration:0 msgid "Duration" -msgstr "Trukmė" +msgstr "Laikotarpis" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_categ_phone_outgoing0 @@ -2199,6 +2270,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad suplanuotumėte skambutį \n" +"

\n" +" OpenERP leidžia lengvai suplanuoti skambučius, kurie turi būti " +"atlikti\n" +" jūsų pardavimo komandos ir stebėti situaciją pagal atliktų " +"skambučių santraukas.\n" +"

\n" +" Jūs galite pasinaudoti importavimo funkcija, kad įkeltumėte į " +"sistemą\n" +" visus kandidatus.\n" +"

\n" +" " #. module: crm #: help:crm.case.stage,fold:0 @@ -2206,6 +2290,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 "" +"Etapas nebus matomas, pavyzdžiui būsenos juostoje ar kanban formoje, kuomet " +"nėra pardavimo galimybių susijusių su šiuo etapu." #. module: crm #: field:crm.lead.report,nbr:0 @@ -2216,17 +2302,17 @@ msgstr "# įvykių" #. module: crm #: help:crm.phonecall,section_id:0 msgid "Sales team to which Case belongs to." -msgstr "Pardavimų komandą kuriai priklauso įvykis." +msgstr "Pardavimų komanda, kuriai priskirtas įvykis." #. module: crm #: model:crm.case.resource.type,name:crm.type_lead6 msgid "Banner Ads" -msgstr "" +msgstr "Reklaminiai baneriai" #. module: crm #: field:crm.merge.opportunity,opportunity_ids:0 msgid "Leads/Opportunities" -msgstr "" +msgstr "Iniciatyvos/Galimybės" #. module: crm #: field:crm.lead,fax:0 @@ -2241,7 +2327,7 @@ msgstr "Faksas" #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,company_id:0 msgid "Company" -msgstr "Kompanija" +msgstr "Įmonė" #. module: crm #: selection:crm.segmentation,state:0 @@ -2261,7 +2347,7 @@ msgstr "Nepriskirtos iniciatyvos" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_won msgid "Opportunity won" -msgstr "" +msgstr "Laimėta galimybė" #. module: crm #: field:crm.case.categ,object_id:0 @@ -2271,12 +2357,12 @@ msgstr "Objekto pavadinimas" #. module: crm #: view:crm.phonecall:0 msgid "Phone Calls Assigned to Me or My Team(s)" -msgstr "" +msgstr "Skambučiai priskirti man arba mano komandai" #. module: crm #: view:crm.lead:0 msgid "Reset" -msgstr "" +msgstr "Atstatyti" #. module: crm #: view:sale.config.settings:0 @@ -2288,12 +2374,12 @@ msgstr "" #: field:crm.lead,message_ids:0 #: field:crm.phonecall,message_ids:0 msgid "Messages" -msgstr "Žinutė" +msgstr "Pranešimai" #. module: crm #: help:crm.lead,channel_id:0 msgid "Communication channel (mail, direct, phone, ...)" -msgstr "" +msgstr "Susisiekimo kanalas (el. paštu, tiesioginis, telefonu, ...)" #. module: crm #: field:crm.opportunity2phonecall,name:0 @@ -2327,12 +2413,12 @@ msgstr "" #. module: crm #: field:crm.case.stage,fold:0 msgid "Fold by Default" -msgstr "" +msgstr "Suskleistas" #. module: crm #: field:crm.case.stage,state:0 msgid "Related Status" -msgstr "" +msgstr "Susieti būseną" #. module: crm #: field:crm.phonecall,name:0 @@ -2353,12 +2439,12 @@ msgstr "Suplanuoti/Registruoti skambutį" #. module: crm #: view:crm.merge.opportunity:0 msgid "Select Leads/Opportunities" -msgstr "" +msgstr "Pasirinkite iniciatyvas/pardavimų galimybes" #. module: crm #: selection:crm.phonecall,state:0 msgid "Confirmed" -msgstr "Patvirtintas" +msgstr "Patvirtinta" #. module: crm #: model:ir.model,name:crm.model_crm_partner_binding @@ -2378,7 +2464,7 @@ msgstr "Patvirtinti" #. module: crm #: view:crm.lead:0 msgid "Unread messages" -msgstr "" +msgstr "Neperskaitytos žinutės" #. module: crm #: field:crm.phonecall.report,section_id:0 @@ -2395,7 +2481,7 @@ msgstr "Pasirenkama išraiška" #: field:crm.lead,message_follower_ids:0 #: field:crm.phonecall,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Prenumeratoriai" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_category_act_leads_all @@ -2414,6 +2500,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte iniciatyvą.\n" +"

\n" +" Naudokite iniciatyvas jei reikalingas kvalifikacijos žingnis " +"prieš\n" +" sukuriant pardavimo galimybę ar pirkėją. Tai gali būti gauta\n" +" vizitinė kortelė, užpildyta užklausimo forma jūsų tinklapyje, " +"ar\n" +" importuotas failas su kandidatais, ir t.t.\n" +"

\n" +" Iniciatyva gali būti konvertuota į pardavimo galimybę ir/arba " +"naują\n" +" pirkėją jūsų adresų knygoje.\n" +"

\n" +" " #. module: crm #: field:sale.config.settings,fetchmail_lead:0 @@ -2456,6 +2557,10 @@ msgid "" "If checked, remove the category from partners that doesn't match " "segmentation criterions" msgstr "" +"Pažymėkite, jeigu kategorija gali būti priskirta tik tiems partneriams, " +"kurie atitinka segmentavimo kriterijus. \n" +"Kai pažymėta, partneriai, kurie neatitinka segmentavimo kriterijų, bus " +"išmesti iš kategorijos." #. module: crm #: model:process.transition,note:crm.process_transition_leadopportunity0 @@ -2465,7 +2570,7 @@ msgstr "Kuriamos verslo galimybes iš iniciatyvų" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead3 msgid "Email Campaign - Products" -msgstr "" +msgstr "El. laiškai - Produktai" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_categ_phone_incoming0 @@ -2484,6 +2589,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad užfiksuotumėte telefono skambutį. \n" +"

\n" +" OpenERP leidžia fiksuoti gaunamus skambučius bei stebėti\n" +" bendravimo istoriją su pirkėju arba informuoti kitą\n" +" komandos narį.\n" +"

\n" +" Kad pratęstumėte bendravimą, galite suplanuoti kitą skambutį,\n" +" susitikimą ar įvesti pardavimo galimybę.\n" +"

\n" +" " #. module: crm #: model:process.node,note:crm.process_node_leads0 @@ -2493,7 +2609,7 @@ msgstr "Pirmasis kontaktas su nauju galimu kleintu" #. module: crm #: view:res.partner:0 msgid "Calls" -msgstr "" +msgstr "Skambučiai" #. module: crm #: field:crm.case.stage,on_change:0 @@ -2503,7 +2619,7 @@ msgstr "Pakeisti tikimybę automatiškai" #. module: crm #: view:crm.phonecall.report:0 msgid "My Phone Calls" -msgstr "" +msgstr "Mano skambučiai" #. module: crm #: model:crm.case.stage,name:crm.stage_lead3 @@ -2514,7 +2630,7 @@ msgstr "Kvalifikacija" #: field:crm.lead2opportunity.partner,name:0 #: field:crm.lead2opportunity.partner.mass,name:0 msgid "Conversion Action" -msgstr "" +msgstr "Veiksmas" #. module: crm #: model:ir.actions.act_window,help:crm.crm_lead_categ_action @@ -2530,6 +2646,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte pardavimų kategoriją.\n" +"

\n" +" Sukurkite specialias kategorijas, kurios atspindi jūsų " +"įmonės\n" +" vykdomas veiklas, kas padės klasifikuoti ir analizuoti " +"iniciatyvas bei pardavimų galimybes.\n" +" Kaip pavyzdys, šios kategorijos gali atspindėti jūsų " +"produktų\n" +" struktūrą ar vykdomus skirtingų tipų pardavimus.\n" +"

\n" +" " #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -2542,7 +2670,7 @@ msgstr "Rugpjūtis" #: model:mail.message.subtype,name:crm.mt_lead_lost #: model:mail.message.subtype,name:crm.mt_salesteam_lead_lost msgid "Opportunity Lost" -msgstr "" +msgstr "Pralaimėta galimybė" #. module: crm #: field:crm.lead.report,deadline_month:0 @@ -2575,7 +2703,7 @@ msgstr "Pardavimo galimybę į skambutį" #. module: crm #: view:crm.segmentation:0 msgid "Sales Purchase" -msgstr "Pardavimai pirkimai" +msgstr "Pardavimai / pirkimai" #. module: crm #: view:crm.lead:0 @@ -2618,7 +2746,7 @@ msgstr "Planuojamos išlaidos" #. module: crm #: help:crm.lead,date_deadline:0 msgid "Estimate of the date on which the opportunity will be won." -msgstr "" +msgstr "Numanoma data, iki kurios bus laimėta pardavimų galimybė" #. module: crm #: help:crm.lead,email_cc:0 @@ -2641,7 +2769,7 @@ msgstr "Užregistruoti skambučiai" #: model:mail.message.subtype,name:crm.mt_lead_won #: model:mail.message.subtype,name:crm.mt_salesteam_lead_won msgid "Opportunity Won" -msgstr "" +msgstr "Laimėta galimybė" #. module: crm #: model:ir.actions.act_window,name:crm.crm_case_section_act_tree @@ -2672,7 +2800,7 @@ msgstr "Planuojamos pajamos pagal etapą ir naudotoją" #: selection:crm.phonecall,priority:0 #: selection:crm.phonecall.report,priority:0 msgid "Normal" -msgstr "Vidutinis" +msgstr "Įprasta" #. module: crm #: field:crm.lead,street2:0 @@ -2754,7 +2882,7 @@ msgstr "Įvykio etapas" #: selection:crm.opportunity2phonecall,action:0 #: selection:crm.phonecall2phonecall,action:0 msgid "Schedule a call" -msgstr "" +msgstr "Suplanuoti skambutį" #. module: crm #: view:crm.lead:0 @@ -2780,7 +2908,7 @@ msgstr "Telefono skambutis" #. module: crm #: view:crm.phonecall.report:0 msgid "Phone calls that are assigned to one of the sale teams I manage" -msgstr "" +msgstr "Skambučiai priskirti vienai iš pardavimų komandų, kuriai vadovauju" #. module: crm #: view:crm.lead:0 @@ -2790,7 +2918,7 @@ msgstr "Sukūrimo data" #. module: crm #: view:crm.lead:0 msgid "at" -msgstr "" +msgstr "su" #. module: crm #: model:crm.case.stage,name:crm.stage_lead1 @@ -2804,7 +2932,7 @@ msgstr "Naujas" #. module: crm #: field:crm.lead,function:0 msgid "Function" -msgstr "Funkcija" +msgstr "Pareigos" #. module: crm #: field:crm.case.section,note:0 @@ -2855,11 +2983,25 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte naują kanalą.\n" +"

\n" +" Naudokite kanalus, kad identifikuotumėte šaltinius, iš kur " +"atėjo iniciatyvos ar pardavimų galimybės.\n" +" Kanalai daugiausiai naudojami ataskaitose analizuojant " +"pardavimų įvykdimą\n" +" priklausomai nuo rinkodaros veiksmų.\n" +"

\n" +" Keletas kanalo pavyzdžių: įmonės tinklapis, telefoninių " +"skambučių\n" +" kampanija, perpardavinėtojas, ir t.t.\n" +"

\n" +" " #. module: crm #: view:crm.lead:0 msgid "Internal Notes" -msgstr "" +msgstr "Vidinės pastabos" #. module: crm #: view:crm.lead:0 @@ -2869,7 +3011,7 @@ msgstr "Naujos galimybės" #. module: crm #: field:crm.segmentation.line,operator:0 msgid "Mandatory / Optional" -msgstr "Būtinas" +msgstr "Būtinumas" #. module: crm #: field:crm.lead,street:0 @@ -2879,12 +3021,12 @@ msgstr "Gatvė" #. module: crm #: field:crm.lead,referred:0 msgid "Referred By" -msgstr "Nukreipė" +msgstr "Remiamasi" #. module: crm #: view:crm.phonecall:0 msgid "Reset to Todo" -msgstr "" +msgstr "Atkurti" #. module: crm #: field:crm.case.section,working_hours:0 @@ -2892,7 +3034,7 @@ msgid "Working Hours" msgstr "Darbo valandos" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 @@ -2931,7 +3073,7 @@ msgstr "" #: view:crm.lead.report:0 #: field:crm.lead.report,country_id:0 msgid "Country" -msgstr "Šalis" +msgstr "Valstybė" #. module: crm #: view:crm.lead:0 @@ -3014,7 +3156,7 @@ msgstr "Naujienlaiškis" #. module: crm #: model:mail.message.subtype,name:crm.mt_salesteam_lead_stage msgid "Opportunity Stage Changed" -msgstr "" +msgstr "Pasikeitė galimybės etapas" #. module: crm #: model:ir.actions.act_window,help:crm.crm_lead_stage_act @@ -3028,6 +3170,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad pridėtumėte etapą iniciatyvų/pardavimų " +"galimybių procese.\n" +"

\n" +" Etapai pardavėjui leidžia matyti, kokioje stadijoje yra tam\n" +" tikra iniciatyva ar pardavimo galimybė.\n" +"

\n" +" " #~ msgid "Add Last Mail for Replying" #~ msgstr "Pridėti atsakymui paskutinį laišką" diff --git a/addons/crm/i18n/lv.po b/addons/crm/i18n/lv.po index 47f1718fdbc..9d541148a1b 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-16 05:08+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:00+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -30,7 +30,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -184,8 +184,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -294,7 +294,7 @@ msgid "Prospect Partner" msgstr "Partneris paredzamajam klientam" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "" @@ -438,7 +438,7 @@ msgid "#Opportunities" msgstr "Potenciālo darījumu skaits" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -705,7 +705,7 @@ msgid "Statistics Dashboard" msgstr "Statistikas instrumentu panelis" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -765,7 +765,7 @@ msgid "Exclusive" msgstr "Atzīmēt kā īpašs" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -933,7 +933,7 @@ msgid "Next Action" msgstr "Nākamā darbība" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1023,7 +1023,7 @@ msgid "Creation Date" msgstr "Izveides Datums" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1212,7 +1212,9 @@ msgid "Days to Close" msgstr "Dienas līdz Slēgšanai" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "nezināma" @@ -1295,7 +1297,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1857,7 +1859,7 @@ msgid "Leads" msgstr "Pavedieni" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1951,7 +1953,6 @@ msgid "Global CC" msgstr "Globālais CC" #. 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 @@ -2879,7 +2880,7 @@ msgid "Working Hours" msgstr "Darba laiks" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/mk.po b/addons/crm/i18n/mk.po index dce44986306..a9a7ee8cd0b 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-16 05:08+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:00+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -30,7 +30,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -124,7 +124,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 @@ -182,10 +182,12 @@ 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 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -294,7 +296,7 @@ msgid "Prospect Partner" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Без тема" @@ -324,6 +326,17 @@ msgid "" "

\n" " " msgstr "" +"

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

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

\n" +" " #. module: crm #: field:crm.opportunity2phonecall,contact_name:0 @@ -379,10 +392,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" @@ -455,7 +468,7 @@ msgid "#Opportunities" msgstr "#Можности" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -466,8 +479,8 @@ msgstr "" #: view:crm.lead:0 msgid "Leads that are assigned to one of the sale teams I manage, or to me" msgstr "" -"Leads кои се доделени на некои од продажните тимови кои ги менаџирам, или на " -"мене" +"Траги кои се доделени на мене или на некои од продажните тимови кои ги " +"управувам, или на мене" #. module: crm #: field:crm.lead,partner_address_email:0 @@ -617,6 +630,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 #: view:crm.segmentation:0 @@ -750,7 +765,7 @@ msgid "Statistics Dashboard" msgstr "Контролна табла за статистики" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -776,7 +791,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 @@ -798,8 +813,8 @@ msgstr "Барај телефонски повици" msgid "" "Leads/Opportunities that are assigned to one of the sale teams I manage" msgstr "" -"Leads/Можности кои се доделени на еден од тимовите за продажба кој го " -"менаџирам" +"Траги/Можности кои се доделени на еден од тимовите за продажба кој го " +"управувам" #. module: crm #: field:calendar.attendee,categ_id:0 @@ -812,7 +827,7 @@ msgid "Exclusive" msgstr "Ексклузивно" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "Од %s : %s" @@ -860,7 +875,7 @@ msgstr "Барања" #. module: crm #: field:crm.lead,zip:0 msgid "Zip" -msgstr "" +msgstr "Поштенски број" #. module: crm #: view:crm.phonecall:0 @@ -941,7 +956,7 @@ msgstr "Предупредување !" #. module: crm #: field:crm.lead,day_open:0 msgid "Days to Open" -msgstr "Денови до отвори" +msgstr "Денови до отварање" #. module: crm #: field:crm.lead,mobile:0 @@ -982,7 +997,7 @@ msgid "Next Action" msgstr "Следна акција" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "Партнер поставен на %s." @@ -1074,7 +1089,7 @@ msgid "Creation Date" msgstr "Датум на креирање" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "Lead претворена во можност" @@ -1198,7 +1213,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 @@ -1277,7 +1292,7 @@ msgstr "Статус на извршување" #. module: crm #: view:crm.opportunity2phonecall:0 msgid "Log call" -msgstr "" +msgstr "Најави повик" #. module: crm #: field:crm.lead,day_close:0 @@ -1285,7 +1300,9 @@ msgid "Days to Close" msgstr "Денови до затварање" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "непознато" @@ -1294,7 +1311,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 @@ -1367,7 +1384,7 @@ msgstr "" #. module: crm #: view:crm.segmentation:0 msgid "Segmentation Description" -msgstr "" +msgstr "Опис на сегментација" #. module: crm #: view:crm.lead:0 @@ -1375,7 +1392,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Спои можности" @@ -1398,7 +1415,7 @@ msgstr "Карактеристики" #. module: crm #: field:crm.case.section,child_ids:0 msgid "Child Teams" -msgstr "Child тимови" +msgstr "Тимови дете" #. module: crm #: view:crm.phonecall.report:0 @@ -1477,7 +1494,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 @@ -1676,7 +1693,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 @@ -1817,7 +1834,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 @@ -1849,7 +1866,7 @@ msgstr "" #. module: crm #: model:ir.model,name:crm.model_crm_segmentation_line msgid "Segmentation line" -msgstr "" +msgstr "Ставка на сегментација" #. module: crm #: view:crm.opportunity2phonecall:0 @@ -1905,7 +1922,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 @@ -1944,7 +1961,7 @@ msgid "Leads" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -2040,7 +2057,6 @@ msgid "Global CC" msgstr "Општо CC" #. 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 @@ -2096,7 +2112,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 @@ -2304,6 +2320,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 @@ -2497,7 +2515,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 @@ -2800,7 +2818,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 @@ -2902,7 +2920,7 @@ msgstr "Телефонски повик" msgid "Phone calls that are assigned to one of the sale teams I manage" msgstr "" "Телефонски повици кои се доделени на еден од тимовите за продажба кој го " -"менаџирам" +"управувам" #. module: crm #: view:crm.lead:0 @@ -2912,7 +2930,7 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "at" -msgstr "" +msgstr "на" #. module: crm #: model:crm.case.stage,name:crm.stage_lead1 @@ -3027,7 +3045,7 @@ msgid "Working Hours" msgstr "Работни часови" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/mn.po b/addons/crm/i18n/mn.po index 483aaa7a562..90e7fa89221 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-16 05:08+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:00+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -32,7 +32,7 @@ msgstr "" "олгодог." #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -103,7 +103,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 @@ -193,8 +193,8 @@ msgstr "" "html форматтай бөгөөд канбан харагдацад шууд орж харагдах боломжтой." #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -296,8 +296,8 @@ msgid "" "If opt-out is checked, this contact has refused to receive emails or " "unsubscribed to a campaign." msgstr "" -"Хэрэв хүлээж авахгүй-г чеклвэл магадлагдаагүй компанит ажил буюу э-" -"мэйлүүдийг хүлээж авахаас татгалзана." +"Хэрэв хүлээж авахгүйг чеклвэл энэхүү гэрээ нь имэйл хүлээж авахаас " +"татгалзсан байна." #. module: crm #: model:process.transition,name:crm.process_transition_leadpartner0 @@ -305,7 +305,7 @@ msgid "Prospect Partner" msgstr "Хэтийн түнш" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Гарчиг үгүй" @@ -369,7 +369,7 @@ msgstr "Уулзах боломж" #: 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 @@ -474,7 +474,7 @@ msgid "#Opportunities" msgstr "#Боломжууд" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -764,7 +764,7 @@ msgid "Statistics Dashboard" msgstr "Статистик хянах самбар" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -825,7 +825,7 @@ msgid "Exclusive" msgstr "Дээд зиндаанд зориулсан" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "%s -ээс: %s" @@ -997,7 +997,7 @@ msgid "Next Action" msgstr "Дараагийн үйл ажиллагаа" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "Харилцаг нь %s гэж тохируулагдлаа." @@ -1089,7 +1089,7 @@ msgid "Creation Date" msgstr "Үүсгэх огноо" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "Сэжим нь Боломж бол хөрвүүлэгдлээ" @@ -1297,7 +1297,9 @@ msgid "Days to Close" msgstr "Хаах өдөр" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "тодорхой бус" @@ -1386,7 +1388,7 @@ msgid "Lead Description" msgstr "Сэжимийн тодорхойлолт" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Нийлүүлсэн боломж" @@ -1958,7 +1960,7 @@ msgid "Leads" msgstr "Сэжим" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "Нэгтгэгдсэн сэжимүүд" @@ -2054,7 +2056,6 @@ msgid "Global CC" msgstr "Глобал CC" #. 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 @@ -2071,7 +2072,7 @@ msgstr "Шатын Хайлт" #: 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 @@ -3053,7 +3054,7 @@ msgid "Working Hours" msgstr "Ажлын цаг" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/nb.po b/addons/crm/i18n/nb.po index 1914f154f37..bb20c11ffd4 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-16 05:08+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:00+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -32,7 +32,7 @@ msgstr "" "fra innkommende e-poster." #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -186,8 +186,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -298,7 +298,7 @@ msgid "Prospect Partner" msgstr "Prospekt partner" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Intet emne" @@ -446,7 +446,7 @@ msgid "#Opportunities" msgstr "#Salgsmuligheter" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -724,7 +724,7 @@ msgid "Statistics Dashboard" msgstr "Statistikk konsoll" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -784,7 +784,7 @@ msgid "Exclusive" msgstr "Utelukkende" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "Fra %s : %s" @@ -952,7 +952,7 @@ msgid "Next Action" msgstr "Neste handling" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1042,7 +1042,7 @@ msgid "Creation Date" msgstr "Opprettet dato" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1236,7 +1236,9 @@ msgid "Days to Close" msgstr "Dager til lukking" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "ukjent" @@ -1320,7 +1322,7 @@ msgid "Lead Description" msgstr "Ledelse beskrivelse." #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Sammenslåtte muligheter" @@ -1885,7 +1887,7 @@ msgid "Leads" msgstr "Leads" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1979,7 +1981,6 @@ msgid "Global CC" msgstr "Global CC" #. 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 @@ -2920,7 +2921,7 @@ msgid "Working Hours" msgstr "Arbeidstid" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/nl.po b/addons/crm/i18n/nl.po index 7a526175e90..16d2e9f97ea 100644 --- a/addons/crm/i18n/nl.po +++ b/addons/crm/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-16 05:07+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:59+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -31,7 +31,7 @@ msgstr "" "maken van inkomende e-mails." #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -193,8 +193,8 @@ msgstr "" "ingevoegd." #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -305,7 +305,7 @@ msgid "Prospect Partner" msgstr "Prospect naar relatie" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Geen onderwerp" @@ -481,7 +481,7 @@ msgid "#Opportunities" msgstr "#Prospects" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -779,7 +779,7 @@ msgid "Statistics Dashboard" msgstr "Statistisch dashboard" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -841,7 +841,7 @@ msgid "Exclusive" msgstr "Exclusief" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "Van %s : %s" @@ -1013,7 +1013,7 @@ msgid "Next Action" msgstr "Volgende actie" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "Relatie ingesteld op %s." @@ -1103,7 +1103,7 @@ msgid "Creation Date" msgstr "Aanmaakdatum" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "Lead geconverteerd in prospect" @@ -1318,7 +1318,9 @@ msgid "Days to Close" msgstr "Dagen tot sluiting" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "onbekend" @@ -1409,7 +1411,7 @@ msgid "Lead Description" msgstr "Lead omschrijving" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Samengevoegde prospects" @@ -1984,7 +1986,7 @@ msgid "Leads" msgstr "Leads" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "Leads samengevoegd" @@ -2080,7 +2082,6 @@ msgid "Global CC" msgstr "Globale CC" #. 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 @@ -2171,7 +2172,7 @@ msgstr "Open" #: view:crm.lead:0 #: field:crm.lead,city:0 msgid "City" -msgstr "Woonplaats" +msgstr "Plaats" #. module: crm #: selection:crm.case.stage,type:0 @@ -2559,7 +2560,7 @@ msgstr "" "

\n" " Klik om een ongekwalificeerde lead aan te maken.\n" "

\n" -" gebruik leads als u een kwalificatie stap wilt toevoegen voordat " +" Gebruik leads als u een kwalificatie stap wilt toevoegen voordat " "u\n" " een prospect of klant aanmaakt. Het kan bijvoorbeeld een " "visitekaartje\n" @@ -3101,7 +3102,7 @@ msgid "Working Hours" msgstr "Werkuren" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/nl_BE.po b/addons/crm/i18n/nl_BE.po index a22d1f605a6..6db53961e9d 100644 --- a/addons/crm/i18n/nl_BE.po +++ b/addons/crm/i18n/nl_BE.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-04-27 05:44+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:01+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: nl\n" #. module: crm @@ -32,7 +32,7 @@ msgstr "" "binnenkomende e-mails." #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -189,8 +189,8 @@ msgstr "" "html-formaat, zodat ze in de kanbanweergave kan worden gebruikt." #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -301,7 +301,7 @@ msgid "Prospect Partner" msgstr "Prospectrelatie" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Geen onderwerp" @@ -473,7 +473,7 @@ msgid "#Opportunities" msgstr "#Opportuniteiten" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -769,7 +769,7 @@ msgid "Statistics Dashboard" msgstr "Statistiekdashboard" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -831,7 +831,7 @@ msgid "Exclusive" msgstr "Exclusief" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "Van %s : %s" @@ -1003,7 +1003,7 @@ msgid "Next Action" msgstr "Volgende actie" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1096,7 +1096,7 @@ msgid "Creation Date" msgstr "Creatiedatum" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1295,7 +1295,9 @@ msgid "Days to Close" msgstr "Dagen tot afsluiten" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "onbekend" @@ -1383,7 +1385,7 @@ msgid "Lead Description" msgstr "Leadomschrijving" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Samengevoegde opportuniteiten" @@ -1952,7 +1954,7 @@ msgid "Leads" msgstr "Leads" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -2048,7 +2050,6 @@ msgid "Global CC" msgstr "Globaal cc" #. 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 @@ -2995,7 +2996,7 @@ msgid "Working Hours" msgstr "Werkuren" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/pl.po b/addons/crm/i18n/pl.po index 8f0143bd28c..b4355ba9de8 100644 --- a/addons/crm/i18n/pl.po +++ b/addons/crm/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-16 05:08+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:01+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -31,7 +31,7 @@ msgstr "" "przychodzących wiadomości." #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -188,8 +188,8 @@ msgstr "" "kanban." #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -300,7 +300,7 @@ msgid "Prospect Partner" msgstr "Potencjalny partner" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Brak tematu" @@ -462,7 +462,7 @@ msgid "#Opportunities" msgstr "#Szans" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -750,7 +750,7 @@ msgid "Statistics Dashboard" msgstr "Konsola statystyk" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -810,7 +810,7 @@ msgid "Exclusive" msgstr "Wyłączny" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "Od %s : %s" @@ -981,7 +981,7 @@ msgid "Next Action" msgstr "Następna akcja" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "Partner został ustawiony na %s." @@ -1071,7 +1071,7 @@ msgid "Creation Date" msgstr "Data utworzenia" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "Sygnał skonwertowany do szansy" @@ -1267,7 +1267,9 @@ msgid "Days to Close" msgstr "Dni do zamknięcia" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "nieznany" @@ -1351,7 +1353,7 @@ msgid "Lead Description" msgstr "Opis sygnału" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Połączone szanse" @@ -1917,7 +1919,7 @@ msgid "Leads" msgstr "Sygnały" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "Połączone sygnały" @@ -2013,7 +2015,6 @@ msgid "Global CC" msgstr "Globalne DW" #. 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 @@ -2952,7 +2953,7 @@ msgid "Working Hours" msgstr "Godziny pracy" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/pt.po b/addons/crm/i18n/pt.po index fe95126e2e0..6822a5a7fc8 100644 --- a/addons/crm/i18n/pt.po +++ b/addons/crm/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-16 05:09+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:01+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -27,9 +27,11 @@ msgid "" "Allows you to configure your incoming mail server, and create leads from " "incoming emails." msgstr "" +"Permite-lhe configurar o seu servidor de correio de entrada, e criar " +"prospectos a partir destes emails de entrada." #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -64,7 +66,7 @@ msgstr "Ação" #. module: crm #: model:ir.actions.server,name:crm.action_set_team_sales_department msgid "Set team to Sales Department" -msgstr "" +msgstr "Definir equipa para Departamento de Vendas" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 @@ -123,7 +125,7 @@ msgstr "Formação" #: 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 Venda" #. module: crm #: view:crm.lead.report:0 @@ -135,7 +137,7 @@ msgstr "Exp. encerramento" #: help:crm.lead,message_unread:0 #: help:crm.phonecall,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Se marcado, as novas mensagens requerem a sua atenção." #. module: crm #: help:crm.lead.report,creation_day:0 @@ -151,7 +153,7 @@ msgstr "Nome da Regra" #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "It's only possible to convert one phonecall at a time." -msgstr "" +msgstr "Só é possível converter uma chamada telefónica de cada vez." #. module: crm #: view:crm.case.resource.type:0 @@ -183,8 +185,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -232,7 +234,7 @@ msgstr "Estado" #. module: crm #: field:res.partner,meeting_count:0 msgid "# Meetings" -msgstr "" +msgstr "Nº Reuniões" #. module: crm #: model:ir.actions.server,name:crm.action_email_reminder_lead @@ -252,7 +254,7 @@ msgstr "Respostas excluídas :" #. module: crm #: model:ir.model,name:crm.model_crm_merge_opportunity msgid "Merge opportunities" -msgstr "" +msgstr "Fundir oportunidades" #. module: crm #: view:crm.lead.report:0 @@ -295,7 +297,7 @@ msgid "Prospect Partner" msgstr "Parceiro potencial" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Sem assunto" @@ -327,6 +329,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para definir uma nova segmentação de cliente.\n" +"

\n" +" Criar categorias específicas as quais possa atribuir aos " +"seus\n" +" contactos para melhor gerir a sua interacção com os mesmos. " +"A\n" +" ferramenta de segmentação pode atribuir categorias a " +"contactos de acordo com critério por si definido.\n" +"

\n" +" " #. module: crm #: field:crm.opportunity2phonecall,contact_name:0 @@ -379,12 +392,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar uma oportunidade relacionada com este " +"cliente.\n" +"

\n" +" Use oportunidades para rastrear as suas vendas, seguir \n" +" potenciais vendas e melhor prever as suas futuras receitas.\n" +"

\n" +" Poderá planear reuniões e chamadas telefónicas a partir de \n" +" oportunidades, convertê-las em cotações, anexar documentos\n" +" relacionados, acompanhar todas as discussões, e muito mais.\n" +"

\n" +" " #. module: crm #: model:crm.case.stage,name:crm.stage_lead7 #: view:crm.lead:0 msgid "Dead" -msgstr "" +msgstr "Inactivo" #. module: crm #: field:crm.case.section,message_unread:0 @@ -406,7 +431,7 @@ msgstr "Segmentação" #: selection:crm.lead2opportunity.partner.mass,action:0 #: selection:crm.partner.binding,action:0 msgid "Link to an existing customer" -msgstr "" +msgstr "Associar a um cliente existente" #. module: crm #: field:crm.lead,write_date:0 @@ -443,7 +468,7 @@ msgid "#Opportunities" msgstr "#Oportunidades" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -471,6 +496,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para definir uma nova equipa de vendas.\n" +"

\n" +" Use equipas de vendas para organizar os seus vendedores ou\n" +" departamentos em equipas distintas. Cada equipa trabalhará " +"com \n" +" base na sua lista específica de oportunidades.\n" +"

\n" +" " #. module: crm #: model:process.transition,note:crm.process_transition_opportunitymeeting0 @@ -509,7 +543,7 @@ msgstr "Mailings" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_stage msgid "Stage changed" -msgstr "" +msgstr "Estado alterado" #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -554,6 +588,10 @@ msgid "" " If the call needs to be done then the status is set " "to 'Not Held'." msgstr "" +"O estado é definido para 'Por Fazer', quando um caso é criado. Se o caso " +"está em progresso o estado é definido para 'Aberto'. Quando a chamada " +"termina, o estado é definido para 'Segurado'. Se a chamada tem que ser feita " +"o estado é definido para 'Não Segurado'." #. module: crm #: field:crm.case.section,message_summary:0 @@ -588,6 +626,8 @@ msgid "" "Reminder on Lead: [[object.id ]] [[object.partner_id and 'of ' " "+object.partner_id.name or '']]" msgstr "" +"Lembrete relativo ao Prospecto: [[object.id ]] [[object.partner_id and 'of ' " +"+object.partner_id.name or '']]" #. module: crm #: view:crm.segmentation:0 @@ -707,7 +747,7 @@ msgstr "Probabilidade (%)" #. module: crm #: sql_constraint:crm.lead:0 msgid "The probability of closing the deal should be between 0% and 100%!" -msgstr "" +msgstr "A probabilidade de fechar negócio tem que ser entre 0% e 100%!" #. module: crm #: view:crm.lead:0 @@ -720,7 +760,7 @@ msgid "Statistics Dashboard" msgstr "Painel estatístico" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -768,6 +808,7 @@ msgstr "Pesquisar telefonemas" msgid "" "Leads/Opportunities that are assigned to one of the sale teams I manage" msgstr "" +"Prospectos/Oportunidades atribuídas a uma das minhas equipas de vendas." #. module: crm #: field:calendar.attendee,categ_id:0 @@ -780,7 +821,7 @@ msgid "Exclusive" msgstr "Exclusivo" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "De %s: %s" @@ -874,7 +915,7 @@ msgstr "Marcar como ganho" #. module: crm #: model:ir.filters,name:crm.filter_usa_lead msgid "Leads from USA" -msgstr "" +msgstr "Prospectos dos EUA" #. module: crm #: view:crm.lead:0 @@ -884,7 +925,7 @@ msgstr "Marcar como perdido" #. module: crm #: model:ir.filters,name:crm.filter_draft_lead msgid "Draft Leads" -msgstr "" +msgstr "Prospectos Rascunho" #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -950,10 +991,10 @@ msgid "Next Action" msgstr "Próxima Ação" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." -msgstr "" +msgstr "Parceiro definido para %s." #. module: crm #: selection:crm.lead.report,state:0 @@ -993,6 +1034,9 @@ msgid "" "Allows you to track your customers/suppliers claims and grievances.\n" " This installs the module crm_claim." msgstr "" +"Permite-lhe seguir as reivindicações e reclamações dos seus " +"clientes/fornecedores.\n" +" Isto instala o módulo crm_claim." #. module: crm #: model:crm.case.stage,name:crm.stage_lead6 @@ -1040,10 +1084,10 @@ msgid "Creation Date" msgstr "Data de Criação" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" -msgstr "" +msgstr "Prospecto convertido em Oportunidade" #. module: crm #: selection:crm.segmentation.line,expr_name:0 @@ -1095,6 +1139,8 @@ msgid "" "Allows you to communicate with Customer, process Customer query, and " "provide better help and support. This installs the module crm_helpdesk." msgstr "" +"Permite-lhe comunicar com o Cliente, processar consulta do Cliente, e " +"providenciar melhor ajuda e suporte. Isto instala o módulo crm_helpdesk." #. module: crm #: view:crm.lead:0 @@ -1104,12 +1150,12 @@ msgstr "Apagar" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_create msgid "Opportunity created" -msgstr "" +msgstr "Oportunidade criada" #. module: crm #: view:crm.lead:0 msgid "í" -msgstr "" +msgstr "í" #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -1203,12 +1249,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 é usado para distinguir estágios dos Prospectos dos estágios das " +"Oportunidades, ou para especificar estágios disponíveis simultaneamente para " +"Prospecto e Oportunidades." #. 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 "Prospecto Criado" #. module: crm #: help:crm.segmentation,sales_purchase_active:0 @@ -1235,7 +1284,9 @@ msgid "Days to Close" msgstr "Dias para fechar" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "desconhecido" @@ -1283,6 +1334,10 @@ msgid "" "set to 'Done'. If the case needs to be reviewed then the Status is set to " "'Pending'." msgstr "" +"O Estado é definido como 'Rascunho', quando um caso é criado. Se o caso está " +"em progresso o Estado é definido como 'Aberto'. Quando o caso for encerrado " +"o Estado é definido para 'Feito'. Se o caso precisa de ser revisto o caso é " +"definido para 'Pendente'." #. module: crm #: model:crm.case.section,name:crm.crm_case_section_1 @@ -1308,6 +1363,8 @@ msgid "" "Phone Calls Assigned to the current user or with a team having the current " "user as team leader" msgstr "" +"Chamadas Telefónicas Atribuídas ao utilizador actual ou com uma equipa em " +"que o utilizador actual é o líder da equipa" #. module: crm #: view:crm.segmentation:0 @@ -1320,7 +1377,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Oportunidades intercaladas" @@ -1393,7 +1450,7 @@ msgstr "A Fazer" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_lost msgid "Opportunity lost" -msgstr "" +msgstr "Oportunidade perdida" #. module: crm #: field:crm.lead2opportunity.partner,action:0 @@ -1417,7 +1474,7 @@ msgstr "Prospecto / Oportunidade" #: 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 "Fundir prospectos/oportunidades" #. module: crm #: help:crm.case.stage,sequence:0 @@ -1442,7 +1499,7 @@ msgstr "Utilizadores" #. module: crm #: model:mail.message.subtype,name:crm.mt_lead_stage msgid "Stage Changed" -msgstr "" +msgstr "Estágio Alterado" #. module: crm #: field:crm.case.stage,section_ids:0 @@ -1496,7 +1553,7 @@ msgstr "Nome" #. module: crm #: view:crm.lead.report:0 msgid "Leads/Opportunities that are assigned to me" -msgstr "" +msgstr "Prospectos/oportunidades atribuídas a mim" #. module: crm #: field:crm.lead.report,date_closed:0 @@ -1566,7 +1623,7 @@ msgstr "Agrupar por..." #. module: crm #: view:crm.merge.opportunity:0 msgid "Merge Leads/Opportunities" -msgstr "" +msgstr "Reunir Prospectos/Oportunidades" #. module: crm #: field:crm.case.section,parent_id:0 @@ -1578,7 +1635,7 @@ msgstr "Equipa pai" #: selection:crm.lead2opportunity.partner.mass,action:0 #: selection:crm.partner.binding,action:0 msgid "Do not link to a customer" -msgstr "" +msgstr "Não relacionar com um cliente" #. module: crm #: field:crm.lead,date_action:0 @@ -1592,6 +1649,10 @@ msgid "" "stage. For example, if a stage is related to the status 'Close', when your " "document reaches this stage, it is automatically closed." msgstr "" +"O estado do seu documento irá mudar automaticamente em função do estágio " +"seleccionado. Por exemplo, se um estágio está relacionado com o estado " +"'Fechado', quando o seu documento alcançar este estágio, o mesmo será " +"automaticamente fechado." #. module: crm #: view:crm.lead2opportunity.partner.mass:0 @@ -1617,7 +1678,7 @@ msgstr "O parceiro foi criado." #. module: crm #: field:sale.config.settings,module_crm_claim:0 msgid "Manage Customer Claims" -msgstr "" +msgstr "Gerir Reclamações dos Clientes" #. module: crm #: model:ir.actions.act_window,help:crm.action_report_crm_lead @@ -1720,7 +1781,7 @@ msgstr "Google Adwords" #. module: crm #: view:crm.case.section:0 msgid "Select Stages for this Sales Team" -msgstr "" +msgstr "Seleccionar estágios desta Equipa de Vendas" #. module: crm #: view:crm.lead:0 @@ -1742,6 +1803,8 @@ msgstr "Parceiro de prospecto para oportunidade" #: help:crm.lead,partner_id:0 msgid "Linked partner (optional). Usually created when converting the lead." msgstr "" +"Parceiro relacionado (opcional). Geralmente criado na conversão para " +"prospecto." #. module: crm #: field:crm.lead,payment_mode:0 @@ -1758,7 +1821,7 @@ msgstr "Prospecto em bruto para oportunidade parceiro" #. module: crm #: view:sale.config.settings:0 msgid "On Mail Server" -msgstr "" +msgstr "No Servidor de Email" #. module: crm #: model:ir.actions.act_window,name:crm.open_board_statistical_dash @@ -1770,7 +1833,7 @@ msgstr "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 "Segmentação de Contactos" #. module: crm #: model:process.node,note:crm.process_node_meeting0 @@ -1885,15 +1948,15 @@ msgid "Leads" msgstr "Prospectos" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" -msgstr "" +msgstr "Prospectos fundidos" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor5 msgid "Design" -msgstr "" +msgstr "Design" #. module: crm #: selection:crm.lead2opportunity.partner,name:0 @@ -1911,7 +1974,7 @@ msgstr "A fazer" #: 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 "Prospecto para Oportunidade" #. module: crm #: field:crm.lead,user_email:0 @@ -1924,6 +1987,8 @@ msgid "" "The name of the future partner company that will be created while converting " "the lead into opportunity" msgstr "" +"O nome da futura empresa parceira que será criada ao converter o prospecto " +"em oportunidade" #. module: crm #: field:crm.opportunity2phonecall,note:0 @@ -1957,7 +2022,7 @@ msgstr "Oportunidades Abertas" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead2 msgid "Email Campaign - Services" -msgstr "" +msgstr "Campanha de Email - Serviços" #. module: crm #: selection:crm.case.stage,state:0 @@ -1979,7 +2044,6 @@ msgid "Global CC" msgstr "Global CC" #. 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 @@ -2040,7 +2104,7 @@ msgstr "Exp. Dia de encerramento" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor2 msgid "Software" -msgstr "" +msgstr "Software" #. module: crm #: field:crm.case.section,change_responsible:0 @@ -2075,12 +2139,12 @@ msgstr "Cidade" #. module: crm #: selection:crm.case.stage,type:0 msgid "Both" -msgstr "" +msgstr "Ambos" #. module: crm #: view:crm.phonecall:0 msgid "Call Done" -msgstr "" +msgstr "Chamada Realizada" #. module: crm #: view:crm.phonecall:0 @@ -2126,6 +2190,8 @@ msgid "" "The email address associated with this team. New emails received will " "automatically create new leads assigned to the team." msgstr "" +"O endereço de email associado a esta equipa. Os novos emails recebidos irão " +"automaticamente criar novos prospectos atribuídos à equipa." #. module: crm #: view:crm.lead:0 @@ -2226,6 +2292,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 "" +"Este estágio não é visível, por exemplo na barra de estado ou na vista " +"kanban, quando não existirem registos a exibir naquele estado." #. module: crm #: field:crm.lead.report,nbr:0 @@ -2241,12 +2309,12 @@ msgstr "Equipa de vendas a que pertence a caso." #. module: crm #: model:crm.case.resource.type,name:crm.type_lead6 msgid "Banner Ads" -msgstr "" +msgstr "Anúncios no banner" #. module: crm #: field:crm.merge.opportunity,opportunity_ids:0 msgid "Leads/Opportunities" -msgstr "" +msgstr "Prospectos/Oportunidades" #. module: crm #: field:crm.lead,fax:0 @@ -2271,7 +2339,7 @@ msgstr "Em Execução" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_convert_to_opportunity msgid "Lead converted into an opportunity" -msgstr "" +msgstr "Prospecto convertido em oportunidade" #. module: crm #: view:crm.lead:0 @@ -2281,7 +2349,7 @@ msgstr "Prospectos não atribuídos" #. module: crm #: model:mail.message.subtype,description:crm.mt_lead_won msgid "Opportunity won" -msgstr "" +msgstr "Oportunidade ganha" #. module: crm #: field:crm.case.categ,object_id:0 @@ -2291,7 +2359,7 @@ msgstr "Nome do Objeto" #. module: crm #: view:crm.phonecall:0 msgid "Phone Calls Assigned to Me or My Team(s)" -msgstr "" +msgstr "Chamadas telefónicas atribuídas a mim ou minha(s) equipa(s)" #. module: crm #: view:crm.lead:0 @@ -2356,7 +2424,7 @@ msgstr "" #. module: crm #: field:crm.case.stage,state:0 msgid "Related Status" -msgstr "" +msgstr "Estado Relacionado" #. module: crm #: field:crm.phonecall,name:0 @@ -2377,7 +2445,7 @@ msgstr "Horário/Registo de Chamadas" #. module: crm #: view:crm.merge.opportunity:0 msgid "Select Leads/Opportunities" -msgstr "" +msgstr "Seleccionar Prospectos/Oportunidades" #. module: crm #: selection:crm.phonecall,state:0 @@ -2442,7 +2510,7 @@ msgstr "" #. module: crm #: field:sale.config.settings,fetchmail_lead:0 msgid "Create leads from incoming mails" -msgstr "" +msgstr "Criar prospectos a partir de emails recebidos" #. module: crm #: view:crm.lead:0 @@ -2493,7 +2561,7 @@ msgstr "Criar oportunidades de negócios a partir de prospectos" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead3 msgid "Email Campaign - Products" -msgstr "" +msgstr "Campanha de Email - Produtos" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_categ_phone_incoming0 @@ -2542,7 +2610,7 @@ msgstr "Qualificação" #: field:crm.lead2opportunity.partner,name:0 #: field:crm.lead2opportunity.partner.mass,name:0 msgid "Conversion Action" -msgstr "" +msgstr "Acção de Conversão" #. module: crm #: model:ir.actions.act_window,help:crm.crm_lead_categ_action @@ -2570,7 +2638,7 @@ msgstr "Agosto" #: model:mail.message.subtype,name:crm.mt_lead_lost #: model:mail.message.subtype,name:crm.mt_salesteam_lead_lost msgid "Opportunity Lost" -msgstr "" +msgstr "Oportunidade perdida" #. module: crm #: field:crm.lead.report,deadline_month:0 @@ -2636,7 +2704,7 @@ msgstr "Membros da equipa" #: view:crm.opportunity2phonecall:0 #: view:crm.phonecall2phonecall:0 msgid "Schedule/Log a Call" -msgstr "" +msgstr "Agendar/Registar uma Chamada" #. module: crm #: field:crm.lead,planned_cost:0 @@ -2646,7 +2714,7 @@ msgstr "Custos Previstos" #. module: crm #: help:crm.lead,date_deadline:0 msgid "Estimate of the date on which the opportunity will be won." -msgstr "" +msgstr "Data estimada em que a oportunidade estará ganha." #. module: crm #: help:crm.lead,email_cc:0 @@ -2710,7 +2778,7 @@ msgstr "Rua 2" #. module: crm #: field:sale.config.settings,module_crm_helpdesk:0 msgid "Manage Helpdesk and Support" -msgstr "" +msgstr "Gerir Suporte" #. module: crm #: field:crm.lead.report,delay_open:0 @@ -2920,7 +2988,7 @@ msgid "Working Hours" msgstr "Horário de trabalho" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 @@ -2952,6 +3020,7 @@ msgstr "Perdido" #, python-format msgid "Closed/Cancelled leads cannot be converted into opportunities." msgstr "" +"Prospectos Fechados/Cancelados não podem ser convertidos em oportunidades." #. module: crm #: view:crm.lead:0 diff --git a/addons/crm/i18n/pt_BR.po b/addons/crm/i18n/pt_BR.po index 62e1e27bef2..11d3843d0d4 100644 --- a/addons/crm/i18n/pt_BR.po +++ b/addons/crm/i18n/pt_BR.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-16 05:09+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:01+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 msgid "# Leads" -msgstr "Nº de Prospectos" +msgstr "# Prospectos" #. module: crm #: help:sale.config.settings,fetchmail_lead:0 @@ -32,7 +32,7 @@ msgstr "" "para e-mails recebidos." #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -194,8 +194,8 @@ msgstr "" "kanban." #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -297,7 +297,7 @@ msgid "" "If opt-out is checked, this contact has refused to receive emails or " "unsubscribed to a campaign." msgstr "" -"Se Opt_out for marcado, este contato recusou receber e-mails ou inscrições " +"Se Opt-out for marcado, este contato recusou receber e-mails ou inscrições " "para uma campanha." #. module: crm @@ -306,7 +306,7 @@ msgid "Prospect Partner" msgstr "Parceiro do Prospecto" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Sem Assunto" @@ -478,10 +478,10 @@ msgstr "Categoria" #. module: crm #: view:crm.lead.report:0 msgid "#Opportunities" -msgstr "Nº de Oportunidades" +msgstr "# Oportunidades" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -654,7 +654,7 @@ msgstr "Opções de Categorização" #. module: crm #: view:crm.phonecall.report:0 msgid "#Phone calls" -msgstr "Nº de Ligações Telefônicas" +msgstr "#Ligações Telefônicas" #. module: crm #: sql_constraint:crm.case.section:0 @@ -777,7 +777,7 @@ msgid "Statistics Dashboard" msgstr "Painel de Estatísticas" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -839,7 +839,7 @@ msgid "Exclusive" msgstr "Exclusivo" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "De %s : %s" @@ -1011,7 +1011,7 @@ msgid "Next Action" msgstr "Próxima Ação" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "Parceiro definido para %s." @@ -1103,7 +1103,7 @@ msgid "Creation Date" msgstr "Data de Criação" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "Prospecto convertido em uma Oportunidade" @@ -1314,7 +1314,9 @@ msgid "Days to Close" msgstr "Dias para Concluir" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "desconhecido" @@ -1404,7 +1406,7 @@ msgid "Lead Description" msgstr "Descrição do Prospecto" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Oportunidades mescladas" @@ -1617,7 +1619,7 @@ msgstr "Criação" #: selection:crm.phonecall,priority:0 #: selection:crm.phonecall.report,priority:0 msgid "High" -msgstr "Alto" +msgstr "Alta" #. module: crm #: model:process.node,note:crm.process_node_partner0 @@ -1645,7 +1647,7 @@ msgstr "Adiar Fechamento" #: view:crm.phonecall:0 #: view:crm.phonecall.report:0 msgid "Group By..." -msgstr "Agrupar Por..." +msgstr "Agrupar por..." #. module: crm #: view:crm.merge.opportunity:0 @@ -1730,7 +1732,7 @@ msgstr "Serviços" #: selection:crm.phonecall,priority:0 #: selection:crm.phonecall.report,priority:0 msgid "Highest" -msgstr "Mais Alto" +msgstr "Máxima" #. module: crm #: help:crm.lead.report,creation_year:0 @@ -1978,7 +1980,7 @@ msgid "Leads" msgstr "Prospectos" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "Prospectos Mesclados" @@ -2074,7 +2076,6 @@ msgid "Global CC" msgstr "CC Global" #. 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 @@ -3090,7 +3091,7 @@ msgid "Working Hours" msgstr "Horário de Trabalho" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/ro.po b/addons/crm/i18n/ro.po index ebbf4808e5c..abaaa61b6d2 100644 --- a/addons/crm/i18n/ro.po +++ b/addons/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-16 05:09+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:01+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -31,7 +31,7 @@ msgstr "" "din email-urile primite." #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -192,8 +192,8 @@ msgstr "" "in format HTML, icu scopul de a se introduce in vizualizari kanban." #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -304,7 +304,7 @@ msgid "Prospect Partner" msgstr "Partener in perspectiva" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Nici un subiect" @@ -483,7 +483,7 @@ msgid "#Opportunities" msgstr "#Oportunitati" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -780,7 +780,7 @@ msgid "Statistics Dashboard" msgstr "Statistica Tablou de bord" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -842,7 +842,7 @@ msgid "Exclusive" msgstr "Exclusiv" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "De la %s: %s" @@ -1014,7 +1014,7 @@ msgid "Next Action" msgstr "Urmatoarea actiune" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "Partener setati ca %s." @@ -1107,7 +1107,7 @@ msgid "Creation Date" msgstr "Data Crearii" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "Pista transformata intr-o Oportunitate" @@ -1322,7 +1322,9 @@ msgid "Days to Close" msgstr "Zile pana la inchidere" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "necunoscut(a)" @@ -1413,7 +1415,7 @@ msgid "Lead Description" msgstr "Descrierea Pistei" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Oportunitati imbinate" @@ -1988,7 +1990,7 @@ msgid "Leads" msgstr "Piste" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "Piste imbinate" @@ -2084,7 +2086,6 @@ msgid "Global CC" msgstr "CC global" #. 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 @@ -3106,7 +3107,7 @@ msgid "Working Hours" msgstr "Program de lucru" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/ru.po b/addons/crm/i18n/ru.po index 0029293866c..13ac1bf4cb5 100644 --- a/addons/crm/i18n/ru.po +++ b/addons/crm/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-06-07 05:48+0000\n" -"X-Generator: Launchpad (build 16667)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:01+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -31,7 +31,7 @@ msgstr "" "входящих сообщений электронной почты." #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -192,8 +192,8 @@ msgstr "" "html для возможности использования в канбан виде" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -304,7 +304,7 @@ msgid "Prospect Partner" msgstr "Перспективный партнер" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Без темы" @@ -453,7 +453,7 @@ msgid "#Opportunities" msgstr "# Предложений" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -541,7 +541,7 @@ msgstr "Планируемая выручка" #. module: crm #: field:crm.lead,planned_revenue:0 msgid "Expected Revenue" -msgstr "Ожидаемая прибыль" +msgstr "Ожидаемая выручка" #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -724,7 +724,7 @@ msgid "Statistics Dashboard" msgstr "Панель статистики" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -785,7 +785,7 @@ msgid "Exclusive" msgstr "Эксклюзивный" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "От %s : %s" @@ -955,7 +955,7 @@ msgid "Next Action" msgstr "Следующее действие" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "Партнер установлен как %s." @@ -1047,7 +1047,7 @@ msgid "Creation Date" msgstr "Дата создания" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "Кандидат преобразован в Предложение" @@ -1244,7 +1244,9 @@ msgid "Days to Close" msgstr "Дней до закрытия" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "неизвестный" @@ -1329,7 +1331,7 @@ msgid "Lead Description" msgstr "Описание кандидата" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Объединенные предложения" @@ -1896,7 +1898,7 @@ msgid "Leads" msgstr "Кандидаты" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "Объединенные кандидаты" @@ -1992,7 +1994,6 @@ 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 @@ -2904,7 +2905,7 @@ msgstr "" #. module: crm #: view:crm.lead:0 msgid "Internal Notes" -msgstr "Внутренние заметки" +msgstr "Внутренние примечания" #. module: crm #: view:crm.lead:0 @@ -2937,7 +2938,7 @@ msgid "Working Hours" msgstr "Рабочие часы" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/sk.po b/addons/crm/i18n/sk.po index 56c5ef3aae0..711b60224f8 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-16 05:09+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:01+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -30,7 +30,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -184,8 +184,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -296,7 +296,7 @@ msgid "Prospect Partner" msgstr "Potenciálny partner" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "" @@ -440,7 +440,7 @@ msgid "#Opportunities" msgstr "#Príležitostí" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -707,7 +707,7 @@ msgid "Statistics Dashboard" msgstr "Nástenka štatistík" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -767,7 +767,7 @@ msgid "Exclusive" msgstr "Exkluzívny" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -935,7 +935,7 @@ msgid "Next Action" msgstr "Ďalšie akcie" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1025,7 +1025,7 @@ msgid "Creation Date" msgstr "Dátum vytvorenia" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1212,7 +1212,9 @@ msgid "Days to Close" msgstr "Dni do uzatvorenia" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "neznámy" @@ -1295,7 +1297,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1855,7 +1857,7 @@ msgid "Leads" msgstr "Iniciatívy" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1949,7 +1951,6 @@ 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 @@ -2877,7 +2878,7 @@ msgid "Working Hours" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/sl.po b/addons/crm/i18n/sl.po index 2b4814d72c8..b638002e015 100644 --- a/addons/crm/i18n/sl.po +++ b/addons/crm/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-16 05:09+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:01+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -31,7 +31,7 @@ msgstr "" "priložnosti iz prejetih e-mailov" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -135,7 +135,7 @@ msgstr "Ključne besede" #. module: crm #: view:crm.lead.report:0 msgid "Exp. Closing" -msgstr "" +msgstr "Datum zaključka" #. module: crm #: help:crm.case.section,message_unread:0 @@ -147,7 +147,7 @@ msgstr "Če je izbrano, zahtevajo nova sporočila vašo pozornost." #. module: crm #: help:crm.lead.report,creation_day:0 msgid "Creation day" -msgstr "" +msgstr "Datum kreiranja" #. module: crm #: field:crm.segmentation.line,name:0 @@ -190,8 +190,8 @@ msgid "" msgstr "Povzetek (število sporočil,..)" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -244,7 +244,7 @@ msgstr "# Sestanki" #. module: crm #: model:ir.actions.server,name:crm.action_email_reminder_lead msgid "Reminder to User" -msgstr "" +msgstr "Opomnik uporabnika" #. module: crm #: field:crm.segmentation,segmentation_line:0 @@ -300,7 +300,7 @@ msgid "Prospect Partner" msgstr "Možni partner" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Ni zadeve" @@ -444,7 +444,7 @@ msgid "#Opportunities" msgstr "#Priložnosti" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -683,7 +683,7 @@ msgstr "Verjetni prihodek" #. module: crm #: help:crm.lead.report,creation_month:0 msgid "Creation month" -msgstr "" +msgstr "Mesec nastanka" #. module: crm #: help:crm.segmentation,name:0 @@ -711,7 +711,7 @@ msgid "Statistics Dashboard" msgstr "Statistična nadzorna plošča" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -771,7 +771,7 @@ msgid "Exclusive" msgstr "Ekskluzivno" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "Od %s : %s" @@ -822,7 +822,7 @@ msgstr "Pošta" #. module: crm #: view:crm.phonecall:0 msgid "Unassigned Phonecalls" -msgstr "" +msgstr "Ne-dodeljeni klici" #. module: crm #: view:crm.lead:0 @@ -939,7 +939,7 @@ msgid "Next Action" msgstr "Naslednje dejanje" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1029,7 +1029,7 @@ msgid "Creation Date" msgstr "Ustvarjeno dne" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1056,7 +1056,7 @@ msgstr "Stopnja" #. module: crm #: view:crm.phonecall.report:0 msgid "Phone Calls that are assigned to me" -msgstr "" +msgstr "Klici dodeljeni meni" #. module: crm #: field:crm.lead,user_login:0 @@ -1171,14 +1171,14 @@ msgstr "Pričakovan datum zaključka" msgid "" "If the active field is set to true, it will allow you to hide the sales team " "without removing it." -msgstr "" +msgstr "De-aktiviranje skupine" #. 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 "Privzeta faza za nove skupine" #. module: crm #: help:crm.case.stage,type:0 @@ -1216,7 +1216,9 @@ msgid "Days to Close" msgstr "" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "neznano" @@ -1299,7 +1301,7 @@ msgid "Lead Description" msgstr "Opis" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1322,7 +1324,7 @@ msgstr "Možnosti" #. module: crm #: field:crm.case.section,child_ids:0 msgid "Child Teams" -msgstr "" +msgstr "Podrejene ekipe" #. module: crm #: view:crm.phonecall.report:0 @@ -1859,7 +1861,7 @@ msgid "Leads" msgstr "Potencialne priložnosti" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1953,7 +1955,6 @@ 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 @@ -2881,7 +2882,7 @@ msgid "Working Hours" msgstr "Delovne ure" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/sq.po b/addons/crm/i18n/sq.po index 25e03d0f2a7..b55cfc14914 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-16 05:07+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:59+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -30,7 +30,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -184,8 +184,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -294,7 +294,7 @@ msgid "Prospect Partner" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "" @@ -438,7 +438,7 @@ msgid "#Opportunities" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -705,7 +705,7 @@ msgid "Statistics Dashboard" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -765,7 +765,7 @@ msgid "Exclusive" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -933,7 +933,7 @@ msgid "Next Action" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1023,7 +1023,7 @@ msgid "Creation Date" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1210,7 +1210,9 @@ msgid "Days to Close" msgstr "" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "" @@ -1293,7 +1295,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1853,7 +1855,7 @@ msgid "Leads" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1947,7 +1949,6 @@ 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 @@ -2875,7 +2876,7 @@ msgid "Working Hours" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/sr.po b/addons/crm/i18n/sr.po index 4412e9f36a2..6820590eeb9 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-16 05:09+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:01+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -30,7 +30,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -184,8 +184,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -296,7 +296,7 @@ msgid "Prospect Partner" msgstr "Prospekt Partnera" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "" @@ -444,7 +444,7 @@ msgid "#Opportunities" msgstr "# Prilike" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -713,7 +713,7 @@ msgid "Statistics Dashboard" msgstr "Glavna Tabla Statistike" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -773,7 +773,7 @@ msgid "Exclusive" msgstr "Eksluzivno" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -941,7 +941,7 @@ msgid "Next Action" msgstr "Sledeca Akcija" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1031,7 +1031,7 @@ msgid "Creation Date" msgstr "Datum Kreiranja" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1222,7 +1222,9 @@ msgid "Days to Close" msgstr "Dana do Zatvaranja" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "Nepoznato" @@ -1305,7 +1307,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1865,7 +1867,7 @@ msgid "Leads" msgstr "Tragovi" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1959,7 +1961,6 @@ msgid "Global CC" msgstr "Globalno CC" #. 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 @@ -2894,7 +2895,7 @@ msgid "Working Hours" msgstr "Radnih Sati" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/sr@latin.po b/addons/crm/i18n/sr@latin.po index fbddb874303..4b89caaaafd 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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -30,7 +30,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -184,8 +184,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -296,7 +296,7 @@ msgid "Prospect Partner" msgstr "Prospekt Partnera" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "" @@ -444,7 +444,7 @@ msgid "#Opportunities" msgstr "# Prilike" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -713,7 +713,7 @@ msgid "Statistics Dashboard" msgstr "Glavna Tabla Statistike" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -773,7 +773,7 @@ msgid "Exclusive" msgstr "Eksluzivno" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -941,7 +941,7 @@ msgid "Next Action" msgstr "Sledeca Akcija" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1031,7 +1031,7 @@ msgid "Creation Date" msgstr "Datum Kreiranja" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1222,7 +1222,9 @@ msgid "Days to Close" msgstr "Dana do Zatvaranja" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "Nepoznato" @@ -1305,7 +1307,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1865,7 +1867,7 @@ msgid "Leads" msgstr "Tragovi" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1959,7 +1961,6 @@ msgid "Global CC" msgstr "Globalno CC" #. 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 @@ -2894,7 +2895,7 @@ msgid "Working Hours" msgstr "Radnih Sati" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/sv.po b/addons/crm/i18n/sv.po index feb4fe694df..90045f1f726 100644 --- a/addons/crm/i18n/sv.po +++ b/addons/crm/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-16 05:09+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:01+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -29,7 +29,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -183,8 +183,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -295,7 +295,7 @@ msgid "Prospect Partner" msgstr "Samarbetspartner" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Ingen rubrik" @@ -441,7 +441,7 @@ msgid "#Opportunities" msgstr "# Affärsmöjligheter" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -710,7 +710,7 @@ msgid "Statistics Dashboard" msgstr "Statistikinfopanel" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -770,7 +770,7 @@ msgid "Exclusive" msgstr "Exclusive" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "Från %s: %s" @@ -938,7 +938,7 @@ msgid "Next Action" msgstr "Nästa åtgärd" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1028,7 +1028,7 @@ msgid "Creation Date" msgstr "Skapad datum" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1222,7 +1222,9 @@ msgid "Days to Close" msgstr "Dagar i behandling" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "okänd" @@ -1305,7 +1307,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Sammanslagna affärsmöjligheter" @@ -1870,7 +1872,7 @@ msgid "Leads" msgstr "Kundämnen" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1964,7 +1966,6 @@ msgid "Global CC" msgstr "Global kopia" #. 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 @@ -2903,7 +2904,7 @@ msgid "Working Hours" msgstr "Arbetstimmar" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/th.po b/addons/crm/i18n/th.po index 99c347c9ed3..198de25ecd8 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-07-25 05:13+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:01+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -2386,7 +2386,7 @@ msgstr "หัวข้อ" #. module: crm #: selection:crm.segmentation.line,operator:0 msgid "Optional Expression" -msgstr "" +msgstr "เงื่อนไขเพิ่มเติม" #. module: crm #: field:crm.case.section,message_follower_ids:0 diff --git a/addons/crm/i18n/tlh.po b/addons/crm/i18n/tlh.po index b1484ff472a..1996bda8b0a 100644 --- a/addons/crm/i18n/tlh.po +++ b/addons/crm/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-16 05:09+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:01+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -29,7 +29,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -183,8 +183,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -293,7 +293,7 @@ msgid "Prospect Partner" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "" @@ -437,7 +437,7 @@ msgid "#Opportunities" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -704,7 +704,7 @@ msgid "Statistics Dashboard" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -764,7 +764,7 @@ msgid "Exclusive" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -932,7 +932,7 @@ msgid "Next Action" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1022,7 +1022,7 @@ msgid "Creation Date" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1209,7 +1209,9 @@ msgid "Days to Close" msgstr "" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "" @@ -1292,7 +1294,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1852,7 +1854,7 @@ msgid "Leads" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1946,7 +1948,6 @@ 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 @@ -2874,7 +2875,7 @@ msgid "Working Hours" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/tr.po b/addons/crm/i18n/tr.po index 5b103c087d9..7597c3e69f2 100644 --- a/addons/crm/i18n/tr.po +++ b/addons/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-16 05:09+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:01+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -31,7 +31,7 @@ msgstr "" "oluşturmanızı sağlar." #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -192,8 +192,8 @@ msgstr "" "görünümlerine eklenmek üzere doğrudan html formatındadır." #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -236,7 +236,7 @@ msgstr "Çekildi" #: view:crm.lead:0 #: field:crm.lead,state_id:0 msgid "State" -msgstr "Durum" +msgstr "Bölge" #. module: crm #: field:res.partner,meeting_count:0 @@ -304,7 +304,7 @@ msgid "Prospect Partner" msgstr "Olası İş Ortağı" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "Konu Yok" @@ -480,7 +480,7 @@ msgid "#Opportunities" msgstr "Fırsat Sayısı" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -774,7 +774,7 @@ msgid "Statistics Dashboard" msgstr "İstatistik Kontrol Paneli" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -834,7 +834,7 @@ msgid "Exclusive" msgstr "Ayrıcalıklı" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "%s den: %s" @@ -1004,7 +1004,7 @@ msgid "Next Action" msgstr "Sonraki Eylem" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "İş Ortağını buna ayarla %s." @@ -1055,7 +1055,7 @@ msgstr "" #: model:crm.case.stage,name:crm.stage_lead6 #: view:crm.lead:0 msgid "Won" -msgstr "Kazanıldı" +msgstr "Kazanılma" #. module: crm #: field:crm.lead.report,delay_expected:0 @@ -1097,7 +1097,7 @@ msgid "Creation Date" msgstr "Oluşturma Tarihi" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "Aday Fırsata Dönüştü" @@ -1134,7 +1134,7 @@ msgstr "Kullanıcı Girişi" #. module: crm #: view:crm.phonecall.report:0 msgid "Phone calls which are in pending state" -msgstr "Bekleme durumundaki telefon çağrıları" +msgstr "Bekleyen durumundaki Telefon Aramaları" #. module: crm #: view:crm.case.section:0 @@ -1309,7 +1309,9 @@ msgid "Days to Close" msgstr "Kapanış için Gün Sayısı" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "bilinmeyen" @@ -1318,7 +1320,7 @@ msgstr "bilinmeyen" #: field:crm.lead,message_is_follower:0 #: field:crm.phonecall,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçi" +msgstr "Bir İzleyicidir" #. module: crm #: field:crm.opportunity2phonecall,date:0 @@ -1399,7 +1401,7 @@ msgid "Lead Description" msgstr "Aday Açıklaması" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "Birleştirilmiş fırsatlar" @@ -1971,7 +1973,7 @@ msgid "Leads" msgstr "Adaylar" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "Birleştirilen adaylar" @@ -2067,7 +2069,6 @@ msgid "Global CC" msgstr "Toplu CC" #. 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 @@ -2203,7 +2204,7 @@ msgid "" "of this team." msgstr "" "Bu takımın kullanıcılarına bağlı etkinlikleri otomatikman izlemek için bu " -"satış takımını takip edin." +"satış takımını izleyin." #. module: crm #: view:crm.lead:0 @@ -2525,7 +2526,7 @@ msgstr "Seçmel Açıklama" #: field:crm.lead,message_follower_ids:0 #: field:crm.phonecall,message_follower_ids:0 msgid "Followers" -msgstr "Takipçiler" +msgstr "İzleyiciler" #. module: crm #: model:ir.actions.act_window,help:crm.crm_case_category_act_leads_all @@ -2545,12 +2546,12 @@ msgid "" " " msgstr "" "

\n" -" Yetersiz olan bir aday oluşturmak için tıklayın.\n" +" Değerlendirilmemiş olan bir aday oluşturmak için tıklayın.\n" "

\n" " Bir fırsat ya da bir müşteri oluşturmadan önce bir " "değerlendirme\n" -" adımına gereksiniminiz varsa adayları kullanın. Aldığınız bir " -"kartvizit olabilir,\n" +" adımına gereksiniminiz olduğunda adayları kullanın. Aldığınız " +"bir kartvizit olabilir,\n" " websitenizden doldurulmuş bir iletişim formu olabilir ya da " "içeaktardığınız\n" " bir yetersiz fırsatlar dosyası olabilir, vb.\n" @@ -2671,7 +2672,7 @@ msgstr "Telefon Çağrlarım" #. module: crm #: model:crm.case.stage,name:crm.stage_lead3 msgid "Qualification" -msgstr "Yeterlilik" +msgstr "Değerlendirme Durumu" #. module: crm #: field:crm.lead2opportunity.partner,name:0 @@ -2792,7 +2793,7 @@ msgstr "Planlanan Maliyetler" #. module: crm #: help:crm.lead,date_deadline:0 msgid "Estimate of the date on which the opportunity will be won." -msgstr "Fırsatı kazanılacağı tarihin tahmin edilmesi." +msgstr "Fırsatın kazanılabileceği tarihin tahmin edilmesi." #. module: crm #: help:crm.lead,email_cc:0 @@ -3079,7 +3080,7 @@ msgid "Working Hours" msgstr "Çalışma Saatleri" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 @@ -3178,7 +3179,7 @@ msgstr "Kontrol Değişkeni" #. module: crm #: model:crm.case.stage,name:crm.stage_lead4 msgid "Proposition" -msgstr "Öneri" +msgstr "Görüşme Durumu" #. module: crm #: view:crm.phonecall:0 diff --git a/addons/crm/i18n/uk.po b/addons/crm/i18n/uk.po index 1aab70d95f3..2709395e827 100644 --- a/addons/crm/i18n/uk.po +++ b/addons/crm/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-16 05:09+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:01+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -29,7 +29,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -183,8 +183,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -293,7 +293,7 @@ msgid "Prospect Partner" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "" @@ -439,7 +439,7 @@ msgid "#Opportunities" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -706,7 +706,7 @@ msgid "Statistics Dashboard" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -766,7 +766,7 @@ msgid "Exclusive" msgstr "Ексклюзивний" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "" @@ -934,7 +934,7 @@ msgid "Next Action" msgstr "Наступна дія" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1024,7 +1024,7 @@ msgid "Creation Date" msgstr "Дата створення" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1211,7 +1211,9 @@ msgid "Days to Close" msgstr "" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "" @@ -1294,7 +1296,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1854,7 +1856,7 @@ msgid "Leads" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1948,7 +1950,6 @@ 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 @@ -2876,7 +2877,7 @@ msgid "Working Hours" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/vi.po b/addons/crm/i18n/vi.po index ae401925a9f..85d5265366a 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-16 05:09+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:01+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -30,7 +30,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -44,7 +44,7 @@ msgstr "Đầu mối" #: view:crm.lead:0 #: field:crm.lead,title:0 msgid "Title" -msgstr "" +msgstr "Tiêu đề" #. module: crm #: model:ir.actions.server,message:crm.action_email_reminder_lead @@ -96,7 +96,7 @@ msgstr "" #: view:crm.lead.report:0 #: view:crm.phonecall.report:0 msgid "Salesperson" -msgstr "" +msgstr "Nhân viên bán hàng" #. module: crm #: model:ir.model,name:crm.model_crm_lead_report @@ -113,12 +113,12 @@ msgstr "Ngày" #. module: crm #: view:crm.lead:0 msgid "Company Name" -msgstr "" +msgstr "Tên Công ty" #. module: crm #: model:crm.case.categ,name:crm.categ_oppor6 msgid "Training" -msgstr "" +msgstr "Đào tạo" #. module: crm #: model:ir.actions.act_window,name:crm.crm_lead_categ_action @@ -184,8 +184,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -253,7 +253,7 @@ msgstr "Các trả lời bị loại trừ" #. module: crm #: model:ir.model,name:crm.model_crm_merge_opportunity msgid "Merge opportunities" -msgstr "" +msgstr "Gộp các cơ hội" #. module: crm #: view:crm.lead.report:0 @@ -279,7 +279,7 @@ msgstr "Các chiến dịch" #: field:crm.lead,categ_ids:0 #: model:ir.ui.menu,name:crm.menu_crm_case_phonecall-act msgid "Categories" -msgstr "" +msgstr "Danh mục" #. module: crm #: help:crm.lead,opt_out:0 @@ -294,10 +294,10 @@ msgid "Prospect Partner" msgstr "Đối tác Tiềm năng" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" -msgstr "" +msgstr "Không có chủ đề" #. module: crm #: field:crm.lead,contact_name:0 @@ -389,7 +389,7 @@ msgstr "" #: field:crm.lead,message_unread:0 #: field:crm.phonecall,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Tin chưa đọc" #. module: crm #: view:crm.segmentation:0 @@ -413,7 +413,7 @@ msgstr "Ngày cập nhật" #. module: crm #: field:crm.case.section,user_id:0 msgid "Team Leader" -msgstr "" +msgstr "Trưởng nhóm" #. module: crm #: help:crm.case.stage,probability:0 @@ -438,7 +438,7 @@ msgid "#Opportunities" msgstr "Số lượng Cơ hội" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -479,7 +479,7 @@ msgstr "Cuộc gặp bình thường hoặc điện thoại cho cơ hội" #: view:crm.phonecall.report:0 #: field:crm.phonecall.report,state:0 msgid "Status" -msgstr "" +msgstr "Tình trạng" #. module: crm #: view:crm.lead2opportunity.partner:0 @@ -560,7 +560,7 @@ msgstr "Tóm tắt" #. module: crm #: view:crm.merge.opportunity:0 msgid "Merge" -msgstr "" +msgstr "Gộp" #. module: crm #: model:email.template,subject:crm.email_template_opportunity_mail @@ -609,7 +609,7 @@ msgstr "" #: view:crm.lead:0 #: selection:crm.lead,state:0 msgid "In Progress" -msgstr "" +msgstr "Đang tiến hành" #. module: crm #: model:ir.actions.act_window,help:crm.crm_phonecall_categ_action @@ -667,7 +667,7 @@ msgstr "" #. module: crm #: field:crm.lead,company_currency:0 msgid "Currency" -msgstr "" +msgstr "Tiền tệ" #. module: crm #: field:crm.lead.report,probable_revenue:0 @@ -705,7 +705,7 @@ msgid "Statistics Dashboard" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -721,17 +721,17 @@ msgstr "Cơ hội" #. module: crm #: model:crm.case.resource.type,name:crm.type_lead7 msgid "Television" -msgstr "" +msgstr "Tivi" #. module: crm #: model:ir.actions.act_window,name:crm.action_crm_send_mass_convert msgid "Convert to opportunities" -msgstr "" +msgstr "Chuyển thành cơ hội" #. 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 @@ -746,7 +746,7 @@ msgstr "" #. module: crm #: view:crm.phonecall:0 msgid "Search Phonecalls" -msgstr "" +msgstr "Tìm cuộc gọi" #. module: crm #: view:crm.lead.report:0 @@ -765,15 +765,15 @@ msgid "Exclusive" msgstr "Độc quyền" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" -msgstr "" +msgstr "Từ %s : %s" #. module: crm #: view:crm.lead2opportunity.partner.mass:0 msgid "Convert to Opportunities" -msgstr "" +msgstr "Chuyển thành cơ hội" #. module: crm #: view:crm.lead2opportunity.partner:0 @@ -782,7 +782,7 @@ msgstr "" #: view:crm.opportunity2phonecall:0 #: view:crm.phonecall2phonecall:0 msgid "or" -msgstr "" +msgstr "hoặc" #. module: crm #: field:crm.lead.report,create_date:0 @@ -834,7 +834,7 @@ msgstr "Các cơ hội" #. module: crm #: field:crm.segmentation,categ_id:0 msgid "Partner Category" -msgstr "" +msgstr "Danh mục đối tác" #. module: crm #: field:crm.lead,probability:0 @@ -881,7 +881,7 @@ msgstr "Tháng Ba" #. module: crm #: view:crm.lead:0 msgid "Send Email" -msgstr "" +msgstr "Gửi email" #. module: crm #: code:addons/crm/wizard/crm_lead_to_opportunity.py:89 @@ -933,7 +933,7 @@ msgid "Next Action" msgstr "Hành động kế tiếp" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1023,7 +1023,7 @@ msgid "Creation Date" msgstr "Ngày tạo" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1210,7 +1210,9 @@ msgid "Days to Close" msgstr "" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "chưa xác định" @@ -1293,7 +1295,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "" @@ -1853,7 +1855,7 @@ msgid "Leads" msgstr "Các đầu mối" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1947,7 +1949,6 @@ 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 @@ -2875,7 +2876,7 @@ msgid "Working Hours" msgstr "Giờ làm việc" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm/i18n/zh_CN.po b/addons/crm/i18n/zh_CN.po index aaac89319a8..cb965b7f78d 100644 --- a/addons/crm/i18n/zh_CN.po +++ b/addons/crm/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-08-07 04:46+0000\n" -"X-Generator: Launchpad (build 16721)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -185,7 +185,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 "保留复杂的摘要(消息数量,……等)。这一摘要直接是是HTML格式,以便插入到看板视图。" +msgstr "显示Chatter中的消息摘要(包括消息个数等)。此摘要格式为html,可直接在看板视图中显示。" #. module: crm #: code:addons/crm/crm_lead.py:640 @@ -214,7 +214,7 @@ msgstr "业务伙伴" #: 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 @@ -226,7 +226,7 @@ msgstr "电话访问" #. module: crm #: field:crm.lead,opt_out:0 msgid "Opt-Out" -msgstr "退订" +msgstr "不参与(自动订阅邮件)" #. module: crm #: view:crm.lead:0 @@ -352,7 +352,7 @@ msgstr "联系方式" #: 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 @@ -1138,7 +1138,7 @@ msgstr "商机已创建" #. module: crm #: view:crm.lead:0 msgid "í" -msgstr "" +msgstr "í" #. module: crm #: selection:crm.lead.report,creation_month:0 @@ -1799,7 +1799,7 @@ msgstr "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 diff --git a/addons/crm/i18n/zh_TW.po b/addons/crm/i18n/zh_TW.po index bcbc2a7b2a2..1a8f39a6907 100644 --- a/addons/crm/i18n/zh_TW.po +++ b/addons/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-16 05:09+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:02+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm #: view:crm.lead.report:0 @@ -29,7 +29,7 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:881 +#: code:addons/crm/crm_lead.py:898 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 #: selection:crm.lead,type:0 @@ -183,8 +183,8 @@ msgid "" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:624 -#: code:addons/crm/crm_lead.py:744 +#: code:addons/crm/crm_lead.py:640 +#: code:addons/crm/crm_lead.py:761 #: code:addons/crm/crm_phonecall.py:280 #, python-format msgid "Warning!" @@ -293,7 +293,7 @@ msgid "Prospect Partner" msgstr "潛在業務夥伴" #. module: crm -#: code:addons/crm/crm_lead.py:982 +#: code:addons/crm/crm_lead.py:1002 #, python-format msgid "No Subject" msgstr "無主題" @@ -437,7 +437,7 @@ msgid "#Opportunities" msgstr "商機數" #. module: crm -#: code:addons/crm/crm_lead.py:624 +#: code:addons/crm/crm_lead.py:640 #, python-format msgid "" "Please select more than one element (lead or opportunity) from the list view." @@ -704,7 +704,7 @@ msgid "Statistics Dashboard" msgstr "統計控制台" #. module: crm -#: code:addons/crm/crm_lead.py:861 +#: code:addons/crm/crm_lead.py:878 #: model:crm.case.stage,name:crm.stage_lead2 #: selection:crm.case.stage,type:0 #: view:crm.lead:0 @@ -764,7 +764,7 @@ msgid "Exclusive" msgstr "唯一的" #. module: crm -#: code:addons/crm/crm_lead.py:584 +#: code:addons/crm/crm_lead.py:600 #, python-format msgid "From %s : %s" msgstr "發自: %s:%s" @@ -932,7 +932,7 @@ msgid "Next Action" msgstr "下一動作" #. module: crm -#: code:addons/crm/crm_lead.py:763 +#: code:addons/crm/crm_lead.py:780 #, python-format msgid "Partner set to %s." msgstr "" @@ -1022,7 +1022,7 @@ msgid "Creation Date" msgstr "建立日期" #. module: crm -#: code:addons/crm/crm_lead.py:698 +#: code:addons/crm/crm_lead.py:715 #, python-format msgid "Lead converted into an Opportunity" msgstr "" @@ -1209,7 +1209,9 @@ msgid "Days to Close" msgstr "結束日期" #. module: crm +#: code:addons/crm/crm_lead.py:1057 #: field:crm.case.section,complete_name:0 +#, python-format msgid "unknown" msgstr "未知" @@ -1292,7 +1294,7 @@ msgid "Lead Description" msgstr "" #. module: crm -#: code:addons/crm/crm_lead.py:565 +#: code:addons/crm/crm_lead.py:581 #, python-format msgid "Merged opportunities" msgstr "合併商機" @@ -1853,7 +1855,7 @@ msgid "Leads" msgstr "潛在客戶" #. module: crm -#: code:addons/crm/crm_lead.py:563 +#: code:addons/crm/crm_lead.py:579 #, python-format msgid "Merged leads" msgstr "" @@ -1947,7 +1949,6 @@ 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 @@ -2877,7 +2878,7 @@ msgid "Working Hours" msgstr "工時" #. module: crm -#: code:addons/crm/crm_lead.py:968 +#: code:addons/crm/crm_lead.py:986 #: view:crm.lead:0 #: field:crm.lead2opportunity.partner,partner_id:0 #: field:crm.lead2opportunity.partner.mass,partner_id:0 diff --git a/addons/crm_claim/i18n/ar.po b/addons/crm_claim/i18n/ar.po index a986bb244dc..5f7840f4abc 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 8a5cb4723d9..053033edba2 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 914d8fcabf4..cd29dbbba70 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/cs.po b/addons/crm_claim/i18n/cs.po index 9c9bc7c46d0..8b1351017e3 100644 --- a/addons/crm_claim/i18n/cs.po +++ b/addons/crm_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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 3191b053667..2e644545919 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 b3139f25ec9..1ffb8bc7457 100644 --- a/addons/crm_claim/i18n/de.po +++ b/addons/crm_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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 269dc6f55ce..2070b4dc790 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 52de57feb5c..44faf7a33e7 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 b42536f8e8e..a0e447c1cd0 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: crm_claim diff --git a/addons/crm_claim/i18n/es_EC.po b/addons/crm_claim/i18n/es_EC.po index fa4a7251af5..97b35478818 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 3e321a8e7db..b22e006298a 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 b61a424b922..d53d29b1392 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 03cd18e98c8..522d9a3172c 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 @@ -52,7 +52,7 @@ msgstr "" #. module: crm_claim #: model:ir.model,name:crm_claim.model_crm_claim_stage msgid "Claim stages" -msgstr "" +msgstr "Étapes de réclamations" #. module: crm_claim #: selection:crm.claim.report,month:0 @@ -93,6 +93,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour créer une catégorie de réclamation.\n" +"

\n" +" Créez des catégories de réclamation pour mieux gérer et " +"classer vos\n" +" réclamations. Quelques exemples de réclamation: action " +"préventive,\n" +" action corrective.\n" +"

\n" +" " #. module: crm_claim #: view:crm.claim.report:0 @@ -237,7 +247,7 @@ msgstr "Priorité" #. module: crm_claim #: field:crm.claim.stage,fold:0 msgid "Hide in Views when Empty" -msgstr "" +msgstr "Cacher dans les vues lorsque vide" #. module: crm_claim #: field:crm.claim,message_follower_ids:0 @@ -340,7 +350,7 @@ msgstr "Dates" #. module: crm_claim #: help:crm.claim,email_from:0 msgid "Destination email for email gateway." -msgstr "" +msgstr "Courriel de destination pour la passerelle de courriel." #. module: crm_claim #: code:addons/crm_claim/crm_claim.py:194 @@ -360,7 +370,7 @@ msgstr "" #. module: crm_claim #: view:crm.claim:0 msgid "Settle" -msgstr "" +msgstr "Résoudre" #. module: crm_claim #: model:ir.ui.menu,name:crm_claim.menu_claim_stage_view @@ -497,7 +507,7 @@ msgstr "Réclamation des partenaires" #. module: crm_claim #: view:crm.claim.stage:0 msgid "Claim Stage" -msgstr "" +msgstr "Étape de réclamation" #. module: crm_claim #: view:crm.claim:0 @@ -573,6 +583,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour configurer une nouvelle étape dans le " +"traitement des réclamations.\n" +"

\n" +" Vous pouvez créer des étapes de réclamation pour catégoriser " +"le statut de chaque \n" +" réclamation saisie dans le système. Les étapes définissent " +"toutes les \n" +" actions nécessaires pour résoudre la réclamation.\n" +"\n" +"

\n" +" " #. module: crm_claim #: help:crm.claim,state:0 @@ -775,7 +797,7 @@ msgstr "Actions de résolution" #. module: crm_claim #: field:crm.claim.stage,case_refused:0 msgid "Refused stage" -msgstr "" +msgstr "Étape refusée" #. module: crm_claim #: model:ir.actions.act_window,help:crm_claim.crm_case_categ_claim0 @@ -836,7 +858,7 @@ msgstr "Mes incidents" #. module: crm_claim #: model:crm.claim.stage,name:crm_claim.stage_claim2 msgid "Settled" -msgstr "" +msgstr "Résolue" #. module: crm_claim #: help:crm.claim,message_ids:0 @@ -846,7 +868,7 @@ msgstr "" #. module: crm_claim #: field:sale.config.settings,fetchmail_claim:0 msgid "Create claims from incoming mails" -msgstr "" +msgstr "Créer des réclamations à partir des courriels entrants" #. module: crm_claim #: field:crm.claim.stage,sequence:0 diff --git a/addons/crm_claim/i18n/gl.po b/addons/crm_claim/i18n/gl.po index 841afc211fc..1ceda0d5412 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 de7dcf0109f..e757da31953 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 a478ae52974..ac5d8595b50 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 d7087a7c864..848cb0fb7be 100644 --- a/addons/crm_claim/i18n/hu.po +++ b/addons/crm_claim/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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 845e903362b..e3ef2766c4e 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 61456a453f7..3bcd8ba2522 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 diff --git a/addons/crm_claim/i18n/ko.po b/addons/crm_claim/i18n/ko.po index aabd1bef7bb..c9879ff6c76 100644 --- a/addons/crm_claim/i18n/ko.po +++ b/addons/crm_claim/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-30 05:27+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 92f053116f9..851b698feab 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 a92087cf524..bb0eabb78da 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 @@ -234,7 +234,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 +354,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 +370,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 +399,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 +552,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 +646,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 +727,7 @@ msgstr "Завршено" #. module: crm_claim #: view:crm.claim:0 msgid "Claim Reporter" -msgstr "" +msgstr "Известувач за рекламација" #. module: crm_claim #: view:crm.claim.report:0 @@ -771,7 +777,7 @@ msgstr "Пречекорен краен рок" #. module: crm_claim #: field:crm.claim,cause:0 msgid "Root Cause" -msgstr "" +msgstr "Коренска причина" #. module: crm_claim #: view:crm.claim:0 @@ -802,7 +808,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 +823,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_claim/i18n/mn.po b/addons/crm_claim/i18n/mn.po index cb02be7c874..1ac110149ee 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 @@ -48,11 +48,13 @@ 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 "" +msgstr "Гомдлын үе шатууд" #. module: crm_claim #: selection:crm.claim.report,month:0 @@ -134,7 +136,7 @@ msgstr "Зурвас" #. module: crm_claim #: model:crm.case.categ,name:crm_claim.categ_claim1 msgid "Factual Claims" -msgstr "" +msgstr "Баримттай гомдол" #. module: crm_claim #: selection:crm.claim,state:0 @@ -151,7 +153,8 @@ msgstr "Урьдчилан сануулах" #. module: crm_claim #: help:crm.claim,message_unread:0 msgid "If checked new messages require your attention." -msgstr "Хэрэв тэмдэглэгдсэн бол шинэ зурвас нь анхаарал татахыг шаардана." +msgstr "" +"Хэрэв тэмдэглэгдсэн бол таныг шинэ зурвасуудад анхаарал хандуулахыг шаардана." #. module: crm_claim #: field:crm.claim.report,date_closed:0 @@ -166,12 +169,12 @@ msgstr "Худал" #. module: crm_claim #: field:crm.claim,ref:0 msgid "Reference" -msgstr "Лавлах" +msgstr "Код" #. module: crm_claim #: view:crm.claim.report:0 msgid "Date of claim" -msgstr "" +msgstr "Гомдлын огноо" #. module: crm_claim #: view:crm.claim.report:0 @@ -192,7 +195,7 @@ msgstr "" #: field:crm.claim,date_deadline:0 #: field:crm.claim.report,date_deadline:0 msgid "Deadline" -msgstr "Товлосон хугацаа" +msgstr "Эцсийн хугацаа" #. module: crm_claim #: view:crm.claim:0 @@ -206,7 +209,7 @@ msgstr "Харилцагч" #. module: crm_claim #: view:crm.claim:0 msgid "Follow Up" -msgstr "" +msgstr "Мөшгөлт" #. module: crm_claim #: selection:crm.claim,type_action:0 @@ -227,7 +230,7 @@ msgstr "Учир шалтгаанууд" #. module: crm_claim #: field:crm.claim,user_fault:0 msgid "Trouble Responsible" -msgstr "" +msgstr "Бэрхшээлийг хариуцагч" #. module: crm_claim #: field:crm.claim,priority:0 @@ -239,7 +242,7 @@ msgstr "Чухалчлал" #. module: crm_claim #: field:crm.claim.stage,fold:0 msgid "Hide in Views when Empty" -msgstr "" +msgstr "Хоосон бол харуулахгүй" #. module: crm_claim #: field:crm.claim,message_follower_ids:0 @@ -269,7 +272,7 @@ msgstr "Имэйл" #: selection:crm.claim,priority:0 #: selection:crm.claim.report,priority:0 msgid "Lowest" -msgstr "Доод" +msgstr "Хамгийн Бага" #. module: crm_claim #: field:crm.claim,action_next:0 @@ -289,7 +292,7 @@ msgstr "Үүсгэсэн огноо" #. module: crm_claim #: field:crm.claim,name:0 msgid "Claim Subject" -msgstr "" +msgstr "Гомдлын гарчиг" #. module: crm_claim #: model:crm.claim.stage,name:crm_claim.stage_claim3 @@ -299,7 +302,7 @@ msgstr "Буцаасан" #. module: crm_claim #: field:crm.claim,date_action_next:0 msgid "Next Action Date" -msgstr "Дараагий үйлдлийн огноо" +msgstr "Дараагийн үйлдлийн огноо" #. module: crm_claim #: model:ir.actions.act_window,help:crm_claim.action_report_crm_claim @@ -317,7 +320,7 @@ msgstr "7-р сар" #: view:crm.claim.stage:0 #: model:ir.actions.act_window,name:crm_claim.crm_claim_stage_act msgid "Claim Stages" -msgstr "Гомдолын үе" +msgstr "Гомдолын үе шатууд" #. module: crm_claim #: model:ir.ui.menu,name:crm_claim.menu_crm_case_claim-act @@ -371,17 +374,17 @@ msgstr "Үе шатууд" #: 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 "Гомдолын анализ" +msgstr "Гомдолын Шинжилгээ" #. module: crm_claim #: help:crm.claim.report,delay_close:0 msgid "Number of Days to close the case" -msgstr "Тохиолдлыг хаах өдрийн тоо" +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 @@ -424,7 +427,7 @@ msgstr "Шинэчилсэн огноо" #. module: crm_claim #: view:crm.claim.report:0 msgid "Year of claim" -msgstr "Жилийн гомдол" +msgstr "Гомдлын жил" #. module: crm_claim #: help:crm.claim.stage,case_default:0 @@ -440,7 +443,7 @@ msgstr "" #: view:crm.claim.report:0 #: field:crm.claim.report,categ_id:0 msgid "Category" -msgstr "Категори" +msgstr "Ангилал" #. module: crm_claim #: model:crm.case.categ,name:crm_claim.categ_claim2 @@ -464,6 +467,8 @@ msgid "" "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 @@ -474,7 +479,7 @@ msgstr "Ноорог" #: selection:crm.claim,priority:0 #: selection:crm.claim.report,priority:0 msgid "Low" -msgstr "" +msgstr "Бага" #. module: crm_claim #: field:crm.claim,date_closed:0 diff --git a/addons/crm_claim/i18n/nb.po b/addons/crm_claim/i18n/nb.po index f553623fa1a..7e66a699cad 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 98f6b575ba9..f0e491dba60 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 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 69c3f399013..32ffc9bcf54 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 0857f1fbd20..dd1f4a4f1c9 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 3a5166a4b2f..2fb2b642c3d 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 @@ -30,7 +30,7 @@ msgstr "" #. module: crm_claim #: field:crm.claim.report,nbr:0 msgid "# of Cases" -msgstr "Nº de Casos" +msgstr "# de Casos" #. module: crm_claim #: view:crm.claim:0 @@ -109,7 +109,7 @@ msgstr "" #. module: crm_claim #: view:crm.claim.report:0 msgid "#Claim" -msgstr "Nº da Solicitação" +msgstr "# Solicitação" #. module: crm_claim #: field:crm.claim.stage,name:0 @@ -834,7 +834,7 @@ msgstr "" #. module: crm_claim #: field:crm.claim.report,email:0 msgid "# Emails" -msgstr "Nº de Emails" +msgstr "# Emails" #. module: crm_claim #: view:crm.claim.report:0 diff --git a/addons/crm_claim/i18n/ro.po b/addons/crm_claim/i18n/ro.po index 9586edfd28d..eef6290eca1 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 4579b6d8557..3e9d155d64c 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-05-31 05:38+0000\n" -"X-Generator: Launchpad (build 16660)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 bd5076ddeea..abd46cd7832 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 f12c6e204a7..57e662d7a0b 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 98b3a29531b..57ce0eea9e1 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 59df8b9f534..863324a591d 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 f53f174b264..b17c915ec06 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 7c436804d6c..5f876caceb4 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_claim #: help:crm.claim.stage,fold:0 @@ -217,7 +217,7 @@ msgstr "Partner" #. module: crm_claim #: view:crm.claim:0 msgid "Follow Up" -msgstr "Takip Etme" +msgstr "İzleme" #. module: crm_claim #: selection:crm.claim,type_action:0 @@ -255,7 +255,7 @@ msgstr "Boş Görünümler Gizle" #. module: crm_claim #: field:crm.claim,message_follower_ids:0 msgid "Followers" -msgstr "Takipçiler" +msgstr "İzleyiciler" #. module: crm_claim #: view:crm.claim:0 @@ -569,7 +569,7 @@ msgstr "Telefon" #. module: crm_claim #: field:crm.claim,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçisi mi" +msgstr "Bir İzleyicidir" #. module: crm_claim #: field:crm.claim.report,user_id:0 diff --git a/addons/crm_claim/i18n/zh_CN.po b/addons/crm_claim/i18n/zh_CN.po index ef03a53c34b..1fbd3c850e3 100644 --- a/addons/crm_claim/i18n/zh_CN.po +++ b/addons/crm_claim/i18n/zh_CN.po @@ -14,15 +14,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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 "" +msgstr "此阶段是不可见的。例如:状态栏或看板视图中,在该阶段中 不存在可显示的记录。" #. module: crm_claim #: field:crm.claim.report,nbr:0 @@ -50,7 +50,7 @@ msgstr "允许配置接收邮件服务器,并从接收的邮件里创建索赔 #. module: crm_claim #: model:ir.model,name:crm_claim.model_crm_claim_stage msgid "Claim stages" -msgstr "" +msgstr "索赔阶段" #. module: crm_claim #: selection:crm.claim.report,month:0 @@ -336,7 +336,7 @@ msgstr "日期" #. module: crm_claim #: help:crm.claim,email_from:0 msgid "Destination email for email gateway." -msgstr "" +msgstr "目的邮件地址" #. module: crm_claim #: code:addons/crm_claim/crm_claim.py:194 @@ -356,7 +356,7 @@ msgstr "" #. module: crm_claim #: view:crm.claim:0 msgid "Settle" -msgstr "" +msgstr "解决" #. module: crm_claim #: model:ir.ui.menu,name:crm_claim.menu_claim_stage_view @@ -491,7 +491,7 @@ msgstr "客户抱怨" #. module: crm_claim #: view:crm.claim.stage:0 msgid "Claim Stage" -msgstr "" +msgstr "索赔阶段" #. module: crm_claim #: view:crm.claim:0 @@ -525,7 +525,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 @@ -577,6 +577,8 @@ msgid "" "the case needs to be reviewed then the status is set " "to 'Pending'." msgstr "" +"当案例被创建时,状态设置为'草稿'。如果按理是在处理过程中,状态设置为'打开'。如果案例已经完成时,状态设置为'完成'。如果案例需要审核时,状态设置为'等" +"待'." #. module: crm_claim #: field:crm.claim,active:0 @@ -603,7 +605,7 @@ msgstr "关闭" msgid "" "Responsible sales team. Define Responsible user and Email account for mail " "gateway." -msgstr "" +msgstr "负责的销售团队。定义一个负责的用户和Email 账户" #. module: crm_claim #: selection:crm.claim.report,month:0 @@ -624,7 +626,7 @@ msgstr "索赔日期" #. module: crm_claim #: field:crm.claim,message_summary:0 msgid "Summary" -msgstr "" +msgstr "总览" #. module: crm_claim #: model:ir.actions.act_window,name:crm_claim.crm_claim_categ_action @@ -634,7 +636,7 @@ msgstr "索赔分类" #. module: crm_claim #: field:crm.claim.stage,case_default:0 msgid "Common to All Teams" -msgstr "" +msgstr "适用于所有团队" #. module: crm_claim #: view:crm.claim:0 @@ -673,7 +675,7 @@ msgstr "索赔" #. module: crm_claim #: view:crm.claim.report:0 msgid "My Company" -msgstr "" +msgstr "我的公司" #. module: crm_claim #: view:crm.claim.report:0 @@ -769,7 +771,7 @@ msgstr "决定采取的行动" #. module: crm_claim #: field:crm.claim.stage,case_refused:0 msgid "Refused stage" -msgstr "" +msgstr "拒绝阶段" #. module: crm_claim #: model:ir.actions.act_window,help:crm_claim.crm_case_categ_claim0 @@ -800,7 +802,7 @@ msgstr "2月" #. module: crm_claim #: model:ir.model,name:crm_claim.model_sale_config_settings msgid "sale.config.settings" -msgstr "" +msgstr "sale.config.settings" #. module: crm_claim #: view:crm.claim.report:0 @@ -826,22 +828,22 @@ msgstr "我的业务" #. module: crm_claim #: model:crm.claim.stage,name:crm_claim.stage_claim2 msgid "Settled" -msgstr "" +msgstr "解决" #. module: crm_claim #: help:crm.claim,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "消息和通信记录" #. module: crm_claim #: field:sale.config.settings,fetchmail_claim:0 msgid "Create claims from incoming mails" -msgstr "" +msgstr "从收进的邮件中创建索赔" #. module: crm_claim #: field:crm.claim.stage,sequence:0 msgid "Sequence" -msgstr "" +msgstr "序号" #. module: crm_claim #: view:crm.claim:0 @@ -875,12 +877,12 @@ msgstr "正在处理的抱怨" msgid "" "Link between stages and sales teams. When set, this limitate the current " "stage to the selected sales teams." -msgstr "" +msgstr "在阶段和邮件地址建连接。设置后,将限制当前的阶段选择的销售团队。" #. module: crm_claim #: help:crm.claim.stage,case_refused:0 msgid "Refused stages are specific stages for done." -msgstr "" +msgstr "拒绝特定的阶段完成" #~ msgid "Probability" #~ msgstr "概率" diff --git a/addons/crm_claim/i18n/zh_TW.po b/addons/crm_claim/i18n/zh_TW.po index b9c7ca01577..e59cfbaf5de 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 2caa9483b7a..893652c7b48 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 3ce40596658..0ac2b0e8221 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 93ad7585484..18ecb8d23e9 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/cs.po b/addons/crm_helpdesk/i18n/cs.po index 58c37a7bc30..f07d6f1075f 100644 --- a/addons/crm_helpdesk/i18n/cs.po +++ b/addons/crm_helpdesk/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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 a7a6bdf69b8..361d0dfb97f 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 28e78af66cd..4bcc4307140 100644 --- a/addons/crm_helpdesk/i18n/de.po +++ b/addons/crm_helpdesk/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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 44e1adfe27d..53d704f7c02 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 15aa60ebd46..97a9106a6e7 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 56c0dea9a05..a2695924870 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: crm_helpdesk diff --git a/addons/crm_helpdesk/i18n/es_PY.po b/addons/crm_helpdesk/i18n/es_PY.po index f667b53568b..46a4c6a5c1b 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 056b391d831..57d4b16c05b 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 40075f5055c..598c52ca12d 100644 --- a/addons/crm_helpdesk/i18n/fr.po +++ b/addons/crm_helpdesk/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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 @@ -35,7 +35,7 @@ msgstr "Regrouper par..." #. module: crm_helpdesk #: help:crm.helpdesk,email_from:0 msgid "Destination email for email gateway" -msgstr "" +msgstr "Courriel de destination pour la passerelle de courriel" #. module: crm_helpdesk #: selection:crm.helpdesk.report,month:0 @@ -277,6 +277,8 @@ msgid "" "Helpdesk requests that are assigned to me or to one of the sale teams I " "manage" msgstr "" +"Requêtes de support qui sont assignées à moi ou à l'une des équipes de vente " +"que je dirige" #. module: crm_helpdesk #: view:crm.helpdesk.report:0 @@ -485,6 +487,8 @@ msgid "" "Responsible sales team. Define Responsible user and Email account for mail " "gateway." msgstr "" +"Équipe de vente responsable. Définissez un utilisateur responsable et un " +"compte de courriel pour la passerelle de courriel." #. module: crm_helpdesk #: selection:crm.helpdesk.report,month:0 diff --git a/addons/crm_helpdesk/i18n/gl.po b/addons/crm_helpdesk/i18n/gl.po index 0526613b4ea..da2d81f05b2 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 d68aae7c7a3..14b72b25a67 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 25b620bc6ea..3aeacf331cd 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 2b35100a47a..e31d09b2c70 100644 --- a/addons/crm_helpdesk/i18n/hu.po +++ b/addons/crm_helpdesk/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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 b43fc48fc69..b4e96c449b8 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 98bd0dede89..e83cade27aa 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 diff --git a/addons/crm_helpdesk/i18n/ko.po b/addons/crm_helpdesk/i18n/ko.po index 42d5760068c..016fe61190c 100644 --- a/addons/crm_helpdesk/i18n/ko.po +++ b/addons/crm_helpdesk/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-30 05:27+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 e42fef27002..a08a757926c 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 beb40de54a1..2d64f324da7 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 7b0c444f003..298cbbc9f2f 100644 --- a/addons/crm_helpdesk/i18n/mk.po +++ b/addons/crm_helpdesk/i18n/mk.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2013-03-02 12:33+0000\n" -"Last-Translator: Софче Димитријева \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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 @@ -80,7 +80,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 +112,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 +190,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 +246,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 +256,7 @@ msgstr "Категории" #. module: crm_helpdesk #: view:crm.helpdesk:0 msgid "New Helpdesk Request" -msgstr "" +msgstr "Ново барање за помош" #. module: crm_helpdesk #: view:crm.helpdesk:0 @@ -266,7 +266,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 @@ -280,21 +280,23 @@ 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.report:0 msgid "Year of helpdesk requests" -msgstr "" +msgstr "Година на барањата за помош" #. module: crm_helpdesk #: selection:crm.helpdesk.report,month:0 @@ -361,11 +363,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 @@ -420,7 +425,7 @@ msgstr "" #. module: crm_helpdesk #: selection:crm.helpdesk.report,month:0 msgid "June" -msgstr "" +msgstr "Јуни" #. module: crm_helpdesk #: field:crm.helpdesk,id:0 @@ -444,6 +449,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 @@ -478,7 +497,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 @@ -486,11 +505,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 +591,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 +659,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 +699,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 +710,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 +733,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_helpdesk/i18n/mn.po b/addons/crm_helpdesk/i18n/mn.po index 938b5c40884..50a0c9907a6 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 a8f31b6a031..d3a59f395ef 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 0235eeae99a..24e9db81aea 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 @@ -230,7 +230,7 @@ msgstr "Aanmaakdatum" #. module: crm_helpdesk #: view:crm.helpdesk:0 msgid "Reset to Draft" -msgstr "Terugzetten naar Concept" +msgstr "Terugzetten naar concept" #. module: crm_helpdesk #: view:crm.helpdesk:0 diff --git a/addons/crm_helpdesk/i18n/pl.po b/addons/crm_helpdesk/i18n/pl.po index 01079c99103..d5d7565c655 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 d2263dd1b89..fbf9486bdb0 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 d3f5c7ba813..bb97d1d913d 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 49bdb6233e0..4fea87a41e5 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 bb53c03294f..6a91ccd42ac 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-05-31 05:38+0000\n" -"X-Generator: Launchpad (build 16660)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 7e5dc180800..6d3f2cc6d9f 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 abc47429e25..72d497f8913 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 3d07962991a..18563c61b30 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 32f7568e01e..cea5c6044bc 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 9e0376dea03..ee042900607 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 3a23263a13d..3fb230ac1b8 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 @@ -178,7 +178,7 @@ msgstr "Öncelik" #. module: crm_helpdesk #: field:crm.helpdesk,message_follower_ids:0 msgid "Followers" -msgstr "Takipçiler" +msgstr "İzleyiciler" #. module: crm_helpdesk #: view:crm.helpdesk:0 @@ -470,7 +470,7 @@ msgstr "Planlanan Gelir" #. module: crm_helpdesk #: field:crm.helpdesk,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçisi mi" +msgstr "Bir İzleyicidir" #. module: crm_helpdesk #: field:crm.helpdesk.report,user_id:0 diff --git a/addons/crm_helpdesk/i18n/zh_CN.po b/addons/crm_helpdesk/i18n/zh_CN.po index 13843f911c9..0aa2c6336ff 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-06-08 05:52+0000\n" -"X-Generator: Launchpad (build 16667)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_helpdesk #: field:crm.helpdesk.report,delay_close:0 @@ -36,7 +36,7 @@ msgstr "分组..." #. module: crm_helpdesk #: help:crm.helpdesk,email_from:0 msgid "Destination email for email gateway" -msgstr "" +msgstr "目的邮件地址" #. module: crm_helpdesk #: selection:crm.helpdesk.report,month:0 @@ -277,7 +277,7 @@ msgstr "无主题" msgid "" "Helpdesk requests that are assigned to me or to one of the sale teams I " "manage" -msgstr "" +msgstr "帮助台请求被指派给我或者我管理的销售团队中的一个" #. module: crm_helpdesk #: view:crm.helpdesk.report:0 @@ -483,7 +483,7 @@ msgstr "服务台请求" msgid "" "Responsible sales team. Define Responsible user and Email account for mail " "gateway." -msgstr "" +msgstr "负责的销售团队。定义一个负责的用户和Email 账户" #. module: crm_helpdesk #: selection:crm.helpdesk.report,month:0 diff --git a/addons/crm_helpdesk/i18n/zh_TW.po b/addons/crm_helpdesk/i18n/zh_TW.po index 1ba2d6fb8c9..ddb04c8adc8 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 c038a2b0fac..616b97f659e 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 46a537a7563..2a22999c242 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 f63bc426e25..1b50b69df8d 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/cs.po b/addons/crm_partner_assign/i18n/cs.po index 12c03bf18eb..4e4ed570c96 100644 --- a/addons/crm_partner_assign/i18n/cs.po +++ b/addons/crm_partner_assign/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-31 05:27+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 93aa75ba0cb..37a5cf39433 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 98625562638..f17a5202d9c 100644 --- a/addons/crm_partner_assign/i18n/de.po +++ b/addons/crm_partner_assign/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 9334b08f8fc..24f98f42573 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 42c5924a82c..4dacb667a00 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 19f4a7e455e..3fd01cfaec5 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: crm_partner_assign diff --git a/addons/crm_partner_assign/i18n/es_PY.po b/addons/crm_partner_assign/i18n/es_PY.po index f930b8ed2c9..f0c34858c99 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 9022aa67567..5d108c22d58 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 ca2e8d0af9e..e202625dbc4 100644 --- a/addons/crm_partner_assign/i18n/fr.po +++ b/addons/crm_partner_assign/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 @@ -195,7 +195,7 @@ msgstr "" #. module: crm_partner_assign #: view:res.partner:0 msgid "Partner Activation" -msgstr "" +msgstr "Activation de partenaire" #. module: crm_partner_assign #: selection:crm.lead.forward.to.partner,type:0 diff --git a/addons/crm_partner_assign/i18n/gl.po b/addons/crm_partner_assign/i18n/gl.po index 46037a78b8b..a17edefada2 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 408163d9d03..d06706f881d 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 e8353308eb5..73bd70c7884 100644 --- a/addons/crm_partner_assign/i18n/hu.po +++ b/addons/crm_partner_assign/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 1f5a95ed07f..50dd72ed1b5 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 3fb3fb15764..e0cd0cdf791 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 diff --git a/addons/crm_partner_assign/i18n/ko.po b/addons/crm_partner_assign/i18n/ko.po index f5b394c4634..984f28e2a07 100644 --- a/addons/crm_partner_assign/i18n/ko.po +++ b/addons/crm_partner_assign/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-30 05:27+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 ffeb7e9a9a6..cce4db609d8 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 48f66608aa9..7f3f379ab8e 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 cb1d49c8580..7fa51c76f33 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 @@ -89,7 +89,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 +120,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 +148,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 +184,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 +196,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 +212,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 +235,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 +288,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 +298,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 +313,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 +333,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 +348,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 +371,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 +393,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 +409,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 +471,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 +513,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 +539,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 +565,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 +585,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 +622,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 +637,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 +662,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 +703,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 +719,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 +735,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 +792,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 +823,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 +872,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 +906,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 +916,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_partner_assign/i18n/mn.po b/addons/crm_partner_assign/i18n/mn.po index a42c612f6e1..f21e6c9a0f8 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 @@ -127,7 +127,7 @@ msgstr "Хамтрагч огноо" #: view:crm.partner.report.assign:0 #: view:res.partner:0 msgid "Salesperson" -msgstr "Худалдагч" +msgstr "Борлуулалтын ажилтан" #. module: crm_partner_assign #: selection:crm.lead.report.assign,priority:0 @@ -414,7 +414,7 @@ msgstr "" #. module: crm_partner_assign #: help:crm.lead.report.assign,delay_close:0 msgid "Number of Days to close the case" -msgstr "" +msgstr "Хэрэгийг хаах хоногийн тоо" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,notified_partner_ids:0 @@ -583,7 +583,7 @@ msgstr "6-р сар" #. 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 diff --git a/addons/crm_partner_assign/i18n/nb.po b/addons/crm_partner_assign/i18n/nb.po index c47ef3d732c..f8806f0060a 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 d72aa0d55ab..e6b51f69891 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 @@ -310,7 +310,7 @@ msgstr "Leads analyse" #. module: crm_partner_assign #: field:crm.lead.report.assign,creation_date:0 msgid "Creation Date" -msgstr "Datum gemaakt" +msgstr "Aanmaakdatum" #. module: crm_partner_assign #: model:ir.model,name:crm_partner_assign.model_res_partner_activation @@ -932,7 +932,7 @@ msgstr "Initiële bericht thread" #. module: crm_partner_assign #: field:crm.lead.report.assign,create_date:0 msgid "Create Date" -msgstr "Datum gemaakt" +msgstr "Aanmaakdatum" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,filter_id:0 diff --git a/addons/crm_partner_assign/i18n/pl.po b/addons/crm_partner_assign/i18n/pl.po index 6a260ee1738..9fd1e9c3b8b 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 a319c146039..aa8513e4ca0 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 @@ -744,7 +744,7 @@ msgstr "" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,notified_partner_ids:0 msgid "Notified partners" -msgstr "" +msgstr "Parceiros notificados" #. module: crm_partner_assign #: view:crm.lead.forward.to.partner:0 diff --git a/addons/crm_partner_assign/i18n/pt_BR.po b/addons/crm_partner_assign/i18n/pt_BR.po index aba69c91977..13958103baf 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 @@ -134,7 +134,7 @@ msgstr "Vendedor" #. module: crm_partner_assign #: selection:crm.lead.report.assign,priority:0 msgid "Highest" -msgstr "Mais Alta" +msgstr "Máxima" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -531,7 +531,7 @@ msgstr "Provisório" #. module: crm_partner_assign #: selection:crm.lead.report.assign,priority:0 msgid "Low" -msgstr "Baixo" +msgstr "Baixa" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 diff --git a/addons/crm_partner_assign/i18n/ro.po b/addons/crm_partner_assign/i18n/ro.po index d53a0e2282c..9f715c36b69 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 fa995c8e7a1..b90e106b62b 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-06-07 05:48+0000\n" -"X-Generator: Launchpad (build 16667)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 e119a38ad42..ae413e8ba79 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 369e306aeb2..d7bb33e58b3 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:41+0000\n" +"X-Generator: Launchpad (build 16753)\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 e147c04764e..7c5ace4ca19 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 2f204719115..f675835afac 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 a7ea1c787d1..8fc27a8d061 100644 --- a/addons/crm_partner_assign/i18n/tr.po +++ b/addons/crm_partner_assign/i18n/tr.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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_close:0 msgid "Delay to Close" -msgstr "Kapanmada gecikme" +msgstr "Kapanmada Gecikme" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,author_id:0 @@ -65,7 +65,7 @@ msgstr "İlet" #. module: crm_partner_assign #: view:res.partner:0 msgid "Geo Localize" -msgstr "Coğrafi konumlama" +msgstr "Coğrafi Konumlama" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,starred:0 @@ -82,7 +82,7 @@ msgstr "Gövde" msgid "" "Email address of the sender. This field is set when no matching partner is " "found for incoming emails." -msgstr "Göndericinin eposta adresi" +msgstr "Göndericinin e-posta adresi" #. module: crm_partner_assign #: view:crm.partner.report.assign:0 @@ -118,7 +118,7 @@ msgstr "Bildirimler" #. module: crm_partner_assign #: field:crm.lead.report.assign,date_assign:0 msgid "Partner Date" -msgstr "Partner Tarihi" +msgstr "İş Ortağı Tarihi" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -206,7 +206,7 @@ msgstr "Sistem bildirimi" #: code:addons/crm_partner_assign/wizard/crm_forward_to_partner.py:74 #, python-format msgid "Lead forward" -msgstr "Aday ilet" +msgstr "Adaya ilet" #. module: crm_partner_assign #: field:crm.lead.report.assign,probability:0 @@ -234,7 +234,7 @@ msgstr "Gönderen" #: model:ir.ui.menu,name:crm_partner_assign.menu_res_partner_grade_action #: view:res.partner.grade:0 msgid "Partner Grade" -msgstr "Partner Derecesi" +msgstr "İş Ortağı Derecesi" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -302,7 +302,7 @@ msgstr "Tarih Atama" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 msgid "Leads Analysis" -msgstr "aday Analizi" +msgstr "Aday Analizi" #. module: crm_partner_assign #: field:crm.lead.report.assign,creation_date:0 @@ -332,7 +332,7 @@ msgstr "Bekleyen" #. module: crm_partner_assign #: view:crm.lead:0 msgid "Partner Assignation" -msgstr "Partner Atama" +msgstr "İş Ortağı Atama" #. module: crm_partner_assign #: help:crm.lead.report.assign,type:0 @@ -381,7 +381,7 @@ msgstr "Coğ Yerelleştirme" #: view:crm.lead.report.assign:0 #: view:crm.partner.report.assign:0 msgid "Opportunities Assignment Analysis" -msgstr "Fırsat Atamaları Analizi" +msgstr "Fırsat Atama Analizleri" #. module: crm_partner_assign #: view:crm.lead.forward.to.partner:0 @@ -408,7 +408,7 @@ msgstr "Mart" #: 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 "Fır. Atamaları Analizi" +msgstr "Fır. Atama Analizleri" #. module: crm_partner_assign #: help:crm.lead.report.assign,delay_close:0 @@ -474,7 +474,7 @@ msgstr "Alt Mesajlar" #: field:crm.partner.report.assign,date_review:0 #: field:res.partner,date_review:0 msgid "Latest Partner Review" -msgstr "Son Partner Görüşmesi" +msgstr "Son İş Ortağı Görüşmesi" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,subject:0 @@ -536,7 +536,7 @@ msgstr "Kapandı" #. module: crm_partner_assign #: model:ir.actions.act_window,name:crm_partner_assign.action_crm_send_mass_forward msgid "Mass forward to partner" -msgstr "Partner toplu iletme" +msgstr "İş Ortağı toplu iletme" #. module: crm_partner_assign #: view:res.partner:0 @@ -582,12 +582,12 @@ msgstr "Haziran" #. module: crm_partner_assign #: help:crm.lead.report.assign,delay_open:0 msgid "Number of Days to open the case" -msgstr "Durumu açmak için gerekli Gün Sayısı" +msgstr "Durumu açmak için gerekli gün sayısı" #. module: crm_partner_assign #: field:crm.lead.report.assign,delay_open:0 msgid "Delay to Open" -msgstr "Açmada Gecikme" +msgstr "Açışta Gecikme" #. module: crm_partner_assign #: field:crm.lead.report.assign,user_id:0 @@ -716,7 +716,7 @@ msgstr "Derece Adı" #. module: crm_partner_assign #: help:crm.lead,date_assign:0 msgid "Last date this case was forwarded/assigned to a partner" -msgstr "Bu durumun bir paydaşa iletildiği/atandığı son tarihtir." +msgstr "Bu durumun bir iş-ortağa iletildiği/atandığı son tarihtir." #. module: crm_partner_assign #: selection:crm.lead.report.assign,state:0 @@ -747,13 +747,13 @@ msgstr "Aday/Fırsat" #. module: crm_partner_assign #: field:crm.lead.forward.to.partner,notified_partner_ids:0 msgid "Notified partners" -msgstr "Haberdar partnerler" +msgstr "Haberdar İş Ortağı" #. 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 "Partnere İlet" +msgstr "İş Ortağı İlet" #. module: crm_partner_assign #: field:crm.lead.report.assign,section_id:0 @@ -784,12 +784,12 @@ msgstr "Aktivisyon" #: view:crm.lead:0 #: field:crm.lead,partner_assigned_id:0 msgid "Assigned Partner" -msgstr "Atanmış Partner" +msgstr "Atanmış İş Ortağı" #. module: crm_partner_assign #: field:res.partner,grade_id:0 msgid "Partner Level" -msgstr "Partner Düzeyi" +msgstr "İş Ortağı Düzeyi" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,to_read:0 @@ -820,7 +820,7 @@ msgstr "Adı" #: 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 "Partner Aktivasyonları" +msgstr "İş Ortağı Aktivasyonları" #. module: crm_partner_assign #: view:crm.lead.report.assign:0 @@ -855,7 +855,7 @@ msgstr "Açmada gecikme" #: 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 "Paydaşlık İncelemesi" +msgstr "İş Ortağı İncelemesi" #. module: crm_partner_assign #: help:crm.lead.forward.to.partner,notification_ids:0 @@ -869,7 +869,7 @@ msgstr "" #. module: crm_partner_assign #: view:crm.partner.report.assign:0 msgid "Partner assigned Analysis" -msgstr "Partner Analiz Atanan" +msgstr "Atananan İş Ortağı Analizi" #. module: crm_partner_assign #: model:ir.model,name:crm_partner_assign.model_crm_lead_report_assign @@ -903,7 +903,7 @@ msgstr "" #. module: crm_partner_assign #: model:ir.model,name:crm_partner_assign.model_crm_partner_report_assign msgid "CRM Partner Report" -msgstr "CRM Partner Raporu" +msgstr "CRM İş Ortağı Raporu" #. module: crm_partner_assign #: selection:crm.lead.report.assign,priority:0 @@ -937,7 +937,7 @@ msgstr "Filtreler" #: field:crm.partner.report.assign,partner_id:0 #: model:ir.model,name:crm_partner_assign.model_res_partner msgid "Partner" -msgstr "Partner" +msgstr "İş Ortağı" #~ msgid "Send to" #~ msgstr "Gönder" diff --git a/addons/crm_partner_assign/i18n/zh_CN.po b/addons/crm_partner_assign/i18n/zh_CN.po index d69d52029fc..4b95e844f18 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-07-24 05:31+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 7e5b64cf468..d70ab585098 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 2eb8a7b2a95..a9382ad107c 100644 --- a/addons/crm_profiling/i18n/ar.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 e9d22d5db79..4ee5841862d 100644 --- a/addons/crm_profiling/i18n/bg.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 3c9fc52c217..977ec3a6fed 100644 --- a/addons/crm_profiling/i18n/bs.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 a3de851a208..ac411a6a334 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 2014b5f187e..e9ee1bb198b 100644 --- a/addons/crm_profiling/i18n/cs.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 909d6018208..474c3a31c32 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 b3c625a60f6..d943c0e5e71 100644 --- a/addons/crm_profiling/i18n/de.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 2e2ffb3c174..4227cd6289a 100644 --- a/addons/crm_profiling/i18n/el.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/crm_profiling/i18n/en_GB.po b/addons/crm_profiling/i18n/en_GB.po index 2727049837a..7456c6f1d93 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 ba2f1cf7f03..c0ce4e372a9 100644 --- a/addons/crm_profiling/i18n/es.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 07ed1843300..faedd298d7c 100644 --- a/addons/crm_profiling/i18n/es_AR.po +++ b/addons/crm_profiling/i18n/es_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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 185a394b14d..d52cf40ed86 100644 --- a/addons/crm_profiling/i18n/es_CR.po +++ b/addons/crm_profiling/i18n/es_CR.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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/es_EC.po b/addons/crm_profiling/i18n/es_EC.po index d7f89805280..23b17f20429 100644 --- a/addons/crm_profiling/i18n/es_EC.po +++ b/addons/crm_profiling/i18n/es_EC.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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 c41170ec778..45e79791fed 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 6bfaf54df93..fda83162318 100644 --- a/addons/crm_profiling/i18n/et.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 b59f5c86f35..324eee93a6b 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 413dd33cf3f..770e1658f39 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 9d0a5cffe8f..81cce5311ce 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 093c87b14bf..aa655ae1330 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 91b3884fdf2..bfa06b2544b 100644 --- a/addons/crm_profiling/i18n/hr.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: hr\n" #. module: crm_profiling diff --git a/addons/crm_profiling/i18n/hu.po b/addons/crm_profiling/i18n/hu.po index ecbfcd6fbbf..d9dc4167815 100644 --- a/addons/crm_profiling/i18n/hu.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 d0e46866473..89d1f91b1da 100644 --- a/addons/crm_profiling/i18n/id.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 854645b837b..f44702b19d2 100644 --- a/addons/crm_profiling/i18n/it.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 11f3b2698ea..54193b5f68e 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 35fda6353b4..79379a250f2 100644 --- a/addons/crm_profiling/i18n/ko.po +++ b/addons/crm_profiling/i18n/ko.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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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,7 +196,7 @@ msgstr "데이터 저장" #. module: crm_profiling #: view:open.questionnaire:0 msgid "or" -msgstr "" +msgstr "또는" #~ msgid "Avalaible answers" #~ msgstr "가용한 답변들" diff --git a/addons/crm_profiling/i18n/lt.po b/addons/crm_profiling/i18n/lt.po index 59f92b17a36..f278e2fa5e1 100644 --- a/addons/crm_profiling/i18n/lt.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 95d575b4cb1..be4e6446c48 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 e68070c4b78..ad8cb24dfa0 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_profiling #: view:crm_profiling.questionnaire:0 @@ -36,6 +36,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 +59,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_profiling/i18n/mn.po b/addons/crm_profiling/i18n/mn.po index 54b5bae7098..faa6af952d5 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 5b5fdbfd9de..165ed95c7f3 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 0e136613ce7..0797a54cde8 100644 --- a/addons/crm_profiling/i18n/nl.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 2c1a4444d1d..9a04c651ab0 100644 --- a/addons/crm_profiling/i18n/nl_BE.po +++ b/addons/crm_profiling/i18n/nl_BE.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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 b4009eba315..d27fef11320 100644 --- a/addons/crm_profiling/i18n/pl.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 4b645cea244..e349a0448ee 100644 --- a/addons/crm_profiling/i18n/pt.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 a5c59749b92..35c5d2ed602 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 5cbe9515299..90dfaee70be 100644 --- a/addons/crm_profiling/i18n/ro.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 a7325d894c5..fb7dee82d86 100644 --- a/addons/crm_profiling/i18n/ru.po +++ b/addons/crm_profiling/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-05-31 05:38+0000\n" -"X-Generator: Launchpad (build 16660)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 e757d3c756f..892fe5035c3 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 2c6850e2463..67511b5453d 100644 --- a/addons/crm_profiling/i18n/sl.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 20fe9596d4c..b40cd18a68d 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 d373ef7edf6..f525cf763a6 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 9c993dc6353..112e4d69d2e 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 32ba7849e55..b966f9ccd1c 100644 --- a/addons/crm_profiling/i18n/sv.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 497ff7c88db..e24c5c67a1a 100644 --- a/addons/crm_profiling/i18n/tlh.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 a7de2893213..ca33467e459 100644 --- a/addons/crm_profiling/i18n/tr.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 a8158d56d50..d4f4d6bb940 100644 --- a/addons/crm_profiling/i18n/uk.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 9089afb76c6..fdf33dc4ddc 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 0065cfff54f..b683a2d6ab8 100644 --- a/addons/crm_profiling/i18n/zh_CN.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 522eb48a8a4..776be5b8f7a 100644 --- a/addons/crm_profiling/i18n/zh_TW.po +++ b/addons/crm_profiling/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 80160befc6d..a278c97beb3 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/cs.po b/addons/crm_todo/i18n/cs.po index fea912005b8..75001d8335e 100644 --- a/addons/crm_todo/i18n/cs.po +++ b/addons/crm_todo/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-31 05:27+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/da.po b/addons/crm_todo/i18n/da.po index 1214801638f..f058650f061 100644 --- a/addons/crm_todo/i18n/da.po +++ b/addons/crm_todo/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-06-20 05:17+0000\n" -"X-Generator: Launchpad (build 16673)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 3cc4bb396f5..909aede1930 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 9487992ed78..2f62a2334c6 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 e4f7f346acf..5fd4ceb916a 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 1a5aabde2f9..ae56a9baaf2 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 98513d5be33..dd7a17189d3 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 6c92772a6c1..b094912fe05 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 422d430565a..085f4e0e6af 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 d2fed785abd..c746d8f879c 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task @@ -25,7 +25,7 @@ msgstr "Zadatak" #. module: crm_todo #: view:crm.lead:0 msgid "Timebox" -msgstr "" +msgstr "modul: Popis zadataka (crm_todo)" #. module: crm_todo #: view:crm.lead:0 @@ -35,7 +35,7 @@ msgstr "Potencijal" #. module: crm_todo #: view:crm.lead:0 msgid "For cancelling the task" -msgstr "" +msgstr "Za otkazivanje zadatka" #. module: crm_todo #: view:crm.lead:0 @@ -77,7 +77,7 @@ msgstr "Potencijal / Prilika" #. module: crm_todo #: view:crm.lead:0 msgid "For changing to done state" -msgstr "" +msgstr "Za promjenu u status: Završeno" #. module: crm_todo #: view:crm.lead:0 diff --git a/addons/crm_todo/i18n/hu.po b/addons/crm_todo/i18n/hu.po index 98a3f830caf..2e2e562e657 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 b75f7c93ea0..b97e2821508 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 4e8ee8f7f43..dd6b053d82f 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task diff --git a/addons/crm_todo/i18n/ko.po b/addons/crm_todo/i18n/ko.po index f5924f76b40..f3151d2de6e 100644 --- a/addons/crm_todo/i18n/ko.po +++ b/addons/crm_todo/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-30 05:27+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 a1be0845605..349fa5fae8c 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 8ea86c1ac1f..e1ede9c7bd5 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: crm_todo #: model:ir.model,name:crm_todo.model_project_task @@ -25,12 +25,12 @@ msgstr "Задача" #. module: crm_todo #: view:crm.lead:0 msgid "Timebox" -msgstr "" +msgstr "Timebox" #. module: crm_todo #: view:crm.lead:0 msgid "Lead" -msgstr "Водечко" +msgstr "Трага" #. module: crm_todo #: view:crm.lead:0 @@ -67,12 +67,12 @@ 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 msgid "Lead / Opportunity" -msgstr "Водечко / Можност" +msgstr "Трага/Можност" #. module: crm_todo #: view:crm.lead:0 diff --git a/addons/crm_todo/i18n/mn.po b/addons/crm_todo/i18n/mn.po index 2cb78f013b1..1baeba39483 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 bd36f119c4e..33085d8a152 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 abbe9459249..32c25ecdc6b 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 f3ef8069ffb..77833bf4669 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 b03f22de2a9..c7bb47780e3 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 c6305228a5f..2d8820290eb 100644 --- a/addons/crm_todo/i18n/pt_BR.po +++ b/addons/crm_todo/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 ff36a6fc154..794290ba7c6 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 2a2dbdcdd74..d9a6c026ee3 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 a394de85517..9700eeea388 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 da02e769e00..9920e66ffc0 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 d04946c1eed..3f6330d7747 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 4cddedb20d5..9c3a1b6899d 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 0c4ff5f7e5e..8b342bd68a5 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 c9add021734..ebbd4755510 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 47d99a59da4..2986e0705ad 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 1ce79a603ea..82ee21ff61c 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 8880b8fa2f1..1bf36cc73da 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 334c35d0ee6..e83b1c68fc5 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 6871a9754b8..cf5f476ea10 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 07a4aa5e20f..43293e96e2a 100644 --- a/addons/decimal_precision/i18n/de.po +++ b/addons/decimal_precision/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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 8ac26fcf9c2..16019de5156 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 d4e3e57d0e1..ad7cf474f2f 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 1aa52f9ef60..7527c940e76 100644 --- a/addons/decimal_precision/i18n/es.po +++ b/addons/decimal_precision/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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 9997f38389f..a711c331cf7 100644 --- a/addons/decimal_precision/i18n/es_CR.po +++ b/addons/decimal_precision/i18n/es_CR.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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: decimal_precision diff --git a/addons/decimal_precision/i18n/es_EC.po b/addons/decimal_precision/i18n/es_EC.po index b9cf890907e..f2b48c3739d 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 0471069ca6f..d178fa36384 100644 --- a/addons/decimal_precision/i18n/es_MX.po +++ b/addons/decimal_precision/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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 de96fc141e9..a5c143b00e7 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 8bd34b5b299..f0e5a223943 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 0f339d6dd02..4602ef481ea 100644 --- a/addons/decimal_precision/i18n/fr.po +++ b/addons/decimal_precision/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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 a87e5393696..eb13c6f8944 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 4a197e25c91..a062016ad4f 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 ced361e718a..623d5e106fa 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 e3ca92768b9..35f18cb06c0 100644 --- a/addons/decimal_precision/i18n/hu.po +++ b/addons/decimal_precision/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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 a37b9b20d88..b1fe270d4c7 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 7ce7e36ea6b..ec16338b211 100644 --- a/addons/decimal_precision/i18n/it.po +++ b/addons/decimal_precision/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-11-28 19:56+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 a41a6144b02..d2ec9e97f8c 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/decimal_precision/i18n/ko.po b/addons/decimal_precision/i18n/ko.po index 0b3df57f440..c14f6ade7df 100644 --- a/addons/decimal_precision/i18n/ko.po +++ b/addons/decimal_precision/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-06-30 05:56+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 50916f66de2..279a45f7259 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 @@ -36,7 +36,7 @@ msgstr "Naudojimas" #. module: decimal_precision #: sql_constraint:decimal.precision:0 msgid "Only one value can be defined for each given usage!" -msgstr "" +msgstr "Tik po vieną reikšmę galima priskirti kiekvienam panaudojimo atvejui" #. module: decimal_precision #: view:decimal.precision:0 diff --git a/addons/decimal_precision/i18n/lv.po b/addons/decimal_precision/i18n/lv.po index ce2214d2b9c..65ae923f30a 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 b62e8f0104b..92f00d5c297 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 85e53a98845..c4f45da852b 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 3ca61cf64b3..0ad4ee8be0b 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 bab097257e8..ae67a0c8d7f 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 7af42869e35..423c9440a70 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 b7adf26e87a..572f7eb80fc 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 2329276bc34..d9290bc0bf7 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 f2a3d3cf7b8..6bdd6f31906 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 1f51cc2ddcb..1970373f769 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 0425d665686..bf089b7ed5b 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 ec815ef0f0c..8279cd70442 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 96650a0ff40..4f4a0aad447 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 1d65499c1a0..1d6f0a0ca09 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 a19397e6efd..8269077d3a3 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 0ada0fe9e94..514e8df92b2 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 96d8786971a..fdcecc74804 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 @@ -41,12 +41,12 @@ msgstr "Her kullanım için sadece bir değer tanımlanabilir !" #. module: decimal_precision #: view:decimal.precision:0 msgid "Decimal Precision" -msgstr "Ondalık Hassasiyet" +msgstr "Ondalık Doğruluğu" #. module: decimal_precision #: model:ir.model,name:decimal_precision.model_decimal_precision msgid "decimal.precision" -msgstr "Ondalık.hassasiyet" +msgstr "decimal.precision" #~ msgid "Decimal Precision Configuration" #~ msgstr "Ondalık Hassasiyet Ayarları" diff --git a/addons/decimal_precision/i18n/vi.po b/addons/decimal_precision/i18n/vi.po index 496b12c7cde..c0707231ee1 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 469402baeef..17b48005853 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\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 db99bf51b64..02e070e6a19 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: decimal_precision #: field:decimal.precision,digits:0 diff --git a/addons/delivery/i18n/ar.po b/addons/delivery/i18n/ar.po index 687369383e1..1431b7e9763 100644 --- a/addons/delivery/i18n/ar.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/bg.po b/addons/delivery/i18n/bg.po index b0ac4241cec..ed7683647b9 100644 --- a/addons/delivery/i18n/bg.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/bs.po b/addons/delivery/i18n/bs.po index 70ffa54db34..26b78e9a44e 100644 --- a/addons/delivery/i18n/bs.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ca.po b/addons/delivery/i18n/ca.po index fbd3046aacb..fac9b1d0014 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/cs.po b/addons/delivery/i18n/cs.po index 50f3d70e6de..0cecc635eb8 100644 --- a/addons/delivery/i18n/cs.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\n" #. module: delivery diff --git a/addons/delivery/i18n/da.po b/addons/delivery/i18n/da.po index 1590aacab92..67eca5ce749 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/de.po b/addons/delivery/i18n/de.po index 701abf648e7..eb16588796a 100644 --- a/addons/delivery/i18n/de.po +++ b/addons/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/el.po b/addons/delivery/i18n/el.po index e49adcb78ff..71cba1fb4d3 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es.po b/addons/delivery/i18n/es.po index 3f623a64ef3..586d655b3bd 100644 --- a/addons/delivery/i18n/es.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_AR.po b/addons/delivery/i18n/es_AR.po index b59cb76ab27..02cb7da2459 100644 --- a/addons/delivery/i18n/es_AR.po +++ b/addons/delivery/i18n/es_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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_CR.po b/addons/delivery/i18n/es_CR.po index 40b0a5374cd..97f317f0b04 100644 --- a/addons/delivery/i18n/es_CR.po +++ b/addons/delivery/i18n/es_CR.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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: delivery diff --git a/addons/delivery/i18n/es_EC.po b/addons/delivery/i18n/es_EC.po index b6bbd65d11c..8bf347e7669 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_MX.po b/addons/delivery/i18n/es_MX.po index 17cabd24584..a21b0b4e94b 100644 --- a/addons/delivery/i18n/es_MX.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/es_PY.po b/addons/delivery/i18n/es_PY.po index e483d103a64..744129a4fdf 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/et.po b/addons/delivery/i18n/et.po index b6baaf9ffec..108c6816cf4 100644 --- a/addons/delivery/i18n/et.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/fi.po b/addons/delivery/i18n/fi.po index 751c13542a4..5b1f8778f3f 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/fr.po b/addons/delivery/i18n/fr.po index ae6122c262d..7fb679746af 100644 --- a/addons/delivery/i18n/fr.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "XML non valide pour l'architecture de la vue !" @@ -463,6 +463,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"Cliquez pour ajouter un nouveau mode de livraison.\n" +"

\n" +"Chaque transporteur (ex. UPS) peut avoir plusieurs modes de livraison (ex.\n" +"UPS Express, UPS Standard), chacun avec un jeu de règles de facturation " +"propre.\n" +"

\n" +"Ajouter un mode de livraison permet de calculer automatiquement\n" +"les frais de livraison selon les critères que vous entrez, et ce en " +"fonction\n" +"du bon de commande (obtenu à partir du devis) ou de la facture (obtenue à\n" +"partir des bons de livraison).\n" +"

\n" +" " #. module: delivery #: field:delivery.grid.line,max_value:0 @@ -506,7 +520,7 @@ msgstr "<=" #. module: delivery #: help:stock.picking,weight_uom_id:0 msgid "Unit of measurement for Weight" -msgstr "" +msgstr "Unité de mesure du poids" #. module: delivery #: report:sale.shipping:0 @@ -622,7 +636,7 @@ msgstr "États" #: help:stock.move,weight_uom_id:0 msgid "" "Unit of Measure (Unit of Measure) is the unit of measurement for Weight" -msgstr "" +msgstr "'Unité de mesure' est l'unité de mesure pour le poids" #. module: delivery #: field:delivery.grid.line,price_type:0 diff --git a/addons/delivery/i18n/gl.po b/addons/delivery/i18n/gl.po index 82c86a7bfad..bdd2282a7d6 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/hi.po b/addons/delivery/i18n/hi.po index b4179d81001..9a8d743fe05 100644 --- a/addons/delivery/i18n/hi.po +++ b/addons/delivery/i18n/hi.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-20 10:00+0000\n" -"Last-Translator: Tejas Tank (OpenERP) \n" +"Last-Translator: Tejas Tank \n" "Language-Team: Hindi \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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/hr.po b/addons/delivery/i18n/hr.po index 0aeb10297a5..8ff17a0b695 100644 --- a/addons/delivery/i18n/hr.po +++ b/addons/delivery/i18n/hr.po @@ -13,14 +13,14 @@ msgstr "" "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 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: hr\n" #. module: delivery #: report:sale.shipping:0 msgid "Order Ref." -msgstr "" +msgstr "modul: isporuka (delivery)" #. module: delivery #: model:product.template,name:delivery.product_product_delivery_product_template @@ -30,7 +30,7 @@ msgstr "Dostava Poštom" #. module: delivery #: view:delivery.grid.line:0 msgid " in Function of " -msgstr "" +msgstr " u funkciji " #. module: delivery #: view:delivery.carrier:0 @@ -46,13 +46,13 @@ msgstr "Neto težina" #. module: delivery #: model:ir.model,name:delivery.model_delivery_grid_line msgid "Delivery Grid Line" -msgstr "" +msgstr "Stavka isporuke" #. module: delivery #: field:stock.move,weight_uom_id:0 #: field:stock.picking,weight_uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Jedinica mjere" #. module: delivery #: view:delivery.carrier:0 @@ -81,7 +81,7 @@ msgstr "?Grid line" #. module: delivery #: help:delivery.carrier,partner_id:0 msgid "The partner that is doing the delivery service." -msgstr "" +msgstr "Partner koji obavlja uslugu dostave." #. module: delivery #: model:ir.actions.report.xml,name:delivery.report_shipping @@ -93,21 +93,22 @@ msgstr "Otpremnica" #, python-format msgid "No line matched this product or order in the chosen delivery grid." msgstr "" +"U odabranim stavkama isporuke nema proizvoda ili narudžbe koji ste tražili." #. module: delivery #: model:ir.actions.act_window,name:delivery.action_picking_tree4 msgid "Picking to be invoiced" -msgstr "" +msgstr "Izlazno pakiranje za fakturiranje" #. module: delivery #: field:delivery.carrier,pricelist_ids:0 msgid "Advanced Pricing" -msgstr "" +msgstr "Detaljni sustav cijena" #. module: delivery #: help:delivery.grid,sequence:0 msgid "Gives the sequence order when displaying a list of delivery grid." -msgstr "" +msgstr "Upišite redoslijed prikazivanja za stavke isporuke" #. module: delivery #: view:delivery.grid:0 diff --git a/addons/delivery/i18n/hu.po b/addons/delivery/i18n/hu.po index d5bee53849a..fb2f95d25cf 100644 --- a/addons/delivery/i18n/hu.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/id.po b/addons/delivery/i18n/id.po index bcde48fa690..21c15cb8cb2 100644 --- a/addons/delivery/i18n/id.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/it.po b/addons/delivery/i18n/it.po index d3ba0216af1..58a10c09ac0 100644 --- a/addons/delivery/i18n/it.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ja.po b/addons/delivery/i18n/ja.po index 237b65571ba..a548663d251 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ko.po b/addons/delivery/i18n/ko.po index 2fb8da78099..38e100f09d5 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/lt.po b/addons/delivery/i18n/lt.po index 59808d9ae0f..70333665ee0 100644 --- a/addons/delivery/i18n/lt.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/lv.po b/addons/delivery/i18n/lv.po index 502ec684a2f..60ab1bd0705 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/mk.po b/addons/delivery/i18n/mk.po index c803c0062fd..e42cdf6095a 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 @@ -46,7 +46,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 +76,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 +86,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 +110,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 +135,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 +208,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 +240,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 +249,7 @@ msgid "" "based on delivery order(s)." msgstr "" "Доколку не направите 'Додади во понуда' точната цена ќе биде пресметана кога " -"ќе фактурирате врз основа на налогот(ите) за испорака." +"ќе фактурирате врз основа на испратницата." #. module: delivery #: field:delivery.carrier,partner_id:0 @@ -243,7 +259,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 +282,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 +291,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 +310,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 +337,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 +364,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 +379,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 +454,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 +491,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 +526,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 +546,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 +563,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 +602,7 @@ msgstr "" #. module: delivery #: field:delivery.carrier,grids_id:0 msgid "Delivery Grids" -msgstr "" +msgstr "Мрежи за испорака" #. module: delivery #: field:delivery.grid,sequence:0 @@ -575,7 +617,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/delivery/i18n/mn.po b/addons/delivery/i18n/mn.po index 76ff0a9ac1f..83a28d414ce 100644 --- a/addons/delivery/i18n/mn.po +++ b/addons/delivery/i18n/mn.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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/nb.po b/addons/delivery/i18n/nb.po index 4b11be4a331..aad212b307d 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/nl.po b/addons/delivery/i18n/nl.po index c9bd9c0e255..64cc55dcffc 100644 --- a/addons/delivery/i18n/nl.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 @@ -143,7 +143,7 @@ msgstr "" " verkoopprijs te berekenen, op basis van het gewicht van de \n" " producten en andere criteria. U kunt verschillende " "prijslijsten\n" -" voor elke aflevermethode maken. Maar ook per land of een " +" voor elke verzendwijze maken. Maar ook per land of een " "gebied\n" " in een land op basis van een postcode bereik.\n" "

\n" @@ -587,7 +587,7 @@ msgstr "Vervoerder" #: model:ir.actions.act_window,name:delivery.action_delivery_carrier_form #: model:ir.ui.menu,name:delivery.menu_action_delivery_carrier_form msgid "Delivery Methods" -msgstr "Leveringsmethodes" +msgstr "Verzendwijzes" #. module: delivery #: code:addons/delivery/sale.py:57 @@ -614,7 +614,7 @@ msgstr "Verkoopprijs" #. module: delivery #: view:stock.picking.out:0 msgid "Print Delivery Order" -msgstr "Afdrukken leveringsbon" +msgstr "Pakbon afdrukken" #. module: delivery #: view:delivery.grid:0 diff --git a/addons/delivery/i18n/nl_BE.po b/addons/delivery/i18n/nl_BE.po index c1747002c89..bafb541ffd3 100644 --- a/addons/delivery/i18n/nl_BE.po +++ b/addons/delivery/i18n/nl_BE.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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/pl.po b/addons/delivery/i18n/pl.po index 987bbf2e49c..80e35de21a8 100644 --- a/addons/delivery/i18n/pl.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/pt.po b/addons/delivery/i18n/pt.po index b84d9d37bd8..6296cce9bfb 100644 --- a/addons/delivery/i18n/pt.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 @@ -29,7 +29,7 @@ msgstr "Expedição por correio" #. module: delivery #: view:delivery.grid.line:0 msgid " in Function of " -msgstr "" +msgstr " em Função de " #. module: delivery #: view:delivery.carrier:0 @@ -465,7 +465,7 @@ msgstr "Grátis se for mais que %.2f" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking_in msgid "Incoming Shipments" -msgstr "" +msgstr "Recepções Agendadas" #. module: delivery #: selection:delivery.grid.line,operator:0 diff --git a/addons/delivery/i18n/pt_BR.po b/addons/delivery/i18n/pt_BR.po index d835682eadb..a116e7f4dff 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ro.po b/addons/delivery/i18n/ro.po index cc5ceeea491..bde34d8ff2e 100644 --- a/addons/delivery/i18n/ro.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/ru.po b/addons/delivery/i18n/ru.po index 5e09adf3083..9ad38fd42d6 100644 --- a/addons/delivery/i18n/ru.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sl.po b/addons/delivery/i18n/sl.po index 7511e767dff..b117b08a373 100644 --- a/addons/delivery/i18n/sl.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sq.po b/addons/delivery/i18n/sq.po index 3add2363f6c..b41395cb960 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sr.po b/addons/delivery/i18n/sr.po index 0082453a764..73a94018c61 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sr@latin.po b/addons/delivery/i18n/sr@latin.po index 0f56b663031..4c2b6a95ba7 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/sv.po b/addons/delivery/i18n/sv.po index b636e85aaf8..f05dc485e2c 100644 --- a/addons/delivery/i18n/sv.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/th.po b/addons/delivery/i18n/th.po index a24e62e8a35..1e3eb6505c4 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/tlh.po b/addons/delivery/i18n/tlh.po index 17f2c495ba0..b08134e766a 100644 --- a/addons/delivery/i18n/tlh.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/tr.po b/addons/delivery/i18n/tr.po index 1a34bf8cdcc..4e3832434dc 100644 --- a/addons/delivery/i18n/tr.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 @@ -24,7 +24,7 @@ msgstr "Sipariş Ref." #. module: delivery #: model:product.template,name:delivery.product_product_delivery_product_template msgid "Delivery by Poste" -msgstr "Poste tarafından teslim" +msgstr "Postayla Teslim" #. module: delivery #: view:delivery.grid.line:0 @@ -35,7 +35,7 @@ msgstr " bu İşlevde " #: view:delivery.carrier:0 #: view:delivery.grid:0 msgid "Destination" -msgstr "Hedef" +msgstr "Varış yeri" #. module: delivery #: field:stock.move,weight_net:0 @@ -80,7 +80,7 @@ msgstr "Tablo Satırı" #. module: delivery #: help:delivery.carrier,partner_id:0 msgid "The partner that is doing the delivery service." -msgstr "Teslimat hizmetini veren iş ortağı" +msgstr "Teslimat hizmetini veren iş ortağı." #. module: delivery #: model:ir.actions.report.xml,name:delivery.report_shipping @@ -107,7 +107,7 @@ msgstr "Gelişmiş Fiyatlandırma" #. module: delivery #: help:delivery.grid,sequence:0 msgid "Gives the sequence order when displaying a list of delivery grid." -msgstr "Bir teslimat tablsunu görüntülerken diziliş sıralamasını verir." +msgstr "Bir teslimat tablsunu görüntülerken diziliş sırasını verir." #. module: delivery #: view:delivery.grid:0 @@ -149,7 +149,7 @@ msgstr "" #. module: delivery #: report:sale.shipping:0 msgid "Delivery Order :" -msgstr "Teslim Siparişi:" +msgstr "Teslim Emri:" #. module: delivery #: field:delivery.grid.line,variable_factor:0 @@ -205,7 +205,7 @@ msgstr "Net Ağırlık" #. module: delivery #: view:delivery.grid.line:0 msgid "Grid Lines" -msgstr "Tablo Kalemleri" +msgstr "Tablo Satırları" #. module: delivery #: view:delivery.carrier:0 @@ -261,7 +261,7 @@ msgstr "Teslimat Tablosu" #. module: delivery #: report:sale.shipping:0 msgid "Invoiced to" -msgstr "Buna faturalandır" +msgstr "Fatura Adresi" #. module: delivery #: model:ir.model,name:delivery.model_stock_picking @@ -387,7 +387,7 @@ msgstr ">=" #: code:addons/delivery/sale.py:57 #, python-format msgid "Order not in draft state !" -msgstr "Sipariş taslak modunda değil !" +msgstr "Sipariş taslak durumunda değil !" #. module: delivery #: report:sale.shipping:0 @@ -564,7 +564,7 @@ msgstr "Nakliyeci %s (id: %d) teslimat tablosuna sahip değil!" #. module: delivery #: view:delivery.carrier:0 msgid "Pricing Information" -msgstr "Fiyatlandırma Bilgisi" +msgstr "Fiyat Bilgisi" #. module: delivery #: field:delivery.carrier,use_detailed_pricelist:0 @@ -602,7 +602,7 @@ msgstr "Teslimat Tabloları" #. module: delivery #: field:delivery.grid,sequence:0 msgid "Sequence" -msgstr "Sıralama" +msgstr "Sıra" #. module: delivery #: field:delivery.grid.line,list_price:0 @@ -612,13 +612,13 @@ msgstr "Satış Fiyatı" #. module: delivery #: view:stock.picking.out:0 msgid "Print Delivery Order" -msgstr "Teslimat Emrini Yazdır" +msgstr "Teslimat Emri Yazdır" #. module: delivery #: view:delivery.grid:0 #: field:delivery.grid,state_ids:0 msgid "States" -msgstr "Durumlar" +msgstr "Durumu" #. module: delivery #: help:stock.move,weight_uom_id:0 diff --git a/addons/delivery/i18n/uk.po b/addons/delivery/i18n/uk.po index 016742d6e0e..61a55ddf046 100644 --- a/addons/delivery/i18n/uk.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/vi.po b/addons/delivery/i18n/vi.po index c1a9ab41dac..42f2b989c6b 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/zh_CN.po b/addons/delivery/i18n/zh_CN.po index 5c9112b3dc2..5287f427708 100644 --- a/addons/delivery/i18n/zh_CN.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/delivery/i18n/zh_TW.po b/addons/delivery/i18n/zh_TW.po index 26c0e65a74c..181cae0e297 100644 --- a/addons/delivery/i18n/zh_TW.po +++ b/addons/delivery/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: delivery #: report:sale.shipping:0 diff --git a/addons/document/i18n/ar.po b/addons/document/i18n/ar.po index a26a68450f4..3975e5e7899 100644 --- a/addons/document/i18n/ar.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/bg.po b/addons/document/i18n/bg.po index 6440a8800a6..c8cc8bc191d 100644 --- a/addons/document/i18n/bg.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/bs.po b/addons/document/i18n/bs.po index 42a6e2c3463..81e7dcd906b 100644 --- a/addons/document/i18n/bs.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ca.po b/addons/document/i18n/ca.po index c4a94877df8..150729e3c07 100644 --- a/addons/document/i18n/ca.po +++ b/addons/document/i18n/ca.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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/cs.po b/addons/document/i18n/cs.po index be3cbf9b50d..379be28452c 100644 --- a/addons/document/i18n/cs.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\n" #. module: document diff --git a/addons/document/i18n/da.po b/addons/document/i18n/da.po index 2ab91ea5f5d..37f148eed19 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/de.po b/addons/document/i18n/de.po index 9cfce98157a..2a4a9566631 100644 --- a/addons/document/i18n/de.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/el.po b/addons/document/i18n/el.po index e219424146b..729e8c0dd73 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/es.po b/addons/document/i18n/es.po index b54cdf5cfe8..d729625cd4d 100644 --- a/addons/document/i18n/es.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 4ee58a577a0..33d76ebda05 100644 --- a/addons/document/i18n/es_AR.po +++ b/addons/document/i18n/es_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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 b191c5ddd73..32614ff3359 100644 --- a/addons/document/i18n/es_CR.po +++ b/addons/document/i18n/es_CR.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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: document diff --git a/addons/document/i18n/es_EC.po b/addons/document/i18n/es_EC.po index 4d113ab094f..92ef7c4c80d 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 e2c2e04b400..b09a51c2ff4 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/et.po b/addons/document/i18n/et.po index ba2de7b71c0..ef61c0e86f9 100644 --- a/addons/document/i18n/et.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/fi.po b/addons/document/i18n/fi.po index d13a6f8328d..ec4e44716dc 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/fr.po b/addons/document/i18n/fr.po index 2297e2c577b..6f5efdfb698 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/gl.po b/addons/document/i18n/gl.po index 726922486c6..396a0e377ad 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/gu.po b/addons/document/i18n/gu.po index 7b585d37cfe..6729d6dca20 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/hi.po b/addons/document/i18n/hi.po index d63dce23e2b..57ae39096f4 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/hr.po b/addons/document/i18n/hr.po index c4d6f051c3f..963858fbc96 100644 --- a/addons/document/i18n/hr.po +++ b/addons/document/i18n/hr.po @@ -13,25 +13,25 @@ msgstr "" "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 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: hr\n" #. module: document #: field:document.directory,parent_id:0 msgid "Parent Directory" -msgstr "" +msgstr "Nadređena mapa" #. module: document #: code:addons/document/document.py:350 #, python-format msgid "Directory name contains special characters!" -msgstr "" +msgstr "Naziv mape sadrži specijalne znakove" #. module: document #: view:document.directory:0 msgid "Search Document Directory" -msgstr "" +msgstr "Pretraži mape dokumenata" #. module: document #: help:document.directory,resource_field:0 @@ -39,6 +39,8 @@ msgid "" "Field to be used as name on resource directories. If empty, the \"name\" " "will be used." msgstr "" +"Polje koje će se koristiti kao naziv na mapama resursa. Ako je prazno, " +"\"naziv\" će biti korišten." #. module: document #: view:document.directory:0 @@ -108,19 +110,19 @@ msgstr "" #. module: document #: help:document.directory.dctx,field:0 msgid "The name of the field." -msgstr "" +msgstr "Naziv polja" #. module: document #: code:addons/document/document.py:340 #: code:addons/document/document.py:345 #, python-format msgid "Directory name must be unique!" -msgstr "" +msgstr "Naziv mape mora biti jedinstven" #. module: document #: view:ir.attachment:0 msgid "Filter on my documents" -msgstr "" +msgstr "Filtriraj moje dokumente" #. module: document #: view:ir.attachment:0 diff --git a/addons/document/i18n/hu.po b/addons/document/i18n/hu.po index 22e863a970c..75a54e3078e 100644 --- a/addons/document/i18n/hu.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/id.po b/addons/document/i18n/id.po index 3d5e9da6a84..80548d35d4e 100644 --- a/addons/document/i18n/id.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/it.po b/addons/document/i18n/it.po index d043df54691..91ebc987968 100644 --- a/addons/document/i18n/it.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ja.po b/addons/document/i18n/ja.po index 5cf5d031170..604533decbc 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ko.po b/addons/document/i18n/ko.po index 7a64794ba2b..c73326fd47c 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/lt.po b/addons/document/i18n/lt.po index 60a5105e13a..236f1e8322a 100644 --- a/addons/document/i18n/lt.po +++ b/addons/document/i18n/lt.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-05-10 18:06+0000\n" -"Last-Translator: Paulius Sladkevičius \n" +"Last-Translator: Paulius Sladkevičius @ hbee \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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/lv.po b/addons/document/i18n/lv.po index 1387e06afa4..b0c32afea29 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/mk.po b/addons/document/i18n/mk.po index 45467fe68ba..3bb9b76cf52 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 @@ -95,7 +95,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 +104,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 +123,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 +201,13 @@ msgid "" "

\n" " " msgstr "" +"

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

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

\n" +" " #. module: document #: code:addons/document/document.py:340 @@ -205,7 +215,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 +292,7 @@ msgstr "Име на поле" #. module: document #: field:document.directory,dctx_ids:0 msgid "Context fields" -msgstr "" +msgstr "Полиња за контекст" #. module: document #: view:document.directory:0 @@ -328,7 +338,7 @@ msgid "" "according to modules installed." msgstr "" "Кога го користите овој волшебник, тој ќе ги конфигурира автоматски вашите " -"директориуми според инсталраните модули." +"директориуми според инсталираните модули." #. module: document #: field:document.directory.content,directory_id:0 @@ -398,7 +408,7 @@ msgstr "Декември" #. module: document #: selection:document.directory,type:0 msgid "Static Directory" -msgstr "" +msgstr "Статичен директориум" #. module: document #: field:report.document.file,month:0 @@ -410,6 +420,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 +464,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 +490,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 +515,7 @@ msgstr "Август" #. module: document #: view:document.directory:0 msgid "Dynamic context" -msgstr "" +msgstr "Динамичен контекст" #. module: document #: sql_constraint:document.directory:0 @@ -534,6 +550,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 +608,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 +648,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/i18n/mn.po b/addons/document/i18n/mn.po index e7677c25c80..a1184fb382f 100644 --- a/addons/document/i18n/mn.po +++ b/addons/document/i18n/mn.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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/nb.po b/addons/document/i18n/nb.po index 7269a3b4050..fc04fcdeb5a 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/nl.po b/addons/document/i18n/nl.po index 5a196c21f5e..258f3761ab8 100644 --- a/addons/document/i18n/nl.po +++ b/addons/document/i18n/nl.po @@ -13,13 +13,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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 msgid "Parent Directory" -msgstr "Bovenliggende folder" +msgstr "Bovenliggende map" #. module: document #: code:addons/document/document.py:350 diff --git a/addons/document/i18n/nl_BE.po b/addons/document/i18n/nl_BE.po index 4c47d84ee1e..02cc7764be4 100644 --- a/addons/document/i18n/nl_BE.po +++ b/addons/document/i18n/nl_BE.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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/pl.po b/addons/document/i18n/pl.po index fecd09ade98..b655f0cbbcd 100644 --- a/addons/document/i18n/pl.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/pt.po b/addons/document/i18n/pt.po index 84d71473c7a..6760ea9f718 100644 --- a/addons/document/i18n/pt.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 @@ -201,6 +201,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um documento novo.\n" +"

\n" +" O repositório de documentos dá-lhe acesso a todos os anexos, " +"tais como\n" +" faturas, documentos de projetos, email, etc.\n" +"

\n" +" " #. module: document #: code:addons/document/document.py:340 @@ -364,7 +372,7 @@ msgstr "Ficheiros por utilizador" #. module: document #: view:ir.attachment:0 msgid "on" -msgstr "" +msgstr "ativo" #. module: document #: field:document.directory,domain:0 @@ -678,7 +686,7 @@ msgstr "ir.attachment" #. module: document #: view:report.document.user:0 msgid "Users File" -msgstr "" +msgstr "Ficheiro de utilizadores" #. module: document #: model:ir.model,name:document.model_document_configuration @@ -743,7 +751,7 @@ msgstr "" #: code:addons/document/static/src/js/document.js:17 #, python-format msgid "%s (%s)" -msgstr "" +msgstr "%s (%s)" #. module: document #: field:document.directory.content,sequence:0 diff --git a/addons/document/i18n/pt_BR.po b/addons/document/i18n/pt_BR.po index 1fea93050ec..79c8963175a 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ro.po b/addons/document/i18n/ro.po index 706a59b2fb8..f95bc415400 100644 --- a/addons/document/i18n/ro.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/ru.po b/addons/document/i18n/ru.po index aa74a37be8d..ebd086aaf79 100644 --- a/addons/document/i18n/ru.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sk.po b/addons/document/i18n/sk.po index 797ab6ee0c4..aecd6310711 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sl.po b/addons/document/i18n/sl.po index b5796cf18d0..a96d8ae1435 100644 --- a/addons/document/i18n/sl.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sq.po b/addons/document/i18n/sq.po index 2293c5328ca..857f9297a87 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sr.po b/addons/document/i18n/sr.po index 6263183d791..6d8f89d5b51 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:28+0000\n" +"X-Generator: Launchpad (build 16753)\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 49fd12367d0..fd987be8e9b 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/sv.po b/addons/document/i18n/sv.po index c6fd5d0d841..90ee23c4bc6 100644 --- a/addons/document/i18n/sv.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/tlh.po b/addons/document/i18n/tlh.po index 57ad788541d..620cabef906 100644 --- a/addons/document/i18n/tlh.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/tr.po b/addons/document/i18n/tr.po index 43f003fe134..d0e7dd3b659 100644 --- a/addons/document/i18n/tr.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/uk.po b/addons/document/i18n/uk.po index 2d1a85d549a..8c5f5f7b21e 100644 --- a/addons/document/i18n/uk.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document #: field:document.directory,parent_id:0 diff --git a/addons/document/i18n/vi.po b/addons/document/i18n/vi.po index 67c0f1e0656..de945f1ce85 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 ed477be9a59..da790643f61 100644 --- a/addons/document/i18n/zh_CN.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 9d43189e644..eaeb1d15c69 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 8a6f7b4cb20..1d12f997f36 100644 --- a/addons/document/i18n/zh_TW.po +++ b/addons/document/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 59fddab4fdc..b7199461a62 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 0d974861250..0884345161f 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 8f199fc0269..ff3a5201bd8 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 a4230a81d0d..7567f1a03bd 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 a0ea4216c31..bf1b7db920c 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 fc26090a191..57205e5e52e 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 8662f1fca28..cb401f3d65a 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 6cf0aa65c6a..f2e37256485 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 5c65b01e332..49ab2b42a06 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 fcd4d07becc..9f445154b86 100644 --- a/addons/document_ftp/i18n/es_CR.po +++ b/addons/document_ftp/i18n/es_CR.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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: document_ftp diff --git a/addons/document_ftp/i18n/es_EC.po b/addons/document_ftp/i18n/es_EC.po index cc1f9ee37ff..94d2aa01cc6 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 658dc2a2505..aa85f7f193c 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 34ab63a531c..c1da98c345e 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 52d0d7f769b..036f3fc8729 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 069a2f7e43a..89457118911 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 36d1130ea6d..a5809a7a068 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 05a1afbdb8a..42cb38cceeb 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 3c6d6caec33..caeacc49eeb 100644 --- a/addons/document_ftp/i18n/hu.po +++ b/addons/document_ftp/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 c01c5b831ae..e42fbede483 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 1c48bb02cbb..6fe994cb01f 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 24be1e90939..71cbef3b6a6 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document_ftp #: view:document.ftp.configuration:0 @@ -107,7 +107,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_ftp/i18n/mn.po b/addons/document_ftp/i18n/mn.po index 2f336a0bcc7..5a20c38765e 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 5cbf0770e36..b4f60cf9d4b 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 ebe40e4363d..23ce4150ade 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 c6dbedef8dc..d4bc9d740cc 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 f7aa385f32a..25d06f98b87 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 fc167e79d03..517c6ea4502 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 9cd0a8a3a06..bcc5437eefa 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 3fafcbc8684..6a617e1fcd1 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 d7cab6381a7..106b6682024 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 2fc021af117..7adc07ea8fe 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 188edb5c005..0fda07fdbe1 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 07b8ad927d6..dcdb2324d97 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 69bdf3dcb99..3b1b5eb2b60 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 429d0c415b3..45b9e263b42 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 482c8c71c87..c1b8a2f9985 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 7c666a81262..e57b4bb6f87 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document_ftp #: view:document.ftp.configuration:0 @@ -42,7 +42,7 @@ msgstr "" #. module: document_ftp #: model:ir.model,name:document_ftp.model_knowledge_config_settings msgid "knowledge.config.settings" -msgstr "" +msgstr "knowledge.config.settings" #. module: document_ftp #: model:ir.actions.act_url,name:document_ftp.action_document_browse @@ -52,7 +52,7 @@ msgstr "浏览文件" #. module: document_ftp #: help:knowledge.config.settings,document_ftp_url:0 msgid "Click the url to browse the documents" -msgstr "" +msgstr "点击 urk 来浏览文档" #. module: document_ftp #: field:document.ftp.browse,url:0 @@ -67,7 +67,7 @@ msgstr "FTP 服务器设置" #. module: document_ftp #: field:knowledge.config.settings,document_ftp_url:0 msgid "Browse Documents" -msgstr "" +msgstr "浏览文档" #. module: document_ftp #: view:document.ftp.browse:0 @@ -93,7 +93,7 @@ msgstr "地址" #. module: document_ftp #: view:document.ftp.browse:0 msgid "Cancel" -msgstr "" +msgstr "取消" #. module: document_ftp #: model:ir.model,name:document_ftp.model_document_ftp_browse @@ -113,7 +113,7 @@ msgstr "文档浏览" #. module: document_ftp #: view:document.ftp.browse:0 msgid "or" -msgstr "" +msgstr "或" #. module: document_ftp #: view:document.ftp.browse:0 diff --git a/addons/document_ftp/i18n/zh_TW.po b/addons/document_ftp/i18n/zh_TW.po index 5e76bf6f3ea..ca5eefe8478 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 442a4316a24..28fb7d7f5b0 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 7b0ebd776cf..392348830c3 100644 --- a/addons/document_page/i18n/bg.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 d0fcdb90e43..5872bd62635 100644 --- a/addons/document_page/i18n/bs.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 e4cd47b1406..4cb6343459d 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 530348d558b..3941899f8d0 100644 --- a/addons/document_page/i18n/cs.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\n" #. module: document_page diff --git a/addons/document_page/i18n/da.po b/addons/document_page/i18n/da.po index 6ce454b2627..c162ee54499 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 6cd359f12b6..3c06ebd409c 100644 --- a/addons/document_page/i18n/de.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 99a0b7d34bd..1513449e72c 100644 --- a/addons/document_page/i18n/el.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/document_page/i18n/es.po b/addons/document_page/i18n/es.po index 6b9b8b43c78..d7e9ceb20e0 100644 --- a/addons/document_page/i18n/es.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 1163a5fbba5..8e19f0fcb66 100644 --- a/addons/document_page/i18n/et.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 333a6b93bc1..5e573276da1 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 f8646dc65ff..0d23ee6ec8b 100644 --- a/addons/document_page/i18n/fr.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 8ad7cab44bb..fbaaad0d223 100644 --- a/addons/document_page/i18n/gl.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 fde54b5a0c5..ac82625d824 100644 --- a/addons/document_page/i18n/hr.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 b9f7d82bac0..ae3bb687829 100644 --- a/addons/document_page/i18n/hu.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document_page #: view:document.page:0 @@ -221,7 +221,7 @@ msgstr "Módosítás dátuma" #: model:ir.actions.act_window,name:document_page.action_related_page_create_menu #: model:ir.actions.act_window,name:document_page.action_wiki_create_menu msgid "Create Menu" -msgstr "Menü létrehozása" +msgstr "Menü létrehozás" #. module: document_page #: field:document.page,display_content:0 diff --git a/addons/document_page/i18n/id.po b/addons/document_page/i18n/id.po index c446a3af1bf..b343e08873f 100644 --- a/addons/document_page/i18n/id.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 ca8663ed296..17abd35c4a3 100644 --- a/addons/document_page/i18n/it.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 7e432272183..96d1683d599 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 c6fbc55dc82..29749da9b30 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 6c310ce8aa3..81762a4912b 100644 --- a/addons/document_page/i18n/lt.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: lt\n" #. module: document_page diff --git a/addons/document_page/i18n/lv.po b/addons/document_page/i18n/lv.po index 7de591d0e90..ac3619e4ab9 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 39711e084a8..8968e9fed5d 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document_page #: view:document.page:0 @@ -29,7 +29,7 @@ msgstr "Категорија" #: view:document.page:0 #: field:document.page,write_uid:0 msgid "Last Contributor" -msgstr "Последен приложувач" +msgstr "Последен соработник" #. module: document_page #: view:document.page:0 @@ -46,12 +46,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 @@ -76,8 +76,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 @@ -87,7 +87,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 +123,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 @@ -180,7 +180,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 @@ -190,7 +190,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_page/i18n/mn.po b/addons/document_page/i18n/mn.po index 3e1d6223891..90da7486bb2 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 7721e0d19cb..d6dbfa9450e 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 ef1d13d48b6..95da005c6bf 100644 --- a/addons/document_page/i18n/nl.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 97f9d50fde5..5edcd1acebc 100644 --- a/addons/document_page/i18n/pl.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 72587d064af..ea635b2ba83 100644 --- a/addons/document_page/i18n/pt.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 7d08858163a..9943639ea66 100644 --- a/addons/document_page/i18n/pt_BR.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 dd124fcc064..1ec84ca33a7 100644 --- a/addons/document_page/i18n/ro.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 43c4ca79b08..d3c37710ce5 100644 --- a/addons/document_page/i18n/ru.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 8783650a2da..5da6eb886a7 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 7f6fba021ce..5e006c605c9 100644 --- a/addons/document_page/i18n/sl.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 8e95e68c086..feb36f4077a 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 b7336075212..e635ba67712 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 d12cdb24b7f..1f8f3bfc40e 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 214b915dc4a..2186c849bb6 100644 --- a/addons/document_page/i18n/sv.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 c446a3af1bf..b343e08873f 100644 --- a/addons/document_page/i18n/tlh.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 643bb02c481..5f4bf7ea834 100644 --- a/addons/document_page/i18n/tr.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 577761fd646..3f10e06403b 100644 --- a/addons/document_page/i18n/uk.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 8b36e5fb7bf..af5b7f7c34d 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 19d7e157cca..5e0ddebd8c6 100644 --- a/addons/document_page/i18n/zh_CN.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 cac45c811ce..ed875371e93 100644 --- a/addons/document_page/i18n/zh_TW.po +++ b/addons/document_page/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 c01b4b21218..43931ce98ce 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 201c9d8e8d3..43636be274a 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 357a35302af..ee5a63b8330 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 163c31ceb63..64698676a2d 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 1d8a4d7a02e..a836965a9f1 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 376a1967608..efd9ad72422 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 1eb280dd665..9e5e16a39be 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 7f79baad011..f7353bff6e0 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 83604ad6d10..764e3291bae 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 213e6d06927..c05efd2fcbb 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: document_webdav diff --git a/addons/document_webdav/i18n/es_EC.po b/addons/document_webdav/i18n/es_EC.po index 84da980edb4..5d2519ef9b6 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 1b4365c40fb..c883602150e 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 f28d4e8ae07..7084e01c351 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 1127270d475..6cb4e9bc26e 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 5a820ca5d71..7e59c2fa991 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 843def706b6..f6947b40b26 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 a6ac09bc25e..043eadcca60 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 9d3db03d3c7..64ac0e44e6b 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 ffd443c359d..dd15bd62fc6 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 1b84b4eb7d9..44d1d724ef2 100644 --- a/addons/document_webdav/i18n/hu.po +++ b/addons/document_webdav/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 95e59c5398b..d04b53e29ab 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 89301afd100..d986e46e423 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 e67cb30f752..ba9bfaf3431 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 664c6271f18..39260d49ca1 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 @@ -31,13 +31,13 @@ msgstr "Документи" #. module: document_webdav #: view:document.webdav.dir.property:0 msgid "Document property" -msgstr "Сопственост на документ" +msgstr "Својство на документ" #. module: document_webdav #: 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 @@ -150,12 +150,12 @@ 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 msgid "DAV Properties" -msgstr "" +msgstr "DAV својства" #. module: document_webdav #: field:document.webdav.dir.property,do_subst:0 diff --git a/addons/document_webdav/i18n/mn.po b/addons/document_webdav/i18n/mn.po index 3031c8a3f9b..012fab0e58b 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 036e3d4d16b..e45e3c50e32 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 d40086d6bdb..66c6c1ec798 100644 --- a/addons/document_webdav/i18n/nl.po +++ b/addons/document_webdav/i18n/nl.po @@ -14,14 +14,14 @@ msgstr "" "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 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: document_webdav #: field:document.webdav.dir.property,create_date:0 #: field:document.webdav.file.property,create_date:0 msgid "Date Created" -msgstr "Datum gemaakt" +msgstr "Aanmaakdatum" #. module: document_webdav #: model:ir.ui.menu,name:document_webdav.menu_document_props diff --git a/addons/document_webdav/i18n/pl.po b/addons/document_webdav/i18n/pl.po index 34a3420665c..ff76d57f40e 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 cfcdb6f79ac..06beb986778 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 be9ec1d8574..f6f6352fd07 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 26f71b9935b..616eea79cc8 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 c734d573d1b..bfb2114e1a8 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 f7857a83503..5011449d5a9 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 b43f0dee74b..9b841b428ba 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 113bdaa47a0..f32134fc197 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 1c14c2c944e..f3b7451711b 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 b9bd8c27a86..7fcb9858553 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 7e79d2caf49..aa163c6e9a2 100644 --- a/addons/document_webdav/i18n/zh_CN.po +++ b/addons/document_webdav/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 69940eba827..76541bce842 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 e54fbf16ba8..521d0187de0 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/cs.po b/addons/edi/i18n/cs.po index 880519ca93b..aeeb12bb032 100644 --- a/addons/edi/i18n/cs.po +++ b/addons/edi/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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/de.po b/addons/edi/i18n/de.po index 28e1c59e784..385527dbb8f 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/en_GB.po b/addons/edi/i18n/en_GB.po index 949e1917847..72d6e2ec5c2 100644 --- a/addons/edi/i18n/en_GB.po +++ b/addons/edi/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-08-24 05:03+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/es.po b/addons/edi/i18n/es.po index 7800b33c65e..be2f7018cd1 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/es_CR.po b/addons/edi/i18n/es_CR.po index 6ab8eaa8c0e..35c9ff871f9 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/fi.po b/addons/edi/i18n/fi.po index 88475e24e7c..e558b13c0ba 100644 --- a/addons/edi/i18n/fi.po +++ b/addons/edi/i18n/fi.po @@ -14,29 +14,29 @@ msgstr "" "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 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web #: code:addons/edi/static/src/js/edi.js:67 #, python-format msgid "Reason:" -msgstr "" +msgstr "Syy:" #. module: edi #. openerp-web #: code:addons/edi/static/src/js/edi.js:60 #, python-format msgid "The document has been successfully imported!" -msgstr "" +msgstr "Dokumentin tuonti onnistui!" #. module: edi #. openerp-web #: code:addons/edi/static/src/js/edi.js:65 #, python-format msgid "Sorry, the document could not be imported." -msgstr "" +msgstr "Dokumenttia ei voida tuoda." #. module: edi #: model:ir.model,name:edi.model_res_company @@ -53,13 +53,13 @@ msgstr "Valuutta" #: code:addons/edi/static/src/js/edi.js:71 #, python-format msgid "Document Import Notification" -msgstr "" +msgstr "Dokumentin tuonti-ilmoitus" #. module: edi #: code:addons/edi/models/edi.py:130 #, python-format msgid "Missing application." -msgstr "" +msgstr "Sovellus puuttuu." #. module: edi #: code:addons/edi/models/edi.py:131 @@ -69,6 +69,9 @@ msgid "" "You can install it by connecting as the administrator and opening the " "configuration assistant." msgstr "" +"Dokumentti, jota yrität tuoda, vaatii OpenERP `%s` sovelluksen. Voit asentaa " +"puuttuvan sovelluksen, jos olet kirjautunut administraattorina, käyttämällä " +"konfigurointi assistenttia." #. module: edi #: code:addons/edi/models/edi.py:47 @@ -84,7 +87,7 @@ msgstr "Kumppani" #. module: edi #: model:ir.model,name:edi.model_edi_edi msgid "EDI Subsystem" -msgstr "" +msgstr "EDI Alijärjestelmä" #~ msgid "Description" #~ msgstr "Kuvaus" diff --git a/addons/edi/i18n/fr.po b/addons/edi/i18n/fr.po index 39fafd714d7..792630c4fe8 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/hr.po b/addons/edi/i18n/hr.po index f760ea28866..978c92595ec 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/hu.po b/addons/edi/i18n/hu.po index c3ecf0cf3e9..745d6c5a007 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/is.po b/addons/edi/i18n/is.po index c3b37f49f46..b9b18d402a1 100644 --- a/addons/edi/i18n/is.po +++ b/addons/edi/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-07-11 05:17+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/it.po b/addons/edi/i18n/it.po index f167c34e2b8..18e792c30de 100644 --- a/addons/edi/i18n/it.po +++ b/addons/edi/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-15 14:01+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/ja.po b/addons/edi/i18n/ja.po index 7cb9cb4e568..6abd415aa45 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/lt.po b/addons/edi/i18n/lt.po index 4c00a1dc6d6..212b199ff3a 100644 --- a/addons/edi/i18n/lt.po +++ b/addons/edi/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-04-30 05:29+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web @@ -41,12 +41,12 @@ msgstr "" #. module: edi #: model:ir.model,name:edi.model_res_company msgid "Companies" -msgstr "" +msgstr "Įmonės" #. module: edi #: model:ir.model,name:edi.model_res_currency msgid "Currency" -msgstr "" +msgstr "Valiuta" #. module: edi #. openerp-web @@ -79,7 +79,7 @@ msgstr "" #. module: edi #: model:ir.model,name:edi.model_res_partner msgid "Partner" -msgstr "" +msgstr "Partneris" #. module: edi #: model:ir.model,name:edi.model_edi_edi diff --git a/addons/edi/i18n/mk.po b/addons/edi/i18n/mk.po index 3d832230272..daa94dfd284 100644 --- a/addons/edi/i18n/mk.po +++ b/addons/edi/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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/ml.po b/addons/edi/i18n/ml.po index 0da73279e2c..558ffe2e343 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/mn.po b/addons/edi/i18n/mn.po index 250b7ea5a10..a3e3e68f252 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/nb.po b/addons/edi/i18n/nb.po index 09ebc443fe2..9d8fc6b5738 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/nl.po b/addons/edi/i18n/nl.po index 00461c7dcdd..afe388eecf9 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/nl_BE.po b/addons/edi/i18n/nl_BE.po index aa96f26d13b..f0fc60737ea 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-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/pl.po b/addons/edi/i18n/pl.po index dfad2c10743..19919c24e17 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/pt.po b/addons/edi/i18n/pt.po index 5b5657f220d..4f8566755d2 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/pt_BR.po b/addons/edi/i18n/pt_BR.po index 30ffcdc3209..8e757e7178f 100644 --- a/addons/edi/i18n/pt_BR.po +++ b/addons/edi/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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/ro.po b/addons/edi/i18n/ro.po index a8d6d1eb9d4..6ad116d5f2d 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/ru.po b/addons/edi/i18n/ru.po index 3ac2689bc57..8c3d2cba7e8 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-05-31 05:38+0000\n" -"X-Generator: Launchpad (build 16660)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/sl.po b/addons/edi/i18n/sl.po index bf15d5cb009..8e8a587dbbc 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web @@ -84,4 +84,4 @@ msgstr "Partner" #. module: edi #: model:ir.model,name:edi.model_edi_edi msgid "EDI Subsystem" -msgstr "" +msgstr "EDI Subsystem" diff --git a/addons/edi/i18n/sv.po b/addons/edi/i18n/sv.po index f33e0918cbb..bb9aed5a3fc 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/tr.po b/addons/edi/i18n/tr.po index dc20cbc5ff9..8dd3e5d1898 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/zh_CN.po b/addons/edi/i18n/zh_CN.po index a07a6e3861f..0f948b48c89 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/edi/i18n/zh_TW.po b/addons/edi/i18n/zh_TW.po index 192421dbd6f..b9350bae551 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: edi #. openerp-web diff --git a/addons/email_template/i18n/ar.po b/addons/email_template/i18n/ar.po index e802e4ac28d..7ba0d137912 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -116,7 +116,7 @@ msgid "Body" msgstr "النص" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "" @@ -391,7 +391,7 @@ msgid "Attachments" msgstr "مرفقات" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "فشل في حذف سجل التأثير" @@ -420,7 +420,7 @@ msgid "Email Details" msgstr "تفاصيل الرسالة" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "ارسل بريد (%s)" @@ -456,7 +456,7 @@ msgstr "" "المستند المستلم (نمط-فرعي)" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "تحذير" diff --git a/addons/email_template/i18n/bg.po b/addons/email_template/i18n/bg.po index 75b139adae4..169a2dec0e3 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -113,7 +113,7 @@ msgid "Body" msgstr "Тяло" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "" @@ -379,7 +379,7 @@ msgid "Attachments" msgstr "Прикачени файлове" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "" @@ -408,7 +408,7 @@ msgid "Email Details" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "" @@ -440,7 +440,7 @@ msgid "" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Предупреждение" diff --git a/addons/email_template/i18n/ca.po b/addons/email_template/i18n/ca.po index a58f20a2ce5..8736d94e32b 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -113,7 +113,7 @@ msgid "Body" msgstr "Missatge" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "" @@ -379,7 +379,7 @@ msgid "Attachments" msgstr "Adjunts" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "" @@ -408,7 +408,7 @@ msgid "Email Details" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Envia mail (%s)" @@ -440,7 +440,7 @@ msgid "" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Avís" diff --git a/addons/email_template/i18n/cs.po b/addons/email_template/i18n/cs.po index 8c4ee4c3428..366f72205ba 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -117,7 +117,7 @@ msgid "Body" msgstr "Tělo" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "%s (kopie)" @@ -399,7 +399,7 @@ msgid "Attachments" msgstr "Přílohy" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "Nepodařilo se smazat akci záznamu." @@ -428,7 +428,7 @@ msgid "Email Details" msgstr "Podrobnosti emailu" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Odeslat email (%s)" @@ -464,7 +464,7 @@ msgstr "" "cílovém dokumentovém modelu (sub-modelu)." #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Varování" diff --git a/addons/email_template/i18n/da.po b/addons/email_template/i18n/da.po index 856b5ad609f..af1e828d5de 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -113,7 +113,7 @@ msgid "Body" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "" @@ -379,7 +379,7 @@ msgid "Attachments" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "" @@ -408,7 +408,7 @@ msgid "Email Details" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "" @@ -440,7 +440,7 @@ msgid "" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "" diff --git a/addons/email_template/i18n/de.po b/addons/email_template/i18n/de.po index 86d2d0bc490..b1df32fe5d2 100644 --- a/addons/email_template/i18n/de.po +++ b/addons/email_template/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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -116,7 +116,7 @@ msgid "Body" msgstr "Hauptteil" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "%s (copy)" @@ -401,7 +401,7 @@ msgid "Attachments" msgstr "Anhänge" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "Das Löschen des Datensatzes schlug fehl." @@ -430,7 +430,7 @@ msgid "Email Details" msgstr "E-mail Details" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Versende Mail (%s)" @@ -467,7 +467,7 @@ msgstr "" "Zielfeld der Relation auswählen (sub-model)" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Warnung" diff --git a/addons/email_template/i18n/es.po b/addons/email_template/i18n/es.po index 1c2ddba6ea3..15ec278ff5e 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -118,7 +118,7 @@ msgid "Body" msgstr "Cuerpo" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "%s (copiar)" @@ -411,7 +411,7 @@ msgid "Attachments" msgstr "Adjuntos" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "Borrado del registro de la acción fallido" @@ -440,7 +440,7 @@ msgid "Email Details" msgstr "Detalles del email" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Enviar mail (%s)" @@ -479,7 +479,7 @@ msgstr "" "modelo)." #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Aviso" diff --git a/addons/email_template/i18n/es_CL.po b/addons/email_template/i18n/es_CL.po index 3c9e955f86b..2fe94fe0cfe 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -113,7 +113,7 @@ msgid "Body" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "" @@ -379,7 +379,7 @@ msgid "Attachments" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "" @@ -408,7 +408,7 @@ msgid "Email Details" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "" @@ -440,7 +440,7 @@ msgid "" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "¡Atención!" diff --git a/addons/email_template/i18n/es_CR.po b/addons/email_template/i18n/es_CR.po index 9027808badf..4dce43f5c3f 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: email_template @@ -119,7 +119,7 @@ msgid "Body" msgstr "Cuerpo" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "" @@ -408,7 +408,7 @@ msgid "Attachments" msgstr "Adjuntos" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "Eliminación del registro de la acción fracasó." @@ -437,7 +437,7 @@ msgid "Email Details" msgstr "Detalles del email" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Enviar mail (%s)" @@ -475,7 +475,7 @@ msgstr "" "destino (sub-modelo)." #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Aviso" diff --git a/addons/email_template/i18n/es_EC.po b/addons/email_template/i18n/es_EC.po index cf6ae037cd3..d50245abc6d 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -113,7 +113,7 @@ msgid "Body" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "" @@ -379,7 +379,7 @@ msgid "Attachments" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "" @@ -408,7 +408,7 @@ msgid "Email Details" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "" @@ -440,7 +440,7 @@ msgid "" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "" diff --git a/addons/email_template/i18n/et.po b/addons/email_template/i18n/et.po index 71ca242f45d..af479f815f0 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -113,7 +113,7 @@ msgid "Body" msgstr "Sisu" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "" @@ -379,7 +379,7 @@ msgid "Attachments" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "" @@ -408,7 +408,7 @@ msgid "Email Details" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "" @@ -440,7 +440,7 @@ msgid "" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Hoiatus" diff --git a/addons/email_template/i18n/fa_AF.po b/addons/email_template/i18n/fa_AF.po index 3dd0a63772a..902815f9985 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -113,7 +113,7 @@ msgid "Body" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "" @@ -379,7 +379,7 @@ msgid "Attachments" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "" @@ -408,7 +408,7 @@ msgid "Email Details" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "" @@ -440,7 +440,7 @@ msgid "" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "" diff --git a/addons/email_template/i18n/fi.po b/addons/email_template/i18n/fi.po index 197c9add37d..5dddc27d948 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -115,7 +115,7 @@ msgid "Body" msgstr "Sisältö" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "" @@ -381,7 +381,7 @@ msgid "Attachments" msgstr "Liitteet" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "Toimintotietueen poisto epäonnistui" @@ -410,7 +410,7 @@ msgid "Email Details" msgstr "Sähköpostin yksityiskohdat" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Lähetä sähköposti (%s)" @@ -443,7 +443,7 @@ msgid "" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Varoitus" diff --git a/addons/email_template/i18n/fr.po b/addons/email_template/i18n/fr.po index c8a75230072..0f76dd15920 100644 --- a/addons/email_template/i18n/fr.po +++ b/addons/email_template/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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -42,7 +42,7 @@ msgstr "Retirer des campagnes marketing" #: field:email.template,email_to:0 #: field:email_template.preview,email_to:0 msgid "To (Emails)" -msgstr "" +msgstr "Pour (courriels)" #. module: email_template #: field:email.template,mail_server_id:0 @@ -116,7 +116,7 @@ msgid "Body" msgstr "Corps" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "%s (copie)" @@ -359,7 +359,7 @@ msgstr "" #: field:email.template,email_recipients:0 #: field:email_template.preview,email_recipients:0 msgid "To (Partners)" -msgstr "" +msgstr "Pour (partenaires)" #. module: email_template #: field:email.template,auto_delete:0 @@ -401,7 +401,7 @@ msgid "Attachments" msgstr "Pièces jointes" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "La suppression de l'action a échoué." @@ -430,7 +430,7 @@ msgid "Email Details" msgstr "Détails des courriels" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Envoyer le courriel (%s)" @@ -467,7 +467,7 @@ msgstr "" "destination (sous-modèle)." #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Attention" diff --git a/addons/email_template/i18n/hr.po b/addons/email_template/i18n/hr.po index c6e55465507..e1d0041f86c 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -113,7 +113,7 @@ msgid "Body" msgstr "Sadržaj" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "" @@ -379,7 +379,7 @@ msgid "Attachments" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "" @@ -408,7 +408,7 @@ msgid "Email Details" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "" @@ -440,7 +440,7 @@ msgid "" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Upozorenje" diff --git a/addons/email_template/i18n/hu.po b/addons/email_template/i18n/hu.po index c998043019e..198ed25bbd2 100644 --- a/addons/email_template/i18n/hu.po +++ b/addons/email_template/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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -116,7 +116,7 @@ msgid "Body" msgstr "Levéltörzs" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "%s (másolat)" @@ -406,7 +406,7 @@ msgid "Attachments" msgstr "Mellékletek" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "Sikertelen művelet rekord törlése." @@ -435,7 +435,7 @@ msgid "Email Details" msgstr "E-mail részletek" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Levél küldése (%s)" @@ -473,7 +473,7 @@ msgstr "" "mezőt." #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Figyelmeztetés" diff --git a/addons/email_template/i18n/it.po b/addons/email_template/i18n/it.po index 827360414d6..bd763a8725f 100644 --- a/addons/email_template/i18n/it.po +++ b/addons/email_template/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-15 14:31+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -117,7 +117,7 @@ msgid "Body" msgstr "Corpo" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "%s (copia)" @@ -402,7 +402,7 @@ msgid "Attachments" msgstr "Allegati" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "Eliminazione dell'azione fallita." @@ -431,7 +431,7 @@ msgid "Email Details" msgstr "Dettagli email" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Invio Email (%s)" @@ -469,7 +469,7 @@ msgstr "" "selezionare un campo del model del documento destinazione (sotto-modello)." #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Attenzione" diff --git a/addons/email_template/i18n/ja.po b/addons/email_template/i18n/ja.po index a618a6cefd4..0571ffc0333 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -113,7 +113,7 @@ msgid "Body" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "" @@ -385,7 +385,7 @@ msgid "Attachments" msgstr "添付" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "活動レコードを削除できません。" @@ -414,7 +414,7 @@ msgid "Email Details" msgstr "Eメールの詳細" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Eメールを送信する (%s)" @@ -446,7 +446,7 @@ msgid "" msgstr "最初の項目として関係項目を選ぶと、送り先の文書モデル(サブモデル)の中から目標項目を指定することができます。" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "警告" diff --git a/addons/email_template/i18n/lt.po b/addons/email_template/i18n/lt.po index 20c2c5e0e5d..b8ae65bdd83 100644 --- a/addons/email_template/i18n/lt.po +++ b/addons/email_template/i18n/lt.po @@ -14,14 +14,14 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-30 05:29+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 #: field:email_template.preview,email_from:0 msgid "From" -msgstr "" +msgstr "Nuo" #. module: email_template #: field:mail.compose.message,template_id:0 @@ -99,24 +99,24 @@ msgstr "" #: field:email.template,reply_to:0 #: field:email_template.preview,reply_to:0 msgid "Reply-To" -msgstr "" +msgstr "Atsakyti (kam)" #. module: email_template #: view:mail.compose.message:0 msgid "Use template" -msgstr "" +msgstr "Naudojamas šablonas" #. module: email_template #: field:email.template,body_html:0 #: field:email_template.preview,body_html:0 msgid "Body" -msgstr "" +msgstr "Tekstas" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (kopija)" #. module: email_template #: help:email.template,user_signature:0 @@ -134,7 +134,7 @@ msgstr "" #. module: email_template #: view:mail.compose.message:0 msgid "Save as new template" -msgstr "" +msgstr "Išsaugoti kaip naują šabloną" #. module: email_template #: help:email.template,sub_object:0 @@ -147,7 +147,7 @@ msgstr "" #. module: email_template #: model:ir.model,name:email_template.model_email_template msgid "Email Templates" -msgstr "" +msgstr "El. laiškų šablonai" #. module: email_template #: help:email.template,report_name:0 @@ -190,7 +190,7 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Dynamic Value Builder" -msgstr "" +msgstr "Dinaminių reikšmių redaktorius" #. module: email_template #: model:ir.actions.act_window,name:email_template.wizard_email_template_preview @@ -224,7 +224,7 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Advanced" -msgstr "" +msgstr "Išsamūs" #. module: email_template #: view:email_template.preview:0 @@ -241,24 +241,24 @@ msgstr "" #: model:ir.actions.act_window,name:email_template.action_email_template_tree_all #: model:ir.ui.menu,name:email_template.menu_email_templates msgid "Templates" -msgstr "" +msgstr "Šablonai" #. module: email_template #: field:email.template,name:0 #: field:email_template.preview,name:0 msgid "Name" -msgstr "" +msgstr "Pavadinimas" #. module: email_template #: field:email.template,lang:0 #: field:email_template.preview,lang:0 msgid "Language" -msgstr "" +msgstr "Kalba" #. module: email_template #: model:ir.model,name:email_template.model_email_template_preview msgid "Email Template Preview" -msgstr "" +msgstr "El. laiško šablono peržiūra" #. module: email_template #: view:email_template.preview:0 @@ -316,7 +316,7 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Model" -msgstr "" +msgstr "Modelis" #. module: email_template #: model:ir.model,name:email_template.model_mail_compose_message @@ -363,7 +363,7 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Addressing" -msgstr "" +msgstr "Adresavimas" #. module: email_template #: help:email.template,email_recipients:0 @@ -376,10 +376,10 @@ msgstr "" #: field:email.template,attachment_ids:0 #: field:email_template.preview,attachment_ids:0 msgid "Attachments" -msgstr "" +msgstr "Priedai" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "" @@ -394,7 +394,7 @@ msgstr "" #: field:email.template,model_id:0 #: field:email_template.preview,model_id:0 msgid "Applies to" -msgstr "" +msgstr "Skirta" #. module: email_template #: field:email.template,sub_model_object_field:0 @@ -405,10 +405,10 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Email Details" -msgstr "" +msgstr "El. laiško duomenys" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "" @@ -429,7 +429,7 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Group by..." -msgstr "" +msgstr "Grupuoti pagal..." #. module: email_template #: help:email.template,sub_model_object_field:0 @@ -440,10 +440,10 @@ msgid "" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" -msgstr "" +msgstr "Įspėjimas" #. module: email_template #: field:email.template,user_signature:0 @@ -454,13 +454,13 @@ msgstr "" #. module: email_template #: model:ir.model,name:email_template.model_res_partner msgid "Partner" -msgstr "" +msgstr "Partneris" #. module: email_template #: field:email.template,null_value:0 #: field:email_template.preview,null_value:0 msgid "Default Value" -msgstr "" +msgstr "Numatytoji reikšmė" #. module: email_template #: help:email.template,attachment_ids:0 @@ -479,10 +479,10 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Contents" -msgstr "" +msgstr "Turinys" #. module: email_template #: field:email.template,subject:0 #: field:email_template.preview,subject:0 msgid "Subject" -msgstr "" +msgstr "Tema" diff --git a/addons/email_template/i18n/mk.po b/addons/email_template/i18n/mk.po index 551ae7b0763..ec561535bac 100644 --- a/addons/email_template/i18n/mk.po +++ b/addons/email_template/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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -44,7 +44,7 @@ msgstr "Исклучи" #: 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 @@ -93,7 +93,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 @@ -118,10 +118,10 @@ msgid "Body" msgstr "Тело" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" -msgstr "%s (copy)" +msgstr "%s (копија)" #. module: email_template #: help:email.template,user_signature:0 @@ -156,7 +156,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 @@ -280,19 +280,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 @@ -330,7 +330,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 @@ -346,7 +346,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 @@ -357,7 +357,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 @@ -378,14 +378,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 @@ -408,7 +407,7 @@ msgid "Attachments" msgstr "Прилози" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "Бришење на неуспешно зачувување на акција." @@ -423,7 +422,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 @@ -434,13 +433,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 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" -msgstr "Испрати маил (%s)" +msgstr "Испрати пошта (%s)" #. module: email_template #: help:res.partner,opt_out:0 @@ -448,15 +447,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 @@ -475,7 +474,7 @@ msgstr "" "изберете целното поле во одредишниот модел на документот (под-модел)" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Внимание" @@ -504,8 +503,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/email_template/i18n/mn.po b/addons/email_template/i18n/mn.po index db5bccb9c1c..b2200c7eacd 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -26,7 +26,7 @@ msgstr "Хаанаас" #. module: email_template #: field:mail.compose.message,template_id:0 msgid "Template" -msgstr "Загвар" +msgstr "Үлгэр" #. module: email_template #: help:email.template,ref_ir_value:0 @@ -37,7 +37,7 @@ msgstr "Хажуугийн зурвасын үйлдлийг нээх даруу #. module: email_template #: field:res.partner,opt_out:0 msgid "Opt-Out" -msgstr "" +msgstr "Хүлээж авахгүй" #. module: email_template #: field:email.template,email_to:0 @@ -117,7 +117,7 @@ msgid "Body" msgstr "Их бие" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "%s (хуулбар)" @@ -155,7 +155,7 @@ msgstr "" #. module: email_template #: model:ir.model,name:email_template.model_email_template msgid "Email Templates" -msgstr "Email Templates" +msgstr "Имэйл Үлгэрүүд" #. module: email_template #: help:email.template,report_name:0 @@ -211,7 +211,7 @@ msgstr "Динамик Утгын Байгуулагч" #. module: email_template #: model:ir.actions.act_window,name:email_template.wizard_email_template_preview msgid "Template Preview" -msgstr "Загварыг харах" +msgstr "Үлгэрийг урьдчилан харах" #. module: email_template #: view:mail.compose.message:0 @@ -224,7 +224,7 @@ msgid "" "Display an option on related documents to open a composition wizard with " "this template" msgstr "" -"Холбогдох баримт дээр энэ үлгээр үүсгэх харилцах цонхын харуулах цонхын " +"Холбогдох баримт дээр энэ үлгэрээр үүсгэх харилцах цонхын харуулах цонхын " "сонголтууд" #. module: email_template @@ -261,7 +261,7 @@ msgstr "Жишээ баримт хэрэглэж" #: model:ir.actions.act_window,name:email_template.action_email_template_tree_all #: model:ir.ui.menu,name:email_template.menu_email_templates msgid "Templates" -msgstr "Загвар" +msgstr "Үлгэрүүд" #. module: email_template #: field:email.template,name:0 @@ -278,7 +278,7 @@ msgstr "Хэл" #. module: email_template #: model:ir.model,name:email_template.model_email_template_preview msgid "Email Template Preview" -msgstr "Email Template Preview" +msgstr "Имэйл Үлгэрийн Урьдчилсан Харагдац" #. module: email_template #: view:email_template.preview:0 @@ -403,7 +403,7 @@ msgid "Attachments" msgstr "Хавсралтууд" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "Үйлдлийн бичлэгийг устгах үйлдэл бүтсэнгүй." @@ -432,7 +432,7 @@ msgid "Email Details" msgstr "Имэйл Дэлгэрэнгүй" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Мэйл илгээх (%s)" @@ -469,7 +469,7 @@ msgstr "" "баримтын моделийн зорилто талбарыг сонгох боломжтой." #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Анхааруулга" diff --git a/addons/email_template/i18n/nb.po b/addons/email_template/i18n/nb.po index ea528fabcce..7483326a29e 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -117,7 +117,7 @@ msgid "Body" msgstr "Innhold" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "" @@ -399,7 +399,7 @@ msgid "Attachments" msgstr "Vedlegg" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "Sletting av handlingen posten mislyktes." @@ -428,7 +428,7 @@ msgid "Email Details" msgstr "E-post detaljer." #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Send e-post(%s)" @@ -464,7 +464,7 @@ msgstr "" "målet feltet innen måldokumentet modellen (sub-modell)." #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Advarsel" diff --git a/addons/email_template/i18n/nl.po b/addons/email_template/i18n/nl.po index e11bf4545ae..e8d7a9437db 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -118,7 +118,7 @@ msgid "Body" msgstr "Berichttekst" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "%s (kopie)" @@ -210,7 +210,7 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Dynamic Value Builder" -msgstr "Dynamic Value Builder" +msgstr "Maak dynamische velden" #. module: email_template #: model:ir.actions.act_window,name:email_template.wizard_email_template_preview @@ -380,8 +380,8 @@ msgid "" "Final placeholder expression, to be copy-pasted in the desired template " "field." msgstr "" -"Finale tijdelijke aanduiding expressie, om te kopiëren en plakken in het " -"gewenste sjabloon veld." +"Uiteindelijke tijdelijke aanduiding expressie, om te kopiëren en plakken in " +"het gewenste sjabloon veld." #. module: email_template #: field:email.template,model:0 @@ -410,7 +410,7 @@ msgid "Attachments" msgstr "Bijlagen" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "Verwijderen van de actieregel is mislukt." @@ -439,7 +439,7 @@ msgid "Email Details" msgstr "E-maildetails" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Verstuur mail (%s)" @@ -476,7 +476,7 @@ msgstr "" "doelveld selecteren binnen de bestemming document model (sub-model)." #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Waarschuwing" diff --git a/addons/email_template/i18n/nl_BE.po b/addons/email_template/i18n/nl_BE.po index 5e7ddeec587..9b66cfa3870 100644 --- a/addons/email_template/i18n/nl_BE.po +++ b/addons/email_template/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-04-27 05:44+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -114,7 +114,7 @@ msgid "Body" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "" @@ -380,7 +380,7 @@ msgid "Attachments" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "" @@ -409,7 +409,7 @@ msgid "Email Details" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "" @@ -441,7 +441,7 @@ msgid "" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "" diff --git a/addons/email_template/i18n/pl.po b/addons/email_template/i18n/pl.po index 4009997bc5c..13f7123b87c 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -116,7 +116,7 @@ msgid "Body" msgstr "Treść" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "%s (kopia)" @@ -395,7 +395,7 @@ msgid "Attachments" msgstr "Załączniki" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "Usunięcie rekordu akcji nie udało się." @@ -424,7 +424,7 @@ msgid "Email Details" msgstr "Szczegóły e-mail" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Wyślij wiadomość (%s)" @@ -460,7 +460,7 @@ msgstr "" "pole docelowe w docelowym modelu (podmodelu)." #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Ostrzeżenie" diff --git a/addons/email_template/i18n/pt.po b/addons/email_template/i18n/pt.po index bcfdd321c6a..5500cb2e944 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -37,7 +37,7 @@ msgstr "Botão da Barra Lateral para Abrir as suas Ações" #. module: email_template #: field:res.partner,opt_out:0 msgid "Opt-Out" -msgstr "" +msgstr "Opção saída" #. module: email_template #: field:email.template,email_to:0 @@ -117,7 +117,7 @@ msgid "Body" msgstr "Corpo" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "%s (cópia)" @@ -360,7 +360,7 @@ msgstr "" #: field:email.template,email_recipients:0 #: field:email_template.preview,email_recipients:0 msgid "To (Partners)" -msgstr "" +msgstr "Para (Parceiros)" #. module: email_template #: field:email.template,auto_delete:0 @@ -403,7 +403,7 @@ msgid "Attachments" msgstr "Anexos" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "Exclusão do registo da ação falhou." @@ -432,7 +432,7 @@ msgid "Email Details" msgstr "Detalhes da mensagem" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Enviar o correio (%s)" @@ -470,7 +470,7 @@ msgstr "" "de destino (sub-modelo)." #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Aviso" diff --git a/addons/email_template/i18n/pt_BR.po b/addons/email_template/i18n/pt_BR.po index a2394f27ee9..bdb1d392ace 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -118,7 +118,7 @@ msgid "Body" msgstr "Corpo" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "%s (cópia)" @@ -405,7 +405,7 @@ msgid "Attachments" msgstr "Anexos" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "Falha ao excluir o registro" @@ -434,7 +434,7 @@ msgid "Email Details" msgstr "Detalhes do Email" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Enviar Email (%s)" @@ -472,7 +472,7 @@ msgstr "" "modelo)" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Aviso" diff --git a/addons/email_template/i18n/ro.po b/addons/email_template/i18n/ro.po index 7763e6073c7..ea97726cdb6 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -117,7 +117,7 @@ msgid "Body" msgstr "Conţinut" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "%s (copie)" @@ -407,7 +407,7 @@ msgid "Attachments" msgstr "Atasamente" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "Stergerea inregistrarii actiunii a esuat." @@ -436,7 +436,7 @@ msgid "Email Details" msgstr "Detalii e-mail" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Trimite email (%s)" @@ -474,7 +474,7 @@ msgstr "" "destinatie (sub-model)." #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Atentionare" diff --git a/addons/email_template/i18n/ru.po b/addons/email_template/i18n/ru.po index b16433fddd5..74e6feb4876 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-06-06 05:21+0000\n" -"X-Generator: Launchpad (build 16667)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -117,7 +117,7 @@ msgid "Body" msgstr "Тело" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "%s (копия)" @@ -402,7 +402,7 @@ msgid "Attachments" msgstr "Вложения" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "Удаление действия не удалось." @@ -431,7 +431,7 @@ msgid "Email Details" msgstr "Подробности письма" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Отправить почту (%s)" @@ -467,7 +467,7 @@ msgstr "" "поля в пределах модели целевого документа (под-модели)." #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Предупреждение" diff --git a/addons/email_template/i18n/sl.po b/addons/email_template/i18n/sl.po index e604130416c..54ecd1928f9 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -113,7 +113,7 @@ msgid "Body" msgstr "Vsebina" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "%s (kopija)" @@ -379,7 +379,7 @@ msgid "Attachments" msgstr "Priloge" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "" @@ -408,7 +408,7 @@ msgid "Email Details" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "" @@ -440,7 +440,7 @@ msgid "" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Opozorilo" diff --git a/addons/email_template/i18n/sr.po b/addons/email_template/i18n/sr.po index 1537ad3cf1f..03e27aa27e8 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -113,7 +113,7 @@ msgid "Body" msgstr "Sadrzaj" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "" @@ -379,7 +379,7 @@ msgid "Attachments" msgstr "Prilozi" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "" @@ -408,7 +408,7 @@ msgid "Email Details" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Slanje POruke (%s)" @@ -440,7 +440,7 @@ msgid "" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Upozorenje" diff --git a/addons/email_template/i18n/sr@latin.po b/addons/email_template/i18n/sr@latin.po index 7cadb7b9401..ba3493e72de 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -113,7 +113,7 @@ msgid "Body" msgstr "Sadrzaj" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "" @@ -379,7 +379,7 @@ msgid "Attachments" msgstr "Prilozi" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "" @@ -408,7 +408,7 @@ msgid "Email Details" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Slanje POruke (%s)" @@ -440,7 +440,7 @@ msgid "" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Upozorenje" diff --git a/addons/email_template/i18n/sv.po b/addons/email_template/i18n/sv.po index d2e8a432fcd..39f33c4eda3 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -117,7 +117,7 @@ msgid "Body" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "" @@ -396,7 +396,7 @@ msgid "Attachments" msgstr "Bilagor" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "Radering av åtgärdsposten misslyckades." @@ -425,7 +425,7 @@ msgid "Email Details" msgstr "E-postdetaljer" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "Skicka e-post (%s)" @@ -462,7 +462,7 @@ msgstr "" "i destinationsobjetet (sub-model)" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Varning" diff --git a/addons/email_template/i18n/tr.po b/addons/email_template/i18n/tr.po index f9769d53717..c0dbfc5e6b4 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -116,7 +116,7 @@ msgid "Body" msgstr "Gövde" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "%s (kopya)" @@ -170,7 +170,7 @@ msgstr "" #: field:email.template,ref_ir_act_window:0 #: field:email_template.preview,ref_ir_act_window:0 msgid "Sidebar action" -msgstr "Kenar Çubuğu yylemi" +msgstr "Kenar Çubuğu işlemi" #. module: email_template #: help:email.template,lang:0 @@ -344,7 +344,7 @@ msgstr "Eposta yazma sihirbazı" #. module: email_template #: view:email.template:0 msgid "Add context action" -msgstr "İçerik eylemi ekle" +msgstr "İçerik işlemi ekle" #. module: email_template #: help:email.template,model_id:0 @@ -400,7 +400,7 @@ msgid "Attachments" msgstr "Ekler" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "Eylem kaydı silinemedi." @@ -421,7 +421,7 @@ msgstr "Buna uygulanır" #: field:email.template,sub_model_object_field:0 #: field:email_template.preview,sub_model_object_field:0 msgid "Sub-field" -msgstr "Alt-aan" +msgstr "Alt-alan" #. module: email_template #: view:email.template:0 @@ -429,7 +429,7 @@ msgid "Email Details" msgstr "Eposta Ayrıntıları" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "İletiyi Gönder (%s)" @@ -465,7 +465,7 @@ msgstr "" "hedef alanını seçmenizi sağlar." #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "Uyarı" diff --git a/addons/email_template/i18n/zh_CN.po b/addons/email_template/i18n/zh_CN.po index 7fcb7c216cf..ca50d9d0ff4 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -43,7 +43,7 @@ msgstr "Opt-Out" #: field:email.template,email_to:0 #: field:email_template.preview,email_to:0 msgid "To (Emails)" -msgstr "" +msgstr "发送给(Email)" #. module: email_template #: field:email.template,mail_server_id:0 @@ -93,7 +93,7 @@ msgstr "报告文件名" #. module: email_template #: view:email.template:0 msgid "Preview" -msgstr "" +msgstr "预览" #. module: email_template #: field:email.template,reply_to:0 @@ -104,7 +104,7 @@ msgstr "回复:" #. module: email_template #: view:mail.compose.message:0 msgid "Use template" -msgstr "" +msgstr "使用模版" #. module: email_template #: field:email.template,body_html:0 @@ -113,10 +113,10 @@ msgid "Body" msgstr "内容" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (副本)" #. module: email_template #: help:email.template,user_signature:0 @@ -134,7 +134,7 @@ msgstr "SMTP 服务器" #. module: email_template #: view:mail.compose.message:0 msgid "Save as new template" -msgstr "" +msgstr "保存为新的模版" #. module: email_template #: help:email.template,sub_object:0 @@ -196,7 +196,7 @@ msgstr "" #. module: email_template #: view:email.template:0 msgid "Dynamic Value Builder" -msgstr "" +msgstr "动态值生成器" #. module: email_template #: model:ir.actions.act_window,name:email_template.wizard_email_template_preview @@ -213,7 +213,7 @@ msgstr "保存新的模版" msgid "" "Display an option on related documents to open a composition wizard with " "this template" -msgstr "" +msgstr "显示一个关联单据的选项 ,用该模版打开撰写向导" #. module: email_template #: help:email.template,email_cc:0 @@ -235,12 +235,12 @@ msgstr "高级选项" #. module: email_template #: view:email_template.preview:0 msgid "Preview of" -msgstr "" +msgstr "的预览" #. module: email_template #: view:email_template.preview:0 msgid "Using sample document" -msgstr "" +msgstr "使用样本单据" #. module: email_template #: view:email.template:0 @@ -344,7 +344,7 @@ msgstr "" #: field:email.template,email_recipients:0 #: field:email_template.preview,email_recipients:0 msgid "To (Partners)" -msgstr "" +msgstr "到(合作伙伴)" #. module: email_template #: field:email.template,auto_delete:0 @@ -369,7 +369,7 @@ msgstr "相关单据模型" #. module: email_template #: view:email.template:0 msgid "Addressing" -msgstr "" +msgstr "地址" #. module: email_template #: help:email.template,email_recipients:0 @@ -385,7 +385,7 @@ msgid "Attachments" msgstr "附件" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "删除动作记录失败" @@ -400,7 +400,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 @@ -414,7 +414,7 @@ msgid "Email Details" msgstr "邮件详情" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "发送邮件( %s)" @@ -446,7 +446,7 @@ msgid "" msgstr "如果首先选择了一个关系型字段,这个字段可用于选择目标单据类型的目标字段。" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "警告" @@ -466,7 +466,7 @@ msgstr "业务伙伴" #: field:email.template,null_value:0 #: field:email_template.preview,null_value:0 msgid "Default Value" -msgstr "" +msgstr "默认值" #. module: email_template #: help:email.template,attachment_ids:0 @@ -485,7 +485,7 @@ msgstr "消息的富文本/HTML版本(这里可以使用占位符)" #. module: email_template #: view:email.template:0 msgid "Contents" -msgstr "" +msgstr "内容" #. module: email_template #: field:email.template,subject:0 diff --git a/addons/email_template/i18n/zh_TW.po b/addons/email_template/i18n/zh_TW.po index b3eab84d7b2..d39f6b70b46 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: email_template #: field:email.template,email_from:0 @@ -113,7 +113,7 @@ msgid "Body" msgstr "" #. module: email_template -#: code:addons/email_template/email_template.py:244 +#: code:addons/email_template/email_template.py:247 #, python-format msgid "%s (copy)" msgstr "" @@ -386,7 +386,7 @@ msgid "Attachments" msgstr "附件" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Deletion of the action record failed." msgstr "刪除的動作記錄失敗" @@ -415,7 +415,7 @@ msgid "Email Details" msgstr "郵件詳情" #. module: email_template -#: code:addons/email_template/email_template.py:196 +#: code:addons/email_template/email_template.py:199 #, python-format msgid "Send Mail (%s)" msgstr "傳送郵件 (%s)" @@ -447,7 +447,7 @@ msgid "" msgstr "當相關欄位已被選擇為第一欄位, 這欄位,讓您選擇目標欄位內的目標文件類型(子類型型)。" #. module: email_template -#: code:addons/email_template/email_template.py:231 +#: code:addons/email_template/email_template.py:234 #, python-format msgid "Warning" msgstr "警告" diff --git a/addons/event/i18n/ar.po b/addons/event/i18n/ar.po index 77775751956..f0e8a68f455 100644 --- a/addons/event/i18n/ar.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/bg.po b/addons/event/i18n/bg.po index ff2da9a3971..2cff2dd51c8 100644 --- a/addons/event/i18n/bg.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/bs.po b/addons/event/i18n/bs.po index 323b27f2896..7fd906a7ed6 100644 --- a/addons/event/i18n/bs.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/ca.po b/addons/event/i18n/ca.po index 55b16b7b10f..f23d0d627e3 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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/cs.po b/addons/event/i18n/cs.po index 5887b9729db..64f0f8b32a3 100644 --- a/addons/event/i18n/cs.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\n" #. module: event diff --git a/addons/event/i18n/da.po b/addons/event/i18n/da.po index 9f4d9dd55b0..cb93f9ffe16 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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/de.po b/addons/event/i18n/de.po index 045df32f950..6d109745fb1 100644 --- a/addons/event/i18n/de.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/el.po b/addons/event/i18n/el.po index c09763833ed..4031e6fe4be 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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/es.po b/addons/event/i18n/es.po index 2de327d5323..f7fcab36a1d 100644 --- a/addons/event/i18n/es.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/es_AR.po b/addons/event/i18n/es_AR.po index 8c416e87b5d..8a15d9a2199 100644 --- a/addons/event/i18n/es_AR.po +++ b/addons/event/i18n/es_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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/es_CR.po b/addons/event/i18n/es_CR.po index 44e182e20a3..e9b6ec1083a 100644 --- a/addons/event/i18n/es_CR.po +++ b/addons/event/i18n/es_CR.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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: event diff --git a/addons/event/i18n/es_EC.po b/addons/event/i18n/es_EC.po index b5f1d69275d..0d9578b5e18 100644 --- a/addons/event/i18n/es_EC.po +++ b/addons/event/i18n/es_EC.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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/et.po b/addons/event/i18n/et.po index 61d6d4c74e7..b3fa89629f7 100644 --- a/addons/event/i18n/et.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/fi.po b/addons/event/i18n/fi.po index ed16411d846..f65f3931e0c 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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/fr.po b/addons/event/i18n/fr.po index af882d2b2d4..9bb33c4f129 100644 --- a/addons/event/i18n/fr.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 @@ -30,7 +30,7 @@ msgstr "Nombre de participants" #. module: event #: field:event.event,register_attended:0 msgid "# of Participations" -msgstr "# de participation" +msgstr "Nb. de participations" #. module: event #: field:event.event,main_speaker_id:0 @@ -56,6 +56,9 @@ msgid "" "enough registrations you are not able to confirm your event. (put 0 to " "ignore this rule )" msgstr "" +"Vous pouvez définir un niveau d'inscriptions minimum pour chaque évènement. " +"Si vous n'obtenez pas suffisamment d'inscriptions, vous ne pourrez pas " +"confirmer votre évènement. (mettez 0 pour ignorer cette règle)" #. module: event #: field:event.registration,date_open:0 @@ -77,7 +80,7 @@ msgstr "Concert de Bon Jovi" #: selection:event.registration,state:0 #: selection:report.event.registration,registration_state:0 msgid "Attended" -msgstr "" +msgstr "Présent" #. module: event #: selection:report.event.registration,month:0 @@ -101,12 +104,12 @@ msgstr "Société" #: field:event.event,email_confirmation_id:0 #: field:event.type,default_email_event:0 msgid "Event Confirmation Email" -msgstr "Email de confirmation de l'evenement" +msgstr "Courriel de confirmation de l'évènement" #. module: event #: field:event.type,default_registration_max:0 msgid "Default Maximum Registration" -msgstr "Nombre maximum d'inscription par défaut" +msgstr "Nombre maximum d'inscriptions par défaut" #. module: event #: view:report.event.registration:0 @@ -116,18 +119,18 @@ msgstr "Afficher" #. module: event #: field:event.event,register_avail:0 msgid "Available Registrations" -msgstr "Inscriptions disponible" +msgstr "Inscriptions disponibles" #. module: event #: view:event.registration:0 #: model:ir.model,name:event.model_event_registration msgid "Event Registration" -msgstr "Inscription de l'Évenement" +msgstr "Inscription à l'évènement" #. module: event #: model:ir.module.category,description:event.module_category_event_management msgid "Helps you manage your Events." -msgstr "Vous aide à gérer vos évenements" +msgstr "Vous aide à gérer vos évènements" #. module: event #: view:report.event.registration:0 @@ -161,6 +164,8 @@ msgstr "Analyse des évènements" #: help:event.type,default_registration_max:0 msgid "It will select this default maximum value when you choose this event" msgstr "" +"Cette valeur par défaut maximum est sélectionnée si vous choisissez cet " +"évènement" #. module: event #: view:report.event.registration:0 @@ -287,6 +292,8 @@ msgstr "Partenaire" #: help:event.type,default_registration_min:0 msgid "It will select this default minimum value when you choose this event" msgstr "" +"Cette valeur par défaut minimum sera sélectionnée si vous choisissez cet " +"évènement." #. module: event #: model:ir.model,name:event.model_event_type @@ -340,8 +347,8 @@ msgid "" "It will select this default confirmation registration mail value when you " "choose this event" msgstr "" -"Identifie le mail de confirmation envoyé par défaut lorsque vous choisissez " -"cet évenement" +"Identifie le courriel de confirmation envoyé par défaut lorsque vous " +"choisissez cet évènement" #. module: event #: view:event.event:0 @@ -466,7 +473,7 @@ msgstr "État de réservation des événements" #. module: event #: view:event.event:0 msgid "Event Category" -msgstr "Catégorie d'évenement" +msgstr "Catégorie d'évènement" #. module: event #: field:event.event,register_prospect:0 @@ -508,7 +515,7 @@ msgstr "Décembre" #. module: event #: help:event.registration,origin:0 msgid "Reference of the sales order which created the registration" -msgstr "" +msgstr "Référence du bon de commande qui a créé l'inscription" #. module: event #: field:report.event.registration,draft_state:0 @@ -530,7 +537,7 @@ msgstr "Mois" #. module: event #: field:event.registration,date_closed:0 msgid "Attended Date" -msgstr "" +msgstr "Date de présence" #. module: event #: view:event.event:0 @@ -560,7 +567,7 @@ msgstr "ou" #. module: event #: help:res.partner,speaker:0 msgid "Check this box if this contact is a speaker." -msgstr "Cocher c'est case sur le contact est un intervenant" +msgstr "Cocher cette case si le contact est un intervenant" #. module: event #: code:addons/event/event.py:108 @@ -597,12 +604,12 @@ msgid "" " " msgstr "" "

\n" -" Click to add a new event.\n" +" Cliquez pour ajouter un nouvel évènement\n" "

\n" " OpenERP vous permet d'organiser et de planifier vos " -"évenements:\n" +"évènements:\n" " Suivre les inscriptions et la participation, automatiser " -"l'envoi des emails de confirmation,\n" +"l'envoi des courriels de confirmation,\n" " vendre des billets/tickets, etc ...\n" "

\n" " " @@ -614,6 +621,9 @@ msgid "" "much registrations you are not able to confirm your event. (put 0 to ignore " "this rule )" msgstr "" +"Vous pouvez définir un niveau maximum d'inscriptions pour chaque évènement. " +"Si vous avez trop d'inscriptions, vous ne pouvez pas confirmer votre " +"évènement. (mettez 0 pour ignorer cette règle)" #. module: event #: field:event.event,user_id:0 @@ -628,6 +638,8 @@ msgid "" "expected minimum/maximum. Please reconsider those limits before going " "further." msgstr "" +"Le total d'inscriptions confirmées pour l'évènement '%s' n'atteint pas le " +"minimum/maximum attendu. Veuillez réexaminer ces limites avant de continuer." #. module: event #: help:event.event,email_confirmation_id:0 @@ -635,6 +647,8 @@ msgid "" "If you set an email template, each participant will receive this email " "announcing the confirmation of the event." msgstr "" +"Si vous spécifiez un modèle de courriel, chaque participant recevra ce " +"courriel annonçant la confirmation de l'évènement." #. module: event #: view:board.board:0 @@ -741,6 +755,16 @@ msgid "" "

Thank you for your participation!

\n" "

Best regards

" msgstr "" +"\n" +"

Bonjour ${object.name},

\n" +"

L'évènement ${object.event_id.name} auquel vous vous êtes inscrit " +"est confirmé et se tiendra \n" +" du ${object.event_id.date_begin} au " +"${object.event_id.date_end}.\n" +" Pour de plus amples informations, veuillez contacter notre " +"département d'évènements.

\n" +"

Merci pour votre participation!

\n" +"

Cordialement

" #. module: event #: field:event.event,message_is_follower:0 @@ -771,7 +795,7 @@ msgstr "" #. module: event #: view:event.registration:0 msgid "My Registrations" -msgstr "Mes Inscriptions" +msgstr "Mes inscriptions" #. module: event #: selection:report.event.registration,month:0 @@ -812,6 +836,9 @@ msgid "" "You have already set a registration for this event as 'Attended'. Please " "reset it to draft if you want to cancel this event." msgstr "" +"Vous avez déjà marqué une inscription pour cet évènement comme 'Présent'. " +"Veuillez la remettre à l'état de brouillon si vous souhaitez annuler cet " +"évènement." #. module: event #: view:res.partner:0 @@ -826,7 +853,7 @@ msgstr "Configuration de l'envoi de courriels" #. module: event #: field:event.type,default_registration_min:0 msgid "Default Minimum Registration" -msgstr "" +msgstr "Inscription minimale par défaut" #. module: event #: field:event.event,address_id:0 @@ -845,12 +872,14 @@ msgid "" "This field contains the template of the mail that will be automatically sent " "each time a registration for this event is confirmed." msgstr "" +"Ce champ contient le modèle du courriel qui sera envoyé automatiquement " +"chaque fois qu'une inscription pour cet évènement est confirmée." #. module: event #: view:event.event:0 #: view:event.registration:0 msgid "Attended the Event" -msgstr "" +msgstr "Présent à l'évènement" #. module: event #: constraint:event.event:0 @@ -863,6 +892,8 @@ msgstr "" #, python-format msgid "You must wait for the starting day of the event to do this action." msgstr "" +"Vous devez attendre le premier jour de l'évènement pour effectuer cette " +"action." #. module: event #: selection:event.event,state:0 @@ -873,7 +904,7 @@ msgstr "Terminé" #. module: event #: view:report.event.registration:0 msgid "Show Confirmed Registrations" -msgstr "" +msgstr "Montrer les inscriptions confirmées" #. module: event #: view:event.confirm:0 @@ -889,7 +920,7 @@ msgstr "" #: code:addons/event/event.py:106 #, python-format msgid "Only %d Seats are Available!" -msgstr "" +msgstr "Seuls %d sièges sont disponibles!" #. module: event #: model:email.template,subject:event.confirmation_event @@ -900,7 +931,7 @@ msgstr "" #. module: event #: view:event.registration:0 msgid "Set To Unconfirmed" -msgstr "" +msgstr "Marquer comme non confirmé" #. module: event #: view:event.event:0 @@ -922,7 +953,7 @@ msgstr "Responsable" #. module: event #: view:report.event.registration:0 msgid "Registration contact" -msgstr "" +msgstr "Contact d'inscription" #. module: event #: view:report.event.registration:0 @@ -934,7 +965,7 @@ msgstr "Orateur" #. module: event #: view:event.event:0 msgid "Upcoming events from today" -msgstr "" +msgstr "Évènements futurs à partir d'aujourd'hui" #. module: event #: model:event.event,name:event.event_2 @@ -945,7 +976,7 @@ msgstr "" #: model:ir.actions.act_window,name:event.act_event_view_registration #: model:mail.message.subtype,name:event.mt_event_registration msgid "New Registration" -msgstr "" +msgstr "Nouvelle inscription" #. module: event #: field:event.event,note:0 @@ -960,7 +991,7 @@ msgstr " Nb. d'inscriptions confirmées" #. module: event #: field:report.event.registration,name_registration:0 msgid "Participant / Contact Name" -msgstr "" +msgstr "Nom du participant / contact" #. module: event #: selection:report.event.registration,month:0 @@ -975,7 +1006,7 @@ msgstr "Inscription aux évènements" #. module: event #: view:event.event:0 msgid "No ticket available." -msgstr "" +msgstr "Aucun ticket disponible." #. module: event #: field:event.event,register_max:0 @@ -1084,12 +1115,12 @@ msgstr "Date de début de l'évènement" #. module: event #: view:report.event.registration:0 msgid "Participant / Contact" -msgstr "" +msgstr "Participant / contact" #. module: event #: view:event.event:0 msgid "Current Registrations" -msgstr "" +msgstr "Nombre actuel d'inscriptions" #. module: event #: model:email.template,body_html:event.confirmation_registration @@ -1104,6 +1135,15 @@ msgid "" "

Thank you for your participation!

\n" "

Best regards

" msgstr "" +"\n" +"

Bonjour ${object.name},

\n" +"

Nous vous confirmons que votre inscription à l'évènement " +"${object.event_id.name} a été enregistrée.\n" +" Vous recevrez automatiquement un courriel avec des informations " +"pratiques supplémentaires (telles que le programme, l'agenda)... dès que " +"l'évènement sera confirmé.

\n" +"

Merci pour votre participation!

\n" +"

Cordialement

" #. module: event #: help:event.event,reply_to:0 diff --git a/addons/event/i18n/gu.po b/addons/event/i18n/gu.po index 84b5a128031..ef666e4110b 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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/hi.po b/addons/event/i18n/hi.po index 0bd72ae0444..2f990c8456d 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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/hr.po b/addons/event/i18n/hr.po index a5fdd4780ce..9d447c1fcb1 100644 --- a/addons/event/i18n/hr.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/hu.po b/addons/event/i18n/hu.po index 0b6576a91e6..041c75e63a1 100644 --- a/addons/event/i18n/hu.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/id.po b/addons/event/i18n/id.po index ff12c876db5..b9c4989554d 100644 --- a/addons/event/i18n/id.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/it.po b/addons/event/i18n/it.po index e1837c72fde..729d6647d60 100644 --- a/addons/event/i18n/it.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/ja.po b/addons/event/i18n/ja.po index 934037de5eb..f26077624ff 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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/ko.po b/addons/event/i18n/ko.po index 7fd54f1ebe4..d8ec5f23706 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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/lt.po b/addons/event/i18n/lt.po index a49c4c06527..8ea022eee8c 100644 --- a/addons/event/i18n/lt.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/mk.po b/addons/event/i18n/mk.po index 3623eff93d6..333bd09dcd1 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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 @@ -91,7 +91,7 @@ msgstr "Март" #. module: event #: view:event.registration:0 msgid "Send Email" -msgstr "Испрати емаил" +msgstr "Испрати е-пошта" #. module: event #: field:event.event,company_id:0 @@ -105,7 +105,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 +131,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 @@ -335,7 +335,7 @@ msgstr "Потврди" #. module: event #: view:event.event:0 msgid "Organized by" -msgstr "Уредени по" +msgstr "Организирани по" #. module: event #: view:event.event:0 @@ -358,7 +358,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 @@ -387,13 +387,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 @@ -426,7 +426,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 @@ -467,7 +467,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 @@ -482,7 +482,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 @@ -525,7 +525,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 @@ -652,7 +652,7 @@ msgstr "" #. module: event #: view:board.board:0 msgid "Events Filling By Status" -msgstr "" +msgstr "Пополнување на настани по статус" #. module: event #: selection:report.event.registration,event_state:0 @@ -772,7 +772,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 @@ -849,7 +849,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 @@ -913,7 +913,7 @@ msgstr "Откажи" #. module: event #: field:event.registration,reply_to:0 msgid "Reply-to Email" -msgstr "E-mail за повратен одговор" +msgstr "Е-поштаE-mail за повратен одговор" #. module: event #: code:addons/event/event.py:106 @@ -969,7 +969,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 @@ -1098,12 +1098,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 @@ -1119,7 +1119,7 @@ msgstr "Учесник / Контакт" #. module: event #: view:event.event:0 msgid "Current Registrations" -msgstr "Моментални запишувања" +msgstr "Тековни регистрации" #. module: event #: model:email.template,body_html:event.confirmation_registration @@ -1135,13 +1135,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 @@ -1184,4 +1184,4 @@ msgstr "Година" #. module: event #: field:event.event,speaker_confirmed:0 msgid "Speaker Confirmed" -msgstr "Гласноговорникот е потврден" +msgstr "Говорникот е потврден" diff --git a/addons/event/i18n/mn.po b/addons/event/i18n/mn.po index 3bd8970d936..eef82e02487 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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/nb.po b/addons/event/i18n/nb.po index acbc90555bc..630c3318ef6 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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/nl.po b/addons/event/i18n/nl.po index e68cb6fc5c8..a6559b624a7 100644 --- a/addons/event/i18n/nl.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 @@ -55,7 +55,7 @@ msgid "" "You can for each event define a minimum registration level. If you do not " "enough registrations you are not able to confirm your event. (put 0 to " "ignore this rule )" -msgstr "" +msgstr "Het za" #. module: event #: field:event.registration,date_open:0 @@ -161,6 +161,8 @@ msgstr "Evenement analyse" #: help:event.type,default_registration_max:0 msgid "It will select this default maximum value when you choose this event" msgstr "" +"Het zal de deze standaard maximale waarde selecteren als u dit evenement " +"kiest" #. module: event #: view:report.event.registration:0 @@ -288,6 +290,8 @@ msgstr "Relatie" #: help:event.type,default_registration_min:0 msgid "It will select this default minimum value when you choose this event" msgstr "" +"Het zal de deze standaard minimale waarde selecteren als u dit evenement " +"kiest" #. module: event #: model:ir.model,name:event.model_event_type @@ -341,6 +345,8 @@ msgid "" "It will select this default confirmation registration mail value when you " "choose this event" msgstr "" +"Het zal de deze standaard bevestiging registratie e-mail selecteren als u " +"dit evenement kiest" #. module: event #: view:event.event:0 @@ -576,6 +582,11 @@ msgid "" "status is set to 'Done'.If event is cancelled the status is set to " "'Cancelled'." msgstr "" +"Als een evenement is aangemaakt is de status 'Concept'. Indien het evenement " +"is bevestigd voor de specifieke data, dan wordt de status gezet op " +"'Bevestigd'. Als het evenement is geweest, dan wordt de status gezet op " +"'Gereed'. Als het evenement is geannuleerd, dan wordt de status gezet op " +"'Geannuleerd'" #. module: event #: model:ir.actions.act_window,help:event.action_event_view @@ -591,6 +602,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Klik voor het aanmaken van een nieuw evenement.\n" +"

\n" +" OpenERP helpt u bij het plannen en efficient organiseren van " +"uw evenmenten:\n" +" volg de inschrijvingen en deelnemers, automatiseer de " +"bevestigings e-mails,\n" +" verkoop toegansbewijzen, etc.\n" +"

\n" +" " #. module: event #: help:event.event,register_max:0 @@ -599,6 +620,9 @@ msgid "" "much registrations you are not able to confirm your event. (put 0 to ignore " "this rule )" msgstr "" +"U kunt voor iedere evenement een maximum aantal registraties instellen. " +"Indien u te veel registraties heeft, kunt u, uw evenement niet bevestigen " +"(vul 0 in om deze regel niet toe te passen)" #. module: event #: field:event.event,user_id:0 @@ -613,6 +637,9 @@ msgid "" "expected minimum/maximum. Please reconsider those limits before going " "further." msgstr "" +"Het totaal aantal van '%s' bevestigde registraties van dit evenement komt " +"niet overeen met het ingestelde minimum/maximum aantal. Controleer deze " +"waardes voordat u verder gaat." #. module: event #: help:event.event,email_confirmation_id:0 @@ -620,11 +647,13 @@ msgid "" "If you set an email template, each participant will receive this email " "announcing the confirmation of the event." msgstr "" +"Indien u een e-mail sjabloon instelt, zal iedere deelnemer deze e-mail " +"ontvangen welke het bevestigen van het evenement aangeeft." #. module: event #: view:board.board:0 msgid "Events Filling By Status" -msgstr "" +msgstr "Evenementen gefilterd op status" #. module: event #: selection:report.event.registration,event_state:0 @@ -726,6 +755,15 @@ msgid "" "

Thank you for your participation!

\n" "

Best regards

" msgstr "" +"\n" +"

Hallo ${object.name},

\n" +"

Het evenement ${object.event_id.name} waarvoor u, zich heeft " +"geregistreerd is bevestigd en wordt gehouden op " +"${object.event_id.date_begin} t/m ${object.event_id.date_end}.\n" +" Voor meer informatie kunt u contact opnemen met onze evenementen " +"afdeling.

\n" +"

Bedankt voor uw inschrijving!

\n" +"

Met vriendelijke groet,

" #. module: event #: field:event.event,message_is_follower:0 @@ -830,6 +868,8 @@ msgid "" "This field contains the template of the mail that will be automatically sent " "each time a registration for this event is confirmed." msgstr "" +"Dit veld bevat het sjabloon van de e-mail welke automatisch wordt verstuurt " +"iedere keer als een registratie voor dit evenement is bevestigd." #. module: event #: view:event.event:0 @@ -847,6 +887,8 @@ msgstr "Fout ! Sluitingsdatum kan niet voor startdatum liggen." #, python-format msgid "You must wait for the starting day of the event to do this action." msgstr "" +"U dient te wachten tot de startdag van het evenement om deze actie te kunnen " +"uitvoeren." #. module: event #: selection:event.event,state:0 @@ -1023,6 +1065,8 @@ msgid "" "It will select this default confirmation event mail value when you choose " "this event" msgstr "" +"Het zal de deze standaard bevestiging evenement e-mail selecteren als u dit " +"evenement kiest" #. module: event #: view:report.event.registration:0 diff --git a/addons/event/i18n/nl_BE.po b/addons/event/i18n/nl_BE.po index a1fe17f1a54..6a196dba01b 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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/pl.po b/addons/event/i18n/pl.po index 98c7eb3adb6..5959532caa9 100644 --- a/addons/event/i18n/pl.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 @@ -25,7 +25,7 @@ msgstr "Moje wydarzenia" #. module: event #: field:event.registration,nb_register:0 msgid "Number of Participants" -msgstr "" +msgstr "Liczba uczestników" #. module: event #: field:event.event,register_attended:0 diff --git a/addons/event/i18n/pt.po b/addons/event/i18n/pt.po index 6359b654335..8f6b9cb3532 100644 --- a/addons/event/i18n/pt.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 @@ -214,7 +214,7 @@ msgstr "Cancelado" #. module: event #: view:event.event:0 msgid "ticket" -msgstr "" +msgstr "bilhete" #. module: event #: model:event.event,name:event.event_1 @@ -236,7 +236,7 @@ msgstr "" #. module: event #: view:event.event:0 msgid "tickets" -msgstr "" +msgstr "bihetes" #. module: event #: view:res.partner:0 @@ -383,7 +383,7 @@ msgstr "E-mail" #: code:addons/event/event.py:329 #, python-format msgid "New registration confirmed: %s." -msgstr "" +msgstr "Novo registo confirmado: %s." #. module: event #: view:event.event:0 @@ -556,13 +556,13 @@ msgstr "ou" #. module: event #: help:res.partner,speaker:0 msgid "Check this box if this contact is a speaker." -msgstr "" +msgstr "Marque esta caixa se o contacto é um orador." #. module: event #: code:addons/event/event.py:108 #, python-format msgid "No Tickets Available!" -msgstr "" +msgstr "Não existem bilhetes disponíveis!" #. module: event #: help:event.event,state:0 diff --git a/addons/event/i18n/pt_BR.po b/addons/event/i18n/pt_BR.po index d8e81e6e0f9..f99581b2e7b 100644 --- a/addons/event/i18n/pt_BR.po +++ b/addons/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/ro.po b/addons/event/i18n/ro.po index 7d775f8005b..4567600513a 100644 --- a/addons/event/i18n/ro.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 @@ -1140,9 +1140,9 @@ msgid "" "

Best regards

" msgstr "" "\n" -"

Buna ziua ${obiect.nume},

\n" -"

Confirmam faptul ca am inregistrat inregistrarea dumenavoastra la " -"eveniment. ${obiect.eveniment_id.nume}.\n" +"

Buna ziua ${object.name},

\n" +"

Confirmam faptul ca a fost facuta inregistrarea dumenavoastra la " +"eveniment. ${object.event_id.name} .\n" " Veti primi automat un email care va ofera mai multe informatii " "practice (precum programul, ordinea de zi...) de indata ce evenimentul este " "confirmat.

\n" diff --git a/addons/event/i18n/ru.po b/addons/event/i18n/ru.po index 6114a117180..08f50141a51 100644 --- a/addons/event/i18n/ru.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sk.po b/addons/event/i18n/sk.po index 2a0fe45e3dd..ce3e6ad6e24 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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sl.po b/addons/event/i18n/sl.po index cd3070f4105..b2e838e31ab 100644 --- a/addons/event/i18n/sl.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sq.po b/addons/event/i18n/sq.po index 89751fe8fda..3c2be7850c9 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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:55+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sr.po b/addons/event/i18n/sr.po index a79502c3d98..9278455f7eb 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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sr@latin.po b/addons/event/i18n/sr@latin.po index 7314ab537e1..2be82e42cfd 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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/sv.po b/addons/event/i18n/sv.po index cd7ea47b219..5d3d46c4bd0 100644 --- a/addons/event/i18n/sv.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/tlh.po b/addons/event/i18n/tlh.po index 8ac406afe05..78da092fc96 100644 --- a/addons/event/i18n/tlh.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/tr.po b/addons/event/i18n/tr.po index 52e55519180..4c9c9b727b4 100644 --- a/addons/event/i18n/tr.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 @@ -354,7 +354,7 @@ msgstr "Yalnız" #: field:event.event,message_follower_ids:0 #: field:event.registration,message_follower_ids:0 msgid "Followers" -msgstr "Takipçiler" +msgstr "İzleyiciler" #. module: event #: view:event.event:0 @@ -768,7 +768,7 @@ msgstr "" #: field:event.event,message_is_follower:0 #: field:event.registration,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçi" +msgstr "Bir İzleyicidir" #. module: event #: field:event.registration,user_id:0 diff --git a/addons/event/i18n/uk.po b/addons/event/i18n/uk.po index dd422c76aa5..f9cd47c32c7 100644 --- a/addons/event/i18n/uk.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/vi.po b/addons/event/i18n/vi.po index 13c8a8edb14..991a8059798 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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event/i18n/zh_CN.po b/addons/event/i18n/zh_CN.po index 19c3a1bb17a..6fa76062565 100644 --- a/addons/event/i18n/zh_CN.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 @@ -55,7 +55,7 @@ msgid "" "You can for each event define a minimum registration level. If you do not " "enough registrations you are not able to confirm your event. (put 0 to " "ignore this rule )" -msgstr "" +msgstr "你能为每个活动定义一个最小的注册量。如果没有足够的注册量,你不能确认此项活动(使用0将忽略此规则)" #. module: event #: field:event.registration,date_open:0 @@ -504,7 +504,7 @@ msgstr "12月" #. module: event #: help:event.registration,origin:0 msgid "Reference of the sales order which created the registration" -msgstr "" +msgstr "创建该项注册的销售订单的参考值" #. module: event #: field:report.event.registration,draft_state:0 @@ -751,7 +751,7 @@ msgstr "警告:这活动没有达到最低登记记录的规定,你肯定要 #. module: event #: view:event.event:0 msgid "(confirmed:" -msgstr "" +msgstr "(已确认:" #. module: event #: view:event.registration:0 diff --git a/addons/event/i18n/zh_TW.po b/addons/event/i18n/zh_TW.po index f464c225076..381e8bbfdde 100644 --- a/addons/event/i18n/zh_TW.po +++ b/addons/event/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event #: view:event.event:0 diff --git a/addons/event_moodle/i18n/cs.po b/addons/event_moodle/i18n/cs.po index fd98a1df93a..18af9e45887 100644 --- a/addons/event_moodle/i18n/cs.po +++ b/addons/event_moodle/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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 diff --git a/addons/event_moodle/i18n/de.po b/addons/event_moodle/i18n/de.po index 4472670e90c..3e7e726808d 100644 --- a/addons/event_moodle/i18n/de.po +++ b/addons/event_moodle/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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 @@ -26,7 +26,7 @@ msgstr "Anbindung mit Benutzer und Passwort" #. module: event_moodle #: model:ir.model,name:event_moodle.model_event_moodle_config_wiz msgid "event.moodle.config.wiz" -msgstr "" +msgstr "event.moodle.config.wiz" #. module: event_moodle #: help:event.moodle.config.wiz,server_moodle:0 diff --git a/addons/event_moodle/i18n/es.po b/addons/event_moodle/i18n/es.po index b22bdf9610e..85a9c91e655 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 1a9b21bb6f6..0a502ee827c 100644 --- a/addons/event_moodle/i18n/fr.po +++ b/addons/event_moodle/i18n/fr.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-21 13:44+0000\n" -"Last-Translator: Fabian Pilard \n" +"Last-Translator: Julius \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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 @@ -25,7 +25,7 @@ msgstr "Connexion avec identifiant et mot de passe" #. module: event_moodle #: model:ir.model,name:event_moodle.model_event_moodle_config_wiz msgid "event.moodle.config.wiz" -msgstr "" +msgstr "event.moodle.config.wiz" #. module: event_moodle #: help:event.moodle.config.wiz,server_moodle:0 diff --git a/addons/event_moodle/i18n/hr.po b/addons/event_moodle/i18n/hr.po index 84301e263b2..64c646a213c 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 417aea319a9..f030f66892f 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 dd592ac188e..93050d6ef6f 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 @@ -65,8 +65,8 @@ msgid "" "application." msgstr "" "Најлесен начин да се поврзете на OpenERP со moodle сервер е да креирате " -"токен во moodle. Тој ќе се користи за автентикација на OpenERP како " -"поверлива апликација." +"'токен' во Moodle. Тој ќе се користи за да се идентификува OpenERP како " +"доверлива апликација." #. module: event_moodle #: field:event.moodle.config.wiz,url:0 @@ -76,7 +76,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 +95,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 +124,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 +160,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 +176,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_moodle/i18n/mn.po b/addons/event_moodle/i18n/mn.po index b206521ebdc..9e5d0272755 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 70969d19350..568729168b1 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 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 721abde265d..0f07e698916 100644 --- a/addons/event_moodle/i18n/pt.po +++ b/addons/event_moodle/i18n/pt.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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 msgid "Connection with username and password" -msgstr "" +msgstr "Ligação com nome de utilizador e senha" #. module: event_moodle #: model:ir.model,name:event_moodle.model_event_moodle_config_wiz @@ -33,11 +33,13 @@ msgid "" "URL where you have your moodle server. For exemple: 'http://127.0.0.1' or " "'http://localhost'" msgstr "" +"Endereço onde tem o seu servidor moodle. Por exemplo: 'http://127.0.0.1' ou " +"'http://localhost'" #. module: event_moodle #: field:event.registration,moodle_user_password:0 msgid "Password for Moodle User" -msgstr "" +msgstr "Senha para o utilizador Moodle" #. module: event_moodle #: field:event.moodle.config.wiz,moodle_password:0 @@ -71,7 +73,7 @@ msgstr "Endereço para o servidor 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 "" +msgstr "O endereço que será usado para a ligação com o moodle em xml-rpc" #. module: event_moodle #: model:ir.model,name:event_moodle.model_event_registration @@ -117,7 +119,7 @@ msgstr "Erro!" #: code:addons/event_moodle/event_moodle.py:105 #, python-format msgid "You must configure your moodle connection." -msgstr "" +msgstr "Tem que configurar a sua ligação ao moodle." #. module: event_moodle #: field:event.moodle.config.wiz,moodle_username:0 @@ -156,7 +158,7 @@ msgstr "" #. module: event_moodle #: model:ir.ui.menu,name:event_moodle.wizard_moodle msgid "Moodle Configuration" -msgstr "" +msgstr "Configuração Moodle" #. module: event_moodle #: view:event.moodle.config.wiz:0 @@ -167,7 +169,7 @@ msgstr "" #: code:addons/event_moodle/event_moodle.py:57 #, python-format msgid "First configure your moodle connection." -msgstr "" +msgstr "Primeiro configure a sua ligação ao moodle" #. 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 35949b35ba6..86bafc4415d 100644 --- a/addons/event_moodle/i18n/pt_BR.po +++ b/addons/event_moodle/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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 8ed23b31e65..36696be627e 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 7c2d4bb4652..fce768fc570 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 4ba27033de7..19d4fe7cd79 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 34bb1f9d4ce..215757c510e 100644 --- a/addons/event_moodle/i18n/zh_CN.po +++ b/addons/event_moodle/i18n/zh_CN.po @@ -14,18 +14,18 @@ msgstr "" "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 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event_moodle #: view:event.moodle.config.wiz:0 msgid "Connection with username and password" -msgstr "" +msgstr "用户名和密码的链接" #. module: event_moodle #: model:ir.model,name:event_moodle.model_event_moodle_config_wiz msgid "event.moodle.config.wiz" -msgstr "" +msgstr "event.moodle.config.wiz" #. module: event_moodle #: help:event.moodle.config.wiz,server_moodle:0 @@ -33,27 +33,29 @@ msgid "" "URL where you have your moodle server. For exemple: 'http://127.0.0.1' or " "'http://localhost'" msgstr "" +"你的 moodle 服务器的URL。\r\n" +"例如:“http://127.0.0.1”或“http://localhost”" #. module: event_moodle #: field:event.registration,moodle_user_password:0 msgid "Password for Moodle User" -msgstr "" +msgstr "Moodle用户密码" #. module: event_moodle #: field:event.moodle.config.wiz,moodle_password:0 msgid "Moodle Password" -msgstr "" +msgstr "Moodle 密码" #. module: event_moodle #: code:addons/event_moodle/event_moodle.py:137 #, python-format msgid "Your email '%s' is wrong." -msgstr "" +msgstr "你的邮件 '%s' 是错误的" #. module: event_moodle #: view:event.moodle.config.wiz:0 msgid "Connection with a Token" -msgstr "" +msgstr "用 令牌 链接" #. module: event_moodle #: view:event.moodle.config.wiz:0 @@ -77,34 +79,34 @@ msgstr "XML-RPC中的URL将被用于连接与Moodle" #. module: event_moodle #: model:ir.model,name:event_moodle.model_event_registration msgid "Event Registration" -msgstr "" +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 "" +msgstr "在moodle中创建一个Openerp用户的其它方法。如果你这样做了,确实这用户有适当的访问权限。" #. module: event_moodle #: field:event.registration,moodle_uid:0 msgid "Moodle User ID" -msgstr "" +msgstr "Moodle 用户ID" #. module: event_moodle #: field:event.moodle.config.wiz,server_moodle:0 msgid "Moodle Server" -msgstr "" +msgstr "Moodle 服务器" #. module: event_moodle #: field:event.event,moodle_id:0 msgid "Moodle ID" -msgstr "" +msgstr "Moodle ID" #. module: event_moodle #: view:event.moodle.config.wiz:0 msgid "Server" -msgstr "" +msgstr "服务器" #. module: event_moodle #: code:addons/event_moodle/event_moodle.py:57 @@ -112,75 +114,75 @@ msgstr "" #: code:addons/event_moodle/event_moodle.py:137 #, python-format msgid "Error!" -msgstr "" +msgstr "错误!" #. module: event_moodle #: code:addons/event_moodle/event_moodle.py:105 #, python-format msgid "You must configure your moodle connection." -msgstr "" +msgstr "你必须配置你的 Moodle 链接" #. module: event_moodle #: field:event.moodle.config.wiz,moodle_username:0 #: field:event.registration,moodle_username:0 msgid "Moodle Username" -msgstr "" +msgstr "Moodle 用户名" #. module: event_moodle #: view:event.moodle.config.wiz:0 #: model:ir.actions.act_window,name:event_moodle.configure_moodle msgid "Configure Moodle" -msgstr "" +msgstr "配置 Moodle" #. module: event_moodle #: field:event.moodle.config.wiz,moodle_token:0 msgid "Moodle Token" -msgstr "" +msgstr "Moodle 令牌" #. 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 "" +msgstr "当你创建了一个令牌,你也能用你定义的用户名链接。" #. module: event_moodle #: help:event.event,moodle_id:0 msgid "The identifier of this event in Moodle" -msgstr "" +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 "" +msgstr "把你的令牌 放在你的服务器中" #. module: event_moodle #: model:ir.ui.menu,name:event_moodle.wizard_moodle msgid "Moodle Configuration" -msgstr "" +msgstr "Moodle 配置" #. module: event_moodle #: view:event.moodle.config.wiz:0 msgid "or" -msgstr "" +msgstr "或" #. module: event_moodle #: code:addons/event_moodle/event_moodle.py:57 #, python-format msgid "First configure your moodle connection." -msgstr "" +msgstr "第一次配置的你moodle连接" #. module: event_moodle #: view:event.moodle.config.wiz:0 msgid "Apply" -msgstr "" +msgstr "应用" #. module: event_moodle #: view:event.moodle.config.wiz:0 msgid "Cancel" -msgstr "" +msgstr "取消" #. module: event_moodle #: model:ir.model,name:event_moodle.model_event_event msgid "Event" -msgstr "" +msgstr "事件" diff --git a/addons/event_sale/i18n/ar.po b/addons/event_sale/i18n/ar.po index 3ded680ab53..8692cafe958 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/cs.po b/addons/event_sale/i18n/cs.po index 69b719fbc8d..e43e0537892 100644 --- a/addons/event_sale/i18n/cs.po +++ b/addons/event_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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product diff --git a/addons/event_sale/i18n/da.po b/addons/event_sale/i18n/da.po index fb3faa70fc0..bc532918eec 100644 --- a/addons/event_sale/i18n/da.po +++ b/addons/event_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-06-20 05:17+0000\n" -"X-Generator: Launchpad (build 16673)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 0184e34522d..bfb578eea38 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 0a7c322d184..0387dcacd90 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 99020c10b1f..4f2ab72617b 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product @@ -52,6 +52,8 @@ msgid "" "Select event types so when we use this product in sales order lines, it will " "filter events of this type only." msgstr "" +"Choisissez les types d’évènements pour que lorsqu'on utilise cet article " +"dans une ligne de commande, seuls les événements de ce type soient filtrés." #. module: event_sale #: field:product.product,event_type_id:0 @@ -82,7 +84,7 @@ msgstr "Formation technique" #: code:addons/event_sale/event_sale.py:88 #, python-format msgid "The registration %s has been created from the Sales Order %s." -msgstr "" +msgstr "L'inscription %s a été créée à partir du bon de commande %s." #. module: event_sale #: field:sale.order.line,event_id:0 diff --git a/addons/event_sale/i18n/hr.po b/addons/event_sale/i18n/hr.po index 5f99b76a38d..e0f1c299972 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 af3fc462ec3..80611fac7f1 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 905c3a789ec..b59a693cc6d 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 ef369d97faa..75428671e83 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product @@ -28,6 +28,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 +37,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 +50,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 +83,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/event_sale/i18n/mn.po b/addons/event_sale/i18n/mn.po index 85f356f55f3..131fa3f1fff 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 88ef9b423e0..5092819606c 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 d3d0b717f6d..bf8a394142d 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 545eab2ad01..216189db8e5 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 df92bf46f98..0852f7e68f5 100644 --- a/addons/event_sale/i18n/pt_BR.po +++ b/addons/event_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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 ad500924678..f426333850a 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 80ed1925ca5..8f43a8f4606 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 c32bcdfa7d1..71902fae5ca 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 d663480d7cc..1275910ffb2 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: event_sale #: model:ir.model,name:event_sale.model_product_product @@ -27,7 +27,7 @@ msgstr "产品" msgid "" "Determine if a product needs to create automatically an event registration " "at the confirmation of a sales order line." -msgstr "" +msgstr "决定是否在销售订单行被确认时,一个产品自动创建一个事件登记项。" #. module: event_sale #: help:sale.order.line,event_id:0 @@ -39,14 +39,14 @@ msgstr "选择活动" #. module: event_sale #: model:event.event,name:event_sale.event_technical_training msgid "Technical training in Grand-Rosiere" -msgstr "" +msgstr "Grand-Rosiere 的技术训练" #. 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 "" +msgstr "选择事件类型,因此当我们在销售订单行使用这个产品时,只有这个类型的事件被过滤。" #. module: event_sale #: field:product.product,event_type_id:0 @@ -56,7 +56,7 @@ msgstr "活动类型" #. module: event_sale #: field:sale.order.line,event_ok:0 msgid "event_ok" -msgstr "" +msgstr "event_ok" #. module: event_sale #: field:product.product,event_ok:0 @@ -71,13 +71,13 @@ msgstr "活动类型" #. module: event_sale #: model:product.template,name:event_sale.event_product_product_template msgid "Technical Training" -msgstr "" +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 "" +msgstr "登记项目 %s 被创建,来自销售订单 %s." #. module: event_sale #: field:sale.order.line,event_id:0 diff --git a/addons/fetchmail/i18n/ar.po b/addons/fetchmail/i18n/ar.po index beec768d9a2..f2c08f99093 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -168,7 +168,7 @@ msgid "Incoming Mail Server" msgstr "خادم الرسائل الواردة" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "فشلت محاولة الاتصال!" @@ -189,7 +189,7 @@ msgid "Name" msgstr "الاسم" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/bg.po b/addons/fetchmail/i18n/bg.po index 2b501361a7f..bc7df6e275f 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -162,7 +162,7 @@ msgid "Incoming Mail Server" msgstr "" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "" @@ -183,7 +183,7 @@ msgid "Name" msgstr "Име" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/ca.po b/addons/fetchmail/i18n/ca.po index a123c10438c..f3cd9aa80d8 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -162,7 +162,7 @@ msgid "Incoming Mail Server" msgstr "" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "" @@ -183,7 +183,7 @@ msgid "Name" msgstr "Nom" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/cs.po b/addons/fetchmail/i18n/cs.po index 78e00a1f982..752a07935ca 100644 --- a/addons/fetchmail/i18n/cs.po +++ b/addons/fetchmail/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-28 04:41+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -168,7 +168,7 @@ msgid "Incoming Mail Server" msgstr "Server příchozí pošty" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "Tes připojení byl neúspěšný!" @@ -189,7 +189,7 @@ msgid "Name" msgstr "Název" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/da.po b/addons/fetchmail/i18n/da.po index ac94b42e9e8..655a139a2f5 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -162,7 +162,7 @@ msgid "Incoming Mail Server" msgstr "" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "" @@ -183,7 +183,7 @@ msgid "Name" msgstr "" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/de.po b/addons/fetchmail/i18n/de.po index 547a85fbe75..02b757821e2 100644 --- a/addons/fetchmail/i18n/de.po +++ b/addons/fetchmail/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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -169,7 +169,7 @@ msgid "Incoming Mail Server" msgstr "Eingehender Mail Server" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "Verbindungstest scheiterte!" @@ -190,7 +190,7 @@ msgid "Name" msgstr "Bezeich." #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/el.po b/addons/fetchmail/i18n/el.po index a3f2a97985e..d077289df26 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -162,7 +162,7 @@ msgid "Incoming Mail Server" msgstr "" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "" @@ -183,7 +183,7 @@ msgid "Name" msgstr "" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/en_GB.po b/addons/fetchmail/i18n/en_GB.po index ae80650fcee..077ba2d4faa 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -169,7 +169,7 @@ msgid "Incoming Mail Server" msgstr "Incoming Mail Server" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "Connection test failed!" @@ -190,7 +190,7 @@ msgid "Name" msgstr "Name" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/es.po b/addons/fetchmail/i18n/es.po index d2d84e29be6..69162195695 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -171,7 +171,7 @@ msgid "Incoming Mail Server" msgstr "Servidor de correo entrante" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "¡Ha fallado el test de conexión!" @@ -192,7 +192,7 @@ msgid "Name" msgstr "Nombre" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/es_CR.po b/addons/fetchmail/i18n/es_CR.po index a1f120dae91..f12d063332a 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: fetchmail @@ -172,7 +172,7 @@ msgid "Incoming Mail Server" msgstr "Servidor de correo entrante" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "¡Ha fallado el test de conexión!" @@ -193,7 +193,7 @@ msgid "Name" msgstr "Nombre" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/et.po b/addons/fetchmail/i18n/et.po index 04da0ae447c..5220611f687 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -162,7 +162,7 @@ msgid "Incoming Mail Server" msgstr "" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "" @@ -183,7 +183,7 @@ msgid "Name" msgstr "Nimi" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/fi.po b/addons/fetchmail/i18n/fi.po index b49db3dbc33..9f48609cbdb 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -166,7 +166,7 @@ msgid "Incoming Mail Server" msgstr "Saapuvan sähköpostin palvelin" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "Yhteystesti epäonnistui!" @@ -187,7 +187,7 @@ msgid "Name" msgstr "Nimi" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/fr.po b/addons/fetchmail/i18n/fr.po index 66ace2a8656..002e64230ed 100644 --- a/addons/fetchmail/i18n/fr.po +++ b/addons/fetchmail/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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -171,7 +171,7 @@ msgid "Incoming Mail Server" msgstr "Serveur de courriels entrant" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "Le test de connexion a échoué !" @@ -192,7 +192,7 @@ msgid "Name" msgstr "Nom" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/gl.po b/addons/fetchmail/i18n/gl.po index 496614c94dd..736eb574809 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -162,7 +162,7 @@ msgid "Incoming Mail Server" msgstr "" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "" @@ -183,7 +183,7 @@ msgid "Name" msgstr "Nome" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/hr.po b/addons/fetchmail/i18n/hr.po index 16efd685752..3e86f94a46b 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -166,7 +166,7 @@ msgid "Incoming Mail Server" msgstr "Poslužitelj dolaznih poruka" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "Greška pri testiranju povezivanja!" @@ -187,7 +187,7 @@ msgid "Name" msgstr "Naziv" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/hu.po b/addons/fetchmail/i18n/hu.po index 84edf4bd32d..125fb35df11 100644 --- a/addons/fetchmail/i18n/hu.po +++ b/addons/fetchmail/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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -169,7 +169,7 @@ msgid "Incoming Mail Server" msgstr "Bejövő levelek kiszolgálója" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "Csatlakozás teszt nem sikerült!" @@ -190,7 +190,7 @@ msgid "Name" msgstr "Név" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/it.po b/addons/fetchmail/i18n/it.po index 0b7bf0672c0..1ed35083135 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -170,7 +170,7 @@ msgid "Incoming Mail Server" msgstr "Mail server in ingresso" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "Test di connessione fallito!" @@ -191,7 +191,7 @@ msgid "Name" msgstr "Nome" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/ja.po b/addons/fetchmail/i18n/ja.po index 65cf6a9d34f..6ce130e877b 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -162,7 +162,7 @@ msgid "Incoming Mail Server" msgstr "受信Eメールサーバ" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "接続テストに失敗しました" @@ -183,7 +183,7 @@ msgid "Name" msgstr "名前" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/ko.po b/addons/fetchmail/i18n/ko.po index a4b6e4e03b9..4487af1332d 100644 --- a/addons/fetchmail/i18n/ko.po +++ b/addons/fetchmail/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-06-30 05:56+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 diff --git a/addons/fetchmail/i18n/lt.po b/addons/fetchmail/i18n/lt.po index 97b39d903dc..cec0f95b6a2 100644 --- a/addons/fetchmail/i18n/lt.po +++ b/addons/fetchmail/i18n/lt.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2011-01-16 21:18+0000\n" -"Last-Translator: Paulius Sladkevičius \n" +"Last-Translator: Paulius Sladkevičius @ hbee \n" "Language-Team: Lithuanian \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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -96,7 +96,7 @@ msgstr "" #. module: fetchmail #: field:fetchmail.server,state:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: fetchmail #: model:ir.model,name:fetchmail.model_fetchmail_server @@ -149,7 +149,7 @@ msgstr "" #: view:fetchmail.server:0 #: field:fetchmail.server,configuration:0 msgid "Configuration" -msgstr "" +msgstr "Nustatymai" #. module: fetchmail #: field:fetchmail.server,script:0 @@ -162,7 +162,7 @@ msgid "Incoming Mail Server" msgstr "" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "" @@ -170,7 +170,7 @@ msgstr "" #. module: fetchmail #: field:fetchmail.server,user:0 msgid "Username" -msgstr "" +msgstr "Naudotojo vardas" #. module: fetchmail #: help:fetchmail.server,server:0 @@ -183,7 +183,7 @@ msgid "Name" msgstr "Pavadinimas" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" @@ -209,7 +209,7 @@ msgstr "" #: field:fetchmail.server,message_ids:0 #: model:ir.actions.act_window,name:fetchmail.act_server_history msgid "Messages" -msgstr "Žinutė" +msgstr "Pranešimai" #. module: fetchmail #: view:fetchmail.server:0 @@ -286,7 +286,7 @@ msgstr "" #. module: fetchmail #: view:fetchmail.server:0 msgid "Advanced" -msgstr "" +msgstr "Išsamūs" #. module: fetchmail #: view:fetchmail.server:0 diff --git a/addons/fetchmail/i18n/lv.po b/addons/fetchmail/i18n/lv.po index 98c6189f4f7..697ca9838ad 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -162,7 +162,7 @@ msgid "Incoming Mail Server" msgstr "" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "" @@ -183,7 +183,7 @@ msgid "Name" msgstr "Nosaukums" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/mk.po b/addons/fetchmail/i18n/mk.po index e7faa720f92..bfbf0449e7c 100644 --- a/addons/fetchmail/i18n/mk.po +++ b/addons/fetchmail/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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -169,7 +169,7 @@ msgid "Incoming Mail Server" msgstr "Сервер за влезна пошта" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "Неуспешно тестирање на конекција!" @@ -190,7 +190,7 @@ msgid "Name" msgstr "Име" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/mn.po b/addons/fetchmail/i18n/mn.po index 602fa43ef9e..270bd0e16c4 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -175,7 +175,7 @@ msgid "Incoming Mail Server" msgstr "Ирэх Мэйлийн Сервер" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "Холболтын тест амжилтгүй боллоо!" @@ -196,7 +196,7 @@ msgid "Name" msgstr "Name" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/nb.po b/addons/fetchmail/i18n/nb.po index 518666d3365..009e6c183c8 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -170,7 +170,7 @@ msgid "Incoming Mail Server" msgstr "Innkommende E-post tjener." #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "Tilkoblingen var mislykket!" @@ -191,7 +191,7 @@ msgid "Name" msgstr "Navn" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/nl.po b/addons/fetchmail/i18n/nl.po index 514265561f8..232fa050a8e 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -71,7 +71,7 @@ msgstr "" #. module: fetchmail #: view:base.config.settings:0 msgid "Configure the incoming email gateway" -msgstr "De inkomende e-mail gateway instellen." +msgstr "Inkomende e-mail server instellen" #. module: fetchmail #: view:fetchmail.server:0 @@ -170,7 +170,7 @@ msgid "Incoming Mail Server" msgstr "Inkomende mailserver" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "Inkomende mailserver" @@ -191,7 +191,7 @@ msgid "Name" msgstr "Naam" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/pl.po b/addons/fetchmail/i18n/pl.po index 61077e3d175..5b976ccf4ea 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -162,7 +162,7 @@ msgid "Incoming Mail Server" msgstr "" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "" @@ -183,7 +183,7 @@ msgid "Name" msgstr "Nazwa" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/pt.po b/addons/fetchmail/i18n/pt.po index 679ad12625f..33110115341 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -171,7 +171,7 @@ msgid "Incoming Mail Server" msgstr "Incoming Mail do servidor" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "Teste de conexão falhou!" @@ -192,7 +192,7 @@ msgid "Name" msgstr "Nome" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/pt_BR.po b/addons/fetchmail/i18n/pt_BR.po index 53d938a7cc6..61304968b94 100644 --- a/addons/fetchmail/i18n/pt_BR.po +++ b/addons/fetchmail/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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -172,7 +172,7 @@ msgid "Incoming Mail Server" msgstr "Servidor de Email de Entrada" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "Teste de conexão falhou!" @@ -193,7 +193,7 @@ msgid "Name" msgstr "Nome" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/ro.po b/addons/fetchmail/i18n/ro.po index 879ed18f23b..15b2041c6de 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -171,7 +171,7 @@ msgid "Incoming Mail Server" msgstr "Server Primire E-mail-uri" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "Testul de conexiune a esuat!" @@ -192,7 +192,7 @@ msgid "Name" msgstr "Nume" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/ru.po b/addons/fetchmail/i18n/ru.po index 1051373a3a6..1f2dae5c0c2 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -170,7 +170,7 @@ msgid "Incoming Mail Server" msgstr "Сервер входящей почты" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "Проверка соединения не удалась!" @@ -191,7 +191,7 @@ msgid "Name" msgstr "Название" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/sl.po b/addons/fetchmail/i18n/sl.po index 788e27998f2..cce03614b64 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -162,7 +162,7 @@ msgid "Incoming Mail Server" msgstr "" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "Povezava ni uspela!" @@ -183,7 +183,7 @@ msgid "Name" msgstr "Ime" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/sr.po b/addons/fetchmail/i18n/sr.po index bc47eedc887..9b0cc103628 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-16 05:41+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -162,7 +162,7 @@ msgid "Incoming Mail Server" msgstr "" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "" @@ -183,7 +183,7 @@ msgid "Name" msgstr "Ime" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/sr@latin.po b/addons/fetchmail/i18n/sr@latin.po index e7991a78f7d..a6febe6d2e5 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -162,7 +162,7 @@ msgid "Incoming Mail Server" msgstr "" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "" @@ -183,7 +183,7 @@ msgid "Name" msgstr "Ime" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/sv.po b/addons/fetchmail/i18n/sv.po index 2ff3d2e10e2..a4d70068143 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -169,7 +169,7 @@ msgid "Incoming Mail Server" msgstr "Inkommande e-postserver" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "Anslutsningstest fallerade!" @@ -190,7 +190,7 @@ msgid "Name" msgstr "Namn" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/tr.po b/addons/fetchmail/i18n/tr.po index e381cc32631..e9001ce9298 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:35+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -169,7 +169,7 @@ msgid "Incoming Mail Server" msgstr "Gelen Posta Sunucusu" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "Bağlantı denemesi başarısız!" @@ -190,7 +190,7 @@ msgid "Name" msgstr "Adı" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/vi.po b/addons/fetchmail/i18n/vi.po index deea096d772..71e11c6b199 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -162,7 +162,7 @@ msgid "Incoming Mail Server" msgstr "" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "" @@ -183,7 +183,7 @@ msgid "Name" msgstr "Tên" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fetchmail/i18n/zh_CN.po b/addons/fetchmail/i18n/zh_CN.po index 0f28db735ed..641f26a50ae 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fetchmail #: selection:fetchmail.server,state:0 @@ -133,7 +133,7 @@ msgstr "可选的自定义服务器动作,用于在收到邮件时自动触发 #. module: fetchmail #: view:fetchmail.server:0 msgid "# of emails" -msgstr "# 电子邮件" +msgstr "电子邮件数量" #. module: fetchmail #: field:fetchmail.server,original:0 @@ -162,7 +162,7 @@ msgid "Incoming Mail Server" msgstr "接收邮件服务器" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "Connection test failed!" msgstr "连接测试失败!" @@ -183,7 +183,7 @@ msgid "Name" msgstr "名称" #. module: fetchmail -#: code:addons/fetchmail/fetchmail.py:164 +#: code:addons/fetchmail/fetchmail.py:163 #, python-format msgid "" "Here is what we got instead:\n" diff --git a/addons/fleet/i18n/ar.po b/addons/fleet/i18n/ar.po index 1b973379904..c37b5cf0871 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/bg.po b/addons/fleet/i18n/bg.po index 503b13d7840..87644a278fe 100644 --- a/addons/fleet/i18n/bg.po +++ b/addons/fleet/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-06-20 05:17+0000\n" -"X-Generator: Launchpad (build 16673)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 @@ -74,7 +74,7 @@ msgstr "Дизел" #: code:addons/fleet/fleet.py:421 #, python-format msgid "License Plate: from '%s' to '%s'" -msgstr "" +msgstr "Регистрационен номер: от '%s' до '%s'" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_38 @@ -85,12 +85,12 @@ msgstr "" #: view:fleet.vehicle.cost:0 #: view:fleet.vehicle.model:0 msgid "Group By..." -msgstr "" +msgstr "Групирай по" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_32 msgid "Oil Pump Replacement" -msgstr "" +msgstr "Смяна маслена помпа" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_18 @@ -100,24 +100,24 @@ msgstr "" #. module: fleet #: selection:fleet.vehicle.log.contract,cost_frequency:0 msgid "No" -msgstr "" +msgstr "Не" #. module: fleet #: help:fleet.vehicle,power:0 msgid "Power in kW of the vehicle" -msgstr "" +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 #: field:fleet.vehicle.log.fuel,vendor_id:0 #: field:fleet.vehicle.log.services,vendor_id:0 msgid "Supplier" -msgstr "" +msgstr "Доставчик" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_35 @@ -127,7 +127,7 @@ msgstr "" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Odometer details" -msgstr "" +msgstr "Километраж детайли" #. module: fleet #: view:fleet.vehicle:0 @@ -137,7 +137,7 @@ msgstr "" #. module: fleet #: field:fleet.vehicle.log.fuel,liter:0 msgid "Liter" -msgstr "" +msgstr "Литър" #. module: fleet #: model:ir.actions.client,name:fleet.action_fleet_menu @@ -147,27 +147,27 @@ msgstr "" #. module: fleet #: view:board.board:0 msgid "Fuel Costs" -msgstr "" +msgstr "Цена на гориво" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_9 msgid "Battery Inspection" -msgstr "" +msgstr "Проверка на акумулатор" #. module: fleet #: field:fleet.vehicle,company_id:0 msgid "Company" -msgstr "" +msgstr "Фирма" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Invoice Date" -msgstr "" +msgstr "Дата на фактура" #. module: fleet #: view:fleet.vehicle.log.fuel:0 msgid "Refueling Details" -msgstr "" +msgstr "Зареждане детайли" #. module: fleet #: code:addons/fleet/fleet.py:669 @@ -183,7 +183,7 @@ msgstr "" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_16 msgid "Charging System Diagnosis" -msgstr "" +msgstr "Диагностика на зареждащата система" #. module: fleet #: help:fleet.vehicle,car_value:0 @@ -204,7 +204,7 @@ msgstr "" #: view:fleet.vehicle:0 #: selection:fleet.vehicle.cost,cost_type:0 msgid "Services" -msgstr "" +msgstr "Услуги" #. module: fleet #: help:fleet.vehicle,odometer:0 diff --git a/addons/fleet/i18n/cs.po b/addons/fleet/i18n/cs.po index d5eb3e0e923..728573dc52d 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/de.po b/addons/fleet/i18n/de.po index b47b8ba2074..4ed3e6b129d 100644 --- a/addons/fleet/i18n/de.po +++ b/addons/fleet/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-06-04 05:20+0000\n" -"X-Generator: Launchpad (build 16660)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 @@ -74,7 +74,7 @@ msgstr "Diesel" #: code:addons/fleet/fleet.py:421 #, python-format msgid "License Plate: from '%s' to '%s'" -msgstr "Nummernschild: von #%s' bis '%s'" +msgstr "Nummernschild: von '%s' bis '%s'" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_38 @@ -95,7 +95,7 @@ msgstr "Ersatz Ölpumpe" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_18 msgid "Engine Belt Inspection" -msgstr "Keilriemen Inspektion" +msgstr "Zahnriemen Inspektion" #. module: fleet #: selection:fleet.vehicle.log.contract,cost_frequency:0 @@ -162,7 +162,7 @@ msgstr "Firma" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Invoice Date" -msgstr "Datum Rechnung" +msgstr "Rechnungsdatum" #. module: fleet #: view:fleet.vehicle.log.fuel:0 @@ -659,7 +659,7 @@ msgstr "Anzahl Sitze" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_convertible msgid "Convertible" -msgstr "Kabriot" +msgstr "Kabrio" #. module: fleet #: model:ir.ui.menu,name:fleet.fleet_configuration @@ -1334,7 +1334,7 @@ msgstr "Vertrag" #: model:ir.actions.act_window,name:fleet.fleet_vehicle_model_brand_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_model_brand_menu msgid "Model brand of Vehicle" -msgstr "Fahrzeugmodell Marke" +msgstr "Markenlogo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_10 @@ -1485,7 +1485,7 @@ msgstr "Wöchentlich" #: view:fleet.vehicle:0 #: view:fleet.vehicle.odometer:0 msgid "Odometer Logs" -msgstr "Tachometer Auswertung" +msgstr "Fahrtenbücher" #. module: fleet #: field:fleet.vehicle,acquisition_date:0 @@ -1495,7 +1495,7 @@ msgstr "Kaufdatum" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_odometer msgid "Odometer log for a vehicle" -msgstr "Tachometer Auswertung für ein Fahrzeug" +msgstr "Fahrtenbuch für ein Fahrzeug" #. module: fleet #: field:fleet.vehicle.cost,cost_type:0 @@ -1699,7 +1699,7 @@ msgstr "Zusatzeigenschaften" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_state msgid "fleet.vehicle.state" -msgstr "Navigationssystem" +msgstr "fleet.vehicle.state" #. module: fleet #: view:fleet.vehicle.log.contract:0 @@ -1715,7 +1715,7 @@ msgstr "Fahrzeug Verträge" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_48 msgid "Transmission Fluid Replacement" -msgstr "Ersatz Getriebeölwanne" +msgstr "Austausch Getriebeöl" #. module: fleet #: field:fleet.vehicle.model.brand,name:0 @@ -1725,7 +1725,7 @@ msgstr "Markenname" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_36 msgid "Power Steering Pump Replacement" -msgstr "Ersatz Lenkhelfpumpe" +msgstr "Ersatz Servopumpe" #. module: fleet #: help:fleet.vehicle.cost,contract_id:0 diff --git a/addons/fleet/i18n/es.po b/addons/fleet/i18n/es.po index 6f8128e616c..b123f73a751 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 c27f1320bc9..6a57ff5bd08 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/fr.po b/addons/fleet/i18n/fr.po index d98a5fc3cd2..29623f91f13 100644 --- a/addons/fleet/i18n/fr.po +++ b/addons/fleet/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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 @@ -106,7 +106,7 @@ msgstr "Non" #. module: fleet #: help:fleet.vehicle,power:0 msgid "Power in kW of the vehicle" -msgstr "" +msgstr "Puissance du véhicule en kW." #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_2 @@ -143,7 +143,7 @@ msgstr "Litre" #. module: fleet #: model:ir.actions.client,name:fleet.action_fleet_menu msgid "Open Fleet Menu" -msgstr "" +msgstr "Ouvrir le menu de gestion de flotte." #. module: fleet #: view:board.board:0 @@ -168,7 +168,7 @@ msgstr "Date de facture" #. module: fleet #: view:fleet.vehicle.log.fuel:0 msgid "Refueling Details" -msgstr "" +msgstr "Détails du ravitaillement en carburant" #. module: fleet #: code:addons/fleet/fleet.py:669 @@ -184,22 +184,22 @@ msgstr "Coûts estimés" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_16 msgid "Charging System Diagnosis" -msgstr "" +msgstr "Diagnostique du système de charge" #. module: fleet #: help:fleet.vehicle,car_value:0 msgid "Value of the bought vehicle" -msgstr "" +msgstr "Valeur d’achat du véhicule" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_44 msgid "Tie Rod End Replacement" -msgstr "" +msgstr "Remplacement de la rotule de direction" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_24 msgid "Head Gasket(s) Replacement" -msgstr "" +msgstr "Remplacement du joint de culasse" #. module: fleet #: view:fleet.vehicle:0 @@ -212,7 +212,7 @@ msgstr "Interventions" #: 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 "Valeur du compteur kilométrique au moment de ce service." #. module: fleet #: view:fleet.vehicle.log.contract:0 @@ -591,7 +591,7 @@ msgstr "Prix total" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_27 msgid "Heater Core Replacement" -msgstr "" +msgstr "Remplacement du radiateur de chauffage" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_14 @@ -737,7 +737,7 @@ msgstr "Manuel" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_52 msgid "Wheel Bearing Replacement" -msgstr "" +msgstr "Remplacement du roulement de roue" #. module: fleet #: help:fleet.vehicle.cost,cost_subtype_id:0 @@ -775,7 +775,7 @@ msgstr "Unité de distance" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_30 msgid "Intake Manifold Gasket Replacement" -msgstr "" +msgstr "Remplacement du joint du collecteur d'admission" #. module: fleet #: selection:fleet.vehicle.log.contract,cost_frequency:0 @@ -811,7 +811,7 @@ msgstr "Coût estimé" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_26 msgid "Heater Control Valve Replacement" -msgstr "" +msgstr "Remplacement de la vanne de régulation de chauffage" #. module: fleet #: view:fleet.vehicle.log.contract:0 @@ -887,7 +887,7 @@ msgstr "" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_11 msgid "Brake Caliper Replacement" -msgstr "" +msgstr "Remplacement d'un étrier de frein" #. module: fleet #: field:fleet.vehicle,odometer:0 @@ -960,7 +960,7 @@ msgstr "Logo" #. module: fleet #: field:fleet.vehicle,horsepower_tax:0 msgid "Horsepower Taxation" -msgstr "" +msgstr "Taxe sur la puissance (en chevaux fiscaux)" #. module: fleet #: field:fleet.vehicle,log_services:0 @@ -1915,7 +1915,7 @@ msgstr "" #. module: fleet #: help:fleet.vehicle,message_ids:0 msgid "Messages and communication history" -msgstr "Historique des messages et des communications" +msgstr "Historique des messages et communications" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle diff --git a/addons/fleet/i18n/hr.po b/addons/fleet/i18n/hr.po index 2e53ebb970a..f1968997f9c 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/hu.po b/addons/fleet/i18n/hu.po index eca6519a11b..f125fb6e433 100644 --- a/addons/fleet/i18n/hu.po +++ b/addons/fleet/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-05-20 05:34+0000\n" -"X-Generator: Launchpad (build 16626)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/it.po b/addons/fleet/i18n/it.po index 7b4d468cc80..045feb8d882 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/lv.po b/addons/fleet/i18n/lv.po index 6f9d57156fe..8b2a5cff987 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/mk.po b/addons/fleet/i18n/mk.po index 3386045b42a..407e7547253 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 @@ -30,7 +30,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 @@ -110,7 +110,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 @@ -198,7 +198,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 @@ -211,7 +211,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 @@ -266,7 +266,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 @@ -324,7 +324,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 @@ -334,7 +334,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 @@ -423,7 +423,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 @@ -441,16 +441,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" " " @@ -488,6 +487,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 @@ -507,13 +508,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" " " @@ -525,7 +526,7 @@ msgstr "прикажи записи за потрошено гориво" #. module: fleet #: field:fleet.vehicle.log.contract,purchaser_id:0 msgid "Contractor" -msgstr "" +msgstr "Договарач" #. module: fleet #: field:fleet.vehicle,license_plate:0 @@ -581,7 +582,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 @@ -619,8 +620,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 @@ -744,7 +745,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 @@ -767,7 +768,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 @@ -821,6 +822,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 @@ -997,7 +1000,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 @@ -1130,6 +1133,8 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Мала фотографија за брендот. Таа автоматски се намалува како 64x64px слика, " +"со зачуван сооднос. Искористет го ова поле таму каде што се бара мала слика." #. module: fleet #: view:board.board:0 @@ -1208,10 +1213,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 @@ -1234,14 +1240,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" " " @@ -1278,6 +1285,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 @@ -1337,6 +1362,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 @@ -1364,6 +1392,17 @@ msgid "" "

\n" " " msgstr "" +"

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

\n" +"

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

\n" +" " #. module: fleet #: field:fleet.vehicle,car_value:0 @@ -1428,6 +1467,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 @@ -1448,7 +1490,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 @@ -1502,6 +1544,14 @@ msgid "" "

\n" " " msgstr "" +"

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

\n" +" " #. module: fleet #: field:fleet.vehicle.model,brand_id:0 @@ -1615,12 +1665,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 @@ -1671,7 +1721,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 @@ -1722,16 +1772,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 @@ -1743,6 +1799,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 @@ -1840,18 +1897,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 @@ -1953,7 +2010,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 @@ -1963,7 +2020,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 @@ -1973,7 +2030,7 @@ msgstr "покажи го договорот за оваа возило" #. module: fleet #: view:fleet.vehicle.log.services:0 msgid "Total" -msgstr "" +msgstr "Вкупно" #. module: fleet #: help:fleet.service.type,category:0 @@ -1990,4 +2047,4 @@ msgstr "За интерна употреба" #. module: fleet #: help:fleet.vehicle.state,sequence:0 msgid "Used to order the note stages" -msgstr "" +msgstr "Се користи за да се подредат етапите на белешката" diff --git a/addons/fleet/i18n/mn.po b/addons/fleet/i18n/mn.po index 183f25375ed..99498b4f3de 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/nl.po b/addons/fleet/i18n/nl.po index c6a3639201a..ffd95b93b25 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 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/nl_BE.po b/addons/fleet/i18n/nl_BE.po index 380de8a945e..4c052e18e3b 100644 --- a/addons/fleet/i18n/nl_BE.po +++ b/addons/fleet/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-04-16 04:37+0000\n" -"X-Generator: Launchpad (build 16564)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/pl.po b/addons/fleet/i18n/pl.po index 8f0efbda841..a2f8b84593d 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/pt.po b/addons/fleet/i18n/pt.po index 1f12cfaac21..69a8614ce73 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 @@ -173,7 +173,7 @@ msgstr "Detalhes de reabastecimento" #: code:addons/fleet/fleet.py:669 #, python-format msgid "%s contract(s) need(s) to be renewed and/or closed!" -msgstr "" +msgstr "O(s) contrato(s) %s precisa(m) de ser renovados e/ou terminados!" #. module: fleet #: view:fleet.vehicle.cost:0 @@ -211,7 +211,7 @@ msgstr "Serviços" #: 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 "Quilometragem do veículo no momento deste registo" #. module: fleet #: view:fleet.vehicle.log.contract:0 @@ -246,11 +246,12 @@ msgstr "" #: field:fleet.vehicle.log.services,cost_id:0 msgid "Automatically created field to link to parent fleet.vehicle.cost" msgstr "" +"Campo criado automaticamente para ligar ao fleet.vehicle.cost ascendente" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Terminate Contract" -msgstr "" +msgstr "Terminar Contrato" #. module: fleet #: help:fleet.vehicle.cost,parent_id:0 @@ -273,6 +274,8 @@ msgid "" "Date when the coverage of the contract expirates (by default, one year after " "begin date)" msgstr "" +"Data em que a cobertura do contrato expira (por omissão, um ano após a data " +"de início)" #. module: fleet #: view:fleet.vehicle.log.fuel:0 @@ -1992,7 +1995,7 @@ msgstr "" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_42 msgid "Starter Replacement" -msgstr "" +msgstr "Substituição do Motor de Arranque" #. module: fleet #: view:fleet.vehicle.cost:0 @@ -2003,7 +2006,7 @@ msgstr "Ano" #. module: fleet #: help:fleet.vehicle,license_plate:0 msgid "License plate number of the vehicle (ie: plate number for a car)" -msgstr "" +msgstr "Matrícula do veículo (ie: matrícula de um veículo)" #. module: fleet #: model:ir.model,name:fleet.model_fleet_contract_state @@ -2013,7 +2016,7 @@ msgstr "" #. module: fleet #: view:fleet.vehicle:0 msgid "show the contract for this vehicle" -msgstr "" +msgstr "Mostrar o contrato deste veículo" #. module: fleet #: view:fleet.vehicle.log.services:0 @@ -2025,11 +2028,12 @@ msgstr "" msgid "" "Choose wheter the service refer to contracts, vehicle services or both" msgstr "" +"Escolher se o serviço diz respeito a contratos, serviços de veículo ou ambos" #. module: fleet #: help:fleet.vehicle.cost,cost_type:0 msgid "For internal purpose only" -msgstr "" +msgstr "Apenas para uso interno" #. module: fleet #: help:fleet.vehicle.state,sequence:0 diff --git a/addons/fleet/i18n/pt_BR.po b/addons/fleet/i18n/pt_BR.po index 40817bc7e14..b6de6835196 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/ro.po b/addons/fleet/i18n/ro.po index 7707e666be9..b78ea79139d 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 @@ -53,7 +53,7 @@ msgstr "Lunar" #: code:addons/fleet/fleet.py:62 #, python-format msgid "Unknown" -msgstr "Necunoscut(a)" +msgstr "Necunoscut(ă)" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_20 @@ -74,7 +74,7 @@ msgstr "Diesel" #: code:addons/fleet/fleet.py:421 #, python-format msgid "License Plate: from '%s' to '%s'" -msgstr "Numarul de Inmatriculare: de la '%s' la '%s'" +msgstr "Numărul de înmatriculare: de la '%s' la '%s'" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_38 @@ -85,7 +85,7 @@ msgstr "Inlocuire Rotoare" #: view:fleet.vehicle.cost:0 #: view:fleet.vehicle.model:0 msgid "Group By..." -msgstr "Grupeaza dupa..." +msgstr "Grupează după..." #. module: fleet #: model:fleet.service.type,name:fleet.type_service_32 @@ -105,7 +105,7 @@ msgstr "Nu" #. module: fleet #: help:fleet.vehicle,power:0 msgid "Power in kW of the vehicle" -msgstr "Puterea in kW a vehiculului" +msgstr "Puterea în kW a vehiculului" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_2 @@ -127,7 +127,7 @@ msgstr "Inlocuirea Furtunului Servodirectiei" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Odometer details" -msgstr "Detalii Contor de Kilometraj" +msgstr "Detalii Kilometraj" #. module: fleet #: view:fleet.vehicle:0 @@ -167,7 +167,7 @@ msgstr "Data Facturii" #. module: fleet #: view:fleet.vehicle.log.fuel:0 msgid "Refueling Details" -msgstr "Detalii Realimentare" +msgstr "Detalii alimentare" #. module: fleet #: code:addons/fleet/fleet.py:669 @@ -212,14 +212,14 @@ msgstr "Servicii" #: help:fleet.vehicle.cost,odometer_id:0 msgid "Odometer measure of the vehicle at the moment of this log" msgstr "" -"Masurarea contorului de kilometraj al vehiculului la momentul acestui " +"Măsurarea contorului de kilometraj al vehiculului la momentul acestui " "registru" #. module: fleet #: view:fleet.vehicle.log.contract:0 #: field:fleet.vehicle.log.contract,notes:0 msgid "Terms and Conditions" -msgstr "Termeni si Conditii" +msgstr "Termeni și condiții" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_kanban @@ -314,7 +314,7 @@ msgstr "Vehiculul la care se refera acest registru" #: field:fleet.vehicle.log.fuel,cost_amount:0 #: field:fleet.vehicle.log.services,cost_amount:0 msgid "Amount" -msgstr "Cantitatea" +msgstr "Valoarea" #. module: fleet #: field:fleet.vehicle,message_unread:0 @@ -365,12 +365,12 @@ msgstr "Daca este selectat, mesajele noi necesita atentia dumneavoastra." #: code:addons/fleet/fleet.py:414 #, python-format msgid "Driver: from '%s' to '%s'" -msgstr "Sofer: de la '%s' la '%s'" +msgstr "Șofer: de la '%s' la '%s'" #. module: fleet #: view:fleet.vehicle:0 msgid "and" -msgstr "si" +msgstr "și" #. module: fleet #: field:fleet.vehicle.model.brand,image_medium:0 @@ -398,17 +398,17 @@ msgstr "Transmisia Utilizata de vehicul" #: model:ir.actions.act_window,name:fleet.act_renew_contract #, python-format msgid "Renew Contract" -msgstr "Reinnoiti Contractul" +msgstr "Reînnoiți Contractul" #. module: fleet #: view:fleet.vehicle:0 msgid "show the odometer logs for this vehicle" -msgstr "arata registrele contorului de kilometraj pentru acest vehicul" +msgstr "arată registrele de kilometraj pentru acest vehicul" #. module: fleet #: help:fleet.vehicle,odometer_unit:0 msgid "Unit of the odometer " -msgstr "Unitatea contorului de kilometraj " +msgstr "Unitatea pentru kilometraj " #. module: fleet #: view:fleet.vehicle.log.services:0 @@ -446,18 +446,17 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Faceti click pentru a crea un contract nou. \n" +"

\n" +" Faceți clic pentru a crea un contract nou. \n" "

\n" -" Va gestionati toate contractele (leasing, asigurari, etc.) " -"cu\n" -" serviciile, costurile lor asociate. OpenERP va va avertiza " +" Gestionați toate contractele (leasing, asigurări, etc.) cu\n" +" serviciile, costurile lor asociate. OpenERP vă va avertiza " "automat\n" -" atunci cand unele contracte trebuie reinnoite.\n" +" atunci când unele contracte trebuie reînnoite.\n" "

\n" " Fiecare contract (de exemplu: leasing) poate include diverse " "servicii\n" -" (reparatii, asigurari, intretinere periodica).\n" +" (reparații, asigurări, întreținere periodică).\n" "

\n" " " @@ -481,13 +480,13 @@ msgstr "Costuri Contracte" #: model:ir.actions.act_window,name:fleet.fleet_vehicle_log_services_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_log_services_menu msgid "Vehicles Services Logs" -msgstr "Registre Servicii Vehicule" +msgstr "Servicii Vehicule" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_log_fuel_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_log_fuel_menu msgid "Vehicles Fuel Logs" -msgstr "Registre Combustibil Vehicule" +msgstr "Alimentări Vehicule" #. module: fleet #: view:fleet.vehicle.model.brand:0 @@ -515,19 +514,19 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Faceti click pentru a crea un cost nou.\n" +"

\n" +" Faceți clic pentru a crea un cost nou.\n" "

\n" -" OpenERP va ajuta sa gestionati costurile pentru diverse\n" +" OpenERP vă ajută să gestionați costurile pentru diverse\n" " vehicule. Costurile sunt create automat din servicii,\n" -" contracte (fixe sau recurente) si registre de combustibil.\n" +" contracte (fixe sau recurente) și din alimentări.\n" "

\n" " " #. module: fleet #: view:fleet.vehicle:0 msgid "show the fuel logs for this vehicle" -msgstr "afiseaza registrele de combustibil pentru acest vehicul" +msgstr "afișează alimntările pentru acest vehicul" #. module: fleet #: field:fleet.vehicle.log.contract,purchaser_id:0 @@ -537,12 +536,12 @@ msgstr "Contractor" #. module: fleet #: field:fleet.vehicle,license_plate:0 msgid "License Plate" -msgstr "Placuta de Inmatriculare" +msgstr "Placuță de înmatriculare" #. module: fleet #: selection:fleet.vehicle.log.contract,state:0 msgid "To Close" -msgstr "Pentru inchidere" +msgstr "Pentru închidere" #. module: fleet #: field:fleet.vehicle.log.contract,cost_frequency:0 @@ -593,7 +592,7 @@ msgstr "Are Contracte Restante" #. module: fleet #: field:fleet.vehicle.cost,amount:0 msgid "Total Price" -msgstr "Pret total" +msgstr "Preț total" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_27 @@ -642,7 +641,7 @@ msgstr "Registru de combustibil pentru vehicule" #. module: fleet #: view:fleet.vehicle:0 msgid "Engine Options" -msgstr "Optiuni Motor" +msgstr "Opțiuni Motor" #. module: fleet #: view:fleet.vehicle.log.fuel:0 @@ -697,12 +696,12 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Dati click pentru a crea un status al vehiculului.\n" +"

\n" +" Dați clic pentru a crea un status al vehiculului.\n" "

\n" -" Puteti personaliza statusul disponibil pentru a urmari " -"evolutia\n" -" fiecarui vehicul. De exemplu: Activ, In reparatie, Vandut.\n" +" Puteți personaliza statutul disponibil pentru a urmări " +"evoluția\n" +" fiecărui vehicul. De exemplu: Activ, În reparație, Vândut.\n" "

\n" " " @@ -711,7 +710,7 @@ msgstr "" #: field:fleet.vehicle,log_fuel:0 #: view:fleet.vehicle.log.fuel:0 msgid "Fuel Logs" -msgstr "Registre Combustibil" +msgstr "Alimentări carburant" #. module: fleet #: code:addons/fleet/fleet.py:409 @@ -766,20 +765,20 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Faceti click pentru a crea o marca noua.\n" +"

\n" +" Faceți clic pentru a crea o marcă nouă.\n" "

\n" " " #. module: fleet #: field:fleet.vehicle.log.contract,start_date:0 msgid "Contract Start Date" -msgstr "Data de Inceput a Contractului" +msgstr "Data de început a Contractului" #. module: fleet #: field:fleet.vehicle,odometer_unit:0 msgid "Odometer Unit" -msgstr "Unitate Contor Kilometraj" +msgstr "Unitate kilometraj" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_30 @@ -881,13 +880,13 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Dati click pentru a crea un registru nou de combustibil. \n" +"

\n" +" Dați clic pentru a crea o nouă alimentare de carburant. \n" "

\n" -" Aici puteti sa adaugati inregistrari ale realimentarilor " -"pentru toate vehiculele. De asemenea, puteti sa\n" -" filtrati registrele unui anumit vehicule folosind campul de " -"cautare.\n" +" Aici puteți să adaugați înregistrări ale alimentarilor " +"pentru toate vehiculele. De asemenea, puteți să\n" +" filtrați alimentările unui anumit vehicule folosind câmpul " +"de căutare.\n" "

\n" " " @@ -899,7 +898,7 @@ msgstr "Inlocuire Subler Frana" #. module: fleet #: field:fleet.vehicle,odometer:0 msgid "Last Odometer" -msgstr "Ultimul Contor de Kilometraj" +msgstr "Ultimul kilometraj" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_model_act @@ -1033,7 +1032,7 @@ msgstr "Asistenta" #. module: fleet #: field:fleet.vehicle.log.fuel,price_per_liter:0 msgid "Price Per Liter" -msgstr "Pretul pe litru" +msgstr "Prețul pe litru" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_17 @@ -1126,7 +1125,7 @@ msgstr "Inlocuirea Placutelor de Frana" #: view:fleet.vehicle.log.fuel:0 #: view:fleet.vehicle.log.services:0 msgid "Odometer Details" -msgstr "Detalii Contor de kilometraj" +msgstr "Detalii kilometraj" #. module: fleet #: field:fleet.vehicle,driver_id:0 @@ -1207,7 +1206,7 @@ msgstr "arata toate costurile pentru acest vehicul" #. module: fleet #: view:fleet.vehicle.odometer:0 msgid "Odometer Values Per Month" -msgstr "Valorile lunare ale Contorului de kilometraj" +msgstr "Valorile lunare ale kilometrajului" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_model_act @@ -1220,10 +1219,10 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Dati click pentru a crea un model nou.\n" +"

\n" +" Dați click pentru a crea un model nou.\n" "

\n" -" Puteti defini mai multe modele (de exemplu A3, A4) pentru " +" Puteți defini mai multe modele (de exemplu A3, A4) pentru " "fiecare marca (Audi).\n" "

\n" " " @@ -1245,17 +1244,17 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Dati click pentru a crea un vehicul nou. \n" +"

\n" +" Dați clic pentru a crea un vehicul nou. \n" "

\n" -" Veti putea sa va gestionati parcul auto tinand evidenta\n" -" contractelor, a serviciilor, a costurilor fixe si recurente, " -"a contoarelor de kilometraj si\n" -" registrelor de combustibil asociate fiecarui vehicul.\n" +" Veți putea să va gestionați parcul auto ținând evidența\n" +" contractelor, a serviciilor, a costurilor fixe și recurente, " +"a contoarelor de kilometraj și\n" +" a alimentărilor asociate fiecărui vehicul.\n" "

\n" -" OpenERP va va avertiza atunci cand aveti servicii sau " -"contractele trebuie\n" -" reinnoite.\n" +" OpenERP vă va avertiza atunci când aveți servicii sau " +"contractele ce trebuie\n" +" reînnoite.\n" "

\n" " " @@ -1413,7 +1412,7 @@ msgstr "" #. module: fleet #: field:fleet.vehicle,car_value:0 msgid "Car Value" -msgstr "Valoarea Masinii" +msgstr "Valoarea mașinii" #. module: fleet #: model:ir.actions.act_window,name:fleet.open_board_fleet @@ -1432,7 +1431,7 @@ msgstr "Cheltuieli totale (fara TVA)" #. module: fleet #: field:fleet.vehicle.cost,odometer_id:0 msgid "Odometer" -msgstr "Contor Kilometraj" +msgstr "Kilometraj" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_45 @@ -1486,7 +1485,7 @@ msgstr "Saptamanal(a)" #: view:fleet.vehicle:0 #: view:fleet.vehicle.odometer:0 msgid "Odometer Logs" -msgstr "Registre Contor de Kilometraj" +msgstr "Registre kilometraj" #. module: fleet #: field:fleet.vehicle,acquisition_date:0 @@ -1568,7 +1567,7 @@ msgstr "Model" #. module: fleet #: view:fleet.vehicle:0 msgid "General Properties" -msgstr "Proprietati Generale" +msgstr "Proprietăți generale" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_21 @@ -1696,7 +1695,7 @@ msgstr "Valoarea reziduala in %s" #. module: fleet #: view:fleet.vehicle:0 msgid "Additional Properties" -msgstr "Proprietati Suplimentare" +msgstr "Proprietăți suplimentare" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_state @@ -1745,13 +1744,13 @@ msgstr "Vehiculul %s a fost adaugat parcului auto!" #: view:fleet.vehicle.log.fuel:0 #: view:fleet.vehicle.log.services:0 msgid "Price" -msgstr "Pret" +msgstr "Preț" #. module: fleet #: field:fleet.vehicle.cost,odometer:0 #: field:fleet.vehicle.odometer,value:0 msgid "Odometer Value" -msgstr "Valoarea Contorului de kilometraj" +msgstr "Valoarea kilometrajului" #. module: fleet #: view:fleet.vehicle:0 @@ -1799,7 +1798,7 @@ msgstr "Inlocuirea Motorului Suflantei de Incalzire" #: model:ir.actions.act_window,name:fleet.fleet_vehicle_odometer_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_odometer_menu msgid "Vehicles Odometer" -msgstr "Contor Kilometraj Vehicule" +msgstr "Kilometraj Vehicule" #. module: fleet #: help:fleet.vehicle.log.contract,notes:0 @@ -1847,7 +1846,7 @@ msgstr "Nume" #. module: fleet #: help:fleet.vehicle,doors:0 msgid "Number of doors of the vehicle" -msgstr "Numarul de usi ale vehiculului" +msgstr "Numărul de uși ale vehiculului" #. module: fleet #: field:fleet.vehicle,transmission:0 @@ -1857,7 +1856,7 @@ msgstr "Transmisie" #. module: fleet #: field:fleet.vehicle,vin_sn:0 msgid "Chassis Number" -msgstr "Numarul de Sasiu" +msgstr "Numărul de șasiu" #. module: fleet #: help:fleet.vehicle,color:0 @@ -1876,14 +1875,14 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Dati clic pentru a crea o noua inregistrare a serviciului. \n" +"

\n" +" Dați clic pentru a crea o nouă înregistrare a serviciului. \n" "

\n" -" OpenERP va ajuta sa tineti evidenta tuturor serviciilor " +" OpenERP vă ajută să țineți evidența tuturor serviciilor " "efectuate\n" -" la vehiculul dumneavoastra. Serviciile pot fi de mai multe " -"tipuri: reparatii\n" -" ocazionale, intretinere fixa, etc.\n" +" la vehiculul dumneavoastră. Serviciile pot fi de mai multe " +"tipuri: reparații\n" +" ocazionale, întreținere fixă, etc.\n" "

\n" " " @@ -1970,10 +1969,10 @@ msgid "" "

\n" " " msgstr "" -"\n" -" Dati clic pentru a crea un tip nou de serviciu.\n" +"

\n" +" Dați clic pentru a crea un tip nou de serviciu.\n" "

\n" -" Fiecare serviciu poate fi utilizt in contracte, fie " +" Fiecare serviciu poate fi utilizat în contracte, fie " "independent fie ambele.\n" "

\n" " " @@ -1987,13 +1986,12 @@ msgstr "Costuri Servicii" #: code:addons/fleet/fleet.py:47 #, python-format msgid "Emptying the odometer value of a vehicle is not allowed." -msgstr "" -"Nu este permisa stergerea valorii contorului de kilometraj al unui vehicul." +msgstr "Nu este permisă ștergerea valorii kilometrajului al unui vehicul." #. module: fleet #: help:fleet.vehicle,seats:0 msgid "Number of seats of the vehicle" -msgstr "Numarul de locuri al vehiculului" +msgstr "Numărul de locuri al vehiculului" #. module: fleet #: model:res.groups,name:fleet.group_fleet_manager @@ -2025,8 +2023,8 @@ msgstr "An" #: help:fleet.vehicle,license_plate:0 msgid "License plate number of the vehicle (ie: plate number for a car)" msgstr "" -"Numarul placutelor de inmatriculare ale vehiculului (adica: numarul de " -"inmatriculare al unei masini)" +"Numărul plăcuțelor de înmatriculare ale vehiculului (adică: numărul de " +"înmatriculare al unei mașini)" #. module: fleet #: model:ir.model,name:fleet.model_fleet_contract_state diff --git a/addons/fleet/i18n/ru.po b/addons/fleet/i18n/ru.po index 9bf230b6e65..cf5660fc750 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/sl.po b/addons/fleet/i18n/sl.po index 49fda81361b..c0f1181c7ff 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/sv.po b/addons/fleet/i18n/sv.po index 0f7ac4d079a..26f485524a8 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 diff --git a/addons/fleet/i18n/tr.po b/addons/fleet/i18n/tr.po index b74cce7224f..8ee87de9267 100644 --- a/addons/fleet/i18n/tr.po +++ b/addons/fleet/i18n/tr.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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 msgid "Hybrid" -msgstr "" +msgstr "Karma" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_compact @@ -30,12 +30,12 @@ msgstr "Kompak" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_1 msgid "A/C Compressor Replacement" -msgstr "" +msgstr "A/C Kompresör Değiştirme" #. module: fleet #: help:fleet.vehicle,vin_sn:0 msgid "Unique number written on the vehicle motor (VIN/SN number)" -msgstr "" +msgstr "Motor Şase Numarası" #. module: fleet #: selection:fleet.service.type,category:0 @@ -58,7 +58,7 @@ msgstr "Bilinmeyen" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_20 msgid "Engine/Drive Belt(s) Replacement" -msgstr "" +msgstr "Motor/Emniyet Kemeri Değişimi" #. module: fleet #: view:fleet.vehicle.cost:0 @@ -79,7 +79,7 @@ msgstr "Plaka: dan '%s' to '%s'" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_38 msgid "Resurface Rotors" -msgstr "" +msgstr "Disk Yüzey Tornalama" #. module: fleet #: view:fleet.vehicle.cost:0 @@ -90,12 +90,12 @@ msgstr "Grupla İle" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_32 msgid "Oil Pump Replacement" -msgstr "" +msgstr "Yağ Pompası Değişimi" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_18 msgid "Engine Belt Inspection" -msgstr "" +msgstr "Motor Kayışı Muayenesi" #. module: fleet #: selection:fleet.vehicle.log.contract,cost_frequency:0 @@ -105,7 +105,7 @@ msgstr "Yok" #. module: fleet #: help:fleet.vehicle,power:0 msgid "Power in kW of the vehicle" -msgstr "" +msgstr "Aracın kW Güç" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_2 @@ -127,7 +127,7 @@ msgstr "Direksiyon Hortumunun Değiştirilmesi" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Odometer details" -msgstr "Kilometre sayacı detayları" +msgstr "Kilometre Sayacı Ayrıntıları" #. module: fleet #: view:fleet.vehicle:0 @@ -183,7 +183,7 @@ msgstr "Gösterge Maliyetleri" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_16 msgid "Charging System Diagnosis" -msgstr "" +msgstr "Sistem Teşhis Şarj" #. module: fleet #: help:fleet.vehicle,car_value:0 @@ -193,12 +193,12 @@ msgstr "Alınan aracın değeri" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_44 msgid "Tie Rod End Replacement" -msgstr "" +msgstr "Rotbaşı Değiştirme" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_24 msgid "Head Gasket(s) Replacement" -msgstr "" +msgstr "Kapak Conta Değiştirme" #. module: fleet #: view:fleet.vehicle:0 @@ -211,7 +211,7 @@ msgstr "Servisler" #: 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 "Araçın bu kayıt anındaki odometre ölçümü" #. module: fleet #: view:fleet.vehicle.log.contract:0 @@ -222,7 +222,7 @@ msgstr "Şartlar ve Koşullar" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_kanban msgid "Vehicles with alerts" -msgstr "Araçlar Uyarılar" +msgstr "Araç Uyarılar" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_costs_act @@ -238,14 +238,14 @@ msgstr "Toplam Maliyet" #. module: fleet #: selection:fleet.service.type,category:0 msgid "Both" -msgstr "" +msgstr "İkisi de" #. module: fleet #: field:fleet.vehicle.log.contract,cost_id:0 #: field:fleet.vehicle.log.fuel,cost_id:0 #: field:fleet.vehicle.log.services,cost_id:0 msgid "Automatically created field to link to parent fleet.vehicle.cost" -msgstr "" +msgstr "Ana fleet.vehicle.cost bağlantılı olarak otomatik oluşturulan alan" #. module: fleet #: view:fleet.vehicle.log.contract:0 @@ -255,7 +255,7 @@ msgstr "Sözleşmeyi Sonlandır" #. module: fleet #: help:fleet.vehicle.cost,parent_id:0 msgid "Parent cost to this current cost" -msgstr "" +msgstr "Bu geçerli maliyetin ana maliyeti" #. module: fleet #: help:fleet.vehicle.log.contract,cost_frequency:0 @@ -265,7 +265,7 @@ msgstr "Yenileme maliyet sıklığı" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_1 msgid "Calculation Benefit In Kind" -msgstr "" +msgstr "Tür Olarak Hesaplanma Faydası" #. module: fleet #: help:fleet.vehicle.log.contract,expiration_date:0 @@ -273,6 +273,8 @@ msgid "" "Date when the coverage of the contract expirates (by default, one year after " "begin date)" msgstr "" +"Sözleşme kapsamı süresinin dolduğu tarih (varsayılan olarak, başlama " +"tarihinden bir yıl sonra)" #. module: fleet #: view:fleet.vehicle.log.fuel:0 @@ -301,7 +303,7 @@ msgstr "Kullanıcı" #. module: fleet #: help:fleet.vehicle.cost,vehicle_id:0 msgid "Vehicle concerned by this log" -msgstr "" +msgstr "Bu kayıtı ilgilendiren araç" #. module: fleet #: field:fleet.vehicle.log.contract,cost_amount:0 @@ -323,7 +325,7 @@ msgstr "Hava Filtresi Değişimi" #. 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 @@ -338,7 +340,7 @@ msgstr "Yakında yenileme için sözleşme Adı" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_senior msgid "Senior" -msgstr "Kıdemli" +msgstr "Büyük" #. module: fleet #: help:fleet.vehicle.log.contract,state:0 @@ -369,22 +371,22 @@ msgstr "ve" #. module: fleet #: field:fleet.vehicle.model.brand,image_medium:0 msgid "Medium-sized photo" -msgstr "" +msgstr "Orta ölçekli fotoğraf" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_34 msgid "Oxygen Sensor Replacement" -msgstr "" +msgstr "Oksijen Sensörü Değişimi" #. module: fleet #: view:fleet.vehicle.log.services:0 msgid "Service Type" -msgstr "servis Türü" +msgstr "Servis Türü" #. module: fleet #: help:fleet.vehicle,transmission:0 msgid "Transmission Used by the vehicle" -msgstr "" +msgstr "Bu araç tarafından Kullanılan Aktarma" #. module: fleet #: code:addons/fleet/fleet.py:740 @@ -397,12 +399,12 @@ msgstr "Sözleşme Yenileme" #. module: fleet #: view:fleet.vehicle:0 msgid "show the odometer logs for this vehicle" -msgstr "Bu araç için kilometre sayacı günlükleri göster" +msgstr "bu araç için kilometre sayacı kayıtlarını göster" #. module: fleet #: help:fleet.vehicle,odometer_unit:0 msgid "Unit of the odometer " -msgstr "Kilometre sayacı Birim " +msgstr "Kilometre Sayacı Birimi " #. module: fleet #: view:fleet.vehicle.log.services:0 @@ -422,7 +424,7 @@ msgstr "Tamir ve bakım" #. module: fleet #: help:fleet.vehicle.log.contract,purchaser_id:0 msgid "Person to which the contract is signed for" -msgstr "" +msgstr "Sözleşmenin imzalandığı kişi" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_log_contract_act @@ -440,11 +442,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir sözleşme oluşturmak için tıklayın. \n" +"

\n" +" Bütün sözleşmelerinizi (kiralama, sigorta, v.b.) ilişkili " +"hizmetleriyle,\n" +" maliyetleriyle birlikte yönetin. Sözleşmelerinizin " +"yenilenmesi gerektiğinde\n" +" OpenERP otomatikman sizi uyaracaktır.\n" +"

\n" +" Her sözleşme (örn.: kiralama) birçok hizmet içerebilir\n" +" (onarım, sigorta, periyodik bakım).\n" +"

\n" +" " #. module: fleet #: model:ir.model,name:fleet.model_fleet_service_type msgid "Type of services available on a vehicle" -msgstr "" +msgstr "Bir araç için mevcut hizmet türü" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_service_types_act @@ -467,7 +482,7 @@ msgstr "Araçlar Hizmet Kayıtları" #: model:ir.actions.act_window,name:fleet.fleet_vehicle_log_fuel_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_log_fuel_menu msgid "Vehicles Fuel Logs" -msgstr "" +msgstr "Araç Yakıt Kayıtları" #. module: fleet #: view:fleet.vehicle.model.brand:0 @@ -475,11 +490,13 @@ 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 msgid "Vehicles With Alerts" -msgstr "" +msgstr "Araç Uyarıları" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_costs_act @@ -493,16 +510,25 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir maliyet oluşturmak için tıklayın.\n" +"

\n" +" OpenERP değişik araçlarınızın maliyetlerini yönetmenizi\n" +" sağlar. Maliyetler hizmetlerden, sözleşmelerden (sabit ya da " +"yinelenen),\n" +" ve akaryakıt kayıtlarından otomatikman oluşturulur.\n" +"

\n" +" " #. module: fleet #: view:fleet.vehicle:0 msgid "show the fuel logs for this vehicle" -msgstr "" +msgstr "Bu araç için yakıt günlükleri göster" #. module: fleet #: field:fleet.vehicle.log.contract,purchaser_id:0 msgid "Contractor" -msgstr "Yüklenici" +msgstr "Sorumlu" #. module: fleet #: field:fleet.vehicle,license_plate:0 @@ -512,12 +538,12 @@ msgstr "Plaka" #. module: fleet #: selection:fleet.vehicle.log.contract,state:0 msgid "To Close" -msgstr "" +msgstr "Kapatmak İçin" #. module: fleet #: field:fleet.vehicle.log.contract,cost_frequency:0 msgid "Recurring Cost Frequency" -msgstr "" +msgstr "Yinelenen Maliyet Sıklığı" #. module: fleet #: field:fleet.vehicle.log.fuel,inv_ref:0 @@ -528,7 +554,7 @@ msgstr "Fatura Referans" #. module: fleet #: field:fleet.vehicle,message_follower_ids:0 msgid "Followers" -msgstr "Takipçiler" +msgstr "İzleyiciler" #. module: fleet #: field:fleet.vehicle,location:0 @@ -538,7 +564,7 @@ msgstr "Lokasyon" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Costs Per Month" -msgstr "" +msgstr "Aylık Maliyetleri" #. module: fleet #: field:fleet.contract.state,name:0 @@ -548,7 +574,7 @@ msgstr "Sözleşme Durumları" #. module: fleet #: field:fleet.vehicle,contract_renewal_total:0 msgid "Total of contracts due or overdue minus one" -msgstr "" +msgstr "Günü gelen ya da günü eksi bir gün geçen sözleşmelerin toplamı" #. module: fleet #: field:fleet.vehicle.cost,cost_subtype_id:0 @@ -558,7 +584,7 @@ msgstr "Türü" #. module: fleet #: field:fleet.vehicle,contract_renewal_overdue:0 msgid "Has Contracts Overdued" -msgstr "" +msgstr "Günü Geçen Sözleşmeler Var" #. module: fleet #: field:fleet.vehicle.cost,amount:0 @@ -568,12 +594,12 @@ msgstr "Toplam Fiyat" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_27 msgid "Heater Core Replacement" -msgstr "" +msgstr "Kalorifer Değişimi" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_14 msgid "Car Wash" -msgstr "" +msgstr "Arac Yıkama" #. module: fleet #: help:fleet.vehicle,driver_id:0 @@ -583,12 +609,12 @@ msgstr "Aracın sürücüsü" #. module: fleet #: view:fleet.vehicle:0 msgid "other(s)" -msgstr "" +msgstr "diğer(ler)" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_refueling msgid "Refueling" -msgstr "" +msgstr "Akaryakıt" #. module: fleet #: help:fleet.vehicle,message_summary:0 @@ -596,16 +622,18 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Sohbetçi özetini (mesaj sayısı, ...) barındırır. Bu özet kanban " +"görünümlerine eklenmek üzere doğrudan html biçimindedir." #. module: fleet #: model:fleet.service.type,name:fleet.type_service_5 msgid "A/C Recharge" -msgstr "" +msgstr "A/C Şarj" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_log_fuel msgid "Fuel log for vehicles" -msgstr "" +msgstr "Araçlar için yakıt günlüğü" #. module: fleet #: view:fleet.vehicle:0 @@ -615,22 +643,22 @@ msgstr "Motor Seçenekleri" #. module: fleet #: view:fleet.vehicle.log.fuel:0 msgid "Fuel Costs Per Month" -msgstr "" +msgstr "Aylık Yakıt Maliyetleri" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_sedan msgid "Sedan" -msgstr "" +msgstr "Sedan" #. module: fleet #: field:fleet.vehicle,seats:0 msgid "Seats Number" -msgstr "" +msgstr "Koltuk Sayısı" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_convertible msgid "Convertible" -msgstr "" +msgstr "Değiştirilebilir" #. module: fleet #: model:ir.ui.menu,name:fleet.fleet_configuration @@ -641,12 +669,12 @@ msgstr "Yapılandırma" #: view:fleet.vehicle.log.contract:0 #: field:fleet.vehicle.log.contract,sum_cost:0 msgid "Indicative Costs Total" -msgstr "" +msgstr "Maliyetleri Toplam Göstergesi" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_junior msgid "Junior" -msgstr "" +msgstr "Ufak" #. module: fleet #: help:fleet.vehicle,model_id:0 @@ -665,13 +693,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Bir araç durumu oluşturmak için tıklayın.\n" +"

\n" +" Her aracın durumunu izlemek için geçerli durumunu\n" +" özelleştirebilirsiniz. Örnek: Etkin, Onarımda, Satıldı.\n" +"

\n" +" " #. module: fleet #: view:fleet.vehicle:0 #: field:fleet.vehicle,log_fuel:0 #: view:fleet.vehicle.log.fuel:0 msgid "Fuel Logs" -msgstr "" +msgstr "Yakıt Kayıtlar" #. module: fleet #: code:addons/fleet/fleet.py:409 @@ -686,17 +721,17 @@ msgstr "Hiçbiri" #: model:ir.actions.act_window,name:fleet.action_fleet_reporting_costs_non_effective #: model:ir.ui.menu,name:fleet.menu_fleet_reporting_indicative_costs msgid "Indicative Costs Analysis" -msgstr "" +msgstr "Maliyetleri Analizi Göstergesi" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_12 msgid "Brake Inspection" -msgstr "" +msgstr "Fren Muayenesi" #. module: fleet #: help:fleet.vehicle,state_id:0 msgid "Current state of the vehicle" -msgstr "" +msgstr "Araç mevcut durum" #. module: fleet #: selection:fleet.vehicle,transmission:0 @@ -706,12 +741,12 @@ msgstr "Manuel" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_52 msgid "Wheel Bearing Replacement" -msgstr "" +msgstr "Tekerlek Rulman Değişim" #. module: fleet #: help:fleet.vehicle.cost,cost_subtype_id:0 msgid "Cost type purchased with this cost" -msgstr "" +msgstr "Bu maliyet ile satınalma maliyet türü" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 @@ -726,6 +761,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir marka oluşturmak için tıklayın.\n" +"

\n" +" " #. module: fleet #: field:fleet.vehicle.log.contract,start_date:0 @@ -735,12 +774,12 @@ msgstr "Sözleşme Başalama Tarihi" #. module: fleet #: field:fleet.vehicle,odometer_unit:0 msgid "Odometer Unit" -msgstr "" +msgstr "KilometreSayaç Ünitesi" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_30 msgid "Intake Manifold Gasket Replacement" -msgstr "" +msgstr "Emme Manifold Conta Değiştirme" #. module: fleet #: selection:fleet.vehicle.log.contract,cost_frequency:0 @@ -750,12 +789,12 @@ msgstr "Günlük" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_6 msgid "Snow tires" -msgstr "" +msgstr "Kar lastikleri" #. module: fleet #: help:fleet.vehicle.cost,date:0 msgid "Date when the cost has been executed" -msgstr "" +msgstr "Maliyetin yapıldığı tarih" #. module: fleet #: view:fleet.vehicle.cost:0 @@ -771,7 +810,7 @@ msgstr "Araçlar için Servisler" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Indicative Cost" -msgstr "Gösterge Maliyet" +msgstr "Maliyet Göstergesi" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_26 @@ -784,6 +823,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 "" +"Mevcut sözleşme sonunda başlayacak tarih hariç hepsi aynı bilgileri otomatik " +"olarak yeni bir sözleşme oluşturur" #. module: fleet #: selection:fleet.vehicle.log.contract,state:0 @@ -844,7 +885,7 @@ msgstr "Fren Kaliper Değişimi" #. module: fleet #: field:fleet.vehicle,odometer:0 msgid "Last Odometer" -msgstr "" +msgstr "Son Kilometre Sayacı" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_model_act @@ -855,12 +896,12 @@ msgstr "Araç Modeli" #. module: fleet #: field:fleet.vehicle,doors:0 msgid "Doors Number" -msgstr "Kapı sayısı" +msgstr "Kapı Sayısı" #. module: fleet #: help:fleet.vehicle,acquisition_date:0 msgid "Date when the vehicle has been bought" -msgstr "" +msgstr "Araç satınalınma Tarihi" #. module: fleet #: view:fleet.vehicle.model:0 @@ -875,12 +916,12 @@ msgstr "tutar" #. module: fleet #: help:fleet.vehicle,fuel_type:0 msgid "Fuel Used by the vehicle" -msgstr "" +msgstr "Araçın kulandığı yakıt" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Set Contract In Progress" -msgstr "" +msgstr "Sözleşmeyi sürüyor olarak ayarla" #. module: fleet #: field:fleet.vehicle.cost,odometer_unit:0 @@ -891,7 +932,7 @@ msgstr "Birim" #. module: fleet #: field:fleet.vehicle,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçisi mi" +msgstr "Bir İzleyicidir" #. module: fleet #: field:fleet.vehicle,horsepower:0 @@ -907,18 +948,18 @@ msgstr "BeygirGücü" #: field:fleet.vehicle.model,image_small:0 #: field:fleet.vehicle.model.brand,image:0 msgid "Logo" -msgstr "" +msgstr "Amblem" #. module: fleet #: field:fleet.vehicle,horsepower_tax:0 msgid "Horsepower Taxation" -msgstr "" +msgstr "BeygirGücü Vergilendirme" #. module: fleet #: field:fleet.vehicle,log_services:0 #: view:fleet.vehicle.log.services:0 msgid "Services Logs" -msgstr "" +msgstr "Servis Günlükleri" #. module: fleet #: view:fleet.vehicle.model:0 @@ -928,7 +969,7 @@ msgstr "Marka" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_43 msgid "Thermostat Replacement" -msgstr "" +msgstr "Termostat Değiştirme" #. module: fleet #: field:fleet.service.type,category:0 @@ -938,7 +979,7 @@ msgstr "Kategory" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_log_fuel_graph msgid "Fuel Costs by Month" -msgstr "" +msgstr "Aylık Yakıt Maliyetleri" #. module: fleet #: help:fleet.vehicle.model.brand,image:0 @@ -946,6 +987,8 @@ msgid "" "This field holds the image used as logo for the brand, limited to " "1024x1024px." msgstr "" +"Bu alan markanın logosu olarak kullanılan resmi tutar, 1024x1024px olarak " +"sınırlıdır." #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_11 @@ -961,37 +1004,37 @@ msgstr "Tüm araçlar" #: view:fleet.vehicle.log.fuel:0 #: view:fleet.vehicle.log.services:0 msgid "Additional Details" -msgstr "" +msgstr "Ek Detaylar" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_log_services_graph msgid "Services Costs by Month" -msgstr "" +msgstr "Aylık Servis Maliyetleri" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_9 msgid "Assistance" -msgstr "" +msgstr "Yardım" #. module: fleet #: field:fleet.vehicle.log.fuel,price_per_liter:0 msgid "Price Per Liter" -msgstr "" +msgstr "Litre Başına Fiyat" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_17 msgid "Door Window Motor/Regulator Replacement" -msgstr "" +msgstr "Kapı Pencere Motor / Regülatör Değiştirme" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_46 msgid "Tire Service" -msgstr "" +msgstr "Lastik Servisi" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_8 msgid "Ball Joint Replacement" -msgstr "" +msgstr "Rotil Değiştirme" #. module: fleet #: field:fleet.vehicle,fuel_type:0 @@ -1001,7 +1044,7 @@ msgstr "Yakıt Türü" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_22 msgid "Fuel Injector Replacement" -msgstr "" +msgstr "Yakıt Enjektörü Değiştirme" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_state_act @@ -1012,17 +1055,17 @@ msgstr "Araç Durumu" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_50 msgid "Water Pump Replacement" -msgstr "" +msgstr "Su Pompası Değiştirme" #. module: fleet #: help:fleet.vehicle,location:0 msgid "Location of the vehicle (garage, ...)" -msgstr "" +msgstr "Araçın lokasyonu (garaj, ...)" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_28 msgid "Heater Hose Replacement" -msgstr "" +msgstr "Isıtıcı Hortumunun Değiştirilmesi" #. module: fleet #: field:fleet.vehicle.log.contract,state:0 @@ -1032,17 +1075,17 @@ msgstr "Durumu" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_40 msgid "Rotor Replacement" -msgstr "" +msgstr "Rotor Değiştirme" #. module: fleet #: help:fleet.vehicle.model,brand_id:0 msgid "Brand of the vehicle" -msgstr "" +msgstr "Araç Markası" #. module: fleet #: help:fleet.vehicle.log.contract,start_date:0 msgid "Date when the coverage of the contract begins" -msgstr "" +msgstr "Sözleşme kapsamının başladığı Tarihi" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 @@ -1063,13 +1106,13 @@ msgstr "Sözleşmeler" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_13 msgid "Brake Pad(s) Replacement" -msgstr "" +msgstr "Fren Balatası Değişimi" #. module: fleet #: view:fleet.vehicle.log.fuel:0 #: view:fleet.vehicle.log.services:0 msgid "Odometer Details" -msgstr "" +msgstr "Kilometre Sayacı Ayrıntıları" #. module: fleet #: field:fleet.vehicle,driver_id:0 @@ -1083,6 +1126,9 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Markanın küçük boyutlu fotoğraf. Otomatik olarak korunmuş en boy oranına " +"sahip, bir 64x64px görüntü olarak yeniden boyutlandırılır. Her yerde küçük " +"bir resim gereklidir bu alanı kullanın." #. module: fleet #: view:board.board:0 @@ -1092,7 +1138,7 @@ msgstr "Filo Kontrol Paneli" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_break msgid "Break" -msgstr "" +msgstr "Bozulan" #. module: fleet #: model:fleet.service.type,name:fleet.type_contract_omnium @@ -1102,32 +1148,32 @@ msgstr "" #. module: fleet #: view:fleet.vehicle.log.services:0 msgid "Services Details" -msgstr "" +msgstr "Servis Detayları" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_15 msgid "Residual value (Excluding VAT)" -msgstr "" +msgstr "Kalan tutar (KDV Hariç)" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_7 msgid "Alternator Replacement" -msgstr "" +msgstr "Alternatör Değiştirme" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_3 msgid "A/C Diagnosis" -msgstr "" +msgstr "A/C Diagnostik" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_23 msgid "Fuel Pump Replacement" -msgstr "" +msgstr "Yakıt Pompası Değişimi" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Activation Cost" -msgstr "" +msgstr "Etkinleştirme Maliyeti" #. module: fleet #: view:fleet.vehicle.cost:0 @@ -1137,17 +1183,17 @@ msgstr "Maliyet Türü" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_4 msgid "A/C Evaporator Replacement" -msgstr "" +msgstr "A/C Evaporatör Değiştirme" #. module: fleet #: view:fleet.vehicle:0 msgid "show all the costs for this vehicle" -msgstr "" +msgstr "Bu araç için tüm maliyetleri gösterir" #. module: fleet #: view:fleet.vehicle.odometer:0 msgid "Odometer Values Per Month" -msgstr "" +msgstr "Aylık Kilometre Sayaç Değerleri" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_model_act @@ -1160,6 +1206,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir model oluşturmak için tıklayın.\n" +"

\n" +" Her marka (Audi) için birçok model (örn. A3, A4) " +"tanımlayabilirsiniz.\n" +"

\n" +" " #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_act @@ -1178,21 +1231,34 @@ msgid "" "

\n" " " msgstr "" +"

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

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

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

\n" +" " #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_13 msgid "Entry into service tax" -msgstr "" +msgstr "Servis vergisi" #. module: fleet #: field:fleet.vehicle.log.contract,expiration_date:0 msgid "Contract Expiration Date" -msgstr "" +msgstr "Sözleşme Bitiş Tarihi" #. module: fleet #: view:fleet.vehicle.cost:0 msgid "Cost Subtype" -msgstr "" +msgstr "Maliyet Alt Tür" #. module: fleet #: model:ir.actions.act_window,help:fleet.open_board_fleet @@ -1212,11 +1278,25 @@ msgid "" " \n" " " msgstr "" +"
\n" +"

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

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

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

\n" +"
\n" +" " #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_12 msgid "Rent (Excluding VAT)" -msgstr "" +msgstr "Kira (KDV Hariç)" #. module: fleet #: selection:fleet.vehicle,odometer_unit:0 @@ -1226,7 +1306,7 @@ msgstr "Kilometreler" #. module: fleet #: view:fleet.vehicle.log.fuel:0 msgid "Vehicle Details" -msgstr "Araç Detaylerı" +msgstr "Araç Detayları" #. module: fleet #: selection:fleet.service.type,category:0 @@ -1239,12 +1319,12 @@ msgstr "Sözleşme" #: model:ir.actions.act_window,name:fleet.fleet_vehicle_model_brand_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_model_brand_menu msgid "Model brand of Vehicle" -msgstr "" +msgstr "Araç Model Markası" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_10 msgid "Battery Replacement" -msgstr "" +msgstr "Akü Değiştirme" #. module: fleet #: view:fleet.vehicle.cost:0 @@ -1263,7 +1343,7 @@ msgstr "Araçlar" #. module: fleet #: selection:fleet.vehicle,odometer_unit:0 msgid "Miles" -msgstr "" +msgstr "Mil" #. module: fleet #: help:fleet.vehicle.log.contract,cost_generated:0 @@ -1271,6 +1351,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 "" +"Maliyet sıklığına bağlı olarak düzenli aralıklarla ödenen maliyetler. " +"Maliyet sıklığı eşsiz olarak ayarlanırsa, maliyet başlama tarihinde kayıta " +"alınır" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_17 @@ -1280,7 +1363,7 @@ msgstr "Emisyon" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_model msgid "Model of a vehicle" -msgstr "" +msgstr "Bir aracın Modeli" #. module: fleet #: model:ir.actions.act_window,help:fleet.action_fleet_reporting_costs @@ -1316,33 +1399,33 @@ msgstr "Filo" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_14 msgid "Total expenses (Excluding VAT)" -msgstr "" +msgstr "Toplam giderler (KDV Hariç)" #. module: fleet #: field:fleet.vehicle.cost,odometer_id:0 msgid "Odometer" -msgstr "" +msgstr "Kilometre Sayacı" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_45 msgid "Tire Replacement" -msgstr "" +msgstr "Lastik Değiştirme" #. module: fleet #: view:fleet.service.type:0 msgid "Service types" -msgstr "" +msgstr "Servis türleri" #. module: fleet #: field:fleet.vehicle.log.fuel,purchaser_id:0 #: field:fleet.vehicle.log.services,purchaser_id:0 msgid "Purchaser" -msgstr "" +msgstr "SatınAlan" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_3 msgid "Tax roll" -msgstr "" +msgstr "Vergi kayıtları" #. module: fleet #: view:fleet.vehicle.model:0 @@ -1362,6 +1445,9 @@ msgid "" "image, with aspect ratio preserved. Use this field in form views or some " "kanban views." msgstr "" +"Markanın orta ölçekli logosu. Otomatik olarak korunmuş en boy oranına sahip, " +"bir 128x128px görüntü olarak yeniden boyutlandırılır. Form görünümleri ya da " +"kanban görünümlerinde bu alanı kullanın." #. module: fleet #: selection:fleet.vehicle.log.contract,cost_frequency:0 @@ -1372,58 +1458,58 @@ msgstr "Haftalık" #: view:fleet.vehicle:0 #: view:fleet.vehicle.odometer:0 msgid "Odometer Logs" -msgstr "" +msgstr "Kilometre Sayacı Kayıtları" #. module: fleet #: field:fleet.vehicle,acquisition_date:0 msgid "Acquisition Date" -msgstr "" +msgstr "Alım Tarihi" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_odometer msgid "Odometer log for a vehicle" -msgstr "" +msgstr "Bir aracın kilometre sayacı kaydı" #. module: fleet #: field:fleet.vehicle.cost,cost_type:0 msgid "Category of the cost" -msgstr "" +msgstr "Maliyet Kategorisi" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_5 #: model:fleet.service.type,name:fleet.type_service_service_7 msgid "Summer tires" -msgstr "" +msgstr "Yaz lastikleri" #. module: fleet #: field:fleet.vehicle,contract_renewal_due_soon:0 msgid "Has Contracts to renew" -msgstr "" +msgstr "Yenilecek Sözleşmeler var" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_31 msgid "Oil Change" -msgstr "" +msgstr "Yağ Değişimi" #. module: fleet #: field:fleet.vehicle.model.brand,image_small:0 msgid "Smal-sized photo" -msgstr "" +msgstr "Küçük boyutlu fotoğraf" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_model_brand msgid "Brand model of the vehicle" -msgstr "" +msgstr "Araç markası modeli" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_51 msgid "Wheel Alignment" -msgstr "" +msgstr "Rot Ayarı" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_purchased msgid "Purchased" -msgstr "" +msgstr "SatınAlınan" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_odometer_act @@ -1441,37 +1527,37 @@ msgstr "" #: field:fleet.vehicle.model,brand_id:0 #: view:fleet.vehicle.model.brand:0 msgid "Model Brand" -msgstr "" +msgstr "Model Marka" #. module: fleet #: view:fleet.vehicle:0 msgid "General Properties" -msgstr "" +msgstr "Genel Özellikler" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_21 msgid "Exhaust Manifold Replacement" -msgstr "" +msgstr "Egzoz Manifold Değiştirme" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_47 msgid "Transmission Filter Replacement" -msgstr "" +msgstr "Şanzıman Filtre Değişimi" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_10 msgid "Replacement Vehicle" -msgstr "" +msgstr "Yedek Araç" #. module: fleet #: selection:fleet.vehicle.log.contract,state:0 msgid "In Progress" -msgstr "" +msgstr "DevamEden" #. module: fleet #: selection:fleet.vehicle.log.contract,cost_frequency:0 msgid "Yearly" -msgstr "" +msgstr "Yıllık" #. module: fleet #: field:fleet.vehicle.model,modelname:0 @@ -1487,7 +1573,7 @@ msgstr "Aylık Maliyet" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_18 msgid "Touring Assistance" -msgstr "" +msgstr "Tur Yardımı" #. module: fleet #: field:fleet.vehicle,power:0 @@ -1498,17 +1584,17 @@ msgstr "Güç (kW)" #: code:addons/fleet/fleet.py:418 #, python-format msgid "State: from '%s' to '%s'" -msgstr "" +msgstr "Durumu: '%s' ten '%s' e" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_2 msgid "A/C Condenser Replacement" -msgstr "" +msgstr "A/C Yoğuşturucu Değiştirme" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_19 msgid "Engine Coolant Replacement" -msgstr "" +msgstr "Motor Soğutma Suyu Değiştirme" #. module: fleet #: view:fleet.vehicle.cost:0 @@ -1519,7 +1605,7 @@ msgstr "Maliyet Detaylerı" #: code:addons/fleet/fleet.py:410 #, python-format msgid "Model: from '%s' to '%s'" -msgstr "" +msgstr "Model: den '%s' to '%s'" #. module: fleet #: selection:fleet.vehicle.cost,cost_type:0 @@ -1529,17 +1615,17 @@ msgstr "Diğer" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Contract details" -msgstr "Sözleşme detayları" +msgstr "Sözleşme Detayları" #. module: fleet #: model:fleet.vehicle.tag,name:fleet.vehicle_tag_leasing msgid "Employee Car" -msgstr "" +msgstr "Personel Aracı" #. module: fleet #: field:fleet.vehicle.cost,auto_generated:0 msgid "Automatically Generated" -msgstr "" +msgstr "Otomatik Olarak Oluşturuldu" #. module: fleet #: selection:fleet.vehicle.cost,cost_type:0 @@ -1549,42 +1635,42 @@ msgstr "Yakıt" #. module: fleet #: sql_constraint:fleet.vehicle.state:0 msgid "State name already exists" -msgstr "" +msgstr "Durum adı zaten var" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_37 msgid "Radiator Repair" -msgstr "" +msgstr "Radyatör Tamiri" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_log_contract msgid "Contract information on a vehicle" -msgstr "" +msgstr "Bir aracın sözleşme bilgileri" #. module: fleet #: field:fleet.vehicle.log.contract,days_left:0 msgid "Warning Date" -msgstr "" +msgstr "Uyarı Tarihi" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_19 msgid "Residual value in %" -msgstr "" +msgstr "Kalan tutar % olarak" #. module: fleet #: view:fleet.vehicle:0 msgid "Additional Properties" -msgstr "" +msgstr "Ek Özellikler" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle_state msgid "fleet.vehicle.state" -msgstr "" +msgstr "fleet.vehicle.state" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Contract Costs Per Month" -msgstr "" +msgstr "Aylık Sözleşme Maliyetleri" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_log_contract_act @@ -1595,22 +1681,22 @@ msgstr "Araç Kontratları" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_48 msgid "Transmission Fluid Replacement" -msgstr "" +msgstr "Şanzıman Yağı Değiştirme" #. module: fleet #: field:fleet.vehicle.model.brand,name:0 msgid "Brand Name" -msgstr "" +msgstr "Marka Adı" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_36 msgid "Power Steering Pump Replacement" -msgstr "" +msgstr "Servo Direksiyon Pompa Değişimi" #. module: fleet #: help:fleet.vehicle.cost,contract_id:0 msgid "Contract attached to this cost" -msgstr "" +msgstr "Sözleşme bu maliyet eklendi" #. module: fleet #: code:addons/fleet/fleet.py:397 @@ -1623,13 +1709,13 @@ msgstr "%s Araçı Filoya eklenmiştir!" #: view:fleet.vehicle.log.fuel:0 #: view:fleet.vehicle.log.services:0 msgid "Price" -msgstr "" +msgstr "Fiyat" #. module: fleet #: field:fleet.vehicle.cost,odometer:0 #: field:fleet.vehicle.odometer,value:0 msgid "Odometer Value" -msgstr "" +msgstr "Kilometre Sayaç Değeri" #. module: fleet #: view:fleet.vehicle:0 @@ -1644,7 +1730,7 @@ msgstr "Araç" #: view:fleet.vehicle.log.contract:0 #: view:fleet.vehicle.log.services:0 msgid "Included Services" -msgstr "" +msgstr "Servise Dahil Olanlar" #. module: fleet #: model:ir.actions.act_window,help:fleet.action_fleet_vehicle_kanban @@ -1660,28 +1746,28 @@ msgstr "" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_15 msgid "Catalytic Converter Replacement" -msgstr "" +msgstr "Katalitik Konvertör Değiştirme" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_25 msgid "Heater Blower Motor Replacement" -msgstr "" +msgstr "Kalorifer Fan Motoru Değiştirme" #. module: fleet #: model:ir.actions.act_window,name:fleet.fleet_vehicle_odometer_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_odometer_menu msgid "Vehicles Odometer" -msgstr "" +msgstr "Araç Kilomtre Sayacı" #. module: fleet #: help:fleet.vehicle.log.contract,notes:0 msgid "Write here all supplementary informations relative to this contract" -msgstr "" +msgstr "Buraya bu sözleşme ile ilgili bütün ek bilgileri yazın" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_29 msgid "Ignition Coil Replacement" -msgstr "" +msgstr "Ateşleme Bobini Değiştirme" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_service_16 @@ -1697,12 +1783,12 @@ msgstr "Tamir" #: model:ir.actions.act_window,name:fleet.action_fleet_reporting_costs #: model:ir.ui.menu,name:fleet.menu_fleet_reporting_costs msgid "Costs Analysis" -msgstr "" +msgstr "Maliyet Analizleri" #. module: fleet #: field:fleet.vehicle.log.contract,ins_ref:0 msgid "Contract Reference" -msgstr "" +msgstr "Sözleşme Referansı" #. module: fleet #: field:fleet.service.type,name:0 @@ -1719,12 +1805,12 @@ msgstr "Adı" #. module: fleet #: help:fleet.vehicle,doors:0 msgid "Number of doors of the vehicle" -msgstr "" +msgstr "Araç kapı sayısı" #. module: fleet #: field:fleet.vehicle,transmission:0 msgid "Transmission" -msgstr "" +msgstr "Şanzıman" #. module: fleet #: field:fleet.vehicle,vin_sn:0 @@ -1734,7 +1820,7 @@ msgstr "Şase Numarası" #. module: fleet #: help:fleet.vehicle,color:0 msgid "Color of the vehicle" -msgstr "" +msgstr "Araç rengi" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_log_services_act @@ -1752,12 +1838,12 @@ msgstr "" #. module: fleet #: field:fleet.vehicle,co2:0 msgid "CO2 Emissions" -msgstr "" +msgstr "CO2 Emisyonları" #. module: fleet #: view:fleet.vehicle.log.contract:0 msgid "Contract logs" -msgstr "" +msgstr "Sözleşme kayıtları" #. module: fleet #: view:fleet.vehicle:0 @@ -1772,54 +1858,54 @@ msgstr "Özet" #. module: fleet #: model:ir.actions.act_window,name:fleet.action_fleet_vehicle_log_contract_graph msgid "Contracts Costs by Month" -msgstr "" +msgstr "Aylık Sözleşme Maliyetleri" #. module: fleet #: field:fleet.vehicle,model_id:0 #: view:fleet.vehicle.model:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_41 msgid "Spark Plug Replacement" -msgstr "" +msgstr "Buji Değişimi" #. module: fleet #: help:fleet.vehicle,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Mesajlar ve iletişim geçmişi" #. module: fleet #: model:ir.model,name:fleet.model_fleet_vehicle msgid "Information on a vehicle" -msgstr "" +msgstr "Araç ile ilgili bilgileri" #. module: fleet #: help:fleet.vehicle,co2:0 msgid "CO2 emissions of the vehicle" -msgstr "" +msgstr "Araç CO2 emisyonu" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_53 msgid "Windshield Wiper(s) Replacement" -msgstr "" +msgstr "Silecek Değişimi" #. module: fleet #: view:fleet.vehicle.log.contract:0 #: field:fleet.vehicle.log.contract,generated_cost_ids:0 msgid "Generated Costs" -msgstr "" +msgstr "Oluşturulan Maliyetleri" #. module: fleet #: field:fleet.vehicle.state,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Sıralama" #. module: fleet #: field:fleet.vehicle,color:0 msgid "Color" -msgstr "" +msgstr "Renk" #. module: fleet #: model:ir.actions.act_window,help:fleet.fleet_vehicle_service_types_act @@ -1832,27 +1918,34 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir hizmet türü oluşturmak için tıklayın.\n" +"

\n" +" Her hizmet sözleşmelerde hem bağımsız bir servis olarak ya " +"da birlikte kullanılabilir.\n" +"

\n" +" " #. module: fleet #: view:board.board:0 msgid "Services Costs" -msgstr "" +msgstr "Servisi Maliyetleri" #. module: fleet #: code:addons/fleet/fleet.py:47 #, python-format msgid "Emptying the odometer value of a vehicle is not allowed." -msgstr "" +msgstr "Bir aracın kilometre sayacı değerinin boşaltılmasına izin verilmez." #. module: fleet #: help:fleet.vehicle,seats:0 msgid "Number of seats of the vehicle" -msgstr "" +msgstr "Araç koltuk sayısı" #. module: fleet #: model:res.groups,name:fleet.group_fleet_manager msgid "Manager" -msgstr "" +msgstr "Yöntici" #. module: fleet #: view:fleet.vehicle.log.services:0 @@ -1862,12 +1955,12 @@ msgstr "Maliyet" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_39 msgid "Rotate Tires" -msgstr "" +msgstr "Lastikler" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_42 msgid "Starter Replacement" -msgstr "" +msgstr "Marş Değişimi" #. module: fleet #: view:fleet.vehicle.cost:0 @@ -1878,17 +1971,17 @@ msgstr "Yıl" #. module: fleet #: help:fleet.vehicle,license_plate:0 msgid "License plate number of the vehicle (ie: plate number for a car)" -msgstr "" +msgstr "Araç plaka numarasını (ie:araba için plaka numarası)" #. module: fleet #: model:ir.model,name:fleet.model_fleet_contract_state msgid "Contains the different possible status of a leasing contract" -msgstr "" +msgstr "Bir kiralama sözleşmesinin değişik olası durumlarını içerir" #. module: fleet #: view:fleet.vehicle:0 msgid "show the contract for this vehicle" -msgstr "" +msgstr "Bu araç için sözleşme göster" #. module: fleet #: view:fleet.vehicle.log.services:0 @@ -1900,13 +1993,15 @@ msgstr "Toplam" msgid "" "Choose wheter the service refer to contracts, vehicle services or both" msgstr "" +"Hizmetin sözleşmelerle mi, araç hizmetleriyle mi ya da her ikisiyle de mi " +"ilgili olduunu seçin" #. module: fleet #: help:fleet.vehicle.cost,cost_type:0 msgid "For internal purpose only" -msgstr "" +msgstr "Yalnızca iç amaçlar için" #. module: fleet #: help:fleet.vehicle.state,sequence:0 msgid "Used to order the note stages" -msgstr "" +msgstr "Not aşamalarını sıralamak için kullanılır" diff --git a/addons/fleet/i18n/zh_CN.po b/addons/fleet/i18n/zh_CN.po index d2f0163b8e1..5360d87dd09 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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: fleet #: selection:fleet.vehicle,fuel_type:0 @@ -142,7 +142,7 @@ msgstr "升" #. module: fleet #: model:ir.actions.client,name:fleet.action_fleet_menu msgid "Open Fleet Menu" -msgstr "" +msgstr "打开 车队菜单" #. module: fleet #: view:board.board:0 @@ -296,7 +296,7 @@ msgstr "消息" #. module: fleet #: model:res.groups,name:fleet.group_fleet_user msgid "User" -msgstr "" +msgstr "用户" #. module: fleet #: help:fleet.vehicle.cost,vehicle_id:0 @@ -477,7 +477,7 @@ msgstr "车辆服务日志" #: model:ir.actions.act_window,name:fleet.fleet_vehicle_log_fuel_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_log_fuel_menu msgid "Vehicles Fuel Logs" -msgstr "车辆的加油日志" +msgstr "车辆加油记录" #. module: fleet #: view:fleet.vehicle.model.brand:0 @@ -959,7 +959,7 @@ msgstr "服务日志" #. module: fleet #: view:fleet.vehicle.model:0 msgid "Brand" -msgstr "" +msgstr "品牌" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_43 @@ -1043,7 +1043,7 @@ msgstr "更换化油器" #: model:ir.actions.act_window,name:fleet.fleet_vehicle_state_act #: model:ir.ui.menu,name:fleet.fleet_vehicle_state_menu msgid "Vehicle Status" -msgstr "" +msgstr "车辆状态" #. module: fleet #: model:fleet.service.type,name:fleet.type_service_50 @@ -1893,7 +1893,7 @@ msgstr "已产生的费用" #. module: fleet #: field:fleet.vehicle.state,sequence:0 msgid "Sequence" -msgstr "" +msgstr "序号" #. module: fleet #: field:fleet.vehicle,color:0 @@ -1936,7 +1936,7 @@ msgstr "车辆座位数" #. module: fleet #: model:res.groups,name:fleet.group_fleet_manager msgid "Manager" -msgstr "" +msgstr "管理员" #. module: fleet #: view:fleet.vehicle.log.services:0 diff --git a/addons/google_base_account/i18n/ar.po b/addons/google_base_account/i18n/ar.po index 8b50222e7fd..0624eb12774 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_base_account/i18n/cs.po b/addons/google_base_account/i18n/cs.po index 48287b5c484..5f5737caad7 100644 --- a/addons/google_base_account/i18n/cs.po +++ b/addons/google_base_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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 a2afe2ed641..c52025cc8f4 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 12d3a955773..25f2d0f6da7 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 f53b0edd0ba..b12bfd1e9a0 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 08cd7b27a26..0fbef7db4a0 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 5412c312248..b719eef3514 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 5c97ba69f40..d547bbf2b0b 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 7b9402f9c14..36d93947aba 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 b6d9966b6fb..fded8a3dcc5 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 a7e17dc2807..54cff7b175c 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 2a1a6d43907..499ba6de9f5 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 799b73b1212..fc310ab81de 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 20517c237f9..d1091523067 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 ae65247a102..061651c46f0 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 191311a381d..d0de80d6fdf 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 b193ccbbf2e..dec9e898152 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 e1e3a5dcd3a..4fbc7400461 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 9edbbfa4162..7ec04ff6e3c 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 0959f6d2b8c..dde1148526c 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 8a394cbd034..9360de0f70f 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 0906b76f96c..78896d534e6 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 2165be12c75..b934db06dea 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 467b1493efa..7fd58defcb7 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 3a298413560..d3b5e1261a9 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_base_account #: field:res.users,gmail_user:0 diff --git a/addons/google_drive/i18n/ar.po b/addons/google_drive/i18n/ar.po index 119cd48268c..2f50c716897 100644 --- a/addons/google_drive/i18n/ar.po +++ b/addons/google_drive/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/cs.po b/addons/google_drive/i18n/cs.po index 8d076ddc8e4..1d518196b88 100644 --- a/addons/google_drive/i18n/cs.po +++ b/addons/google_drive/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/de.po b/addons/google_drive/i18n/de.po index 95e051fea35..fdcb6fec72f 100644 --- a/addons/google_drive/i18n/de.po +++ b/addons/google_drive/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/es.po b/addons/google_drive/i18n/es.po index 8e7770930e0..4f118052e25 100644 --- a/addons/google_drive/i18n/es.po +++ b/addons/google_drive/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-08-08 04:39+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/fr.po b/addons/google_drive/i18n/fr.po index c32125d1989..54602e3ab6d 100644 --- a/addons/google_drive/i18n/fr.po +++ b/addons/google_drive/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/hr.po b/addons/google_drive/i18n/hr.po index be76be7ef99..017aabff9cd 100644 --- a/addons/google_drive/i18n/hr.po +++ b/addons/google_drive/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/hu.po b/addons/google_drive/i18n/hu.po index 5ff6354f18b..9d41f0d6502 100644 --- a/addons/google_drive/i18n/hu.po +++ b/addons/google_drive/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/it.po b/addons/google_drive/i18n/it.po index 0dc867b43ad..ab30e72cf9a 100644 --- a/addons/google_drive/i18n/it.po +++ b/addons/google_drive/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/ln.po b/addons/google_drive/i18n/ln.po index 100033037fc..652489b3487 100644 --- a/addons/google_drive/i18n/ln.po +++ b/addons/google_drive/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/mk.po b/addons/google_drive/i18n/mk.po index d2f329517c1..e6367fe2429 100644 --- a/addons/google_drive/i18n/mk.po +++ b/addons/google_drive/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/mn.po b/addons/google_drive/i18n/mn.po index 060c1e7b596..f0dc915d7df 100644 --- a/addons/google_drive/i18n/mn.po +++ b/addons/google_drive/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/nl.po b/addons/google_drive/i18n/nl.po index 771e7b754d5..66a2affd33a 100644 --- a/addons/google_drive/i18n/nl.po +++ b/addons/google_drive/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/pl.po b/addons/google_drive/i18n/pl.po index 4c7ec91b703..ac7dc926a84 100644 --- a/addons/google_drive/i18n/pl.po +++ b/addons/google_drive/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/pt.po b/addons/google_drive/i18n/pt.po index 11edb4ffc2a..eb0d5958a10 100644 --- a/addons/google_drive/i18n/pt.po +++ b/addons/google_drive/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/pt_BR.po b/addons/google_drive/i18n/pt_BR.po index be9806e4c66..bfdfab8431e 100644 --- a/addons/google_drive/i18n/pt_BR.po +++ b/addons/google_drive/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-07-22 05:34+0000\n" -"X-Generator: Launchpad (build 16696)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/ro.po b/addons/google_drive/i18n/ro.po index 8f4d9a1169f..2be2e41dc2e 100644 --- a/addons/google_drive/i18n/ro.po +++ b/addons/google_drive/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/ru.po b/addons/google_drive/i18n/ru.po index 9579b8a93c5..0631dcd22b8 100644 --- a/addons/google_drive/i18n/ru.po +++ b/addons/google_drive/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/sl.po b/addons/google_drive/i18n/sl.po index eb7ef7ed79c..b0b75a858d6 100644 --- a/addons/google_drive/i18n/sl.po +++ b/addons/google_drive/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/sv.po b/addons/google_drive/i18n/sv.po index c0435c8bd9e..5b06b43bee5 100644 --- a/addons/google_drive/i18n/sv.po +++ b/addons/google_drive/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/tr.po b/addons/google_drive/i18n/tr.po index a3e3b6b791b..dba2b005bc5 100644 --- a/addons/google_drive/i18n/tr.po +++ b/addons/google_drive/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/google_drive/i18n/zh_CN.po b/addons/google_drive/i18n/zh_CN.po index f7171c9225e..e1116e05507 100644 --- a/addons/google_drive/i18n/zh_CN.po +++ b/addons/google_drive/i18n/zh_CN.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2013-06-27 16:03+0000\n" "PO-Revision-Date: 2013-06-29 04:39+0000\n" -"Last-Translator: David.Xu \n" +"Last-Translator: DWXXX \n" "Language-Team: Chinese (Simplified) \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-06-30 05:56+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: google_drive #: model:ir.ui.menu,name:google_drive.menu_google_drive_config diff --git a/addons/hr/i18n/ar.po b/addons/hr/i18n/ar.po index a7660b6dda6..1dc62c9fcfa 100644 --- a/addons/hr/i18n/ar.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -58,6 +58,8 @@ msgid "" "128x128px image, with aspect ratio preserved. Use this field in form views " "or some kanban views." msgstr "" +"صورة متوسطة الحجم للموظف. يتم تغيير حجم تلقائيا كصورة 128x128px، مع الحفاظ " +"على نسبة الجانب. استخدام هذا الحقل في عروض النافذة أو بعض عروض كانبان." #. module: hr #: view:hr.config.settings:0 @@ -110,7 +112,7 @@ msgstr "هذه الخانة تستخدم لصورة الموظف، أكبر حج #. module: hr #: help:hr.config.settings,module_hr_holidays:0 msgid "This installs the module hr_holidays." -msgstr "" +msgstr "يتم تثبيت وحدة hr_holidays." #. module: hr #: view:hr.job:0 @@ -153,7 +155,7 @@ msgstr "خطأّ! لا يمكنك انشاء فئات متداخلة." #. module: hr #: help:hr.config.settings,module_hr_recruitment:0 msgid "This installs the module hr_recruitment." -msgstr "" +msgstr "يتم تثبيت وحدة hr_recruitment." #. module: hr #: view:hr.employee:0 @@ -164,12 +166,12 @@ msgstr "الميلاد" #: model:ir.actions.act_window,name:hr.open_view_categ_form #: model:ir.ui.menu,name:hr.menu_view_employee_category_form msgid "Employee Tags" -msgstr "" +msgstr "الكلمات الدليلية للموظف" #. module: hr #: view:hr.job:0 msgid "Launch Recruitement" -msgstr "" +msgstr "تشغيل التوظيف" #. module: hr #: model:process.transition,name:hr.process_transition_employeeuser0 @@ -204,7 +206,7 @@ msgstr "ادارة المهارات" #. module: hr #: help:hr.config.settings,module_hr_timesheet_sheet:0 msgid "This installs the module hr_timesheet_sheet." -msgstr "" +msgstr "يتم تثبيت وحدة hr_timesheet_sheet." #. module: hr #: view:hr.employee:0 @@ -219,7 +221,7 @@ msgstr "منصب" #. module: hr #: help:hr.job,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "إذا فحص الرسائل الجديدة تتطلب انتباهكم." #. module: hr #: field:hr.employee,color:0 @@ -299,6 +301,8 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"صورة صغيرة الحجم من الموظف. يتم تغيير حجم تلقائيا كصورة 64x64px، مع الحفاظ " +"على نسبة الجانب. استخدام هذا الحقل في أي مكان مطلوب صورة صغيرة." #. module: hr #: field:hr.employee,birthday:0 @@ -313,7 +317,7 @@ msgstr "عدد الموظفين المتوقع توظيفهم." #. module: hr #: model:ir.actions.client,name:hr.action_client_hr_menu msgid "Open HR Menu" -msgstr "" +msgstr "افتح القائمة HR" #. module: hr #: help:hr.job,message_summary:0 @@ -321,6 +325,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 من أجل " +"إدراجها في عروض كانبان." #. module: hr #: help:hr.config.settings,module_account_analytic_analysis:0 @@ -328,6 +334,8 @@ msgid "" "This installs the module account_analytic_analysis, which will install sales " "management too." msgstr "" +"يتم تثبيت وحدة account_analytic_analysis، الذي سيقوم بتثبيت إدارة المبيعات " +"أيضا." #. module: hr #: view:board.board:0 @@ -415,6 +423,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" انقر لتحديد موقف وظيفة جديدة.\n" +"

\n" +" يمكنك إرفاق دراسة استقصائية لموقف وظيفة. سيتم استخدامه في\n" +" عملية التوظيف لتقييم المتقدمين لهذه الوظيفة\n" +" موقف.\n" +" \n" +" " #. module: hr #: selection:hr.employee,gender:0 @@ -427,21 +448,23 @@ msgid "" "$('.oe_employee_picture').load(function() { if($(this).width() > " "$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" msgstr "" +"$('.oe_employee_picture').load(function() { if($(this).width() > " +"$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" #. module: hr #: help:hr.config.settings,module_hr_evaluation:0 msgid "This installs the module hr_evaluation." -msgstr "" +msgstr "يتم تثبيت وحدة hr_evaluation." #. module: hr #: constraint:hr.employee:0 msgid "Error! You cannot create recursive hierarchy of Employee(s)." -msgstr "" +msgstr "خطأ! لا يمكنك إنشاء التسلسل الهرمي العودي من الموظف ." #. module: hr #: help:hr.config.settings,module_hr_attendance:0 msgid "This installs the module hr_attendance." -msgstr "" +msgstr "يتم تثبيت وحدة hr_attendance." #. module: hr #: field:hr.employee,image_small:0 @@ -462,12 +485,12 @@ msgstr "الوسوم" #. module: hr #: help:hr.config.settings,module_hr_contract:0 msgid "This installs the module hr_contract." -msgstr "" +msgstr "يتم تثبيت وحدة hr_contract." #. module: hr #: view:hr.employee:0 msgid "Related User" -msgstr "" +msgstr "مستخدم مرتبط" #. module: hr #: view:hr.config.settings:0 @@ -731,7 +754,7 @@ msgstr "عمليات التوظيف تحت الاجراء" #: field:hr.config.settings,module_account_analytic_analysis:0 msgid "" "Allow invoicing based on timesheets (the sale application will be installed)" -msgstr "" +msgstr "السماح بالفواتير على أساس الجداول الزمنية (سيتم تثبيت تطبيق البيع)" #. module: hr #: view:hr.employee.category:0 diff --git a/addons/hr/i18n/bg.po b/addons/hr/i18n/bg.po index a13c3914f66..b4c082eb0cb 100644 --- a/addons/hr/i18n/bg.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 71e21496d38..7c28654c269 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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 81b798982c1..aa69b499ea2 100644 --- a/addons/hr/i18n/bs.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 651827656f6..108ff324d79 100644 --- a/addons/hr/i18n/ca.po +++ b/addons/hr/i18n/ca.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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 6c8288946c8..eb1db25610c 100644 --- a/addons/hr/i18n/cs.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\n" #. module: hr diff --git a/addons/hr/i18n/da.po b/addons/hr/i18n/da.po index 5a47fa22c30..2a78b48b3fd 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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 20b4cd24d30..1e5822088be 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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -459,6 +459,8 @@ msgid "" "$('.oe_employee_picture').load(function() { if($(this).width() > " "$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" msgstr "" +"$('.oe_employee_picture').load(function() { if($(this).width() > " +"$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" #. module: hr #: help:hr.config.settings,module_hr_evaluation:0 @@ -1028,7 +1030,7 @@ msgstr "Durch aktivieren installieren Sie das Modul hr_expense." #. module: hr #: model:ir.model,name:hr.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr #: field:hr.department,manager_id:0 diff --git a/addons/hr/i18n/el.po b/addons/hr/i18n/el.po index 09423f8b0de..699fc3bd206 100644 --- a/addons/hr/i18n/el.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/hr/i18n/en_AU.po b/addons/hr/i18n/en_AU.po index 8ebf76da0e1..246401d2307 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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 75ec51e5a9c..a0bb169e19a 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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 2f4f3b46db8..fc89f145ba6 100644 --- a/addons/hr/i18n/es.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 706ce912511..514f833f215 100644 --- a/addons/hr/i18n/es_AR.po +++ b/addons/hr/i18n/es_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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 cafccdc85bd..2db612ce469 100644 --- a/addons/hr/i18n/es_CL.po +++ b/addons/hr/i18n/es_CL.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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 4ba45e5337a..c4df2443cce 100644 --- a/addons/hr/i18n/es_CR.po +++ b/addons/hr/i18n/es_CR.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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: hr diff --git a/addons/hr/i18n/es_EC.po b/addons/hr/i18n/es_EC.po index 020ad665097..2c3143a55f9 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 be995eeddfe..3d8c22a803e 100644 --- a/addons/hr/i18n/et.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 69e38c8bdfa..de035b7035a 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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 1f641659940..cea431ce911 100644 --- a/addons/hr/i18n/fr.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -58,6 +58,9 @@ msgid "" "128x128px image, with aspect ratio preserved. Use this field in form views " "or some kanban views." msgstr "" +"Photo de l'employé. Elle est automatiquement redimensionnée comme une image " +"128x128px, le ratio est préservé. Ce champ est utilisé dans les vues " +"formulaire ou kanban." #. module: hr #: view:hr.config.settings:0 @@ -425,6 +428,23 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"                 Cliquez pour définir un nouveau poste.\n" +"               \n" +"                 Les postes sont utilisés pour définir les métiers et leurs " +"exigences.\n" +"                 Vous pouvez garder une trace du nombre d'employés que vous " +"avez par \n" +"                 poste et suivre l'évolution en fonction de ce que vous avez " +"prévu\n" +"                 pour l'avenir.\n" +"               \n" +"                 Vous pouvez joindre un sondage à un poste. Il sera utilisé " +"dans\n" +"                 le processus de recrutement afin d'évaluer les candidats " +"pour ce poste..\n" +"               \n" +" " #. module: hr #: selection:hr.employee,gender:0 @@ -626,6 +646,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"                 Cliquez pour ajouter un nouvel employé.\n" +"               \n" +"                 Avec juste un rapide coup d'œil sur l'écran employé " +"OpenERP, vous\n" +"                 pouvez facilement trouver toutes les informations dont vous " +"avez besoin pour chaque personne;\n" +"                 les données de contact, la situation d'emploi, la " +"disponibilité, etc\n" +"               \n" +" " #. module: hr #: view:hr.employee:0 @@ -690,6 +721,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"                 Cliquez pour créer un département.\n" +"               \n" +"                 La structure des départements est utilisée pour gérer tous " +"les documents\n" +"                 liés aux employés : frais, feuilles de temps, congés, " +"recrutements, etc\n" +"               \n" +" " #. module: hr #: help:hr.config.settings,module_hr_timesheet:0 @@ -715,6 +755,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +"                 Cliquez pour créer un département.\n" +"               \n" +"                 La structure des départements est utilisée pour gérer tous " +"les documents\n" +"                 liés aux employés : frais, feuilles de temps, congés, " +"recrutements, etc\n" +"               \n" +" " #. module: hr #: view:hr.employee:0 @@ -936,6 +985,24 @@ msgid "" " \n" " " msgstr "" +"

\n" +"                  

\n" +"                     Le tableau de bord des ressources humaines est " +"vide. \n" +"                   \n" +"                     Pour ajouter votre premier rapport dans ce tableau de " +"bord, aller à n'importe quel\n" +"                     menu, passer à la liste ou la vue graphique, puis " +"cliquez sur 'Ajouter au\n" +"                     Tableau de bord' dans les options de recherche " +"avancée.\n" +"                   \n" +"                     Vous pouvez filtrer et regrouper les données avant de " +"l'insérer dans le\n" +"                     tableau de bord à l'aide des options de recherche.\n" +"                   \n" +"               \n" +" " #. module: hr #: view:hr.employee:0 diff --git a/addons/hr/i18n/fr_BE.po b/addons/hr/i18n/fr_BE.po index 99162fe1691..97d743542cc 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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 30a8990ebe7..37df6c89c17 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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 f09885f3a09..e2945ed1b97 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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 18c8377022b..9af028b2f78 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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 86820f5c16b..9ba3143a486 100644 --- a/addons/hr/i18n/hr.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: hr\n" #. module: hr diff --git a/addons/hr/i18n/hu.po b/addons/hr/i18n/hu.po index 30edd7ee71e..c2d3a94a924 100644 --- a/addons/hr/i18n/hu.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 e5edf8584e0..4ade2fbbeb6 100644 --- a/addons/hr/i18n/id.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 861d1388663..64b5da1a510 100644 --- a/addons/hr/i18n/it.po +++ b/addons/hr/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-19 19:47+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 e28ccc73234..84fc7649ee8 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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 ec3ea1bf816..cced6ef3379 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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 65c4dcbf082..67b8c4b57c6 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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 0106eb763e7..58c7e926bec 100644 --- a/addons/hr/i18n/lt.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -29,7 +29,7 @@ msgstr "" #. module: hr #: field:hr.job,requirements:0 msgid "Requirements" -msgstr "" +msgstr "Reikalavimai" #. module: hr #: model:process.transition,name:hr.process_transition_contactofemployee0 @@ -68,7 +68,7 @@ msgstr "" #: view:hr.employee:0 #: view:hr.job:0 msgid "Group By..." -msgstr "" +msgstr "Grupuoti pagal..." #. module: hr #: model:ir.actions.act_window,name:hr.view_department_form_installer @@ -78,7 +78,7 @@ msgstr "Sukurkite padalinius" #. module: hr #: help:hr.job,no_of_employee:0 msgid "Number of employees currently occupying this job position." -msgstr "" +msgstr "Darbuotojų skaičius dirbančių šiose pareigose." #. module: hr #: field:hr.config.settings,module_hr_evaluation:0 @@ -106,6 +106,8 @@ msgid "" "This field holds the image used as photo for the employee, limited to " "1024x1024px." msgstr "" +"Šiame lauke saugoma darbuotojo nuotrauka. Maksimalus nuotraukos dydis " +"1024x1024px." #. module: hr #: help:hr.config.settings,module_hr_holidays:0 @@ -120,12 +122,12 @@ msgstr "Darbai" #. module: hr #: view:hr.job:0 msgid "In Recruitment" -msgstr "" +msgstr "Įdarbinama" #. module: hr #: field:hr.job,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Neskaitytos žinutės" #. module: hr #: field:hr.department,company_id:0 @@ -138,7 +140,7 @@ msgstr "Įmonė" #. module: hr #: field:hr.job,no_of_recruitment:0 msgid "Expected in Recruitment" -msgstr "" +msgstr "Planuojama įdarbinti" #. module: hr #: field:res.users,employee_ids:0 @@ -158,18 +160,18 @@ msgstr "" #. module: hr #: view:hr.employee:0 msgid "Birth" -msgstr "" +msgstr "Gimimo data" #. module: hr #: model:ir.actions.act_window,name:hr.open_view_categ_form #: model:ir.ui.menu,name:hr.menu_view_employee_category_form msgid "Employee Tags" -msgstr "" +msgstr "Darbuotojo kategorija" #. module: hr #: view:hr.job:0 msgid "Launch Recruitement" -msgstr "" +msgstr "Vykdyti įdarbinimą" #. module: hr #: model:process.transition,name:hr.process_transition_employeeuser0 @@ -184,17 +186,17 @@ msgstr "Aukštesnysis padalinys" #. module: hr #: model:ir.ui.menu,name:hr.menu_open_view_attendance_reason_config msgid "Leaves" -msgstr "" +msgstr "Atostogos" #. module: hr #: selection:hr.employee,marital:0 msgid "Married" -msgstr "Vedęs" +msgstr "Susituokęs/-usi" #. module: hr #: field:hr.job,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Pranešimai" #. module: hr #: view:hr.config.settings:0 @@ -214,12 +216,12 @@ msgstr "" #. module: hr #: view:hr.employee:0 msgid "Position" -msgstr "" +msgstr "Pareigos" #. module: hr #: help:hr.job,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Jeigu pažymėta, naujos žinutės reikalaus jūsų dėmesio." #. module: hr #: field:hr.employee,color:0 @@ -236,7 +238,7 @@ msgstr "" #. module: hr #: field:hr.employee,image_medium:0 msgid "Medium-sized photo" -msgstr "" +msgstr "Vidutinio dydžio nuotrauka" #. module: hr #: field:hr.employee,identification_id:0 @@ -261,13 +263,13 @@ msgstr "Darbo telefonas" #. module: hr #: field:hr.employee.category,child_ids:0 msgid "Child Categories" -msgstr "Žemesniosios kategorijos" +msgstr "Vaikinės kategorijos" #. module: hr #: field:hr.job,description:0 #: model:ir.model,name:hr.model_hr_job msgid "Job Description" -msgstr "Darbo aprašymas" +msgstr "Pareigybių aprašymas" #. module: hr #: field:hr.employee,work_location:0 @@ -277,7 +279,7 @@ msgstr "Biuro vieta" #. module: hr #: field:hr.job,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Prenumeratoriai" #. module: hr #: view:hr.employee:0 @@ -307,7 +309,7 @@ msgstr "Gimimo data" #. module: hr #: help:hr.job,no_of_recruitment:0 msgid "Number of new employees you expect to recruit." -msgstr "" +msgstr "Skaičius darbuotojų, kurį planuojama įdarbinti." #. module: hr #: model:ir.actions.client,name:hr.action_client_hr_menu @@ -320,6 +322,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 "" +"Saugo pokalbių suvestinę (žinučių skaičius, ...). Ši apžvalga saugoma html " +"formatu, kad būtų galima įterpti į kanban rodinius." #. module: hr #: help:hr.config.settings,module_account_analytic_analysis:0 @@ -338,12 +342,12 @@ msgstr "" #: field:hr.employee,job_id:0 #: view:hr.job:0 msgid "Job" -msgstr "Darbas" +msgstr "Pareigybės" #. module: hr #: field:hr.job,no_of_employee:0 msgid "Current Number of Employees" -msgstr "" +msgstr "Esamas darbuotojų skaičius" #. module: hr #: field:hr.department,member_ids:0 @@ -378,7 +382,7 @@ msgstr "Išsiskyręs/-usi" #. module: hr #: field:hr.employee.category,parent_id:0 msgid "Parent Category" -msgstr "Aukštesnioji kategorija" +msgstr "Tėvinė kategorija" #. module: hr #: view:hr.department:0 @@ -456,7 +460,7 @@ msgstr "Darbuotojo kategorija" #. module: hr #: field:hr.employee,category_ids:0 msgid "Tags" -msgstr "" +msgstr "Kategorijos" #. module: hr #: help:hr.config.settings,module_hr_contract:0 @@ -466,12 +470,12 @@ msgstr "" #. module: hr #: view:hr.employee:0 msgid "Related User" -msgstr "Susijęs naudotojas" +msgstr "Susietas naudotojas" #. module: hr #: view:hr.config.settings:0 msgid "or" -msgstr "" +msgstr "arba" #. module: hr #: field:hr.employee.category,name:0 @@ -481,7 +485,7 @@ msgstr "Kategorija" #. module: hr #: view:hr.job:0 msgid "Stop Recruitment" -msgstr "" +msgstr "Nutraukti įdarbinimą" #. module: hr #: field:hr.config.settings,module_hr_attendance:0 @@ -491,7 +495,7 @@ msgstr "" #. module: hr #: help:hr.employee,bank_account_id:0 msgid "Employee bank salary account" -msgstr "" +msgstr "Banko sąskaita, į kurią pervesti atlyginimą" #. module: hr #: field:hr.department,note:0 @@ -528,7 +532,7 @@ msgstr "Būsena" #. module: hr #: field:hr.employee,otherid:0 msgid "Other Id" -msgstr "" +msgstr "Kitas ID" #. module: hr #: model:process.process,name:hr.process_process_employeecontractprocess0 @@ -538,12 +542,12 @@ msgstr "" #. module: hr #: view:hr.config.settings:0 msgid "Contracts" -msgstr "" +msgstr "Darbo sutartys" #. module: hr #: help:hr.job,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Žinučių ir pranešimų istorija" #. module: hr #: field:hr.employee,ssnid:0 @@ -553,7 +557,7 @@ msgstr "Socialinio draudimo Nr." #. module: hr #: field:hr.job,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Ar prenumeratorius" #. module: hr #: field:hr.config.settings,module_hr_recruitment:0 @@ -578,7 +582,7 @@ msgstr "" #. module: hr #: field:hr.employee,bank_account_id:0 msgid "Bank Account Number" -msgstr "" +msgstr "Banko sąskaita" #. module: hr #: view:hr.department:0 @@ -588,7 +592,7 @@ msgstr "Įmonės" #. module: hr #: field:hr.job,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Santrauka" #. module: hr #: model:process.transition,note:hr.process_transition_contactofemployee0 @@ -611,16 +615,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad pridėtumėte darbuotoją.\n" +"

\n" +" Naudojant OpenERP, pakanka užmesti akį į darbuotojų formą\n" +" ir lengvai rasite visą informacija apie kiekvieną asmenį;\n" +" kontaktiniai duomenys, pareigos, atostogos ir t.t.\n" +"

\n" +" " #. module: hr #: view:hr.employee:0 msgid "HR Settings" -msgstr "" +msgstr "Nustatymai" #. module: hr #: view:hr.employee:0 msgid "Citizenship & Other Info" -msgstr "" +msgstr "Piliečio informacija" #. module: hr #: constraint:hr.department:0 @@ -635,7 +647,7 @@ msgstr "Darbovietės adresas" #. module: hr #: view:hr.employee:0 msgid "Public Information" -msgstr "" +msgstr "Vieša informacija" #. module: hr #: field:hr.employee,marital:0 @@ -655,12 +667,12 @@ msgstr "" #. module: hr #: field:hr.employee,image:0 msgid "Photo" -msgstr "" +msgstr "Nuotrauka" #. module: hr #: view:hr.config.settings:0 msgid "Cancel" -msgstr "" +msgstr "Atšaukti" #. module: hr #: model:ir.actions.act_window,help:hr.open_module_tree_department @@ -675,6 +687,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte padalinį.\n" +"

\n" +" OpenERP naudoja padalinius struktūrą valdyti dokumentus\n" +" susijusius su darbuotoju: išlaidos, darbo laiko apskaitos " +"žiniaraščiai,\n" +" atostogos, įdarbinimas ir t.t.\n" +"

\n" +" " #. module: hr #: help:hr.config.settings,module_hr_timesheet:0 @@ -685,7 +706,7 @@ msgstr "" #: help:hr.job,expected_employees:0 msgid "" "Expected number of employees for this job position after new recruitment." -msgstr "" +msgstr "Numatomas darbuotojų skaičius šiose pareigose po naujo įdarbinimo." #. module: hr #: model:ir.actions.act_window,help:hr.view_department_form_installer @@ -709,22 +730,22 @@ msgstr "Asmeninė informacija" #. module: hr #: field:hr.employee,city:0 msgid "City" -msgstr "" +msgstr "Miestas" #. module: hr #: field:hr.employee,passport_id:0 msgid "Passport No" -msgstr "" +msgstr "Paso Nr" #. module: hr #: field:hr.employee,mobile_phone:0 msgid "Work Mobile" -msgstr "" +msgstr "Darbo mob. telefonas" #. module: hr #: selection:hr.job,state:0 msgid "Recruitement in Progress" -msgstr "" +msgstr "Vykdomas įdarbinimas" #. module: hr #: field:hr.config.settings,module_account_analytic_analysis:0 @@ -750,22 +771,22 @@ msgstr "" #. module: hr #: model:ir.actions.act_window,name:hr.open_payroll_modules msgid "Payroll" -msgstr "" +msgstr "Darbo užmokestis" #. module: hr #: selection:hr.employee,marital:0 msgid "Single" -msgstr "" +msgstr "Nesusituokęs/-usi" #. module: hr #: field:hr.job,name:0 msgid "Job Name" -msgstr "" +msgstr "Pareigybių pavadinimas" #. module: hr #: view:hr.job:0 msgid "In Position" -msgstr "" +msgstr "Neįdarbinama" #. module: hr #: help:hr.config.settings,module_hr_payroll:0 @@ -800,12 +821,12 @@ msgstr "Pastabos" #. module: hr #: model:ir.actions.act_window,name:hr.action2 msgid "Subordinate Hierarchy" -msgstr "" +msgstr "Pavaldumo hierarchija" #. module: hr #: field:hr.employee,resource_id:0 msgid "Resource" -msgstr "" +msgstr "Resursas" #. module: hr #: field:hr.department,complete_name:0 @@ -843,7 +864,7 @@ msgstr "Padalinio pavadinimas" #. module: hr #: model:ir.ui.menu,name:hr.menu_hr_reporting_timesheet msgid "Reports" -msgstr "" +msgstr "Ataskaitos" #. module: hr #: field:hr.config.settings,module_hr_payroll:0 @@ -859,7 +880,7 @@ msgstr "" #. module: hr #: selection:hr.job,state:0 msgid "No Recruitment" -msgstr "" +msgstr "Neįdarbinama" #. module: hr #: help:hr.employee,ssnid:0 @@ -874,12 +895,12 @@ msgstr "" #. module: hr #: field:hr.employee,login:0 msgid "Login" -msgstr "" +msgstr "Prisijungimas" #. module: hr #: field:hr.job,expected_employees:0 msgid "Total Forecasted Employees" -msgstr "" +msgstr "Būsimas darbuotojų skaičius" #. module: hr #: help:hr.job,state:0 @@ -891,13 +912,13 @@ msgstr "" #. module: hr #: model:ir.model,name:hr.model_res_users msgid "Users" -msgstr "" +msgstr "Naudotojai" #. module: hr #: model:ir.actions.act_window,name:hr.action_hr_job #: model:ir.ui.menu,name:hr.menu_hr_job msgid "Job Positions" -msgstr "" +msgstr "Darbo vietos" #. module: hr #: model:ir.actions.act_window,help:hr.open_board_hr @@ -922,7 +943,7 @@ msgstr "" #: view:hr.employee:0 #: field:hr.employee,coach_id:0 msgid "Coach" -msgstr "" +msgstr "Mentorius" #. module: hr #: sql_constraint:hr.job:0 @@ -949,7 +970,7 @@ msgstr "Vadovas" #. module: hr #: selection:hr.employee,marital:0 msgid "Widower" -msgstr "" +msgstr "Našlys/-ė" #. module: hr #: field:hr.employee,child_ids:0 @@ -959,7 +980,7 @@ msgstr "Pavaldiniai" #. module: hr #: view:hr.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Taikyti" #~ msgid "Sunday" #~ msgstr "Sekmadienis" diff --git a/addons/hr/i18n/lv.po b/addons/hr/i18n/lv.po index 1161ed782f9..8dd83fb3629 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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 bc88414b090..925f541c497 100644 --- a/addons/hr/i18n/mk.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -25,7 +25,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 @@ -542,7 +542,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 @@ -721,8 +721,9 @@ msgstr "" " Кликнете за да креирате одделение.\n" "

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

\n" " " diff --git a/addons/hr/i18n/mn.po b/addons/hr/i18n/mn.po index 737befc1b52..b22335ac5b0 100644 --- a/addons/hr/i18n/mn.po +++ b/addons/hr/i18n/mn.po @@ -20,8 +20,8 @@ msgstr "" "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 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 aaac29df726..e1f0431a696 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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 9430a17c1ee..8504521a287 100644 --- a/addons/hr/i18n/nl.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 413cad89f53..66f02bebcf9 100644 --- a/addons/hr/i18n/nl_BE.po +++ b/addons/hr/i18n/nl_BE.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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 ce97199127c..19abec22070 100644 --- a/addons/hr/i18n/pl.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 7e9cb7d5601..cc5f91ff0b7 100644 --- a/addons/hr/i18n/pt.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -58,6 +58,9 @@ msgid "" "128x128px image, with aspect ratio preserved. Use this field in form views " "or some kanban views." msgstr "" +"Foto de tamanho médio do funcionário. É automaticamente redimensionada para " +"128x128 pixeis, preservando o rácio. Use este campo em vistas formulário ou " +"algumas vistas kanban." #. module: hr #: view:hr.config.settings:0 @@ -112,7 +115,7 @@ msgstr "" #. module: hr #: help:hr.config.settings,module_hr_holidays:0 msgid "This installs the module hr_holidays." -msgstr "" +msgstr "Instala o módulo hr_holidays." #. module: hr #: view:hr.job:0 @@ -155,7 +158,7 @@ msgstr "Erro! Não pode criar categorias de forma recursiva." #. module: hr #: help:hr.config.settings,module_hr_recruitment:0 msgid "This installs the module hr_recruitment." -msgstr "" +msgstr "Instala o módulo hr_recruitment." #. module: hr #: view:hr.employee:0 @@ -206,7 +209,7 @@ msgstr "Gestão de talento" #. module: hr #: help:hr.config.settings,module_hr_timesheet_sheet:0 msgid "This installs the module hr_timesheet_sheet." -msgstr "" +msgstr "Instala o módulo hr_timesheet_sheet." #. module: hr #: view:hr.employee:0 @@ -314,12 +317,12 @@ msgstr "Data de Nascimento" #. module: hr #: help:hr.job,no_of_recruitment:0 msgid "Number of new employees you expect to recruit." -msgstr "" +msgstr "Número de novos funcionários esperados para recrutar." #. module: hr #: model:ir.actions.client,name:hr.action_client_hr_menu msgid "Open HR Menu" -msgstr "" +msgstr "Abrir Menu RH" #. module: hr #: help:hr.job,message_summary:0 @@ -334,6 +337,8 @@ msgid "" "This installs the module account_analytic_analysis, which will install sales " "management too." msgstr "" +"Instala o módulo account_analytic_analysis, que instalará também a gestão " +"de vendas." #. module: hr #: view:board.board:0 @@ -421,6 +426,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clicar para definir um novo cargo.\n" +"

\n" +" Os cargos são usados para definir as tarefas e requisitos. " +"Pode rastrear o número de funcionários por cargo e seguir a evolução de " +"acordo com o que planeou para o futuro.\n" +"

\n" +" Pode anexar um inquérito a um cargo. Será usado no processo " +"de recrutamento para avaliar as candidaturas à este cargo.\n" +"

\n" +" " #. module: hr #: selection:hr.employee,gender:0 @@ -439,7 +455,7 @@ msgstr "" #. module: hr #: help:hr.config.settings,module_hr_evaluation:0 msgid "This installs the module hr_evaluation." -msgstr "" +msgstr "Instala o módulo hr_evaluation." #. module: hr #: constraint:hr.employee:0 @@ -449,7 +465,7 @@ msgstr "Erro! Não pode criar hierarquias de funcionários de forma recursiva." #. module: hr #: help:hr.config.settings,module_hr_attendance:0 msgid "This installs the module hr_attendance." -msgstr "" +msgstr "Instala o módulo hr_attendance." #. module: hr #: field:hr.employee,image_small:0 @@ -470,7 +486,7 @@ msgstr "" #. module: hr #: help:hr.config.settings,module_hr_contract:0 msgid "This installs the module hr_contract." -msgstr "" +msgstr "Instala o módulo hr_contract." #. module: hr #: view:hr.employee:0 @@ -495,7 +511,7 @@ msgstr "Terminar o recrutamento" #. module: hr #: field:hr.config.settings,module_hr_attendance:0 msgid "Install attendances feature" -msgstr "" +msgstr "Instala a funcionalidade de presenças" #. module: hr #: help:hr.employee,bank_account_id:0 @@ -520,7 +536,7 @@ msgstr "Informação do Contato" #. module: hr #: field:hr.config.settings,module_hr_holidays:0 msgid "Manage holidays, leaves and allocation requests" -msgstr "" +msgstr "Gerir férias, dispensas e pedidos de alocação" #. module: hr #: field:hr.department,child_ids:0 @@ -582,7 +598,7 @@ msgstr "Gestão de recursos humanos" #. module: hr #: view:hr.config.settings:0 msgid "Install your country's payroll" -msgstr "" +msgstr "Instalar o processamento salarial do seu País" #. module: hr #: field:hr.employee,bank_account_id:0 @@ -622,16 +638,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar novo funcionário.\n" +"

\n" +" Com uma simples vista de olhos sobre o ecrã de funcionários, " +"pode facilmente encontrar toda a informação que necessita para cada pessoa; " +"dados de contacto, cargo, disponibilidade, etc.\n" +"

\n" +" " #. module: hr #: view:hr.employee:0 msgid "HR Settings" -msgstr "" +msgstr "Definições RH" #. module: hr #: view:hr.employee:0 msgid "Citizenship & Other Info" -msgstr "" +msgstr "Cidadania & Outras Informações" #. module: hr #: constraint:hr.department:0 @@ -686,6 +710,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para criar um departamento.\n" +"

\n" +" A estrutura de departamentos do OpenERP é usada para gerir " +"todos os documentos relacionados com os empregados por departamentos: " +"despesas, controlo horário, dispensas e férias, recrutamentos, etc.\n" +"

\n" +" " #. module: hr #: help:hr.config.settings,module_hr_timesheet:0 @@ -711,6 +743,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para definir um novo departamento.\n" +"

\n" +" A sua estrutura de departamentos é usada para gerir todos os " +"documentos relacionados com empregados por departamentos: despesas e " +"controlo horário, dispensas e férias, recrutamentos, etc.\n" +"

\n" +" " #. module: hr #: view:hr.employee:0 @@ -813,7 +853,7 @@ msgstr "Notas" #. module: hr #: model:ir.actions.act_window,name:hr.action2 msgid "Subordinate Hierarchy" -msgstr "" +msgstr "Hierarquia de Subordinados" #. module: hr #: field:hr.employee,resource_id:0 @@ -930,6 +970,19 @@ msgid "" "
\n" " " msgstr "" +"
\n" +"

\n" +" O painel de Recursos Humanos está vazio.\n" +"

\n" +" Para adicionar o seu primeiro relatório a este painel, " +"vá a qualquer menu, altere para a vista lista ou gráfico e clique " +"'Adicionar ao Painel' nas opções avançadas de pesquisa.\n" +"

\n" +" Pode filtrar e agrupar dados antes de inserir no painel " +"usindo opções de pesquisa.\n" +"

\n" +"
\n" +" " #. module: hr #: view:hr.employee:0 diff --git a/addons/hr/i18n/pt_BR.po b/addons/hr/i18n/pt_BR.po index eef4d3f46b8..b7cfc775c7d 100644 --- a/addons/hr/i18n/pt_BR.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 60207021bb7..184ba255bd9 100644 --- a/addons/hr/i18n/ro.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 aa6523ac9b3..00a6effe050 100644 --- a/addons/hr/i18n/ru.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -62,13 +62,13 @@ msgstr "" #. module: hr #: view:hr.config.settings:0 msgid "Time Tracking" -msgstr "" +msgstr "Учёт времени" #. module: hr #: view:hr.employee:0 #: view:hr.job:0 msgid "Group By..." -msgstr "Объеденить по..." +msgstr "Группировать по ..." #. module: hr #: model:ir.actions.act_window,name:hr.view_department_form_installer @@ -79,6 +79,7 @@ msgstr "Укажите ваши отделы" #: help:hr.job,no_of_employee:0 msgid "Number of employees currently occupying this job position." msgstr "" +"Количество сотрудников, в настоящее время занимающих данную должность." #. module: hr #: field:hr.config.settings,module_hr_evaluation:0 @@ -106,11 +107,13 @@ msgid "" "This field holds the image used as photo for the employee, limited to " "1024x1024px." msgstr "" +"Данное поле содержит изображение, используемое в качестве фотографии " +"сотрудника, ограничение размера 1024x1024 пикселей." #. module: hr #: help:hr.config.settings,module_hr_holidays:0 msgid "This installs the module hr_holidays." -msgstr "" +msgstr "Установит модуль hr_holidays." #. module: hr #: view:hr.job:0 @@ -143,28 +146,28 @@ msgstr "Планируется набрать" #. module: hr #: field:res.users,employee_ids:0 msgid "Related employees" -msgstr "" +msgstr "Связанные сотрудники" #. module: hr #: constraint:hr.employee.category:0 msgid "Error! You cannot create recursive Categories." -msgstr "" +msgstr "Ошибка! Вы не можете создавать рекурсивные категории." #. module: hr #: help:hr.config.settings,module_hr_recruitment:0 msgid "This installs the module hr_recruitment." -msgstr "" +msgstr "Установит модуль hr_recruitment." #. module: hr #: view:hr.employee:0 msgid "Birth" -msgstr "" +msgstr "Дата рождения" #. module: hr #: model:ir.actions.act_window,name:hr.open_view_categ_form #: model:ir.ui.menu,name:hr.menu_view_employee_category_form msgid "Employee Tags" -msgstr "" +msgstr "Теги сотрудника" #. module: hr #: view:hr.job:0 @@ -194,7 +197,7 @@ msgstr "В браке" #. module: hr #: field:hr.job,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Сообщения" #. module: hr #: view:hr.config.settings:0 @@ -204,12 +207,12 @@ msgstr "" #. module: hr #: help:hr.config.settings,module_hr_timesheet_sheet:0 msgid "This installs the module hr_timesheet_sheet." -msgstr "" +msgstr "Установит модуль hr_timesheet_sheet." #. module: hr #: view:hr.employee:0 msgid "Mobile:" -msgstr "" +msgstr "Мобильный:" #. module: hr #: view:hr.employee:0 @@ -219,7 +222,7 @@ msgstr "Должность" #. module: hr #: help:hr.job,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Если отмечено, новые сообщения требуют вашего внимания." #. module: hr #: field:hr.employee,color:0 @@ -238,7 +241,7 @@ msgstr "" #. module: hr #: field:hr.employee,image_medium:0 msgid "Medium-sized photo" -msgstr "" +msgstr "Фотография среднего размера" #. module: hr #: field:hr.employee,identification_id:0 @@ -300,6 +303,9 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Маленькая фотография сотрудника. Изображение автоматически уменьшено до " +"64x64 пикселей с сохранением соотношения сторон. Используйте данное поле " +"везде, где требуется маленькое изображение." #. module: hr #: field:hr.employee,birthday:0 @@ -309,7 +315,7 @@ msgstr "Дата рождения" #. module: hr #: help:hr.job,no_of_recruitment:0 msgid "Number of new employees you expect to recruit." -msgstr "" +msgstr "Планируемое к найму количество сотрудников." #. module: hr #: model:ir.actions.client,name:hr.action_client_hr_menu @@ -345,7 +351,7 @@ msgstr "Должность" #. module: hr #: field:hr.job,no_of_employee:0 msgid "Current Number of Employees" -msgstr "" +msgstr "Текущее количество сотрудников" #. module: hr #: field:hr.department,member_ids:0 @@ -370,7 +376,7 @@ msgstr "" #. module: hr #: view:hr.employee:0 msgid "Tel:" -msgstr "" +msgstr "Телефон:" #. module: hr #: selection:hr.employee,marital:0 @@ -428,26 +434,28 @@ msgid "" "$('.oe_employee_picture').load(function() { if($(this).width() > " "$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" msgstr "" +"$('.oe_employee_picture').load(function() { if($(this).width() > " +"$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" #. module: hr #: help:hr.config.settings,module_hr_evaluation:0 msgid "This installs the module hr_evaluation." -msgstr "" +msgstr "Установит модуль hr_evaluation." #. module: hr #: constraint:hr.employee:0 msgid "Error! You cannot create recursive hierarchy of Employee(s)." -msgstr "" +msgstr "Ошибка! Вы не можете создавать рекурсивную иерархию сотрудника(ов)." #. module: hr #: help:hr.config.settings,module_hr_attendance:0 msgid "This installs the module hr_attendance." -msgstr "" +msgstr "Установит модуль hr_attendance." #. module: hr #: field:hr.employee,image_small:0 msgid "Smal-sized photo" -msgstr "" +msgstr "Маленькая фотография" #. module: hr #: view:hr.employee.category:0 @@ -458,12 +466,12 @@ msgstr "Категория сотрудника" #. module: hr #: field:hr.employee,category_ids:0 msgid "Tags" -msgstr "" +msgstr "Теги" #. module: hr #: help:hr.config.settings,module_hr_contract:0 msgid "This installs the module hr_contract." -msgstr "" +msgstr "Установит модуль hr_contract." #. module: hr #: view:hr.employee:0 @@ -473,7 +481,7 @@ msgstr "Относится к пользователю" #. module: hr #: view:hr.config.settings:0 msgid "or" -msgstr "" +msgstr "или" #. module: hr #: field:hr.employee.category,name:0 @@ -518,7 +526,7 @@ msgstr "" #. module: hr #: field:hr.department,child_ids:0 msgid "Child Departments" -msgstr "Подчиненные подразделения" +msgstr "Подчинённые подразделения" #. module: hr #: view:hr.employee:0 @@ -540,12 +548,12 @@ msgstr "Договор с сотрудником" #. module: hr #: view:hr.config.settings:0 msgid "Contracts" -msgstr "" +msgstr "Договоры" #. module: hr #: help:hr.job,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Сообщения и история общения" #. module: hr #: field:hr.employee,ssnid:0 @@ -570,7 +578,7 @@ msgstr "Активные" #. module: hr #: view:hr.config.settings:0 msgid "Human Resources Management" -msgstr "" +msgstr "Управление кадрами" #. module: hr #: view:hr.config.settings:0 @@ -615,6 +623,16 @@ msgid "" "

\n" " " msgstr "" +"

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

\n" +" Всего лишь бегло взглянув на экран сотрудника в OpenERP,\n" +" вы сможете быстро найти нужную информацию о каждом " +"человеке,\n" +" включая контактную информацию, должность, доступность и " +"т.д.\n" +"

\n" +" " #. module: hr #: view:hr.employee:0 @@ -624,12 +642,12 @@ msgstr "" #. module: hr #: view:hr.employee:0 msgid "Citizenship & Other Info" -msgstr "" +msgstr "Гражданство и прочая информация" #. module: hr #: constraint:hr.department:0 msgid "Error! You cannot create recursive departments." -msgstr "" +msgstr "Ошибка! Вы не можете создавать рекурсивные подразделения." #. module: hr #: field:hr.employee,address_id:0 @@ -639,7 +657,7 @@ msgstr "Рабочий адрес" #. module: hr #: view:hr.employee:0 msgid "Public Information" -msgstr "" +msgstr "Общедоступная информация" #. module: hr #: field:hr.employee,marital:0 @@ -654,7 +672,7 @@ msgstr "ir.actions.act_window" #. module: hr #: field:hr.employee,last_login:0 msgid "Latest Connection" -msgstr "" +msgstr "Последнее подключение" #. module: hr #: field:hr.employee,image:0 @@ -664,7 +682,7 @@ msgstr "Фотография" #. module: hr #: view:hr.config.settings:0 msgid "Cancel" -msgstr "" +msgstr "Отмена" #. module: hr #: model:ir.actions.act_window,help:hr.open_module_tree_department @@ -679,17 +697,29 @@ msgid "" "

\n" " " msgstr "" +"

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

\n" +"Структура подразделения в OpenERP предназначена для управления всеми " +"документами,\n" +"связанными с сотрудниками по подразделениям, включая расходы, табели учёта " +"раб. времени,\n" +"отпуска и праздники, наём сотрудников и т.д.\n" +"

\n" +" " #. module: hr #: help:hr.config.settings,module_hr_timesheet:0 msgid "This installs the module hr_timesheet." -msgstr "" +msgstr "Установит модуль hr_timesheet." #. module: hr #: help:hr.job,expected_employees:0 msgid "" "Expected number of employees for this job position after new recruitment." msgstr "" +"Планируемое количество сотрудников на данной должности по окончании нового " +"набора сотрудников." #. module: hr #: model:ir.actions.act_window,help:hr.view_department_form_installer @@ -704,6 +734,16 @@ msgid "" "

\n" " " msgstr "" +"

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

\n" +"Ваша структура подразделений предназначена для управления всеми " +"документами,\n" +"связанными с сотрудниками по подразделениям, включая расходы, табели учёта " +"раб. времени,\n" +"отпуска и праздники, наём сотрудников и т.д.\n" +"

\n" +" " #. module: hr #: view:hr.employee:0 @@ -754,7 +794,7 @@ msgstr "" #. module: hr #: model:ir.actions.act_window,name:hr.open_payroll_modules msgid "Payroll" -msgstr "Платежная ведомость" +msgstr "Платёжная ведомость" #. module: hr #: selection:hr.employee,marital:0 @@ -774,7 +814,7 @@ msgstr "В норме" #. module: hr #: help:hr.config.settings,module_hr_payroll:0 msgid "This installs the module hr_payroll." -msgstr "" +msgstr "Установит модуль hr_payroll." #. module: hr #: field:hr.config.settings,module_hr_contract:0 @@ -789,12 +829,12 @@ msgstr "подразделение" #. module: hr #: field:hr.employee,country_id:0 msgid "Nationality" -msgstr "Национальность" +msgstr "Гражданство" #. module: hr #: view:hr.config.settings:0 msgid "Additional Features" -msgstr "" +msgstr "Дополнительные возможности" #. module: hr #: field:hr.employee,notes:0 @@ -847,7 +887,7 @@ msgstr "Наименование подразделения" #. module: hr #: model:ir.ui.menu,name:hr.menu_hr_reporting_timesheet msgid "Reports" -msgstr "" +msgstr "Отчёты" #. module: hr #: field:hr.config.settings,module_hr_payroll:0 @@ -883,7 +923,7 @@ msgstr "Имя пользователя системы" #. module: hr #: field:hr.job,expected_employees:0 msgid "Total Forecasted Employees" -msgstr "" +msgstr "Всего прогнозируемых сотрудников" #. module: hr #: help:hr.job,state:0 @@ -895,7 +935,7 @@ msgstr "" #. module: hr #: model:ir.model,name:hr.model_res_users msgid "Users" -msgstr "" +msgstr "Пользователи" #. module: hr #: model:ir.actions.act_window,name:hr.action_hr_job @@ -936,19 +976,19 @@ msgstr "Название должности в компании должно б #. module: hr #: help:hr.config.settings,module_hr_expense:0 msgid "This installs the module hr_expense." -msgstr "" +msgstr "Установит модуль hr_expense." #. module: hr #: model:ir.model,name:hr.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr #: field:hr.department,manager_id:0 #: view:hr.employee:0 #: field:hr.employee,parent_id:0 msgid "Manager" -msgstr "Руководитель" +msgstr "Менеджер" #. module: hr #: selection:hr.employee,marital:0 @@ -958,12 +998,12 @@ msgstr "Вдовец/вдова" #. module: hr #: field:hr.employee,child_ids:0 msgid "Subordinates" -msgstr "Подчиненные" +msgstr "Подчинённые" #. module: hr #: view:hr.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Применить" #~ msgid "Working Time Categories" #~ msgstr "Категории рабочего времени" diff --git a/addons/hr/i18n/sk.po b/addons/hr/i18n/sk.po index 6f19eb61695..17cac680133 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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 48390c925bd..ea9760fd6b6 100644 --- a/addons/hr/i18n/sl.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 629e247e467..1dd81419e9c 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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 e1f19a2a1a0..45a14a8ab16 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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 96758451d68..20006090bf6 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 020ccc3f821..ee5e1d4dc74 100644 --- a/addons/hr/i18n/sv.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 61660daeeaa..f3dd4cb58ad 100644 --- a/addons/hr/i18n/th.po +++ b/addons/hr/i18n/th.po @@ -14,18 +14,18 @@ msgstr "" "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 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 msgid "Openerp user" -msgstr "" +msgstr "ผู้ใช้ OpenERP" #. module: hr #: field:hr.config.settings,module_hr_timesheet_sheet:0 msgid "Allow timesheets validation by managers" -msgstr "" +msgstr "อนุญาตให้มีการตรวจสอบความถูก timesheets โดยผู้จัดการ" #. module: hr #: field:hr.job,requirements:0 @@ -40,7 +40,7 @@ msgstr "เชื่อมโยงไปยังข้อมูลของพ #. module: hr #: field:hr.employee,sinid:0 msgid "SIN No" -msgstr "" +msgstr "หมายเลข SIN" #. module: hr #: model:ir.actions.act_window,name:hr.open_board_hr @@ -59,11 +59,13 @@ msgid "" "128x128px image, with aspect ratio preserved. Use this field in form views " "or some kanban views." msgstr "" +"ภาพขนาดกลางของพนักงาน มันมีการปรับขนาดโดยอัตโนมัติเป็นภาพ 128x128 " +"พิกเซลโดยมีอัตราส่วนคงที่ ฟิลด์นี้ใช้ในมุมมองรูปแบบ หรือบางมุมมอง Kanban" #. module: hr #: view:hr.config.settings:0 msgid "Time Tracking" -msgstr "" +msgstr "ติดตามเวลา" #. module: hr #: view:hr.employee:0 @@ -74,17 +76,17 @@ msgstr "จัดกลุ่มตาม..." #. module: hr #: model:ir.actions.act_window,name:hr.view_department_form_installer msgid "Create Your Departments" -msgstr "" +msgstr "สร้างแผนกของคุณ" #. module: hr #: help:hr.job,no_of_employee:0 msgid "Number of employees currently occupying this job position." -msgstr "" +msgstr "ตำแหน่งนี้ มีพนักงาน" #. module: hr #: field:hr.config.settings,module_hr_evaluation:0 msgid "Organize employees periodic evaluation" -msgstr "" +msgstr "จัดการพนักงานการประเมินผลเป็นระยะ ๆ" #. module: hr #: view:hr.department:0 @@ -99,19 +101,19 @@ msgstr "แผนก" #. module: hr #: field:hr.employee,work_email:0 msgid "Work Email" -msgstr "" +msgstr "อีเมล์ที่ทำงาน" #. module: hr #: help:hr.employee,image:0 msgid "" "This field holds the image used as photo for the employee, limited to " "1024x1024px." -msgstr "" +msgstr "ภาพที่นำมาใช้เป็นภาพสำหรับพนักงาน จำกัดขนาด 1024x1024 พิกเซล" #. module: hr #: help:hr.config.settings,module_hr_holidays:0 msgid "This installs the module hr_holidays." -msgstr "" +msgstr "ติดตั้งโมดูล hr_holidays" #. module: hr #: view:hr.job:0 @@ -121,12 +123,12 @@ msgstr "งาน" #. module: hr #: view:hr.job:0 msgid "In Recruitment" -msgstr "อยู่ในการรับสมัครงาน" +msgstr "อยู่ระหว่างรับสมัครงาน" #. module: hr #: field:hr.job,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "ข้อความที่ไม่ได้อ่าน" #. module: hr #: field:hr.department,company_id:0 @@ -139,78 +141,78 @@ msgstr "บริษัท" #. module: hr #: field:hr.job,no_of_recruitment:0 msgid "Expected in Recruitment" -msgstr "ที่คาดหวังในการสรรหา" +msgstr "คาดหวังในการสรรหา" #. module: hr #: field:res.users,employee_ids:0 msgid "Related employees" -msgstr "" +msgstr "พนักงานที่เกี่ยวข้อง" #. module: hr #: constraint:hr.employee.category:0 msgid "Error! You cannot create recursive Categories." -msgstr "" +msgstr "ข้อผิดพลาด! คุณไม่สามารถสร้างหมวดหมู่ recursive" #. module: hr #: help:hr.config.settings,module_hr_recruitment:0 msgid "This installs the module hr_recruitment." -msgstr "" +msgstr "ติดตั้งโมดูล hr_recruitment." #. module: hr #: view:hr.employee:0 msgid "Birth" -msgstr "" +msgstr "เกิด" #. module: hr #: model:ir.actions.act_window,name:hr.open_view_categ_form #: model:ir.ui.menu,name:hr.menu_view_employee_category_form msgid "Employee Tags" -msgstr "" +msgstr "แท็กพนักงาน" #. module: hr #: view:hr.job:0 msgid "Launch Recruitement" -msgstr "" +msgstr "เริ่มการสรรหาใหม่" #. module: hr #: model:process.transition,name:hr.process_transition_employeeuser0 msgid "Link a user to an employee" -msgstr "เชื่อมโยงผู้ใช้เข้ากับพนักงาน" +msgstr "เชื่อมโยงผู้ใช้กับพนักงาน" #. module: hr #: field:hr.department,parent_id:0 msgid "Parent Department" -msgstr "" +msgstr "ภายใต้สังกัด" #. module: hr #: model:ir.ui.menu,name:hr.menu_open_view_attendance_reason_config msgid "Leaves" -msgstr "" +msgstr "การลา" #. module: hr #: selection:hr.employee,marital:0 msgid "Married" -msgstr "แต่งงานแล้ว" +msgstr "แต่งงาน" #. module: hr #: field:hr.job,message_ids:0 msgid "Messages" -msgstr "" +msgstr "ข้อความ" #. module: hr #: view:hr.config.settings:0 msgid "Talent Management" -msgstr "" +msgstr "การจัดการความสามารถ" #. module: hr #: help:hr.config.settings,module_hr_timesheet_sheet:0 msgid "This installs the module hr_timesheet_sheet." -msgstr "" +msgstr "ต้องติดตั้งโมดูล hr_timesheet_sheet" #. module: hr #: view:hr.employee:0 msgid "Mobile:" -msgstr "" +msgstr "มือถือ:" #. module: hr #: view:hr.employee:0 @@ -220,12 +222,12 @@ msgstr "ตำแหน่ง" #. module: hr #: help:hr.job,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "ถ้าการตรวจสอบข้อความใหม่ให้ระบุความสนใจของคุณ" #. module: hr #: field:hr.employee,color:0 msgid "Color Index" -msgstr "" +msgstr "ดัชนีสี" #. module: hr #: model:process.transition,note:hr.process_transition_employeeuser0 @@ -237,12 +239,12 @@ msgstr "" #. module: hr #: field:hr.employee,image_medium:0 msgid "Medium-sized photo" -msgstr "" +msgstr "ภาพขนาดกลาง" #. module: hr #: field:hr.employee,identification_id:0 msgid "Identification No" -msgstr "" +msgstr "หมายเลข บัตรประชาชน" #. module: hr #: selection:hr.employee,gender:0 @@ -252,7 +254,7 @@ msgstr "หญิง" #. module: hr #: model:ir.ui.menu,name:hr.menu_open_view_attendance_reason_new_config msgid "Attendance" -msgstr "" +msgstr "การเข้างาน" #. module: hr #: field:hr.employee,work_phone:0 @@ -262,7 +264,7 @@ msgstr "โทรศัพท์ที่ทำงาน" #. module: hr #: field:hr.employee.category,child_ids:0 msgid "Child Categories" -msgstr "ประเภทย่อย" +msgstr "กลุ่มย่อย" #. module: hr #: field:hr.job,description:0 @@ -278,7 +280,7 @@ msgstr "ที่ตั้งสำนักงาน" #. module: hr #: field:hr.job,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "ติดตาม" #. module: hr #: view:hr.employee:0 @@ -299,6 +301,8 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"ภาพขนาดเล็กของพนักงาน มันมีการปรับขนาดโดยอัตโนมัติเป็นภาพ 64x64px " +"กับอัตราส่วนคงที่ ต้องมีฟิลด์นี้ กับภาพขนาดเล็ก" #. module: hr #: field:hr.employee,birthday:0 @@ -308,12 +312,12 @@ msgstr "วันเกิด" #. module: hr #: help:hr.job,no_of_recruitment:0 msgid "Number of new employees you expect to recruit." -msgstr "" +msgstr "จำนวนพนักงานใหม่ที่คุณคาดหวังที่จะรับสมัคร" #. module: hr #: model:ir.actions.client,name:hr.action_client_hr_menu msgid "Open HR Menu" -msgstr "" +msgstr "เปิดเมนู HR" #. module: hr #: help:hr.job,message_summary:0 @@ -328,6 +332,7 @@ msgid "" "This installs the module account_analytic_analysis, which will install sales " "management too." msgstr "" +"โมดูล account_analytic_analysis จะติดตั้ง ซึ่งจะติดตั้งการจัดการการขายด้วย" #. module: hr #: view:board.board:0 @@ -344,7 +349,7 @@ msgstr "งาน" #. module: hr #: field:hr.job,no_of_employee:0 msgid "Current Number of Employees" -msgstr "" +msgstr "ปัจจุบันมีพนักงานจำนวน" #. module: hr #: field:hr.department,member_ids:0 @@ -354,7 +359,7 @@ msgstr "สมาชิก" #. module: hr #: model:ir.ui.menu,name:hr.menu_hr_configuration msgid "Configuration" -msgstr "การกำหนดค่า" +msgstr "ตั้งค่า" #. module: hr #: model:process.node,note:hr.process_node_employee0 @@ -364,12 +369,12 @@ msgstr "โครงสร้างและรูปแบบพนักงา #. module: hr #: field:hr.config.settings,module_hr_expense:0 msgid "Manage employees expenses" -msgstr "" +msgstr "จัดการค่าใช้จ่ายพนักงาน" #. module: hr #: view:hr.employee:0 msgid "Tel:" -msgstr "" +msgstr "โทร:" #. module: hr #: selection:hr.employee,marital:0 @@ -379,7 +384,7 @@ msgstr "หย่าร้าง" #. module: hr #: field:hr.employee.category,parent_id:0 msgid "Parent Category" -msgstr "ประเภทสินค้าหลัก" +msgstr "หมวดหมู่หลัก" #. module: hr #: view:hr.department:0 @@ -427,77 +432,79 @@ msgid "" "$('.oe_employee_picture').load(function() { if($(this).width() > " "$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" msgstr "" +"$('.oe_employee_picture').load(function() { if($(this).width() > " +"$(this).height()) { $(this).addClass('oe_employee_picture_wide') } });" #. module: hr #: help:hr.config.settings,module_hr_evaluation:0 msgid "This installs the module hr_evaluation." -msgstr "" +msgstr "ติดตตั้งโมดูล hr_evaluation." #. module: hr #: constraint:hr.employee:0 msgid "Error! You cannot create recursive hierarchy of Employee(s)." -msgstr "" +msgstr "ข้อผิดพลาด! คุณไม่สามารถสร้างลำดับชั้น ซ้ำ ของพนักงาน" #. module: hr #: help:hr.config.settings,module_hr_attendance:0 msgid "This installs the module hr_attendance." -msgstr "" +msgstr "ติดตั้งโมดูล hr_attendance" #. module: hr #: field:hr.employee,image_small:0 msgid "Smal-sized photo" -msgstr "" +msgstr "ภาพขนาดเล็ก" #. module: hr #: view:hr.employee.category:0 #: model:ir.model,name:hr.model_hr_employee_category msgid "Employee Category" -msgstr "ประเภทของพนักงาน" +msgstr "หมวดหมู่พนักงาน" #. module: hr #: field:hr.employee,category_ids:0 msgid "Tags" -msgstr "" +msgstr "แท็ก" #. module: hr #: help:hr.config.settings,module_hr_contract:0 msgid "This installs the module hr_contract." -msgstr "" +msgstr "ติดตั้งโมดูล hr_contract" #. module: hr #: view:hr.employee:0 msgid "Related User" -msgstr "" +msgstr "ผู้ใช้งานที่เกี่ยวข้อง" #. module: hr #: view:hr.config.settings:0 msgid "or" -msgstr "" +msgstr "หรือ" #. module: hr #: field:hr.employee.category,name:0 msgid "Category" -msgstr "ประเภท" +msgstr "หมวดหมู่" #. module: hr #: view:hr.job:0 msgid "Stop Recruitment" -msgstr "" +msgstr "หยุดการสรรหา" #. module: hr #: field:hr.config.settings,module_hr_attendance:0 msgid "Install attendances feature" -msgstr "" +msgstr "ติดตั้งคุณสมบัติ การเข้าทำงาน" #. module: hr #: help:hr.employee,bank_account_id:0 msgid "Employee bank salary account" -msgstr "หมาเลขบัญชีธนาคารพนักงาน" +msgstr "หมายเลขบัญชีธนาคารพนักงาน" #. module: hr #: field:hr.department,note:0 msgid "Note" -msgstr "บันทึก" +msgstr "บันทึกย่อ" #. module: hr #: model:ir.actions.act_window,name:hr.open_view_employee_tree @@ -512,12 +519,12 @@ 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 msgid "Child Departments" -msgstr "" +msgstr "หน่วยงานในสังกัด" #. module: hr #: view:hr.employee:0 @@ -529,7 +536,7 @@ msgstr "สถานะ" #. module: hr #: field:hr.employee,otherid:0 msgid "Other Id" -msgstr "" +msgstr "หมายเลข อื่นๆ" #. module: hr #: model:process.process,name:hr.process_process_employeecontractprocess0 @@ -539,27 +546,27 @@ msgstr "ข้อมูลการติดต่อพนักงาน" #. module: hr #: view:hr.config.settings:0 msgid "Contracts" -msgstr "" +msgstr "สัญญา" #. module: hr #: help:hr.job,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "ข้อความและประวัติการสื่อสาร" #. module: hr #: field:hr.employee,ssnid:0 msgid "SSN No" -msgstr "" +msgstr "หมายเลข SSN" #. module: hr #: field:hr.job,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "เป็นผู้ติดตาม" #. module: hr #: field:hr.config.settings,module_hr_recruitment:0 msgid "Manage the recruitment process" -msgstr "" +msgstr "จัดการกระบวนการสรรหา" #. module: hr #: view:hr.employee:0 @@ -569,17 +576,17 @@ msgstr "เปิดใช้งาน" #. module: hr #: view:hr.config.settings:0 msgid "Human Resources Management" -msgstr "" +msgstr "การจัดการทรัพยากรมนุษย์" #. module: hr #: view:hr.config.settings:0 msgid "Install your country's payroll" -msgstr "" +msgstr "ติดตั้งระบบค่าใช้จ่ายของประเทศของคุณ" #. module: hr #: field:hr.employee,bank_account_id:0 msgid "Bank Account Number" -msgstr "" +msgstr "เลขบัญชีธนาคาร" #. module: hr #: view:hr.department:0 @@ -589,7 +596,7 @@ msgstr "บริษัท" #. module: hr #: field:hr.job,message_summary:0 msgid "Summary" -msgstr "" +msgstr "สรุป" #. module: hr #: model:process.transition,note:hr.process_transition_contactofemployee0 @@ -597,6 +604,7 @@ msgid "" "In the Employee form, there are different kind of information like Contact " "information." msgstr "" +"ในแบบฟอร์มของพนักงานที่มีลักษณะแตกต่างกันของข้อมูลเช่นข้อมูลการติดต่อ" #. module: hr #: model:ir.actions.act_window,help:hr.open_view_employee_list_my @@ -612,21 +620,31 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" กด เพิ่มพนักงานใหม่.\n" +"

\n" +" With just a quick glance on the OpenERP employee screen, " +"you\n" +" can easily find all the information you need for each " +"person;\n" +" contact data, job position, availability, etc.\n" +"

\n" +" " #. module: hr #: view:hr.employee:0 msgid "HR Settings" -msgstr "" +msgstr "ตั้งค่า HR" #. module: hr #: view:hr.employee:0 msgid "Citizenship & Other Info" -msgstr "" +msgstr "สัญชาติและข้อมูลอื่น ๆ" #. module: hr #: constraint:hr.department:0 msgid "Error! You cannot create recursive departments." -msgstr "" +msgstr "ข้อผิดพลาด! คุณไม่สามารถสร้างแผนกซ้ำ" #. module: hr #: field:hr.employee,address_id:0 @@ -636,7 +654,7 @@ msgstr "ที่อยู่ที่ทำงาน" #. module: hr #: view:hr.employee:0 msgid "Public Information" -msgstr "" +msgstr "ข้อมูลเปิดเผย" #. module: hr #: field:hr.employee,marital:0 @@ -646,12 +664,12 @@ msgstr "สถานภาพ" #. module: hr #: model:ir.model,name:hr.model_ir_actions_act_window msgid "ir.actions.act_window" -msgstr "" +msgstr "ir.actions.act_window" #. module: hr #: field:hr.employee,last_login:0 msgid "Latest Connection" -msgstr "" +msgstr "การเชื่อมต่อล่าสุด" #. module: hr #: field:hr.employee,image:0 @@ -661,7 +679,7 @@ msgstr "รูปภาพ" #. module: hr #: view:hr.config.settings:0 msgid "Cancel" -msgstr "" +msgstr "ยกเลิก" #. module: hr #: model:ir.actions.act_window,help:hr.open_module_tree_department @@ -676,17 +694,26 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" กด สร้างแผนก.\n" +"

\n" +" OpenERP's department structure is used to manage all " +"documents\n" +" related to employees by departments: expenses, timesheets,\n" +" leaves and holidays, recruitments, etc.\n" +"

\n" +" " #. module: hr #: help:hr.config.settings,module_hr_timesheet:0 msgid "This installs the module hr_timesheet." -msgstr "" +msgstr "ติดตั้งโมดูล hr_timesheet" #. module: hr #: help:hr.job,expected_employees:0 msgid "" "Expected number of employees for this job position after new recruitment." -msgstr "" +msgstr "จำนวนที่คาดหวังของพนักงานสำหรับตำแหน่งงานนี้หลังจากการรับสมัครใหม่" #. module: hr #: model:ir.actions.act_window,help:hr.view_department_form_installer @@ -710,7 +737,7 @@ msgstr "ข้อมูลส่วนบุคคล" #. module: hr #: field:hr.employee,city:0 msgid "City" -msgstr "" +msgstr "จังหวัด" #. module: hr #: field:hr.employee,passport_id:0 @@ -720,23 +747,24 @@ msgstr "หมายเลขพาสปอร์ต" #. module: hr #: field:hr.employee,mobile_phone:0 msgid "Work Mobile" -msgstr "" +msgstr "โทรศัพท์มือถือที่ทำงาน" #. module: hr #: selection:hr.job,state:0 msgid "Recruitement in Progress" -msgstr "" +msgstr "ความคืบหน้าในการสรรหาใหม่" #. module: hr #: field:hr.config.settings,module_account_analytic_analysis:0 msgid "" "Allow invoicing based on timesheets (the sale application will be installed)" msgstr "" +"อนุญาตให้มีการออกใบแจ้งหนี้ตาม timesheets (โปรแกรมการขายจะถูกติดตั้ง)" #. module: hr #: view:hr.employee.category:0 msgid "Employees Categories" -msgstr "" +msgstr "หมวดหมู่พนักงาน" #. module: hr #: field:hr.employee,address_home_id:0 @@ -746,7 +774,7 @@ msgstr "ที่อยู่ที่บ้าน" #. module: hr #: field:hr.config.settings,module_hr_timesheet:0 msgid "Manage timesheets" -msgstr "" +msgstr "จัดการ การบันทึกเวลา" #. module: hr #: model:ir.actions.act_window,name:hr.open_payroll_modules @@ -761,22 +789,22 @@ msgstr "โสด" #. module: hr #: field:hr.job,name:0 msgid "Job Name" -msgstr "" +msgstr "ชื่อตำแหน่งงาน" #. module: hr #: view:hr.job:0 msgid "In Position" -msgstr "" +msgstr "ในตำแหน่ง" #. module: hr #: help:hr.config.settings,module_hr_payroll:0 msgid "This installs the module hr_payroll." -msgstr "" +msgstr "ติดตั้งโมดุล hr_payroll" #. module: hr #: field:hr.config.settings,module_hr_contract:0 msgid "Record contracts per employee" -msgstr "" +msgstr "สัญญาที่บันทึกกับพนักงาน" #. module: hr #: view:hr.department:0 @@ -791,17 +819,17 @@ msgstr "สัญชาติ" #. module: hr #: view:hr.config.settings:0 msgid "Additional Features" -msgstr "" +msgstr "คุณสมบัติเพิ่มเติม" #. module: hr #: field:hr.employee,notes:0 msgid "Notes" -msgstr "บันทึก" +msgstr "บันทึกย่อ" #. module: hr #: model:ir.actions.act_window,name:hr.action2 msgid "Subordinate Hierarchy" -msgstr "" +msgstr "ลำดับรองลงมา" #. module: hr #: field:hr.employee,resource_id:0 @@ -844,23 +872,23 @@ msgstr "ชื่อแผนก" #. module: hr #: model:ir.ui.menu,name:hr.menu_hr_reporting_timesheet msgid "Reports" -msgstr "" +msgstr "รายงาน" #. module: hr #: field:hr.config.settings,module_hr_payroll:0 msgid "Manage payroll" -msgstr "" +msgstr "จัดการบัญชีเงินเดือน" #. module: hr #: view:hr.config.settings:0 #: model:ir.actions.act_window,name:hr.action_human_resources_configuration msgid "Configure Human Resources" -msgstr "" +msgstr "ตั้งค่าทรัพยากรบุคคล" #. module: hr #: selection:hr.job,state:0 msgid "No Recruitment" -msgstr "" +msgstr "ไม่มี การสรรหา" #. module: hr #: help:hr.employee,ssnid:0 @@ -870,17 +898,17 @@ msgstr "หมายเลขประกันสังคม" #. module: hr #: model:process.node,note:hr.process_node_openerpuser0 msgid "Creation of a OpenERP user" -msgstr "" +msgstr "การสร้างผู้ใช้ OpenERP" #. module: hr #: field:hr.employee,login:0 msgid "Login" -msgstr "" +msgstr "เข้าสู่ระบบ" #. module: hr #: field:hr.job,expected_employees:0 msgid "Total Forecasted Employees" -msgstr "" +msgstr "จำนวนพนักงานที่ต้องการสรรหา" #. module: hr #: help:hr.job,state:0 @@ -892,7 +920,7 @@ msgstr "" #. module: hr #: model:ir.model,name:hr.model_res_users msgid "Users" -msgstr "" +msgstr "ผู้ใช้" #. module: hr #: model:ir.actions.act_window,name:hr.action_hr_job @@ -923,22 +951,22 @@ msgstr "" #: view:hr.employee:0 #: field:hr.employee,coach_id:0 msgid "Coach" -msgstr "" +msgstr "โค้ช" #. module: hr #: sql_constraint:hr.job:0 msgid "The name of the job position must be unique per company!" -msgstr "" +msgstr "ชื่อของตำแหน่งงานจะต้องไม่ซ้ำกันใน บริษัท!" #. module: hr #: help:hr.config.settings,module_hr_expense:0 msgid "This installs the module hr_expense." -msgstr "" +msgstr "ติดตั้งโมดูล module hr_expense." #. module: hr #: model:ir.model,name:hr.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr #: field:hr.department,manager_id:0 @@ -950,17 +978,17 @@ msgstr "ผู้จัดการ" #. module: hr #: selection:hr.employee,marital:0 msgid "Widower" -msgstr "" +msgstr "ม่าย" #. module: hr #: field:hr.employee,child_ids:0 msgid "Subordinates" -msgstr "" +msgstr "ผู้ใต้บังคับบัญชา" #. module: hr #: view:hr.config.settings:0 msgid "Apply" -msgstr "" +msgstr "นำไปใช้" #~ msgid "Error! You can not create recursive departments." #~ msgstr "ผิดพลาด! คุณไม่สามารถสร้างแผนกซ้อนกันได้" diff --git a/addons/hr/i18n/tlh.po b/addons/hr/i18n/tlh.po index 407416e62b3..6f2acf8f9d7 100644 --- a/addons/hr/i18n/tlh.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\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 773f14afbb7..90e619ec137 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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:24+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -34,7 +34,7 @@ msgstr "Gereksinimler" #. module: hr #: model:process.transition,name:hr.process_transition_contactofemployee0 msgid "Link the employee to information" -msgstr "Personeli danışma bağlantısı" +msgstr "Çalışanı danışmaya bağla" #. module: hr #: field:hr.employee,sinid:0 @@ -71,7 +71,7 @@ msgstr "Zaman İzleme" #: view:hr.employee:0 #: view:hr.job:0 msgid "Group By..." -msgstr "Gruplandır..." +msgstr "Gruplandır İle..." #. module: hr #: model:ir.actions.act_window,name:hr.view_department_form_installer @@ -81,12 +81,12 @@ msgstr "Bölümlerini Oluştur" #. module: hr #: help:hr.job,no_of_employee:0 msgid "Number of employees currently occupying this job position." -msgstr "Şu anda bu pozisyonda bulunan çalışan sayısı." +msgstr "Şu anda bu pozisyonda bulunan personel sayısı." #. module: hr #: field:hr.config.settings,module_hr_evaluation:0 msgid "Organize employees periodic evaluation" -msgstr "Çalışanların dönemsel değerlendirilmesi" +msgstr "Personelin dönemsel değerlendirilmesi" #. module: hr #: view:hr.department:0 @@ -96,7 +96,7 @@ msgstr "Çalışanların dönemsel değerlendirilmesi" #: field:hr.job,department_id:0 #: model:ir.model,name:hr.model_hr_department msgid "Department" -msgstr "Bölüm" +msgstr "Departmen" #. module: hr #: field:hr.employee,work_email:0 @@ -130,7 +130,7 @@ msgstr "Seçme İşleminde" #. module: hr #: field:hr.job,message_unread:0 msgid "Unread Messages" -msgstr "Okunmamış mesajlar" +msgstr "Okunmamış Mesajlar" #. module: hr #: field:hr.department,company_id:0 @@ -143,7 +143,7 @@ msgstr "Şirket" #. module: hr #: field:hr.job,no_of_recruitment:0 msgid "Expected in Recruitment" -msgstr "Seçim için Bekleniyor" +msgstr "Seçim için Bekleyen" #. module: hr #: field:res.users,employee_ids:0 @@ -214,7 +214,7 @@ msgstr "Bu hr_timesheet_sheet modülünü kurar" #. module: hr #: view:hr.employee:0 msgid "Mobile:" -msgstr "Cep:" +msgstr "Mobil:" #. module: hr #: view:hr.employee:0 @@ -237,7 +237,7 @@ msgid "" "The Related user field on the Employee form allows to link the OpenERP user " "(and her rights) to the employee." msgstr "" -"Çalışan formundaki İlişkili kullanıcı alanı OpenERP kullanıcısının çalışana " +"Personel formundaki İlişkili kullanıcı alanı OpenERP kullanıcısının çalışana " "bağlanmasını sağlar." #. module: hr @@ -284,19 +284,19 @@ msgstr "Ofis Konumu" #. module: hr #: field:hr.job,message_follower_ids:0 msgid "Followers" -msgstr "Takipçiler" +msgstr "İzleyiciler" #. module: hr #: view:hr.employee:0 #: model:ir.model,name:hr.model_hr_employee #: model:process.node,name:hr.process_node_employee0 msgid "Employee" -msgstr "Çalışan" +msgstr "Personel" #. module: hr #: model:process.node,note:hr.process_node_employeecontact0 msgid "Other information" -msgstr "Diğer Bilgiler" +msgstr "Diğer Bilgileri" #. module: hr #: help:hr.employee,image_small:0 @@ -399,7 +399,7 @@ msgstr "Üst Kategori" #: model:ir.actions.act_window,name:hr.open_module_tree_department #: model:ir.ui.menu,name:hr.menu_hr_department_tree msgid "Departments" -msgstr "Bölümler" +msgstr "Departmenler" #. module: hr #: model:process.node,name:hr.process_node_employeecontact0 @@ -481,7 +481,7 @@ msgstr "Küçük boyutlu fotoğraf" #: view:hr.employee.category:0 #: model:ir.model,name:hr.model_hr_employee_category msgid "Employee Category" -msgstr "Çalışan Kategorisi" +msgstr "Personel Kategorisi" #. module: hr #: field:hr.employee,category_ids:0 @@ -546,7 +546,7 @@ msgstr "Tatil, izin ve tahsis isteklerini yönet" #. module: hr #: field:hr.department,child_ids:0 msgid "Child Departments" -msgstr "Alt Bölümler" +msgstr "Alt Departmenler" #. module: hr #: view:hr.employee:0 @@ -563,7 +563,7 @@ msgstr "Diğer ID" #. module: hr #: model:process.process,name:hr.process_process_employeecontractprocess0 msgid "Employee Contract" -msgstr "Çalışan Sözleşmesi" +msgstr "Personel Sözleşmesi" #. module: hr #: view:hr.config.settings:0 @@ -583,7 +583,7 @@ msgstr "SGK No" #. module: hr #: field:hr.job,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçi" +msgstr "Bir İzleyicidir" #. module: hr #: field:hr.config.settings,module_hr_recruitment:0 @@ -642,9 +642,9 @@ msgid "" " " msgstr "" "

\n" -" Yeni bir çalışan eklemek için tıklayınız.\n" +" Yeni bir personel eklemek için tıklayınız.\n" "

\n" -" OpenERP çalışan ekranında sadece hızlı bir bakış ile,\n" +" OpenERP personel ekranında sadece hızlı bir bakış ile,\n" " her kişi için gerekli tüm bilgileri kolayca bulabilirsiniz;\n" " kişisel verileri, iş pozisyonu, uygunluğu, vb\n" "

\n" @@ -716,7 +716,7 @@ msgstr "" "

\n" " Bir departman oluşturmak için tıklayın.\n" "

\n" -" OpenERP bölüm yapısı bölümlere göre çalışanlarla ilgili tüm\n" +" OpenERP bölüm yapısı bölümlere göre personelle ilgili tüm\n" " tüm belgeleri yönetmek için kullanılır:giderler, zaman " "çizelgeleri,\n" " izinler ve tatiller, işe alımlar, vb\n" @@ -761,12 +761,12 @@ msgstr "" #. module: hr #: view:hr.employee:0 msgid "Personal Information" -msgstr "Kişisel Bilgiler" +msgstr "Kişisel Bilgileri" #. module: hr #: field:hr.employee,city:0 msgid "City" -msgstr "İli" +msgstr "İl" #. module: hr #: field:hr.employee,passport_id:0 @@ -776,7 +776,7 @@ msgstr "Pasaport No" #. module: hr #: field:hr.employee,mobile_phone:0 msgid "Work Mobile" -msgstr "İş Cep" +msgstr "İş Mobil" #. module: hr #: selection:hr.job,state:0 @@ -834,12 +834,12 @@ msgstr "Bu hr_payroll modülünü kurar." #. module: hr #: field:hr.config.settings,module_hr_contract:0 msgid "Record contracts per employee" -msgstr "Her çalışan içi sözleşme kaydet" +msgstr "Her personel içi sözleşme kaydet" #. module: hr #: view:hr.department:0 msgid "department" -msgstr "bölüm" +msgstr "departmen" #. module: hr #: field:hr.employee,country_id:0 @@ -887,7 +887,7 @@ msgstr "Cinsiyeti" #: model:ir.actions.act_window,name:hr.open_view_employee_list_my #: model:ir.ui.menu,name:hr.menu_open_view_employee_list_my msgid "Employees" -msgstr "Çalışanlar" +msgstr "Personeller" #. module: hr #: help:hr.employee,sinid:0 @@ -897,7 +897,7 @@ msgstr "Sosyal Güvenlik Numarası" #. module: hr #: field:hr.department,name:0 msgid "Department Name" -msgstr "Bölüm Adı Adı" +msgstr "Bölüm Adı" #. module: hr #: model:ir.ui.menu,name:hr.menu_hr_reporting_timesheet diff --git a/addons/hr/i18n/uk.po b/addons/hr/i18n/uk.po index 360be9148a0..a3919fe3bef 100644 --- a/addons/hr/i18n/uk.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 a73df2a5f9d..019dd236920 100644 --- a/addons/hr/i18n/vi.po +++ b/addons/hr/i18n/vi.po @@ -19,8 +19,8 @@ msgstr "" "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 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr #: model:process.node,name:hr.process_node_openerpuser0 @@ -64,6 +64,8 @@ msgid "" "128x128px image, with aspect ratio preserved. Use this field in form views " "or some kanban views." msgstr "" +"Ảnh cỡ trung của nhân viên. Kích thước sẽ tự động thay đổi thành 128x128 px " +"và giữ nguyên tỉ lệ. Hình này xuất hiện khi xem ở dạng form hoặc kanban." #. module: hr #: view:hr.config.settings:0 @@ -131,7 +133,7 @@ msgstr "Đang tuyển dụng" #. module: hr #: field:hr.job,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Tin chưa đọc" #. module: hr #: field:hr.department,company_id:0 diff --git a/addons/hr/i18n/zh_CN.po b/addons/hr/i18n/zh_CN.po index d5a8a8ca5ee..5da9dea7cfe 100644 --- a/addons/hr/i18n/zh_CN.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr #: constraint:hr.employee:0 diff --git a/addons/hr/i18n/zh_TW.po b/addons/hr/i18n/zh_TW.po index 3374ca052bf..051ecd3adef 100644 --- a/addons/hr/i18n/zh_TW.po +++ b/addons/hr/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-16 05:31+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 d418c747d88..637ce6a7eb6 100644 --- a/addons/hr_attendance/i18n/ar.po +++ b/addons/hr_attendance/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 588d4399cc5..a78edbe949a 100644 --- a/addons/hr_attendance/i18n/bg.po +++ b/addons/hr_attendance/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 1c6d4c3b32a..4bebf8935df 100644 --- a/addons/hr_attendance/i18n/bs.po +++ b/addons/hr_attendance/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 140c401fc4b..36e80a6c55a 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 f1e7233764b..4233350fc7c 100644 --- a/addons/hr_attendance/i18n/cs.po +++ b/addons/hr_attendance/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: czech\n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/da.po b/addons/hr_attendance/i18n/da.po index e14b6f867a0..3cc185ea21e 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 b5f525d3fbb..cbf1302f5f8 100644 --- a/addons/hr_attendance/i18n/de.po +++ b/addons/hr_attendance/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 c610a3c2ebe..cb82426dccd 100644 --- a/addons/hr_attendance/i18n/el.po +++ b/addons/hr_attendance/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/hr_attendance/i18n/en_GB.po b/addons/hr_attendance/i18n/en_GB.po index 401f5fa29c6..d94e780a58c 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 fd033e72cc1..411d897e5b8 100644 --- a/addons/hr_attendance/i18n/es.po +++ b/addons/hr_attendance/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 8802b54d304..f5b86edeb8d 100644 --- a/addons/hr_attendance/i18n/es_AR.po +++ b/addons/hr_attendance/i18n/es_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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 393eaa3747b..74ea9dc421a 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 49c5659ad8f..bf094c9fa9a 100644 --- a/addons/hr_attendance/i18n/es_CR.po +++ b/addons/hr_attendance/i18n/es_CR.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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: hr_attendance diff --git a/addons/hr_attendance/i18n/es_EC.po b/addons/hr_attendance/i18n/es_EC.po index 9e9a7d28a7b..cad9a6d0c33 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 21418bf272a..a256a375240 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 14fac2d15d2..2e2e92c5591 100644 --- a/addons/hr_attendance/i18n/et.po +++ b/addons/hr_attendance/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 92b6e56c6c6..efa54b7ed29 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 c7afae9091b..c4ca3efd59c 100644 --- a/addons/hr_attendance/i18n/fr.po +++ b/addons/hr_attendance/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #, python-format #~ msgid "The Sign-in date must be in the past" @@ -56,6 +56,7 @@ msgstr "Présence" #, python-format msgid "Last sign in: %s,
%s.
Click to sign out." msgstr "" +"Dernière connection: %s,
%s.
Cliquez pour vous déconnecter." #. module: hr_attendance #: constraint:hr.attendance:0 @@ -346,7 +347,7 @@ msgstr "Janvier" #: code:addons/hr_attendance/wizard/hr_attendance_error.py:49 #, python-format msgid "No Data Available !" -msgstr "" +msgstr "Aucune donnée disponible!" #. module: hr_attendance #: selection:hr.attendance.month,month:0 diff --git a/addons/hr_attendance/i18n/gl.po b/addons/hr_attendance/i18n/gl.po index 25dbd1cabf6..8afaa91331c 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 0a67fe51d34..5ad787b1950 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 11ddf97c3df..0d3701ae6d2 100644 --- a/addons/hr_attendance/i18n/hr.po +++ b/addons/hr_attendance/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 b5c040625ac..8c6e7282d15 100644 --- a/addons/hr_attendance/i18n/hu.po +++ b/addons/hr_attendance/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 66da9de080b..3b922005dd4 100644 --- a/addons/hr_attendance/i18n/id.po +++ b/addons/hr_attendance/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 0beed5be402..75dc5d950c2 100644 --- a/addons/hr_attendance/i18n/it.po +++ b/addons/hr_attendance/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:05+0000\n" "PO-Revision-Date: 2012-12-15 14:05+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 13441f8e5f3..78e94bae996 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 a181a9b8151..dfb61323711 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 ca23dd39b10..4366b167648 100644 --- a/addons/hr_attendance/i18n/lt.po +++ b/addons/hr_attendance/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 2eb7498a67f..119b05c88d2 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 3d7fbee605d..c49fb13691c 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month @@ -30,7 +30,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 +435,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_attendance/i18n/mn.po b/addons/hr_attendance/i18n/mn.po index f7000fa353a..06ac535c922 100644 --- a/addons/hr_attendance/i18n/mn.po +++ b/addons/hr_attendance/i18n/mn.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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 b570d68edf0..da6188f0931 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 d5469efa3ed..32483963a77 100644 --- a/addons/hr_attendance/i18n/nl.po +++ b/addons/hr_attendance/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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month @@ -415,7 +415,7 @@ msgstr "hr.config.settings" #: code:addons/hr_attendance/static/src/js/attendance.js:36 #, python-format msgid "Click to Sign In at %s." -msgstr "Klik km in te loggen als %s." +msgstr "Klik om in te loggen als %s." #. module: hr_attendance #: field:hr.action.reason,action_type:0 diff --git a/addons/hr_attendance/i18n/nl_BE.po b/addons/hr_attendance/i18n/nl_BE.po index 56730edbc31..a0629213c8f 100644 --- a/addons/hr_attendance/i18n/nl_BE.po +++ b/addons/hr_attendance/i18n/nl_BE.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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 757468432ca..7284d2b8fd0 100644 --- a/addons/hr_attendance/i18n/pl.po +++ b/addons/hr_attendance/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 8a9a041aee9..746acfb0100 100644 --- a/addons/hr_attendance/i18n/pt.po +++ b/addons/hr_attendance/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 100098ec411..a36218ece42 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 265a25de644..75b56d4f061 100644 --- a/addons/hr_attendance/i18n/ro.po +++ b/addons/hr_attendance/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 228f370cd6c..28ffdfc95be 100644 --- a/addons/hr_attendance/i18n/ru.po +++ b/addons/hr_attendance/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 3833dbedd55..511f7ba08b4 100644 --- a/addons/hr_attendance/i18n/sl.po +++ b/addons/hr_attendance/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 ae3e9200d4d..6aa2ade0c4c 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-16 05:33+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 ec07dd1d860..4c4f5620a73 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 753b273b393..ebf7f88c4be 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 678302f05a5..3f13378a36f 100644 --- a/addons/hr_attendance/i18n/sv.po +++ b/addons/hr_attendance/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month diff --git a/addons/hr_attendance/i18n/th.po b/addons/hr_attendance/i18n/th.po index 673d5e7ddd1..b896677db15 100644 --- a/addons/hr_attendance/i18n/th.po +++ b/addons/hr_attendance/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-06-21 05:35+0000\n" -"X-Generator: Launchpad (build 16677)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 42f82680cea..42cfebe1efb 100644 --- a/addons/hr_attendance/i18n/tlh.po +++ b/addons/hr_attendance/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 d4c8cf258ae..9c2bed26fc6 100644 --- a/addons/hr_attendance/i18n/tr.po +++ b/addons/hr_attendance/i18n/tr.po @@ -13,13 +13,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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month msgid "Print Monthly Attendance Report" -msgstr "Aylık Devamlılık Raporunu yazdır" +msgstr "Aylık Devamlılık Raporunu Yazdır" #. module: hr_attendance #: view:hr.attendance:0 @@ -29,7 +29,7 @@ msgstr "İK Devamlılık Ara" #. module: hr_attendance #: field:hr.employee,last_sign:0 msgid "Last Sign" -msgstr "" +msgstr "Son Giriş" #. module: hr_attendance #: view:hr.attendance:0 @@ -43,12 +43,12 @@ msgstr "Devamlılık" #: code:addons/hr_attendance/static/src/js/attendance.js:34 #, python-format msgid "Last sign in: %s,
%s.
Click to sign out." -msgstr "" +msgstr "Son giriş: %s,
%s.
Çıkış için tıklayın." #. module: hr_attendance #: constraint:hr.attendance:0 msgid "Error ! Sign in (resp. Sign out) must follow Sign out (resp. Sign in)" -msgstr "" +msgstr "Hata! Giriş (Çıkış) Çıkışı (Giriş) izlemelidir" #. module: hr_attendance #: help:hr.action.reason,name:0 @@ -71,7 +71,7 @@ msgstr "Devamlılık Raporunu Aylık olara Yazdır" #: code:addons/hr_attendance/report/timesheet.py:120 #, python-format msgid "Attendances by Week" -msgstr "" +msgstr "Haftalık Devamlılık" #. module: hr_attendance #: selection:hr.action.reason,action_type:0 @@ -86,7 +86,7 @@ msgstr "Gecikme" #. module: hr_attendance #: view:hr.attendance:0 msgid "Group By..." -msgstr "Gruplandır..." +msgstr "Gruplandır İle..." #. module: hr_attendance #: selection:hr.attendance.month,month:0 @@ -96,7 +96,7 @@ msgstr "Ekim" #. module: hr_attendance #: field:hr.employee,attendance_access:0 msgid "Attendance Access" -msgstr "" +msgstr "Katılım Erişimi" #. module: hr_attendance #: code:addons/hr_attendance/hr_attendance.py:154 @@ -110,7 +110,7 @@ msgstr "Çıkış" #: code:addons/hr_attendance/wizard/hr_attendance_error.py:49 #, python-format msgid "No records are found for your selection!" -msgstr "" +msgstr "Seçiminiz için hiç kayıt bulunamadı!" #. module: hr_attendance #: view:hr.attendance.error:0 @@ -148,7 +148,7 @@ msgstr "Giriş" #: field:hr.attendance.error,init_date:0 #: field:hr.attendance.week,init_date:0 msgid "Starting Date" -msgstr "Başlangıç Tarihi" +msgstr "Başlama Tarihi" #. module: hr_attendance #: model:ir.actions.act_window,name:hr_attendance.open_view_attendance @@ -176,7 +176,7 @@ msgstr "Uyarı" #. module: hr_attendance #: help:hr.config.settings,group_hr_attendance:0 msgid "Allocates attendance group to all users." -msgstr "" +msgstr "Katılım grubunu bütün kullanıcılara tahsis eder." #. module: hr_attendance #: view:hr.attendance:0 @@ -192,7 +192,7 @@ msgstr "Haziran" #: code:addons/hr_attendance/report/attendance_by_month.py:190 #, python-format msgid "Attendances by Month" -msgstr "" +msgstr "Aylık Devamlılık" #. module: hr_attendance #: model:ir.actions.act_window,name:hr_attendance.action_hr_attendance_week @@ -248,7 +248,7 @@ msgstr "Tarih" #. module: hr_attendance #: field:hr.config.settings,group_hr_attendance:0 msgid "Track attendances for all employees" -msgstr "" +msgstr "Devamlılığı bütün çalışanlar için izle" #. module: hr_attendance #: selection:hr.attendance.month,month:0 @@ -332,7 +332,7 @@ msgstr "Ocak" #: code:addons/hr_attendance/wizard/hr_attendance_error.py:49 #, python-format msgid "No Data Available !" -msgstr "" +msgstr "Hiç veri yok !" #. module: hr_attendance #: selection:hr.attendance.month,month:0 @@ -364,7 +364,7 @@ msgstr "Zaman İzleme" #: model:ir.actions.act_window,name:hr_attendance.open_view_attendance_reason #: model:ir.ui.menu,name:hr_attendance.menu_open_view_attendance_reason msgid "Attendance Reasons" -msgstr "Devamlılık nedenleri" +msgstr "Devamlılık Nedenleri" #. module: hr_attendance #: selection:hr.attendance.month,month:0 @@ -406,14 +406,14 @@ msgstr "Haftalık Devamlılık Raporunu yazdır" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr_attendance #. openerp-web #: code:addons/hr_attendance/static/src/js/attendance.js:36 #, python-format msgid "Click to Sign In at %s." -msgstr "" +msgstr "%s te Giriş için tıklayın." #. module: hr_attendance #: field:hr.action.reason,action_type:0 @@ -432,6 +432,8 @@ msgid "" "You tried to %s with a date anterior to another event !\n" "Try to contact the HR Manager to correct attendances." msgstr "" +"Başka bir etkinliğin içinde olan bir tarihli %s yapmaya çalıştınız !\n" +"Devamlılıkları düzeltmek için İK Yöneticisine danışın." #. module: hr_attendance #: selection:hr.attendance.month,month:0 @@ -462,7 +464,7 @@ msgstr "" #: view:hr.attendance.month:0 #: view:hr.attendance.week:0 msgid "or" -msgstr "" +msgstr "ya da" #. module: hr_attendance #: help:hr.attendance,action_desc:0 diff --git a/addons/hr_attendance/i18n/uk.po b/addons/hr_attendance/i18n/uk.po index ee5783fa7bb..72c6a63378a 100644 --- a/addons/hr_attendance/i18n/uk.po +++ b/addons/hr_attendance/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 3e19be76d57..797df557569 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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 21b78d06d6f..1ad3e1cbd4b 100644 --- a/addons/hr_attendance/i18n/zh_CN.po +++ b/addons/hr_attendance/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_attendance #: model:ir.model,name:hr_attendance.model_hr_attendance_month @@ -95,7 +95,7 @@ msgstr "10月" #. module: hr_attendance #: field:hr.employee,attendance_access:0 msgid "Attendance Access" -msgstr "" +msgstr "查看 出席人数" #. module: hr_attendance #: code:addons/hr_attendance/hr_attendance.py:154 diff --git a/addons/hr_attendance/i18n/zh_TW.po b/addons/hr_attendance/i18n/zh_TW.po index 0e79d40f798..657ece0cfaa 100644 --- a/addons/hr_attendance/i18n/zh_TW.po +++ b/addons/hr_attendance/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-16 05:34+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:27+0000\n" +"X-Generator: Launchpad (build 16753)\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 72e031a7687..e6d9c36f35e 100644 --- a/addons/hr_contract/i18n/ar.po +++ b/addons/hr_contract/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 0d931de5c29..9373bb9d033 100644 --- a/addons/hr_contract/i18n/bg.po +++ b/addons/hr_contract/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 6ba06787bc2..16497b758b0 100644 --- a/addons/hr_contract/i18n/bs.po +++ b/addons/hr_contract/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 56dc285683b..c32d2b0a475 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 b8cfc60ff53..213e941b85e 100644 --- a/addons/hr_contract/i18n/cs.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/da.po b/addons/hr_contract/i18n/da.po index d7f6c15977d..fed788a3f71 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 21e52e34194..f1b861558aa 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 cbf335a832a..e86a4c997ad 100644 --- a/addons/hr_contract/i18n/el.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/hr_contract/i18n/en_GB.po b/addons/hr_contract/i18n/en_GB.po index bd5af314bbd..9ab18779da2 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 279f32a88c9..ab20875a0ff 100644 --- a/addons/hr_contract/i18n/es.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_contract #: field:hr.contract,wage:0 @@ -86,7 +86,7 @@ msgstr "Trabajo" #. module: hr_contract #: field:hr.contract,advantages:0 msgid "Advantages" -msgstr "Ventajas" +msgstr "Complementos" #. module: hr_contract #: view:hr.contract:0 diff --git a/addons/hr_contract/i18n/es_AR.po b/addons/hr_contract/i18n/es_AR.po index 7164dc841c3..0242537e7b0 100644 --- a/addons/hr_contract/i18n/es_AR.po +++ b/addons/hr_contract/i18n/es_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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 4cc6ec9ea1d..4609f655306 100644 --- a/addons/hr_contract/i18n/es_CR.po +++ b/addons/hr_contract/i18n/es_CR.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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: hr_contract diff --git a/addons/hr_contract/i18n/es_EC.po b/addons/hr_contract/i18n/es_EC.po index ad1db7ab379..fcdf084a72c 100644 --- a/addons/hr_contract/i18n/es_EC.po +++ b/addons/hr_contract/i18n/es_EC.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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 63f57d844d5..1430478ba16 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 3cff04e3d54..9a799dfa559 100644 --- a/addons/hr_contract/i18n/et.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 7df8407a49b..7a263504259 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 2664361e8f4..9590f48f73e 100644 --- a/addons/hr_contract/i18n/fr.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_contract #: field:hr.contract,wage:0 @@ -102,7 +102,7 @@ msgstr "Types de contrat" #. module: hr_contract #: view:hr.employee:0 msgid "Medical Exam" -msgstr "" +msgstr "Visite médicale" #. module: hr_contract #: field:hr.contract,date_end:0 @@ -163,7 +163,7 @@ msgstr "Heures de travail" #. module: hr_contract #: view:hr.contract:0 msgid "Salary and Advantages" -msgstr "" +msgstr "Salaire et avantages" #. module: hr_contract #: field:hr.contract,job_id:0 @@ -173,7 +173,7 @@ msgstr "Titre du poste" #. module: hr_contract #: constraint:hr.contract:0 msgid "Error! Contract start-date must be less than contract end-date." -msgstr "" +msgstr "Erreur! La date de début du contrat doit être avant la date de fin." #. module: hr_contract #: field:hr.employee,manager:0 @@ -193,7 +193,7 @@ msgstr "Visa n°" #. module: hr_contract #: field:hr.employee,vehicle_distance:0 msgid "Home-Work Dist." -msgstr "" +msgstr "Distance domicile-travail" #. module: hr_contract #: field:hr.employee,place_of_birth:0 @@ -203,7 +203,7 @@ msgstr "Lieu de Naissance" #. module: hr_contract #: view:hr.contract:0 msgid "Trial Period Duration" -msgstr "" +msgstr "Durée de la période d'essai" #. module: hr_contract #: view:hr.contract:0 diff --git a/addons/hr_contract/i18n/gl.po b/addons/hr_contract/i18n/gl.po index 259516e989c..34a771b3b30 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 97f8bb5d732..9b41647c6ff 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 02ef0f77fd9..c2645360b90 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 1915e30ff06..bad0ee84276 100644 --- a/addons/hr_contract/i18n/hr.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 1d92a471a1e..04e48b4a6e7 100644 --- a/addons/hr_contract/i18n/hu.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 bf8662b8023..b57fcb0adf8 100644 --- a/addons/hr_contract/i18n/id.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 fae0137947a..f0924f001bf 100644 --- a/addons/hr_contract/i18n/it.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 9da3f60a70a..324091c82ba 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 60cef276558..1fdc0bd6913 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 7410b60a580..e5d1e2318fa 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 719fb701f23..7fd41df9758 100644 --- a/addons/hr_contract/i18n/lt.po +++ b/addons/hr_contract/i18n/lt.po @@ -13,45 +13,45 @@ msgstr "" "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 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_contract #: field:hr.contract,wage:0 msgid "Wage" -msgstr "" +msgstr "Alga" #. module: hr_contract #: view:hr.contract:0 msgid "Information" -msgstr "" +msgstr "Informacija" #. module: hr_contract #: field:hr.contract,trial_date_start:0 msgid "Trial Start Date" -msgstr "" +msgstr "Bandomojo laikotarpio pradžia" #. module: hr_contract #: field:hr.employee,vehicle:0 msgid "Company Vehicle" -msgstr "" +msgstr "Įmonės automobilis" #. module: hr_contract #: view:hr.contract:0 msgid "Group By..." -msgstr "" +msgstr "Grupuoti pagal..." #. module: hr_contract #: field:hr.contract,department_id:0 msgid "Department" -msgstr "" +msgstr "Padalinys" #. module: hr_contract #: view:hr.contract:0 #: field:hr.contract,employee_id:0 #: model:ir.model,name:hr_contract.model_hr_employee msgid "Employee" -msgstr "" +msgstr "Darbuotojas" #. module: hr_contract #: view:hr.contract:0 @@ -66,12 +66,12 @@ msgstr "" #: model:ir.actions.act_window,name:hr_contract.action_hr_contract #: model:ir.ui.menu,name:hr_contract.hr_menu_contract msgid "Contracts" -msgstr "" +msgstr "Darbo sutartys" #. module: hr_contract #: field:hr.employee,children:0 msgid "Number of Children" -msgstr "" +msgstr "Vaikų skaičius" #. module: hr_contract #: help:hr.employee,contract_id:0 @@ -81,60 +81,60 @@ msgstr "" #. module: hr_contract #: view:hr.contract:0 msgid "Job" -msgstr "" +msgstr "Pareigybės" #. module: hr_contract #: field:hr.contract,advantages:0 msgid "Advantages" -msgstr "" +msgstr "Priedai" #. module: hr_contract #: view:hr.contract:0 msgid "Work Permit" -msgstr "" +msgstr "Leidimas dirbti" #. module: hr_contract #: model:ir.actions.act_window,name:hr_contract.action_hr_contract_type #: model:ir.ui.menu,name:hr_contract.hr_menu_contract_type msgid "Contract Types" -msgstr "" +msgstr "Sutarties tipai" #. module: hr_contract #: view:hr.employee:0 msgid "Medical Exam" -msgstr "" +msgstr "Medicininis pažymėjimas" #. module: hr_contract #: field:hr.contract,date_end:0 msgid "End Date" -msgstr "" +msgstr "Pabaigos data" #. module: hr_contract #: help:hr.contract,wage:0 msgid "Basic Salary of the employee" -msgstr "" +msgstr "Bazinė darbuotojo alga" #. module: hr_contract #: view:hr.contract:0 #: field:hr.contract,name:0 msgid "Contract Reference" -msgstr "" +msgstr "Numeris" #. module: hr_contract #: help:hr.employee,vehicle_distance:0 msgid "In kilometers" -msgstr "" +msgstr "Kilometrais" #. module: hr_contract #: view:hr.contract:0 #: field:hr.contract,notes:0 msgid "Notes" -msgstr "" +msgstr "Pastabos" #. module: hr_contract #: field:hr.contract,permit_no:0 msgid "Work Permit No" -msgstr "" +msgstr "Leidimo dirbti Nr" #. module: hr_contract #: view:hr.contract:0 @@ -143,7 +143,7 @@ msgstr "" #: model:ir.model,name:hr_contract.model_hr_contract #: model:ir.ui.menu,name:hr_contract.next_id_56 msgid "Contract" -msgstr "" +msgstr "Darbo sutartis" #. module: hr_contract #: view:hr.contract:0 @@ -152,23 +152,23 @@ msgstr "" #: field:hr.contract.type,name:0 #: model:ir.model,name:hr_contract.model_hr_contract_type msgid "Contract Type" -msgstr "" +msgstr "Sutarties tipas" #. module: hr_contract #: view:hr.contract:0 #: field:hr.contract,working_hours:0 msgid "Working Schedule" -msgstr "" +msgstr "Darbo grafikas" #. module: hr_contract #: view:hr.contract:0 msgid "Salary and Advantages" -msgstr "" +msgstr "Atlyginimas ir priedai" #. module: hr_contract #: field:hr.contract,job_id:0 msgid "Job Title" -msgstr "" +msgstr "Pareigos" #. module: hr_contract #: constraint:hr.contract:0 @@ -178,52 +178,52 @@ msgstr "" #. module: hr_contract #: field:hr.employee,manager:0 msgid "Is a Manager" -msgstr "" +msgstr "Padalinio vadovas" #. module: hr_contract #: field:hr.contract,date_start:0 msgid "Start Date" -msgstr "" +msgstr "Pradžios data" #. module: hr_contract #: field:hr.contract,visa_no:0 msgid "Visa No" -msgstr "" +msgstr "Vizos Nr" #. module: hr_contract #: field:hr.employee,vehicle_distance:0 msgid "Home-Work Dist." -msgstr "" +msgstr "Atstumas iki darbo" #. module: hr_contract #: field:hr.employee,place_of_birth:0 msgid "Place of Birth" -msgstr "" +msgstr "Gimimo vieta" #. module: hr_contract #: view:hr.contract:0 msgid "Trial Period Duration" -msgstr "" +msgstr "Bandomasis laikotarpis" #. module: hr_contract #: view:hr.contract:0 msgid "Duration" -msgstr "" +msgstr "Laikotarpis" #. module: hr_contract #: field:hr.contract,visa_expire:0 msgid "Visa Expire Date" -msgstr "" +msgstr "Viza galioja iki" #. module: hr_contract #: field:hr.employee,medic_exam:0 msgid "Medical Examination Date" -msgstr "" +msgstr "Medicininio pažymėjimo data" #. module: hr_contract #: field:hr.contract,trial_date_end:0 msgid "Trial End Date" -msgstr "" +msgstr "Bandomojo laikotarpio pabaiga" #. module: hr_contract #: view:hr.contract.type:0 diff --git a/addons/hr_contract/i18n/lv.po b/addons/hr_contract/i18n/lv.po index bc1ab0ce27c..d069e3f3e21 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 80e711bdede..e31572282ec 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_contract #: field:hr.contract,wage:0 @@ -45,7 +45,7 @@ msgstr "Групирај По..." #. module: hr_contract #: field:hr.contract,department_id:0 msgid "Department" -msgstr "Сектор" +msgstr "Одделение" #. module: hr_contract #: view:hr.contract:0 @@ -87,7 +87,7 @@ msgstr "Работно Место" #. module: hr_contract #: field:hr.contract,advantages:0 msgid "Advantages" -msgstr "Придобивки" +msgstr "Предности" #. module: hr_contract #: view:hr.contract:0 @@ -130,7 +130,7 @@ msgstr "во километри" #: view:hr.contract:0 #: field:hr.contract,notes:0 msgid "Notes" -msgstr "Забелешки" +msgstr "Белешки" #. module: hr_contract #: field:hr.contract,permit_no:0 @@ -181,7 +181,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 @@ -211,12 +211,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_contract/i18n/mn.po b/addons/hr_contract/i18n/mn.po index a0bb4d8d07c..81fd5821cde 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 7e2660b9abd..9e4c0ee8f3a 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 160c23b9591..97c987f2bc9 100644 --- a/addons/hr_contract/i18n/nl.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 f5edbd063ef..62a38c2b567 100644 --- a/addons/hr_contract/i18n/nl_BE.po +++ b/addons/hr_contract/i18n/nl_BE.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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 04e8e6a28e2..891c6f598b5 100644 --- a/addons/hr_contract/i18n/pl.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 098ea7c7e56..d46311865f4 100644 --- a/addons/hr_contract/i18n/pt.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 e7da832bd8f..abdc7854b51 100644 --- a/addons/hr_contract/i18n/pt_BR.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 8b886052038..11bc20c8cab 100644 --- a/addons/hr_contract/i18n/ro.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 7df8c0a1844..366dafcc6c6 100644 --- a/addons/hr_contract/i18n/ru.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 b4d3d60bd36..fae13c97892 100644 --- a/addons/hr_contract/i18n/sl.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 9e098daaee6..edfc78ad3e1 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 7e77e97b69c..81194467ef5 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 2b752f4fafd..2cced3032c8 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 54812d7bbf6..aa92009b67d 100644 --- a/addons/hr_contract/i18n/sv.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_contract #: field:hr.contract,wage:0 diff --git a/addons/hr_contract/i18n/th.po b/addons/hr_contract/i18n/th.po index faa98497b01..88e2ec032a1 100644 --- a/addons/hr_contract/i18n/th.po +++ b/addons/hr_contract/i18n/th.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-06-16 04:38+0000\n" -"X-Generator: Launchpad (build 16667)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_contract #: field:hr.contract,wage:0 msgid "Wage" -msgstr "" +msgstr "ค่าแรง" #. module: hr_contract #: view:hr.contract:0 @@ -35,7 +35,7 @@ msgstr "วันที่เริ่มต้นการทดลอง" #. module: hr_contract #: field:hr.employee,vehicle:0 msgid "Company Vehicle" -msgstr "" +msgstr "ยานพาหนะของ บริษัท" #. module: hr_contract #: view:hr.contract:0 @@ -57,7 +57,7 @@ msgstr "พนักงาน" #. module: hr_contract #: view:hr.contract:0 msgid "Search Contract" -msgstr "" +msgstr "ค้นหา สัญญา" #. module: hr_contract #: view:hr.contract:0 @@ -77,7 +77,7 @@ msgstr "จำนวนบุตร" #. module: hr_contract #: help:hr.employee,contract_id:0 msgid "Latest contract of the employee" -msgstr "" +msgstr "สัญญาล่าสุดของพนักงาน" #. module: hr_contract #: view:hr.contract:0 @@ -87,7 +87,7 @@ msgstr "งาน" #. module: hr_contract #: field:hr.contract,advantages:0 msgid "Advantages" -msgstr "" +msgstr "ข้อดี" #. module: hr_contract #: view:hr.contract:0 @@ -103,7 +103,7 @@ msgstr "ประเภทสัญญา" #. module: hr_contract #: view:hr.employee:0 msgid "Medical Exam" -msgstr "" +msgstr "ตรวจสอบสุขภาพ" #. module: hr_contract #: field:hr.contract,date_end:0 @@ -124,18 +124,18 @@ msgstr "อ้างอิงตามสัญญา" #. module: hr_contract #: help:hr.employee,vehicle_distance:0 msgid "In kilometers" -msgstr "" +msgstr "ในกิโลเมตร" #. module: hr_contract #: view:hr.contract:0 #: field:hr.contract,notes:0 msgid "Notes" -msgstr "" +msgstr "บันทึกย่อ" #. module: hr_contract #: field:hr.contract,permit_no:0 msgid "Work Permit No" -msgstr "" +msgstr "เลขที่ใบอนุญาตทำงาน" #. module: hr_contract #: view:hr.contract:0 @@ -144,7 +144,7 @@ msgstr "" #: model:ir.model,name:hr_contract.model_hr_contract #: model:ir.ui.menu,name:hr_contract.next_id_56 msgid "Contract" -msgstr "" +msgstr "สัญญา" #. module: hr_contract #: view:hr.contract:0 @@ -153,80 +153,80 @@ msgstr "" #: field:hr.contract.type,name:0 #: model:ir.model,name:hr_contract.model_hr_contract_type msgid "Contract Type" -msgstr "" +msgstr "ประเภทสัญญา" #. module: hr_contract #: view:hr.contract:0 #: field:hr.contract,working_hours:0 msgid "Working Schedule" -msgstr "" +msgstr "ตารางการทำงาน" #. module: hr_contract #: view:hr.contract:0 msgid "Salary and Advantages" -msgstr "" +msgstr "เงินเดือนและข้อดี" #. module: hr_contract #: field:hr.contract,job_id:0 msgid "Job Title" -msgstr "" +msgstr "ตำแหน่งงาน" #. module: hr_contract #: constraint:hr.contract:0 msgid "Error! Contract start-date must be less than contract end-date." -msgstr "" +msgstr "ผิดพลาด! สัญญาวันที่เริ่มต้นต้องน้อยกว่าสัญญาวันที่สิ้นสุด" #. module: hr_contract #: field:hr.employee,manager:0 msgid "Is a Manager" -msgstr "" +msgstr "เป็นผู้จัดการ" #. module: hr_contract #: field:hr.contract,date_start:0 msgid "Start Date" -msgstr "" +msgstr "วันที่เริ่ม" #. module: hr_contract #: field:hr.contract,visa_no:0 msgid "Visa No" -msgstr "" +msgstr "หมายเลข วีซ่า" #. module: hr_contract #: field:hr.employee,vehicle_distance:0 msgid "Home-Work Dist." -msgstr "" +msgstr "บ้าน-ที่ทำงาน Dist." #. module: hr_contract #: field:hr.employee,place_of_birth:0 msgid "Place of Birth" -msgstr "" +msgstr "สถานที่เกิด" #. module: hr_contract #: view:hr.contract:0 msgid "Trial Period Duration" -msgstr "" +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 msgid "Medical Examination Date" -msgstr "" +msgstr "วันที่ตรวจร่างกาย" #. module: hr_contract #: field:hr.contract,trial_date_end:0 msgid "Trial End Date" -msgstr "" +msgstr "วันที่สิ้นสุดการทดลอง" #. module: hr_contract #: view:hr.contract.type:0 msgid "Search Contract Type" -msgstr "" +msgstr "ค้นหา ประเภทสัญญา" diff --git a/addons/hr_contract/i18n/tlh.po b/addons/hr_contract/i18n/tlh.po index 195117dd4c6..953d381316a 100644 --- a/addons/hr_contract/i18n/tlh.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 1e82877d671..ec3e71e9105 100644 --- a/addons/hr_contract/i18n/tr.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_contract #: field:hr.contract,wage:0 @@ -24,7 +24,7 @@ msgstr "Ücret" #. module: hr_contract #: view:hr.contract:0 msgid "Information" -msgstr "Bilgi" +msgstr "Bilgisi" #. module: hr_contract #: field:hr.contract,trial_date_start:0 @@ -44,7 +44,7 @@ msgstr "Gruplandır..." #. module: hr_contract #: field:hr.contract,department_id:0 msgid "Department" -msgstr "Bölüm" +msgstr "Deparmen" #. module: hr_contract #: view:hr.contract:0 @@ -102,7 +102,7 @@ msgstr "Sözleşme Türleri" #. module: hr_contract #: view:hr.employee:0 msgid "Medical Exam" -msgstr "" +msgstr "Medikal Sınavı" #. module: hr_contract #: field:hr.contract,date_end:0 @@ -112,7 +112,7 @@ msgstr "Bitiş Tarihi" #. module: hr_contract #: help:hr.contract,wage:0 msgid "Basic Salary of the employee" -msgstr "Çalışanın Temel Ücreti" +msgstr "Personel Temel Ücreti" #. module: hr_contract #: view:hr.contract:0 @@ -163,7 +163,7 @@ msgstr "Çalışma Planı" #. module: hr_contract #: view:hr.contract:0 msgid "Salary and Advantages" -msgstr "" +msgstr "Ücretler ve Avantajlar" #. module: hr_contract #: field:hr.contract,job_id:0 @@ -173,7 +173,7 @@ msgstr "İş Ünvanı" #. module: hr_contract #: constraint:hr.contract:0 msgid "Error! Contract start-date must be less than contract end-date." -msgstr "" +msgstr "Hata! Sözleşme başlama tarihi sözleşme bitiş tarihinden önce olmalı." #. module: hr_contract #: field:hr.employee,manager:0 @@ -183,7 +183,7 @@ msgstr "Yöneticidir" #. module: hr_contract #: field:hr.contract,date_start:0 msgid "Start Date" -msgstr "Baş. Tarihi" +msgstr "Başlama Tarihi" #. module: hr_contract #: field:hr.contract,visa_no:0 @@ -193,7 +193,7 @@ msgstr "Vize No" #. module: hr_contract #: field:hr.employee,vehicle_distance:0 msgid "Home-Work Dist." -msgstr "" +msgstr "Ev-İş Mes." #. module: hr_contract #: field:hr.employee,place_of_birth:0 @@ -203,7 +203,7 @@ msgstr "Doğum Yeri" #. module: hr_contract #: view:hr.contract:0 msgid "Trial Period Duration" -msgstr "" +msgstr "Deneme Dönem Süresi" #. module: hr_contract #: view:hr.contract:0 diff --git a/addons/hr_contract/i18n/uk.po b/addons/hr_contract/i18n/uk.po index 8d884258660..1861eb3a1fd 100644 --- a/addons/hr_contract/i18n/uk.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 ce1bb628b7d..3da2dfd9e3c 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 41e1f4018aa..8a1cfe98959 100644 --- a/addons/hr_contract/i18n/zh_CN.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 839820a6158..f471ee1e580 100644 --- a/addons/hr_contract/i18n/zh_TW.po +++ b/addons/hr_contract/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\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 0c80a65eb2b..c14fbe38f1a 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 672fb9ff3a8..1873ac33d7e 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 e3a11c74cd4..2d40f36a46f 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 diff --git a/addons/hr_evaluation/i18n/cs.po b/addons/hr_evaluation/i18n/cs.po index 5fee15f25a9..0b94ada7079 100644 --- a/addons/hr_evaluation/i18n/cs.po +++ b/addons/hr_evaluation/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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 431d1e60ed0..c255cb48385 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 98b78a6c6c0..835ffdb11ca 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 0ffe6aaca76..b9e0b3666a5 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 32ab349f319..e2b29691dfa 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: hr_evaluation diff --git a/addons/hr_evaluation/i18n/es_EC.po b/addons/hr_evaluation/i18n/es_EC.po index 3954c0113ab..efcab2098c2 100644 --- a/addons/hr_evaluation/i18n/es_EC.po +++ b/addons/hr_evaluation/i18n/es_EC.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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 f689f922897..3ea17d509ee 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 60e8fad2223..2c015964ebf 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 5dc6981639e..ce4afe64ddd 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 @@ -98,7 +98,7 @@ msgstr "" #: view:hr.employee:0 #: model:ir.ui.menu,name:hr_evaluation.menu_open_view_hr_evaluation_tree msgid "Appraisals" -msgstr "" +msgstr "Évaluations" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -109,7 +109,7 @@ msgstr "Nom de l'évaluation" #: field:hr.evaluation.interview,message_ids:0 #: field:hr_evaluation.evaluation,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Messages" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -400,6 +400,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour définir un nouveau plan d'évaluation.\n" +"

\n" +" Vous pouvez définir plusieurs plans d'évaluation (ex: " +"première entrevue après 6\n" +" mois, et ensuite chaque année). Ensuite, chaque employé " +"peut être lié à\n" +" un plan d'évaluation afin qu'OpenERP puisse automatiquement " +"générer \n" +" des demandes d'entretien aux responsables et/ou " +"subordonnés.\n" +"

\n" +" " #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -673,7 +686,7 @@ msgstr "Date d'échéance" #. module: hr_evaluation #: help:hr_evaluation.evaluation,rating:0 msgid "This is the appreciation on which the evaluation is summarized." -msgstr "" +msgstr "Voici l'appréciation sur laquelle l'évaluation est résumée." #. module: hr_evaluation #: selection:hr_evaluation.plan.phase,action:0 @@ -803,6 +816,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour créer une nouvelle évaluation.\n" +"

\n" +" Chaque employé peut se voir attribuer un plan d'évaluation. " +"Un tel plan\n" +" définit la fréquence et la manière de gérer les évaluations " +"périodiques de votre personnel.\n" +" Vous pourrez définir des étapes et attacher des entretiens à " +"chaque étape. OpenERP \n" +" gère tous types d'évaluation: ascendante, descendate, auto-" +"évaluation et évaluation finale\n" +" par le responsable.\n" +"

\n" +" " #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -860,6 +887,8 @@ msgid "" "You cannot change state, because some appraisal(s) are in waiting answer or " "draft state." msgstr "" +"Vous ne pouvez pas changer le statut, car plusieurs évaluations sont en " +"attente de réponse ou à l'état de brouillon." #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 diff --git a/addons/hr_evaluation/i18n/gl.po b/addons/hr_evaluation/i18n/gl.po index 5371afd05e3..fbc821aeb44 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 81e04d3acbf..b11b3b9ffa1 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 63de6f2eb23..5d0d82ddb8a 100644 --- a/addons/hr_evaluation/i18n/hu.po +++ b/addons/hr_evaluation/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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 acbd25e4a9d..dfcc25cb690 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 875a93c7a2c..2a4dc718903 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 4d11bea63f8..f8d8edd0df1 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 d8b4f40af9f..e57e82016b6 100644 --- a/addons/hr_evaluation/i18n/mk.po +++ b/addons/hr_evaluation/i18n/mk.po @@ -14,18 +14,18 @@ msgstr "" "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 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 @@ -53,7 +53,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 @@ -66,7 +66,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 @@ -78,7 +78,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 @@ -91,17 +91,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 @@ -112,17 +114,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 @@ -141,7 +143,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 @@ -165,6 +167,8 @@ msgid "" "If the evaluation does not meet the expectations, you can proposean action " "plan" msgstr "" +"Доколку евалуацијата не ги задоволува очекувањата, можете да предложите " +"акционен план" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -191,11 +195,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 @@ -248,7 +267,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 @@ -279,7 +298,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 @@ -319,13 +338,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 @@ -366,7 +385,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 @@ -383,11 +402,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 @@ -418,7 +449,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 @@ -430,7 +461,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 @@ -461,7 +492,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 @@ -469,6 +500,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,7 +522,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 @@ -504,7 +537,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 @@ -530,12 +563,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 @@ -569,12 +602,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 @@ -584,7 +617,7 @@ msgstr "Јануари" #. module: hr_evaluation #: view:hr.employee:0 msgid "Appraisal Interviews" -msgstr "" +msgstr "Интервјуа за оценување" #. module: hr_evaluation #: field:hr.evaluation.interview,message_summary:0 @@ -616,30 +649,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 @@ -654,12 +687,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 @@ -685,12 +718,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.interview:0 @@ -721,7 +754,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 @@ -734,6 +767,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 @@ -746,17 +781,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 @@ -780,6 +817,20 @@ msgid "" "

\n" " " msgstr "" +"

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

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

\n" +" " #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -789,17 +840,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 @@ -810,23 +861,23 @@ 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 #: 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 @@ -835,6 +886,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 @@ -844,7 +897,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 @@ -861,6 +914,18 @@ msgid "" "

\n" " " msgstr "" +"

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

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

\n" +" " #. module: hr_evaluation #: help:hr.evaluation.interview,message_ids:0 @@ -872,7 +937,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 @@ -890,7 +955,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 @@ -906,9 +971,9 @@ 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 "Датум на следно оценување" diff --git a/addons/hr_evaluation/i18n/mn.po b/addons/hr_evaluation/i18n/mn.po index a8045096b78..39b27b37645 100644 --- a/addons/hr_evaluation/i18n/mn.po +++ b/addons/hr_evaluation/i18n/mn.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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 ef77cc3f9b2..306bfbb39a4 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 @@ -230,7 +230,7 @@ msgstr "" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Reset to Draft" -msgstr "Terugzetten naar Concept" +msgstr "Terugzetten naar concept" #. module: hr_evaluation #: field:hr.evaluation.report,deadline:0 @@ -964,7 +964,7 @@ msgstr "Gespreksaanvragen" #. module: hr_evaluation #: field:hr.evaluation.report,create_date:0 msgid "Create Date" -msgstr "Datum gemaakt" +msgstr "Aanmaakdatum" #. module: hr_evaluation #: view:hr.evaluation.report:0 diff --git a/addons/hr_evaluation/i18n/pt.po b/addons/hr_evaluation/i18n/pt.po index d6b19351e69..6f740cebde4 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 64f87c05af8..5b00c4710f7 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 11484b4d0a5..5ac4557d489 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 b3854a55dd2..ab8282ba67c 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 b882da1c7d8..68c280fbd36 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 ac5283bfeb8..5b9250e80b9 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 7e422c9da77..e59d01bb6ea 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 0d1098a5d5b..e58fd5e3e41 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 de97d98a1a3..82cb50a7d89 100644 --- a/addons/hr_evaluation/i18n/tr.po +++ b/addons/hr_evaluation/i18n/tr.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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_anonymous_manager:0 msgid "Send an anonymous summary to the manager" -msgstr "" +msgstr "Yöneticisi bir anonim özeti gönder" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -53,7 +53,7 @@ msgstr "Başlama Gecikmesi" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Appraisal that are in waiting appreciation state" -msgstr "" +msgstr "Değerlendirme takdir bekleme durumda" #. module: hr_evaluation #: view:hr_evaluation.plan:0 @@ -66,7 +66,7 @@ msgstr "Firma" #: field:hr.evaluation.interview,evaluation_id:0 #: field:hr_evaluation.plan.phase,survey_id:0 msgid "Appraisal Form" -msgstr "Değerlendirme formu" +msgstr "Değerlendirme Formu" #. module: hr_evaluation #: view:hr.evaluation.report:0 @@ -91,6 +91,8 @@ msgid "" "This number of months will be used to schedule the first evaluation date of " "the employee when selecting an evaluation plan. " msgstr "" +"Bu sayı ayın ilk değerlendirme tarihi planlamak için kullanılacak personel " +"için bir değerlendirme planı seçerseniz. " #. module: hr_evaluation #: view:hr.employee:0 @@ -112,7 +114,7 @@ msgstr "Mesajlar" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "Mail Body" -msgstr "" +msgstr "Mail Metni" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,wait:0 @@ -152,7 +154,7 @@ msgstr "Eğer seçilirse yeni mesajlar dikkat gerektirir." #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "Send to Managers" -msgstr "Yöneticiye gönder" +msgstr "Yöneticiye Gönder" #. module: hr_evaluation #: field:hr_evaluation.evaluation,date_close:0 @@ -169,7 +171,7 @@ msgstr "Değerlendirme yeterli değilse yeni bir proses belirleyebilirsin" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "Send to Employees" -msgstr "Personel Gönder" +msgstr "Personele Gönder" #. module: hr_evaluation #: code:addons/hr_evaluation/hr_evaluation.py:84 @@ -191,6 +193,21 @@ msgid "" "\n" " " msgstr "" +"\n" +"Tarih: %(date)s\n" +"\n" +"Sayın %(employee_name)s,\n" +"\n" +"Ben %(eval_name)s ile ilgili bir değerlendirme yapıyorum.\n" +"\n" +"Lütfen yanıtınızı gönderin.\n" +"\n" +"\n" +"Teşekkürler,\n" +"--\n" +"%(user_signature)s\n" +"\n" +" " #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -204,6 +221,8 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Sohbetçi özetini (mesaj sayısı, ...) barındırır. Bu özet kanban " +"görünümlerine eklenmek üzere doğrudan html biçimindedir." #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -230,12 +249,12 @@ msgstr "Değerlendirme DevamEdiyor" #. module: hr_evaluation #: model:ir.model,name:hr_evaluation.model_survey_request msgid "survey.request" -msgstr "İstek" +msgstr "survey.request" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "(date)s: Current Date" -msgstr "(tarih)s: Güncel Tarih" +msgstr "(tarih) : Güncel Tarih" #. module: hr_evaluation #: model:ir.actions.act_window,name:hr_evaluation.act_hr_employee_2_hr__evaluation_interview @@ -252,13 +271,13 @@ msgstr "Hakkında " #: field:hr.evaluation.interview,message_follower_ids:0 #: field:hr_evaluation.evaluation,message_follower_ids:0 msgid "Followers" -msgstr "Takipçiler" +msgstr "İzleyiciler" #. module: hr_evaluation #: field:hr.evaluation.interview,message_unread:0 #: field:hr_evaluation.evaluation,message_unread:0 msgid "Unread Messages" -msgstr "Okunmamış mesajlar" +msgstr "Okunmamış Mesajlar" #. module: hr_evaluation #: view:hr.evaluation.report:0 @@ -305,7 +324,7 @@ msgstr "Yanıtları yöneticiye gönder" #: selection:hr.evaluation.report,state:0 #: selection:hr_evaluation.evaluation,state:0 msgid "Plan In Progress" -msgstr "Değerlendirme sürüyor" +msgstr "Değerlendirme Sürüyor" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 @@ -315,18 +334,18 @@ msgstr "Genel İletiler" #. module: hr_evaluation #: view:hr.evaluation.interview:0 msgid "Send Reminder Email" -msgstr "Hatırlatma e-posta gönder" +msgstr "Hatırlatma E-posta Gönder" #. module: hr_evaluation #: view:hr.evaluation.report:0 #: field:hr_evaluation.evaluation,rating:0 msgid "Appreciation" -msgstr "Değerlenmesi" +msgstr "Değerlendirme" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Print Interview" -msgstr "Mülakatı yazdır" +msgstr "Mülakatı Yazdır" #. module: hr_evaluation #: field:hr.evaluation.report,closed:0 @@ -362,7 +381,7 @@ msgstr "Durumu" #. module: hr_evaluation #: model:ir.actions.act_window,name:hr_evaluation.action_evaluation_plans_installer msgid "Review Appraisal Plans" -msgstr "Değerlendirme planını incele" +msgstr "Değerlendirme Planını İncele" #. module: hr_evaluation #: model:ir.actions.act_window,help:hr_evaluation.action_evaluation_plans_installer @@ -379,6 +398,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir değerlendirme planı tanımlamak için tıklayın.\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" +" " #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -388,17 +418,17 @@ msgstr "İşlemi Gerçekleştirin" #. module: hr_evaluation #: field:hr_evaluation.evaluation,note_action:0 msgid "Action Plan" -msgstr "İşlem Planı" +msgstr "Eylem Planı" #. module: hr_evaluation #: model:ir.ui.menu,name:hr_evaluation.menu_eval_hr_config msgid "Periodic Appraisal" -msgstr "Periyodik Değerleme" +msgstr "Periyodik Değerlendirme" #. module: hr_evaluation #: field:hr_evaluation.plan,month_next:0 msgid "Periodicity of Appraisal (months)" -msgstr "" +msgstr "Periyodik Değerlendirme (ay)" #. module: hr_evaluation #: selection:hr.evaluation.report,rating:0 @@ -457,7 +487,7 @@ msgstr "Posta Ayarları" #. module: hr_evaluation #: model:ir.actions.act_window,name:hr_evaluation.evaluation_reminders msgid "Appraisal Reminders" -msgstr "Değerleme Hatırlatmaları" +msgstr "Değerlendirme Hatırlatmaları" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,wait:0 @@ -465,6 +495,8 @@ msgid "" "Check this box if you want to wait that all preceding phases are finished " "before launching this phase." msgstr "" +"Tüm önceki aşamaları bitmiş olduğunda bekletmek istiyorsanız bu kutuyu " +"işaretleyin Bu aşamada başlamadan önce." #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -474,7 +506,7 @@ msgstr "" #. module: hr_evaluation #: field:hr_evaluation.plan,month_first:0 msgid "First Appraisal in (months)" -msgstr "" +msgstr "İlk Değerlendirme (ay)" #. module: hr_evaluation #: selection:hr.evaluation.report,state:0 @@ -500,7 +532,7 @@ msgstr "Bekleyen" #: field:hr_evaluation.plan.phase,plan_id:0 #: model:ir.model,name:hr_evaluation.model_hr_evaluation_plan msgid "Appraisal Plan" -msgstr "Değerleme Planı" +msgstr "Değerlendirme Planı" #. module: hr_evaluation #: view:hr.evaluation.interview:0 @@ -526,18 +558,18 @@ msgstr "Önemli Ölçüde beklentilerin altında" #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Validate Appraisal" -msgstr "Değerleme Doğrulama" +msgstr "Değerlendirme Doğrulama" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid " (employee_name)s: Partner name" -msgstr " (employee_name)s: Partner adı" +msgstr " (employee_name)s: İş Ortağı adı" #. module: hr_evaluation #: field:hr.evaluation.interview,message_is_follower:0 #: field:hr_evaluation.evaluation,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçisi mi" +msgstr "Bir İzleyicidir" #. module: hr_evaluation #: view:hr.evaluation.report:0 @@ -545,7 +577,7 @@ msgstr "Bir Takipçisi mi" #: view:hr_evaluation.evaluation:0 #: field:hr_evaluation.evaluation,plan_id:0 msgid "Plan" -msgstr "Plan" +msgstr "Planı" #. module: hr_evaluation #: field:hr_evaluation.plan,active:0 @@ -570,7 +602,7 @@ msgstr "Çalışana genel bir değerlendirme özeti gönder" #. module: hr_evaluation #: model:ir.model,name:hr_evaluation.model_hr_evaluation_plan_phase msgid "Appraisal Plan Phase" -msgstr "Değerleme Planı Evre" +msgstr "Değerlendirme Plan Evre" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -580,7 +612,7 @@ msgstr "Ocak" #. module: hr_evaluation #: view:hr.employee:0 msgid "Appraisal Interviews" -msgstr "Değerleme Görüşmeler" +msgstr "Değerlendirme Görüşmeleri" #. module: hr_evaluation #: field:hr.evaluation.interview,message_summary:0 @@ -601,7 +633,7 @@ msgstr "Anket" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,action:0 msgid "Action" -msgstr "İşlem" +msgstr "Eylem" #. module: hr_evaluation #: view:hr.evaluation.report:0 @@ -612,19 +644,19 @@ msgstr "Final Onaylama" #. module: hr_evaluation #: selection:hr_evaluation.evaluation,state:0 msgid "Waiting Appreciation" -msgstr "Bekleyen Değerlenme" +msgstr "Bekleyen Değerlendirme" #. 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 "Değerleme Analizi" +msgstr "Değerlendirme Analizi" #. module: hr_evaluation #: field:hr_evaluation.evaluation,date:0 msgid "Appraisal Deadline" -msgstr "Değerleme ZamanSınırı" +msgstr "Değerlendirme ZamanSınırı" #. module: hr_evaluation #: field:hr.evaluation.report,rating:0 @@ -645,17 +677,17 @@ msgstr "Değerlendirme İstatistikleri" #. module: hr_evaluation #: view:hr.evaluation.interview:0 msgid "Deadline Date" -msgstr "ZamanSınırı Tarihi" +msgstr "ZamanSınır Tarihi" #. module: hr_evaluation #: help:hr_evaluation.evaluation,rating:0 msgid "This is the appreciation on which the evaluation is summarized." -msgstr "" +msgstr "Bu değerlendirme taktiri özetlenmiştir." #. module: hr_evaluation #: selection:hr_evaluation.plan.phase,action:0 msgid "Top-Down Appraisal Requests" -msgstr "" +msgstr "Yukarıdan Aşağıya Değerlendirme İstekleri" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 @@ -665,7 +697,7 @@ msgstr "Genel" #. module: hr_evaluation #: help:hr_evaluation.plan.phase,send_answer_employee:0 msgid "Send all answers to the employee" -msgstr "Personel tüm cevaplar gönder" +msgstr "Personele tüm cevapları gönder" #. module: hr_evaluation #: view:hr.evaluation.interview:0 @@ -681,12 +713,12 @@ msgstr "Biten" #: 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 "Değerleme Planlar" +msgstr "Değerlendirme Planları" #. module: hr_evaluation #: model:ir.model,name:hr_evaluation.model_hr_evaluation_interview msgid "Appraisal Interview" -msgstr "Değerleme Görüşme" +msgstr "Mülâkat Değerlendirme" #. module: hr_evaluation #: view:hr.evaluation.interview:0 @@ -712,7 +744,7 @@ msgstr "Final Onaylama Değerlendirmeleri" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,mail_feature:0 msgid "Send mail for this phase" -msgstr "" +msgstr "Bu aşama için posta gönder" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,email_subject:0 @@ -752,7 +784,7 @@ msgstr "Öz Değerlendirme İstekleri" #: view:hr_evaluation.evaluation:0 #: field:hr_evaluation.evaluation,survey_request_ids:0 msgid "Appraisal Forms" -msgstr "Değerleme Formları" +msgstr "Değerlendirme Formları" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -776,11 +808,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir değerlendirme oluşturmak için tıklayın.\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" +" " #. module: hr_evaluation #: view:hr_evaluation.evaluation:0 msgid "Internal Notes" -msgstr "Dahili not" +msgstr "Dahili Not" #. module: hr_evaluation #: selection:hr_evaluation.plan.phase,action:0 @@ -795,7 +840,7 @@ msgstr "Evre" #. module: hr_evaluation #: selection:hr_evaluation.plan.phase,action:0 msgid "Bottom-Up Appraisal Requests" -msgstr "" +msgstr "Altan-Üste Değerlendirme İstekler" #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -806,12 +851,12 @@ msgstr "Şubat" #: view:hr.evaluation.interview:0 #: view:hr_evaluation.evaluation:0 msgid "Interview Appraisal" -msgstr "Görüşme Değerleme" +msgstr "Görüşme Değerlendirme" #. module: hr_evaluation #: field:survey.request,is_evaluation:0 msgid "Is Appraisal?" -msgstr "Değerleme mi?" +msgstr "Değerlendirme mi?" #. module: hr_evaluation #: code:addons/hr_evaluation/hr_evaluation.py:320 @@ -822,7 +867,7 @@ msgstr "Sen Değerleme olmadan değerlendirilmesi başlatılamıyor." #. module: hr_evaluation #: field:hr.evaluation.interview,user_to_review_id:0 msgid "Employee to Interview" -msgstr "Personel Görüşmesi" +msgstr "Görüşülen Personel" #. module: hr_evaluation #: code:addons/hr_evaluation/hr_evaluation.py:235 @@ -831,6 +876,8 @@ msgid "" "You cannot change state, because some appraisal(s) are in waiting answer or " "draft state." msgstr "" +"Bazı durumu değiştiremezsiniz.Çünkü bu değerlendirme (ler) cevap bekleyen " +"yada taslak durumundadır." #. module: hr_evaluation #: selection:hr.evaluation.report,month:0 @@ -840,7 +887,7 @@ msgstr "Nisan" #. module: hr_evaluation #: view:hr_evaluation.plan.phase:0 msgid "Appraisal Plan Phases" -msgstr "Değerleme Planının Evreleri" +msgstr "Değerlendirme Plan Evreleri" #. module: hr_evaluation #: model:ir.actions.act_window,help:hr_evaluation.action_hr_evaluation_interview_tree @@ -857,6 +904,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir görüşme isteği oluşturmak için tıklayın \n" +"personal değirlendirmesi. \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" +" " #. module: hr_evaluation #: help:hr.evaluation.interview,message_ids:0 @@ -868,7 +926,7 @@ msgstr "Mesajlar ve iletişim geçmişi" #: view:hr.evaluation.interview:0 #: view:hr_evaluation.evaluation:0 msgid "Search Appraisal" -msgstr "Değerleme Arama" +msgstr "Değerlendirme Arama" #. module: hr_evaluation #: field:hr_evaluation.plan.phase,sequence:0 diff --git a/addons/hr_evaluation/i18n/zh_CN.po b/addons/hr_evaluation/i18n/zh_CN.po index ca9675db6fb..ec3fc1ee875 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-16 05:37+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 1486e8e3264..21ad4841cf1 100644 --- a/addons/hr_expense/i18n/ar.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -148,8 +148,10 @@ msgstr "الرسائل" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "خطأ!" @@ -236,7 +238,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "تحذير" @@ -343,7 +345,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "بعض التكلفة سيعاد عمل الفاتورة لها للعميل" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "يجب أن يكون للموظف عنوان بيت" @@ -398,7 +400,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "بعد انشاء الفاتورة, يسدد النفقة" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "تحذير!" @@ -486,7 +488,7 @@ msgid "Employee encode all his expenses" msgstr "يرمز الموظف لكل مصروفاته" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -514,7 +516,7 @@ msgid "Draft" msgstr "مسودة" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -537,6 +539,7 @@ msgid "The direct manager approves the sheet" msgstr "تمت موافقة المدير المباشر على الورقة" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "إجمالي المبلغ" @@ -682,7 +685,6 @@ msgid "Unit Price" msgstr "سعر الوحدة" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -848,7 +850,7 @@ msgid "Name" msgstr "الاسم" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "يمكنك فقط حذف مصاريف مسودة (draft)" diff --git a/addons/hr_expense/i18n/bg.po b/addons/hr_expense/i18n/bg.po index 36e060a230d..7b932a4fe2c 100644 --- a/addons/hr_expense/i18n/bg.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -148,8 +148,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -236,7 +238,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -343,7 +345,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -398,7 +400,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -486,7 +488,7 @@ msgid "Employee encode all his expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -514,7 +516,7 @@ msgid "Draft" msgstr "Чернова" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -537,6 +539,7 @@ msgid "The direct manager approves the sheet" msgstr "" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Обща сума" @@ -682,7 +685,6 @@ msgid "Unit Price" msgstr "Единична цена" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -848,7 +850,7 @@ msgid "Name" msgstr "Име" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/bs.po b/addons/hr_expense/i18n/bs.po index 3500fe5ace0..8ccd677b6fa 100644 --- a/addons/hr_expense/i18n/bs.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -148,8 +148,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -236,7 +238,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -343,7 +345,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -398,7 +400,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -486,7 +488,7 @@ msgid "Employee encode all his expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -514,7 +516,7 @@ msgid "Draft" msgstr "Skica" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -537,6 +539,7 @@ msgid "The direct manager approves the sheet" msgstr "" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Ukupan Iznos" @@ -682,7 +685,6 @@ msgid "Unit Price" msgstr "Jedinična Cijena" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -848,7 +850,7 @@ msgid "Name" msgstr "Ime" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/ca.po b/addons/hr_expense/i18n/ca.po index c98026c4cb9..af30b25212b 100644 --- a/addons/hr_expense/i18n/ca.po +++ b/addons/hr_expense/i18n/ca.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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -150,8 +150,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -240,7 +242,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -348,7 +350,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Alguns costos poden ser refacturats al client" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -403,7 +405,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Després de crear factura, reemborsar despeses" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -491,7 +493,7 @@ msgid "Employee encode all his expenses" msgstr "Empleat codifica totes les seves despeses" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -519,7 +521,7 @@ msgid "Draft" msgstr "Esborrany" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -542,6 +544,7 @@ msgid "The direct manager approves the sheet" msgstr "El gestor inmediat aprova la fulla." #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Import total" @@ -687,7 +690,6 @@ msgid "Unit Price" msgstr "Preu unitat" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -853,7 +855,7 @@ msgid "Name" msgstr "Nom" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/cs.po b/addons/hr_expense/i18n/cs.po index d9b005587e5..4e94d4f615e 100644 --- a/addons/hr_expense/i18n/cs.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -148,8 +148,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -236,7 +238,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -343,7 +345,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -398,7 +400,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -486,7 +488,7 @@ msgid "Employee encode all his expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -514,7 +516,7 @@ msgid "Draft" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -537,6 +539,7 @@ msgid "The direct manager approves the sheet" msgstr "" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "" @@ -682,7 +685,6 @@ msgid "Unit Price" msgstr "" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -848,7 +850,7 @@ msgid "Name" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/da.po b/addons/hr_expense/i18n/da.po index 9a326632935..d40b756397e 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -149,8 +149,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -237,7 +239,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -344,7 +346,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -399,7 +401,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -487,7 +489,7 @@ msgid "Employee encode all his expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -515,7 +517,7 @@ msgid "Draft" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -538,6 +540,7 @@ msgid "The direct manager approves the sheet" msgstr "" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "" @@ -683,7 +686,6 @@ msgid "Unit Price" msgstr "" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -849,7 +851,7 @@ msgid "Name" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/de.po b/addons/hr_expense/i18n/de.po index 4142d21a761..fe68780ce9d 100644 --- a/addons/hr_expense/i18n/de.po +++ b/addons/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -154,8 +154,10 @@ msgstr "Mitteilungen" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "Fehler !" @@ -260,7 +262,7 @@ msgstr "" "weiterzuarbeiten." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "Warnung !" @@ -367,7 +369,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Einige Aufwendungen können an Kunde weiterberechnet werden" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "Der Mitarbeiter muss eine Privatanschrift haben." @@ -422,7 +424,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Nach der Rechnungserstellung erfolgt die Erstattung." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "Warnung !" @@ -510,7 +512,7 @@ msgid "Employee encode all his expenses" msgstr "Mitarbeiter erfasst alle seine Spesen" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -540,7 +542,7 @@ msgid "Draft" msgstr "Entwurf" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -565,6 +567,7 @@ msgid "The direct manager approves the sheet" msgstr "Der Vorgesetzte genehmigt die Spesenliste" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Gesamtbetrag" @@ -722,7 +725,6 @@ msgid "Unit Price" msgstr "Preis/ME" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -894,7 +896,7 @@ msgid "Name" msgstr "Bezeichnung" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "Sie können nur Spesenabrechnungen im Entwurf löschen" diff --git a/addons/hr_expense/i18n/el.po b/addons/hr_expense/i18n/el.po index 0aa2e17ca5a..d705ee871fd 100644 --- a/addons/hr_expense/i18n/el.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" @@ -151,8 +151,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -240,7 +242,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -347,7 +349,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Κάποια έξοδα μπορεί να είναι ανατιμολογήσεις στον πελάτη" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -402,7 +404,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Αποδώστε έξοδα αφού δημιουργήσετε το Τιμολόγιο" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -490,7 +492,7 @@ msgid "Employee encode all his expenses" msgstr "Ο υπάλληλος κωδικοποιεί όλα τα έξοδά του" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -518,7 +520,7 @@ msgid "Draft" msgstr "Πρόχειρα" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -541,6 +543,7 @@ msgid "The direct manager approves the sheet" msgstr "Ο άμεσος Προϊστάμενος εγκρίνει το φύλλο" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Σύνολο" @@ -686,7 +689,6 @@ msgid "Unit Price" msgstr "Τιμή Μονάδας" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -854,7 +856,7 @@ msgid "Name" msgstr "Όνομα" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/es.po b/addons/hr_expense/i18n/es.po index 2524fe3c689..77991541ba9 100644 --- a/addons/hr_expense/i18n/es.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -152,8 +152,10 @@ msgstr "Mensajes" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "¡Error!" @@ -248,7 +250,7 @@ msgstr "" "directamente en formato HTML para poder ser insertado en las vistas kanban." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "Advertencia" @@ -355,7 +357,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Algunos costes pueden ser refacturados al cliente" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "El empleado debe tener una dirección de casa." @@ -410,7 +412,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Después de crear factura, reembolsar gastos" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "¡Advertencia!" @@ -498,7 +500,7 @@ msgid "Employee encode all his expenses" msgstr "Empleado codifica todos sus gastos" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -528,7 +530,7 @@ msgid "Draft" msgstr "Borrador" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -553,6 +555,7 @@ msgid "The direct manager approves the sheet" msgstr "El responsable inmediato aprueba la hoja." #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Importe total" @@ -706,7 +709,6 @@ msgid "Unit Price" msgstr "Precio unidad" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -877,7 +879,7 @@ msgid "Name" msgstr "Nombre" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "¡Sólo puede borrar gastos en borrador!" diff --git a/addons/hr_expense/i18n/es_AR.po b/addons/hr_expense/i18n/es_AR.po index 1a1b7d331cd..2a42173a66c 100644 --- a/addons/hr_expense/i18n/es_AR.po +++ b/addons/hr_expense/i18n/es_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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -148,8 +148,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -236,7 +238,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -343,7 +345,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Algunos costos pueden ser refacturaciones al cliente" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -398,7 +400,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Después de crear factura, reembolsar gastos" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -486,7 +488,7 @@ msgid "Employee encode all his expenses" msgstr "El empleado codifica todos sus gastos" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -514,7 +516,7 @@ msgid "Draft" msgstr "Borrador" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -537,6 +539,7 @@ msgid "The direct manager approves the sheet" msgstr "El gerente inmediato aprueba la hoja." #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Importe total" @@ -682,7 +685,6 @@ msgid "Unit Price" msgstr "Precio Unitario" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -848,7 +850,7 @@ msgid "Name" msgstr "Nombre" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/es_CR.po b/addons/hr_expense/i18n/es_CR.po index 1b365617fdd..3ec3821961a 100644 --- a/addons/hr_expense/i18n/es_CR.po +++ b/addons/hr_expense/i18n/es_CR.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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -150,8 +150,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -241,7 +243,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -348,7 +350,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Algunos costes pueden ser refacturados al cliente" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -403,7 +405,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Después de crear factura, reembolsar gastos" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -491,7 +493,7 @@ msgid "Employee encode all his expenses" msgstr "Empleado codifica todos sus gastos" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -519,7 +521,7 @@ msgid "Draft" msgstr "Borrador" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -542,6 +544,7 @@ msgid "The direct manager approves the sheet" msgstr "El responsable inmediato aprueba la hoja." #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Importe total" @@ -687,7 +690,6 @@ msgid "Unit Price" msgstr "Precio unidad" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -859,7 +861,7 @@ msgid "Name" msgstr "Nombre" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/es_EC.po b/addons/hr_expense/i18n/es_EC.po index c5b13869a52..79ec4472bc1 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -149,8 +149,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -237,7 +239,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -344,7 +346,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Algunos costes pueden ser refacturados al cliente" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -399,7 +401,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Después de crear factura, reembolsar gastos" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -487,7 +489,7 @@ msgid "Employee encode all his expenses" msgstr "Empleado codifica todos sus gastos" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -515,7 +517,7 @@ msgid "Draft" msgstr "Borrador" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -538,6 +540,7 @@ msgid "The direct manager approves the sheet" msgstr "El gestor inmediato aprueba la hoja." #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Importe total" @@ -683,7 +686,6 @@ msgid "Unit Price" msgstr "Precio unidad" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -849,7 +851,7 @@ msgid "Name" msgstr "Nombre" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/et.po b/addons/hr_expense/i18n/et.po index 357777843ac..6c4d91eb69d 100644 --- a/addons/hr_expense/i18n/et.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -148,8 +148,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -236,7 +238,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -343,7 +345,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Mõned kulud võivad olla taasarvedused kliendile" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -398,7 +400,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Pärast arve loomist hüvita kulud" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -486,7 +488,7 @@ msgid "Employee encode all his expenses" msgstr "Töötaja kodeerib kõik oma kulud" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -514,7 +516,7 @@ msgid "Draft" msgstr "Mustand" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -537,6 +539,7 @@ msgid "The direct manager approves the sheet" msgstr "Otsene ülemus kiidab lehe heaks" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Täiskogus" @@ -682,7 +685,6 @@ msgid "Unit Price" msgstr "Ühiku hind" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -848,7 +850,7 @@ msgid "Name" msgstr "Nimi" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/fi.po b/addons/hr_expense/i18n/fi.po index f287d9aca86..6632431675b 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -36,13 +36,13 @@ msgstr "Tilinhoitaja hyvittää kustannukset" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_approved msgid "Expense approved" -msgstr "" +msgstr "Kustannus hyväksytty" #. module: hr_expense #: field:hr.expense.expense,date_confirm:0 #: field:hr.expense.report,date_confirm:0 msgid "Confirmation Date" -msgstr "" +msgstr "Vahvistuspvm" #. module: hr_expense #: view:hr.expense.expense:0 @@ -58,7 +58,7 @@ msgstr "Lentolippu" #. module: hr_expense #: report:hr.expense:0 msgid "Validated By" -msgstr "" +msgstr "Hyväksyjä" #. module: hr_expense #: view:hr.expense.expense:0 @@ -71,13 +71,13 @@ msgstr "Osasto" #. module: hr_expense #: view:hr.expense.expense:0 msgid "New Expense" -msgstr "" +msgstr "Uusi kustannus" #. module: hr_expense #: field:hr.expense.line,uom_id:0 #: view:product.product:0 msgid "Unit of Measure" -msgstr "" +msgstr "Mittayksikkö" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -87,7 +87,7 @@ msgstr "Maaliskuu" #. module: hr_expense #: field:hr.expense.expense,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Lukemattomat viestit" #. module: hr_expense #: field:hr.expense.expense,company_id:0 @@ -113,22 +113,24 @@ msgid "" "No expense journal found. Please make sure you have a journal with type " "'purchase' configured." msgstr "" +"Kustannuspäiväkirjaa ei löydy. Varmista, että sinulle on päiväkirja tyyppiä " +"'osto' määritelty." #. module: hr_expense #: model:ir.model,name:hr_expense.model_hr_expense_report msgid "Expenses Statistics" -msgstr "" +msgstr "Kustannustilasto" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Open Receipt" -msgstr "" +msgstr "Avaa Tosite" #. module: hr_expense #: view:hr.expense.report:0 #: field:hr.expense.report,day:0 msgid "Day" -msgstr "" +msgstr "Päivä" #. module: hr_expense #: help:hr.expense.expense,date_valid:0 @@ -140,36 +142,38 @@ msgstr "" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Notes" -msgstr "" +msgstr "Muistio" #. module: hr_expense #: field:hr.expense.expense,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Viestit" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" -msgstr "" +msgstr "Virhe!" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_refused msgid "Expense refused" -msgstr "" +msgstr "Kustannus hylätty" #. module: hr_expense #: model:ir.actions.act_window,name:hr_expense.hr_expense_product #: view:product.product:0 msgid "Products" -msgstr "" +msgstr "Tuotteet" #. module: hr_expense #: view:hr.expense.report:0 msgid "Confirm Expenses" -msgstr "" +msgstr "Vahvista kustannukset" #. module: hr_expense #: selection:hr.expense.report,state:0 @@ -184,7 +188,7 @@ msgstr "" #. module: hr_expense #: help:hr.expense.expense,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Jos valittu, uudet viestit vaativat huomiosi." #. module: hr_expense #: selection:hr.expense.report,state:0 @@ -199,7 +203,7 @@ msgstr "Hyväksytty" #. module: hr_expense #: field:hr.expense.line,ref:0 msgid "Reference" -msgstr "" +msgstr "Viite" #. module: hr_expense #: report:hr.expense:0 @@ -215,6 +219,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 "" +"Kun kustannuspyyntö on luotu, sen tila on 'Luonnos'.\n" +" Käyttäjä vahvistaa sen ja pyyntö lähetetään esimiehelle, tällöin sen tila " +"on 'Odottaa Vahvistusta'. \n" +"Jos esimies hyväksyy sen, niin uusi tila on 'Hyväksytty'.\n" +" Kun kustannus on maksettu, tila on 'Valmis'" #. module: hr_expense #: help:hr.expense.expense,date_confirm:0 @@ -227,7 +236,7 @@ msgstr "" #: view:hr.expense.report:0 #: field:hr.expense.report,nbr:0 msgid "# of Lines" -msgstr "" +msgstr "Rivien lukumäärä" #. module: hr_expense #: help:hr.expense.expense,message_summary:0 @@ -237,10 +246,10 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" -msgstr "" +msgstr "Varoitus" #. module: hr_expense #: report:hr.expense:0 @@ -260,7 +269,7 @@ msgstr "Hylkää kustannus" #. module: hr_expense #: field:hr.expense.report,price_average:0 msgid "Average Price" -msgstr "" +msgstr "Keskihinta" #. module: hr_expense #: view:hr.expense.expense:0 @@ -288,7 +297,7 @@ msgstr "" #: view:hr.expense.report:0 #: field:hr.expense.report,state:0 msgid "Status" -msgstr "" +msgstr "Tila" #. module: hr_expense #: field:hr.expense.line,analytic_account:0 @@ -300,17 +309,17 @@ msgstr "Analyyttinen kirjanpito" #. module: hr_expense #: field:hr.expense.report,date:0 msgid "Date " -msgstr "" +msgstr "Päivämäärä " #. module: hr_expense #: view:hr.expense.report:0 msgid "Waiting" -msgstr "" +msgstr "Odottaa" #. module: hr_expense #: field:hr.expense.expense,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Seuraajat" #. module: hr_expense #: report:hr.expense:0 @@ -324,7 +333,7 @@ msgstr "Työntekijä" #: view:hr.expense.expense:0 #: selection:hr.expense.expense,state:0 msgid "New" -msgstr "" +msgstr "Uusi" #. module: hr_expense #: report:hr.expense:0 @@ -341,13 +350,13 @@ msgstr "Loppusumma" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_reinvoicing0 msgid "Some costs may be reinvoices to the customer" -msgstr "" +msgstr "Jotkut kustannukset voidaan uudelleen laskuttaa asiakkaalta" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." -msgstr "" +msgstr "Työntekijällä pitää olla kotiosoite" #. module: hr_expense #: view:board.board:0 @@ -359,12 +368,12 @@ msgstr "Omat kustannukset" #. module: hr_expense #: view:hr.expense.report:0 msgid "Creation Date" -msgstr "" +msgstr "Luontipäivä" #. module: hr_expense #: model:ir.actions.report.xml,name:hr_expense.hr_expenses msgid "HR expenses" -msgstr "" +msgstr "Henkilöstökulut" #. module: hr_expense #: field:hr.expense.expense,id:0 @@ -386,7 +395,7 @@ msgstr "" #: view:hr.expense.report:0 #: field:hr.expense.report,no_of_products:0 msgid "# of Products" -msgstr "" +msgstr "Tuotteiden lukumäärä" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -399,10 +408,10 @@ msgid "After creating invoice, reimburse expenses" msgstr "Laskun luonnin jälkeen hyväksy kustannukset" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" -msgstr "" +msgstr "Varoitus!" #. module: hr_expense #: model:process.node,name:hr_expense.process_node_reimbursement0 @@ -413,20 +422,20 @@ msgstr "Hyväksynnät" #: field:hr.expense.expense,date_valid:0 #: field:hr.expense.report,date_valid:0 msgid "Validation Date" -msgstr "" +msgstr "Vahvistuspäivä" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:226 #, python-format msgid "Expense Receipt" -msgstr "" +msgstr "Kustannuskuitti" #. module: hr_expense #: view:hr.expense.report:0 #: model:ir.actions.act_window,name:hr_expense.action_hr_expense_report_all #: model:ir.ui.menu,name:hr_expense.menu_hr_expense_report_all msgid "Expenses Analysis" -msgstr "" +msgstr "Kustannusseuranta" #. module: hr_expense #: view:hr.expense.expense:0 @@ -446,7 +455,7 @@ msgstr "Kustannusrivit" #. module: hr_expense #: field:hr.expense.report,delay_confirm:0 msgid "Delay to Confirm" -msgstr "" +msgstr "Vahvistettava Viive" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -463,7 +472,7 @@ msgstr "Joulukuu" #: view:hr.expense.report:0 #: field:hr.expense.report,month:0 msgid "Month" -msgstr "" +msgstr "Kuukausi" #. module: hr_expense #: field:hr.expense.expense,currency_id:0 @@ -487,7 +496,7 @@ msgid "Employee encode all his expenses" msgstr "Työntekijä suojaa kaikki kustannuksensa" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -497,7 +506,7 @@ msgstr "" #. module: hr_expense #: help:hr.expense.expense,journal_id:0 msgid "The journal used when the expense is done." -msgstr "" +msgstr "Käytettävä päiväkirja, kun kustannus valmis" #. module: hr_expense #: field:hr.expense.expense,note:0 @@ -515,7 +524,7 @@ msgid "Draft" msgstr "Luonnos" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -538,6 +547,7 @@ msgid "The direct manager approves the sheet" msgstr "" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Lopullinen määrä" @@ -613,7 +623,7 @@ msgstr "" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Generate Accounting Entries" -msgstr "" +msgstr "Luo Viennit Kirjanpitoon" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -643,7 +653,7 @@ msgstr "" #. module: hr_expense #: view:hr.expense.report:0 msgid "Done Expenses" -msgstr "" +msgstr "Valmiit Kustannukset" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_confirmedexpenses0 @@ -683,11 +693,10 @@ msgid "Unit Price" msgstr "Yksikköhinta" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" -msgstr "" +msgstr "Valmis" #. module: hr_expense #: model:process.transition.action,name:hr_expense.process_transition_action_supplierinvoice0 @@ -849,7 +858,7 @@ msgid "Name" msgstr "Nimi" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/fr.po b/addons/hr_expense/i18n/fr.po index bdd6eef1f88..ccfe683d27b 100644 --- a/addons/hr_expense/i18n/fr.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -35,7 +35,7 @@ msgstr "Le comptable rembourse les notes de frais" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_approved msgid "Expense approved" -msgstr "" +msgstr "Note de frais approuvée" #. module: hr_expense #: field:hr.expense.expense,date_confirm:0 @@ -150,8 +150,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -159,7 +161,7 @@ msgstr "" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_refused msgid "Expense refused" -msgstr "" +msgstr "Note de frais refusée" #. module: hr_expense #: model:ir.actions.act_window,name:hr_expense.hr_expense_product @@ -241,7 +243,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -348,7 +350,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Certains coûts peuvent être refacturés au client" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -403,7 +405,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Après avoir créé la facture, remboursez les frais" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -491,12 +493,14 @@ msgid "Employee encode all his expenses" msgstr "L'employé saisit tous ses frais" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " "Unit of Measure" msgstr "" +"L'unité de mesure sélectionnée n'appartient pas à la même catégorie que " +"l'unité de mesure de l'article." #. module: hr_expense #: help:hr.expense.expense,journal_id:0 @@ -519,7 +523,7 @@ msgid "Draft" msgstr "Brouillon" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -542,6 +546,7 @@ msgid "The direct manager approves the sheet" msgstr "Le responsable hiérarchique approuve la note de frais" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Montant Total" @@ -687,7 +692,6 @@ msgid "Unit Price" msgstr "Prix unitaire" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -717,7 +721,7 @@ msgstr "" #. module: hr_expense #: field:hr.expense.expense,user_valid:0 msgid "Validation By" -msgstr "" +msgstr "Validation par" #. module: hr_expense #: view:hr.expense.expense:0 @@ -825,7 +829,7 @@ msgstr "Peut être inséré dans une note de frais" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_confirmed msgid "Expense confirmed, waiting confirmation" -msgstr "" +msgstr "Note de frais confirmée, en attente de confirmation" #. module: hr_expense #: report:hr.expense:0 @@ -859,10 +863,11 @@ msgid "Name" msgstr "Nom" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" +"Vous ne pouvez supprimer que des notes de frais à l'état de brouillon!" #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 diff --git a/addons/hr_expense/i18n/hr.po b/addons/hr_expense/i18n/hr.po index 7f9e63a4d83..1c5e768982f 100644 --- a/addons/hr_expense/i18n/hr.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -148,8 +148,10 @@ msgstr "Poruke" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "Greška!" @@ -236,7 +238,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "Upozoranje" @@ -343,7 +345,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -398,7 +400,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Nakon generiranja računa, isplati troškove" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "Upozorenje!" @@ -486,7 +488,7 @@ msgid "Employee encode all his expenses" msgstr "Djelatnik je šifrirao sve svoje troškove" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -514,7 +516,7 @@ msgid "Draft" msgstr "Nacrt" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -537,6 +539,7 @@ msgid "The direct manager approves the sheet" msgstr "" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Ukupni iznos" @@ -682,7 +685,6 @@ msgid "Unit Price" msgstr "Jed. cijena" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -848,7 +850,7 @@ msgid "Name" msgstr "Naziv" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/hu.po b/addons/hr_expense/i18n/hu.po index 1a569ff616f..aee0da9ab09 100644 --- a/addons/hr_expense/i18n/hu.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -152,8 +152,10 @@ msgstr "Üzenetek" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "Hiba!" @@ -252,7 +254,7 @@ msgstr "" "direkt HTML formátumú ahhoz hogy beilleszthető legyen a kanban nézetekbe." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "Figyelmeztetés" @@ -360,7 +362,7 @@ msgstr "" "A költségek egy részét valószínűleg tovább lehet számlázni a vevőknek" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "Az alkalmazottnak kell lenni otthoni címének." @@ -415,7 +417,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "A költségek megtérítése a számla elkészülte után" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "Figyelem!" @@ -503,7 +505,7 @@ msgid "Employee encode all his expenses" msgstr "Az alkalmazott berögzíti minden költségét" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -533,7 +535,7 @@ msgid "Draft" msgstr "Tervezet" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -558,6 +560,7 @@ msgid "The direct manager approves the sheet" msgstr "A közvetlen felettes jóváhagyja a táblázatot" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Összesen" @@ -712,7 +715,6 @@ msgid "Unit Price" msgstr "Egységár" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -847,7 +849,7 @@ msgstr "Elutasított" #. module: hr_expense #: field:product.product,hr_expense_ok:0 msgid "Can be Expensed" -msgstr "Készpénzessé tehető" +msgstr "Költségként elszámolható" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_confirmed @@ -886,7 +888,7 @@ msgid "Name" msgstr "Név" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "Csak tervezet készpénzes kiadást törölhet!" diff --git a/addons/hr_expense/i18n/id.po b/addons/hr_expense/i18n/id.po index c3a698c371f..23cc499a79c 100644 --- a/addons/hr_expense/i18n/id.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -148,8 +148,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -236,7 +238,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -343,7 +345,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -398,7 +400,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -486,7 +488,7 @@ msgid "Employee encode all his expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -514,7 +516,7 @@ msgid "Draft" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -537,6 +539,7 @@ msgid "The direct manager approves the sheet" msgstr "" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "" @@ -682,7 +685,6 @@ msgid "Unit Price" msgstr "" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -848,7 +850,7 @@ msgid "Name" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/it.po b/addons/hr_expense/i18n/it.po index 4e70fa69b94..343efffcee5 100644 --- a/addons/hr_expense/i18n/it.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -150,8 +150,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -240,7 +242,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -349,7 +351,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Alcuni costi devono essere rifatturati al cliente" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -404,7 +406,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Dopo avercreato la fattura, rimborsare le spese" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -492,7 +494,7 @@ msgid "Employee encode all his expenses" msgstr "Il dipendente dichiara tutte le sue spese" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -520,7 +522,7 @@ msgid "Draft" msgstr "Bozza" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -543,6 +545,7 @@ msgid "The direct manager approves the sheet" msgstr "Il superiore approva il foglio" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Importo Totale" @@ -688,7 +691,6 @@ msgid "Unit Price" msgstr "Prezzo unitario" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -854,7 +856,7 @@ msgid "Name" msgstr "Nome" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/ja.po b/addons/hr_expense/i18n/ja.po index 6e5700a1a8f..8797695950f 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -149,8 +149,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -237,7 +239,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -344,7 +346,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "顧客にはある程度の経費を追加請求することになるでしょう。" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -399,7 +401,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "請求書を作成後、経費を精算する。" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -487,7 +489,7 @@ msgid "Employee encode all his expenses" msgstr "従業員は自分の経費を記録する。" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -515,7 +517,7 @@ msgid "Draft" msgstr "草案" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -538,6 +540,7 @@ msgid "The direct manager approves the sheet" msgstr "直属マネジャが帳票を承認します。" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "合計金額" @@ -683,7 +686,6 @@ msgid "Unit Price" msgstr "単価" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -851,7 +853,7 @@ msgid "Name" msgstr "氏名" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/ko.po b/addons/hr_expense/i18n/ko.po index 3fa5a4fc57b..84248481669 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -149,8 +149,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -237,7 +239,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -344,7 +346,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "일부 비요은 고객에게 재차 인보이스될 수 있습니다." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -399,7 +401,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "이보이스 생성 후, 비용 환급" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -487,7 +489,7 @@ msgid "Employee encode all his expenses" msgstr "직원이 자신의 모든 비용을 인코드합니다." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -515,7 +517,7 @@ msgid "Draft" msgstr "초안" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -538,6 +540,7 @@ msgid "The direct manager approves the sheet" msgstr "직속 상관이 이 시트를 승인합니다." #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "총액" @@ -683,7 +686,6 @@ msgid "Unit Price" msgstr "단가" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -849,7 +851,7 @@ msgid "Name" msgstr "이름" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/lt.po b/addons/hr_expense/i18n/lt.po index d9b005587e5..9cfc9856b60 100644 --- a/addons/hr_expense/i18n/lt.po +++ b/addons/hr_expense/i18n/lt.po @@ -13,14 +13,14 @@ msgstr "" "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 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 #: model:process.node,name:hr_expense.process_node_confirmedexpenses0 msgid "Confirmed Expenses" -msgstr "" +msgstr "Patvirtintos išlaidos" #. module: hr_expense #: model:ir.model,name:hr_expense.model_hr_expense_line @@ -47,7 +47,7 @@ msgstr "" #: view:hr.expense.expense:0 #: view:hr.expense.report:0 msgid "Group By..." -msgstr "" +msgstr "Grupuoti pagal..." #. module: hr_expense #: model:product.template,name:hr_expense.air_ticket_product_template @@ -57,7 +57,7 @@ msgstr "" #. module: hr_expense #: report:hr.expense:0 msgid "Validated By" -msgstr "" +msgstr "Patvirtintas" #. module: hr_expense #: view:hr.expense.expense:0 @@ -65,45 +65,45 @@ msgstr "" #: view:hr.expense.report:0 #: field:hr.expense.report,department_id:0 msgid "Department" -msgstr "" +msgstr "Padalinys" #. module: hr_expense #: view:hr.expense.expense:0 msgid "New Expense" -msgstr "" +msgstr "Nepatvirtintos išlaidos" #. module: hr_expense #: field:hr.expense.line,uom_id:0 #: view:product.product:0 msgid "Unit of Measure" -msgstr "" +msgstr "Matavimo vienetas" #. module: hr_expense #: selection:hr.expense.report,month:0 msgid "March" -msgstr "" +msgstr "Kovas" #. module: hr_expense #: field:hr.expense.expense,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Neskaitytos žinutės" #. module: hr_expense #: field:hr.expense.expense,company_id:0 #: view:hr.expense.report:0 #: field:hr.expense.report,company_id:0 msgid "Company" -msgstr "" +msgstr "Įmonė" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Set to Draft" -msgstr "" +msgstr "Nustatyti kaip juodraštį" #. module: hr_expense #: view:hr.expense.expense:0 msgid "To Pay" -msgstr "" +msgstr "Reikia apmokėti" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 @@ -127,7 +127,7 @@ msgstr "" #: view:hr.expense.report:0 #: field:hr.expense.report,day:0 msgid "Day" -msgstr "" +msgstr "Diena" #. module: hr_expense #: help:hr.expense.expense,date_valid:0 @@ -139,20 +139,22 @@ msgstr "" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Notes" -msgstr "" +msgstr "Pastabos" #. module: hr_expense #: field:hr.expense.expense,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Pranešimai" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" -msgstr "" +msgstr "Klaida!" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_refused @@ -163,17 +165,17 @@ msgstr "" #: model:ir.actions.act_window,name:hr_expense.hr_expense_product #: view:product.product:0 msgid "Products" -msgstr "" +msgstr "Produktai" #. module: hr_expense #: view:hr.expense.report:0 msgid "Confirm Expenses" -msgstr "" +msgstr "Nepatvirtintos išlaidos" #. module: hr_expense #: selection:hr.expense.report,state:0 msgid "Cancelled" -msgstr "" +msgstr "Atšauktas" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_refused0 @@ -183,7 +185,7 @@ msgstr "" #. module: hr_expense #: help:hr.expense.expense,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Jeigu pažymėta, naujos žinutės reikalaus jūsų dėmesio." #. module: hr_expense #: selection:hr.expense.report,state:0 @@ -193,17 +195,17 @@ msgstr "" #. module: hr_expense #: selection:hr.expense.report,state:0 msgid "Accepted" -msgstr "" +msgstr "Priimtas" #. module: hr_expense #: field:hr.expense.line,ref:0 msgid "Reference" -msgstr "" +msgstr "Numeris" #. module: hr_expense #: report:hr.expense:0 msgid "Certified honest and conform," -msgstr "" +msgstr "Sąžiningai patvirtinu išlaidas," #. module: hr_expense #: help:hr.expense.expense,state:0 @@ -226,7 +228,7 @@ msgstr "" #: view:hr.expense.report:0 #: field:hr.expense.report,nbr:0 msgid "# of Lines" -msgstr "" +msgstr "# eilučių" #. module: hr_expense #: help:hr.expense.expense,message_summary:0 @@ -234,22 +236,24 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Saugo pokalbių suvestinę (žinučių skaičius, ...). Ši apžvalga saugoma html " +"formatu, kad būtų galima įterpti į kanban rodinius." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" -msgstr "" +msgstr "Įspėjimas" #. module: hr_expense #: report:hr.expense:0 msgid "(Date and signature)" -msgstr "" +msgstr "(data ir parašas)" #. module: hr_expense #: report:hr.expense:0 msgid "Total:" -msgstr "" +msgstr "Iš viso:" #. module: hr_expense #: model:process.transition,name:hr_expense.process_transition_refuseexpense0 @@ -259,13 +263,13 @@ msgstr "" #. module: hr_expense #: field:hr.expense.report,price_average:0 msgid "Average Price" -msgstr "" +msgstr "Vidutinė kaina" #. module: hr_expense #: view:hr.expense.expense:0 #: model:process.transition.action,name:hr_expense.process_transition_action_confirm0 msgid "Confirm" -msgstr "" +msgstr "Patvirtinti" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_supplierinvoice0 @@ -275,7 +279,7 @@ msgstr "" #. module: hr_expense #: field:hr.expense.report,delay_valid:0 msgid "Delay to Valid" -msgstr "" +msgstr "Delsimas atlikti" #. module: hr_expense #: help:hr.expense.line,sequence:0 @@ -287,14 +291,14 @@ msgstr "" #: view:hr.expense.report:0 #: field:hr.expense.report,state:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: hr_expense #: field:hr.expense.line,analytic_account:0 #: view:hr.expense.report:0 #: field:hr.expense.report,analytic_account:0 msgid "Analytic account" -msgstr "" +msgstr "Analitinė sąskaita" #. module: hr_expense #: field:hr.expense.report,date:0 @@ -304,12 +308,12 @@ msgstr "" #. module: hr_expense #: view:hr.expense.report:0 msgid "Waiting" -msgstr "" +msgstr "Laukiama" #. module: hr_expense #: field:hr.expense.expense,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Prenumeratoriai" #. module: hr_expense #: report:hr.expense:0 @@ -317,25 +321,25 @@ msgstr "" #: field:hr.expense.expense,employee_id:0 #: view:hr.expense.report:0 msgid "Employee" -msgstr "" +msgstr "Darbuotojas" #. module: hr_expense #: view:hr.expense.expense:0 #: selection:hr.expense.expense,state:0 msgid "New" -msgstr "" +msgstr "Nauja" #. module: hr_expense #: report:hr.expense:0 #: field:hr.expense.report,product_qty:0 msgid "Qty" -msgstr "" +msgstr "Kiekis" #. module: hr_expense #: view:hr.expense.report:0 #: field:hr.expense.report,price_total:0 msgid "Total Price" -msgstr "" +msgstr "Bendra kaina" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_reinvoicing0 @@ -343,27 +347,27 @@ msgid "Some costs may be reinvoices to the customer" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." -msgstr "" +msgstr "Darbuotojo kortelėje nėra nustatas namų adresas" #. module: hr_expense #: view:board.board:0 #: view:hr.expense.expense:0 #: model:ir.actions.act_window,name:hr_expense.action_my_expense msgid "My Expenses" -msgstr "" +msgstr "Mano išlaidos" #. module: hr_expense #: view:hr.expense.report:0 msgid "Creation Date" -msgstr "" +msgstr "Sukūrimo data" #. module: hr_expense #: model:ir.actions.report.xml,name:hr_expense.hr_expenses msgid "HR expenses" -msgstr "" +msgstr "Personalo išlaidos" #. module: hr_expense #: field:hr.expense.expense,id:0 @@ -379,18 +383,18 @@ msgstr "" #: field:hr.expense.expense,journal_id:0 #: field:hr.expense.report,journal_id:0 msgid "Force Journal" -msgstr "" +msgstr "Žurnalas" #. module: hr_expense #: view:hr.expense.report:0 #: field:hr.expense.report,no_of_products:0 msgid "# of Products" -msgstr "" +msgstr "# produktų" #. module: hr_expense #: selection:hr.expense.report,month:0 msgid "July" -msgstr "" +msgstr "Liepa" #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_reimburseexpense0 @@ -398,10 +402,10 @@ msgid "After creating invoice, reimburse expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" -msgstr "" +msgstr "Įspėjimas!" #. module: hr_expense #: model:process.node,name:hr_expense.process_node_reimbursement0 @@ -425,7 +429,7 @@ msgstr "" #: model:ir.actions.act_window,name:hr_expense.action_hr_expense_report_all #: model:ir.ui.menu,name:hr_expense.menu_hr_expense_report_all msgid "Expenses Analysis" -msgstr "" +msgstr "Sąnaudų analizė" #. module: hr_expense #: view:hr.expense.expense:0 @@ -433,7 +437,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 "Išlaidos" #. module: hr_expense #: view:hr.expense.expense:0 @@ -445,30 +449,30 @@ msgstr "" #. module: hr_expense #: field:hr.expense.report,delay_confirm:0 msgid "Delay to Confirm" -msgstr "" +msgstr "Delsimas patvirtinti" #. module: hr_expense #: selection:hr.expense.report,month:0 msgid "September" -msgstr "" +msgstr "Rugsėjis" #. module: hr_expense #: selection:hr.expense.report,month:0 msgid "December" -msgstr "" +msgstr "Gruodis" #. module: hr_expense #: view:hr.expense.expense:0 #: view:hr.expense.report:0 #: field:hr.expense.report,month:0 msgid "Month" -msgstr "" +msgstr "Mėnuo" #. module: hr_expense #: field:hr.expense.expense,currency_id:0 #: field:hr.expense.report,currency_id:0 msgid "Currency" -msgstr "" +msgstr "Valiuta" #. module: hr_expense #: field:hr.expense.expense,voucher_id:0 @@ -478,7 +482,7 @@ msgstr "" #. module: hr_expense #: selection:hr.expense.expense,state:0 msgid "Waiting Approval" -msgstr "" +msgstr "Laukiama patvirtinimo" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_draftexpenses0 @@ -486,7 +490,7 @@ msgid "Employee encode all his expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -496,12 +500,12 @@ msgstr "" #. module: hr_expense #: help:hr.expense.expense,journal_id:0 msgid "The journal used when the expense is done." -msgstr "" +msgstr "DK įrašų registravimui naudojamas apskaitos žurnalas." #. module: hr_expense #: field:hr.expense.expense,note:0 msgid "Note" -msgstr "" +msgstr "Pastaba" #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_reimbursereinvoice0 @@ -511,10 +515,10 @@ msgstr "" #. module: hr_expense #: selection:hr.expense.report,state:0 msgid "Draft" -msgstr "" +msgstr "Juodraštis" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -529,7 +533,7 @@ msgstr "" #. module: hr_expense #: selection:hr.expense.report,month:0 msgid "August" -msgstr "" +msgstr "Rugpjūtis" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_approved0 @@ -537,14 +541,15 @@ msgid "The direct manager approves the sheet" msgstr "" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" -msgstr "" +msgstr "Iš viso" #. module: hr_expense #: selection:hr.expense.report,month:0 msgid "June" -msgstr "" +msgstr "Birželis" #. module: hr_expense #: model:process.node,name:hr_expense.process_node_draftexpenses0 @@ -554,7 +559,7 @@ msgstr "" #. module: hr_expense #: field:hr.expense.expense,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Ar prenumeratorius" #. module: hr_expense #: model:ir.actions.act_window,name:hr_expense.product_normal_form_view_installer @@ -566,32 +571,32 @@ msgstr "" #: field:hr.expense.expense,date:0 #: field:hr.expense.line,date_value:0 msgid "Date" -msgstr "" +msgstr "Data" #. module: hr_expense #: selection:hr.expense.report,month:0 msgid "November" -msgstr "" +msgstr "Lapkritis" #. module: hr_expense #: view:hr.expense.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "Išplėstiniai filtrai..." #. module: hr_expense #: field:hr.expense.expense,user_id:0 msgid "User" -msgstr "" +msgstr "Naudotojas" #. module: hr_expense #: model:ir.ui.menu,name:hr_expense.menu_hr_product msgid "Expense Categories" -msgstr "" +msgstr "Sąnaudų kategorijos" #. module: hr_expense #: selection:hr.expense.report,month:0 msgid "October" -msgstr "" +msgstr "Spalis" #. module: hr_expense #: model:ir.actions.act_window,help:hr_expense.expense_all @@ -608,26 +613,37 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad užregistruotumėte išlaidas. \n" +"

\n" +" OpenERP pagalba bus lengviau stebėti išlaidų grąžinimo " +"procedūrą;\n" +" išlaidų ataskaitą patvirtina vadovas, darbuotojui\n" +" kompensuojamos patirtos išlaidos, pagal kai kurias išlaidas " +"išrašoma sąskaita-faktūra\n" +" pirkėjams.\n" +"

\n" +" " #. module: hr_expense #: view:hr.expense.expense:0 msgid "Generate Accounting Entries" -msgstr "" +msgstr "Sukurti DK įrašus" #. module: hr_expense #: selection:hr.expense.report,month:0 msgid "January" -msgstr "" +msgstr "Sausis" #. module: hr_expense #: report:hr.expense:0 msgid "HR Expenses" -msgstr "" +msgstr "Personalo išlaidos" #. module: hr_expense #: field:hr.expense.expense,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Santrauka" #. module: hr_expense #: model:product.template,name:hr_expense.car_travel_product_template @@ -637,12 +653,12 @@ msgstr "" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Submit to Manager" -msgstr "" +msgstr "Pateikti vadovui" #. module: hr_expense #: view:hr.expense.report:0 msgid "Done Expenses" -msgstr "" +msgstr "Atliktos išlaidos" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_confirmedexpenses0 @@ -652,13 +668,13 @@ msgstr "" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Expenses to Invoice" -msgstr "" +msgstr "Išlaidos, pagal kurias reikia išrašyti sąskaitą-faktūrą" #. module: hr_expense #: model:process.node,name:hr_expense.process_node_supplierinvoice0 #: model:process.transition,name:hr_expense.process_transition_approveinvoice0 msgid "Supplier Invoice" -msgstr "" +msgstr "Tiekėjo sąskaita faktūra" #. module: hr_expense #: view:hr.expense.expense:0 @@ -668,36 +684,35 @@ msgstr "" #. module: hr_expense #: field:hr.expense.report,voucher_id:0 msgid "Receipt" -msgstr "" +msgstr "Kvitas" #. module: hr_expense #: view:hr.expense.report:0 msgid "Approved Expenses" -msgstr "" +msgstr "Patvirtintos išlaidos" #. module: hr_expense #: report:hr.expense:0 #: field:hr.expense.line,unit_amount:0 msgid "Unit Price" -msgstr "" +msgstr "Vieneto kaina" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" -msgstr "" +msgstr "Atlikta" #. module: hr_expense #: model:process.transition.action,name:hr_expense.process_transition_action_supplierinvoice0 msgid "Invoice" -msgstr "" +msgstr "Sąskaita faktūra" #. module: hr_expense #: view:hr.expense.report:0 #: field:hr.expense.report,year:0 msgid "Year" -msgstr "" +msgstr "Metai" #. module: hr_expense #: model:process.transition,name:hr_expense.process_transition_reimbursereinvoice0 @@ -707,23 +722,23 @@ msgstr "" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Expense Date" -msgstr "" +msgstr "Data" #. module: hr_expense #: field:hr.expense.expense,user_valid:0 msgid "Validation By" -msgstr "" +msgstr "Patvirtino" #. module: hr_expense #: view:hr.expense.expense:0 #: model:process.transition.action,name:hr_expense.process_transition_action_refuse0 msgid "Refuse" -msgstr "" +msgstr "Atmesti" #. module: hr_expense #: model:process.transition,name:hr_expense.process_transition_confirmexpense0 msgid "Confirm expense" -msgstr "" +msgstr "Patvirtinti išlaidas" #. module: hr_expense #: model:process.transition,name:hr_expense.process_transition_approveexpense0 @@ -733,12 +748,12 @@ msgstr "" #. module: hr_expense #: model:process.transition.action,name:hr_expense.process_transition_action_accept0 msgid "Accept" -msgstr "" +msgstr "Priimti" #. module: hr_expense #: report:hr.expense:0 msgid "This document must be dated and signed for reimbursement" -msgstr "" +msgstr "Šį dokumentą būtina pasirašyti, kad būtų kompensuotos išlaidos" #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 @@ -761,7 +776,7 @@ msgstr "" #: model:mail.message.subtype,name:hr_expense.mt_expense_approved #: model:process.node,name:hr_expense.process_node_approved0 msgid "Approved" -msgstr "" +msgstr "Patvirtinta" #. module: hr_expense #: field:hr.expense.line,product_id:0 @@ -769,7 +784,7 @@ msgstr "" #: field:hr.expense.report,product_id:0 #: model:ir.model,name:hr_expense.model_product_product msgid "Product" -msgstr "" +msgstr "Produktas" #. module: hr_expense #: report:hr.expense:0 @@ -777,22 +792,22 @@ msgstr "" #: field:hr.expense.expense,name:0 #: field:hr.expense.line,description:0 msgid "Description" -msgstr "" +msgstr "Aprašymas" #. module: hr_expense #: selection:hr.expense.report,month:0 msgid "May" -msgstr "" +msgstr "Gegužė" #. module: hr_expense #: field:hr.expense.line,unit_quantity:0 msgid "Quantities" -msgstr "" +msgstr "Kiekis" #. module: hr_expense #: report:hr.expense:0 msgid "Price" -msgstr "" +msgstr "Kaina" #. module: hr_expense #: field:hr.expense.report,no_of_account:0 @@ -804,12 +819,12 @@ msgstr "" #: model:mail.message.subtype,name:hr_expense.mt_expense_refused #: model:process.node,name:hr_expense.process_node_refused0 msgid "Refused" -msgstr "" +msgstr "Atmesta" #. module: hr_expense #: field:product.product,hr_expense_ok:0 msgid "Can be Expensed" -msgstr "" +msgstr "Naudojamas išlaidoms" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_confirmed @@ -819,7 +834,7 @@ msgstr "" #. module: hr_expense #: report:hr.expense:0 msgid "Ref." -msgstr "" +msgstr "Ident." #. module: hr_expense #: field:hr.expense.report,employee_id:0 @@ -830,25 +845,25 @@ msgstr "" #: view:hr.expense.report:0 #: field:hr.expense.report,user_id:0 msgid "Validation User" -msgstr "" +msgstr "Patvirtino" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Accounting Data" -msgstr "" +msgstr "Apskaitos duomenys" #. module: hr_expense #: selection:hr.expense.report,month:0 msgid "February" -msgstr "" +msgstr "Vasaris" #. module: hr_expense #: report:hr.expense:0 msgid "Name" -msgstr "" +msgstr "Pavadinimas" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" @@ -856,7 +871,7 @@ msgstr "" #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Ledger Posting" -msgstr "" +msgstr "DK įrašas" #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_approveinvoice0 @@ -871,27 +886,27 @@ msgstr "" #. module: hr_expense #: selection:hr.expense.report,month:0 msgid "April" -msgstr "" +msgstr "Balandis" #. module: hr_expense #: field:hr.expense.line,name:0 msgid "Expense Note" -msgstr "" +msgstr "Aprašymas" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Approve" -msgstr "" +msgstr "Patvirtinti" #. module: hr_expense #: help:hr.expense.expense,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Žinučių ir pranešimų istorija" #. module: hr_expense #: field:hr.expense.line,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Seka" #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_confirmexpense0 @@ -905,30 +920,31 @@ msgstr "" #: model:ir.ui.menu,name:hr_expense.next_id_49 #: model:product.category,name:hr_expense.cat_expense msgid "Expenses" -msgstr "" +msgstr "Išlaidos" #. module: hr_expense #: help:product.product,hr_expense_ok:0 msgid "Specify if the product can be selected in an HR expense line." msgstr "" +"Nurodo ar produktas gali būti pasirenkamas personalo išlaidų eilutėje." #. module: hr_expense #: view:hr.expense.expense:0 msgid "Accounting" -msgstr "" +msgstr "Apskaita" #. module: hr_expense #: view:hr.expense.expense:0 #: model:mail.message.subtype,name:hr_expense.mt_expense_confirmed msgid "To Approve" -msgstr "" +msgstr "Patvirtinta" #. module: hr_expense #: view:hr.expense.expense:0 #: view:hr.expense.line:0 #: field:hr.expense.line,total_amount:0 msgid "Total" -msgstr "" +msgstr "Iš viso" #. module: hr_expense #: model:process.node,name:hr_expense.process_node_reinvoicing0 diff --git a/addons/hr_expense/i18n/lv.po b/addons/hr_expense/i18n/lv.po index b889b29315a..a6119b7eb6c 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -151,8 +151,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -241,7 +243,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -348,7 +350,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Atsevišķas izmaksas var tikt piestādītas tālāk klientam." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -403,7 +405,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Tiek atmaksāti izdevumi pēc rēķina izveides" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -491,7 +493,7 @@ msgid "Employee encode all his expenses" msgstr "Darbinieki ievada avansa norēķinus." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -519,7 +521,7 @@ msgid "Draft" msgstr "Uzmetums" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -542,6 +544,7 @@ msgid "The direct manager approves the sheet" msgstr "Tiešais vadītājs apstiprina sarakstu." #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Kopā" @@ -687,7 +690,6 @@ msgid "Unit Price" msgstr "Vienības Cena" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -853,7 +855,7 @@ msgid "Name" msgstr "Nosaukums" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/mk.po b/addons/hr_expense/i18n/mk.po index e610ad9c78e..9d84e8c15eb 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -119,7 +119,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 +138,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 @@ -151,8 +153,10 @@ msgstr "Пораки" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "Грешка!" @@ -181,7 +185,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 +221,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 +233,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 @@ -241,7 +252,7 @@ msgstr "" "директно во html формат со цел да биде вметнато во kanban преглед." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "Внимание" @@ -280,12 +291,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 +311,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 @@ -348,7 +360,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Некои трошоци може повторно да бидат фактурирани на клиентот" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "Вработениот мора да има домашна адреса" @@ -403,7 +415,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "После креирање на фактура, надомести ги трошоците" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "Предупредување!" @@ -438,7 +450,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 @@ -491,7 +503,7 @@ msgid "Employee encode all his expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -521,12 +533,14 @@ msgid "Draft" msgstr "Нацрт" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format 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 @@ -544,6 +558,7 @@ msgid "The direct manager approves the sheet" msgstr "" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Вкупна сума" @@ -615,6 +630,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 @@ -689,7 +715,6 @@ msgid "Unit Price" msgstr "Единечна цена" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -855,7 +880,7 @@ msgid "Name" msgstr "Име" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "Може да избришете само нацрт трошоци!" @@ -918,6 +943,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_expense/i18n/mn.po b/addons/hr_expense/i18n/mn.po index 2b6c3326ee4..849efee1406 100644 --- a/addons/hr_expense/i18n/mn.po +++ b/addons/hr_expense/i18n/mn.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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -152,8 +152,10 @@ msgstr "Зурвасууд" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "Алдаа!" @@ -252,7 +254,7 @@ msgstr "" "html форматтай бөгөөд канбан харагдацад шууд орж харагдах боломжтой." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "Анхааруулга" @@ -359,7 +361,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Зарим үнүүдийг харилцагч дахин нэхэмжилж магадгүй" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "Ажилтны оршин суугаа гэрийн хаягтай байх ёстой" @@ -414,7 +416,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Нэхэмжилэлийг үүсгэсэн дараа зардлыг нөхөн төлөх" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "Анхааруулга!" @@ -434,7 +436,7 @@ msgstr "Батламжилсан огноо" #: code:addons/hr_expense/hr_expense.py:226 #, python-format msgid "Expense Receipt" -msgstr "Зардлын талон" +msgstr "Зардлын баримт" #. module: hr_expense #: view:hr.expense.report:0 @@ -489,7 +491,7 @@ msgstr "Валют" #. module: hr_expense #: field:hr.expense.expense,voucher_id:0 msgid "Employee's Receipt" -msgstr "Ажилтны талон" +msgstr "Ажилтны Хүлээн авсан баримт" #. module: hr_expense #: selection:hr.expense.expense,state:0 @@ -502,7 +504,7 @@ msgid "Employee encode all his expenses" msgstr "Ажилчдын бүх зардлыг бүртгэх" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -531,7 +533,7 @@ msgid "Draft" msgstr "Ноорог" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -556,6 +558,7 @@ msgid "The direct manager approves the sheet" msgstr "Хариуцсан байгаа менежер энэ хуудсыг зөвшөөрнө" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Нийт хэмжээ" @@ -709,7 +712,6 @@ msgid "Unit Price" msgstr "Нэгжийн үнэ" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -882,7 +884,7 @@ msgid "Name" msgstr "Нэр" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "Та зөвхөн ноорон зардлуудыг устгаж болно!" diff --git a/addons/hr_expense/i18n/nb.po b/addons/hr_expense/i18n/nb.po index 1a5353adfad..342195c97d5 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -149,8 +149,10 @@ msgstr "Meldinger." #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "Feil!" @@ -237,7 +239,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "Advarsel." @@ -344,7 +346,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Noen kostnader kan være fakturaer til kunden." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "Ansatt må ha en hjemme adresse." @@ -399,7 +401,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "Advarsel!" @@ -487,7 +489,7 @@ msgid "Employee encode all his expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -515,7 +517,7 @@ msgid "Draft" msgstr "Kladd." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -538,6 +540,7 @@ msgid "The direct manager approves the sheet" msgstr "" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Totalt beløp" @@ -683,7 +686,6 @@ msgid "Unit Price" msgstr "Enhetspris." #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -849,7 +851,7 @@ msgid "Name" msgstr "Navn." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "Du kan bare slette utkast utgifter!" diff --git a/addons/hr_expense/i18n/nl.po b/addons/hr_expense/i18n/nl.po index 9d588eb71b2..03dccd243d6 100644 --- a/addons/hr_expense/i18n/nl.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -152,8 +152,10 @@ msgstr "Berichten" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "Fout!" @@ -251,7 +253,7 @@ msgstr "" "ingevoegd." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "Waarschuwing" @@ -359,7 +361,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Sommige kosten kunnen doorbelast worden aan de klant" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "Voor de werknemer moet een huisadres zijn ingesteld." @@ -374,7 +376,7 @@ msgstr "Mijn declaraties" #. module: hr_expense #: view:hr.expense.report:0 msgid "Creation Date" -msgstr "Datum gemaakt" +msgstr "Aanmaakdatum" #. module: hr_expense #: model:ir.actions.report.xml,name:hr_expense.hr_expenses @@ -414,7 +416,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Na aanmaken factuur, kosten vergoeden" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "Waarschuwing!" @@ -502,7 +504,7 @@ msgid "Employee encode all his expenses" msgstr "Werknemer declareert al diens onkosten" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -532,7 +534,7 @@ msgid "Draft" msgstr "Concept" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -557,6 +559,7 @@ msgid "The direct manager approves the sheet" msgstr "De direct leidinggevende accordeert het formulier" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Totaalbedrag" @@ -633,7 +636,7 @@ msgstr "" "

\n" " OpenERP zal ervoor zorgen het hele proces wordt gevolgd, de " "declaratie\n" -" wordt gevalideerd door de manager(s), en wordt aan de " +" wordt goedgekeurd door de manager(s), en wordt aan de " "werknemer vergoed.\n" " Sommige kosten worden doorberekend aan de klanten.\n" "

\n" @@ -712,7 +715,6 @@ msgid "Unit Price" msgstr "Prijs" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -883,7 +885,7 @@ msgid "Name" msgstr "Naam" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "U kunt alleen declaraties in de conceptfase verwijderen." diff --git a/addons/hr_expense/i18n/nl_BE.po b/addons/hr_expense/i18n/nl_BE.po index 47d3b4917ad..d1eace79898 100644 --- a/addons/hr_expense/i18n/nl_BE.po +++ b/addons/hr_expense/i18n/nl_BE.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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -148,8 +148,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -236,7 +238,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -343,7 +345,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -398,7 +400,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -486,7 +488,7 @@ msgid "Employee encode all his expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -514,7 +516,7 @@ msgid "Draft" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -537,6 +539,7 @@ msgid "The direct manager approves the sheet" msgstr "" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "" @@ -682,7 +685,6 @@ msgid "Unit Price" msgstr "" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -848,7 +850,7 @@ msgid "Name" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/pl.po b/addons/hr_expense/i18n/pl.po index a3772efae8c..43b77e9657a 100644 --- a/addons/hr_expense/i18n/pl.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -150,8 +150,10 @@ msgstr "Wiadomości" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "Błąd!" @@ -241,7 +243,7 @@ msgstr "" "kanban." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "Ostrzeżenie" @@ -348,7 +350,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Część kosztów może być refakturowana na klienta" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "Pracownik musi mieć adres domowy" @@ -403,7 +405,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Po utworzeniu faktury zwrot wydatków" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "Ostrzeżenie !" @@ -491,7 +493,7 @@ msgid "Employee encode all his expenses" msgstr "Pracownik wprowadza swoje wydatki" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -521,7 +523,7 @@ msgid "Draft" msgstr "Projekt" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -544,6 +546,7 @@ msgid "The direct manager approves the sheet" msgstr "Bezpośredni przełożony aprobuje zestawienie" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Suma kwot" @@ -698,7 +701,6 @@ msgid "Unit Price" msgstr "Cena jedn." #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -869,7 +871,7 @@ msgid "Name" msgstr "Nazwa" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "Możesz usuwać jedynie projekty wydatków!" diff --git a/addons/hr_expense/i18n/pt.po b/addons/hr_expense/i18n/pt.po index 64ca6e19cbe..ecf008b41c4 100644 --- a/addons/hr_expense/i18n/pt.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -149,8 +149,10 @@ msgstr "Mensagens" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "Erro!" @@ -239,7 +241,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "Aviso" @@ -347,7 +349,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Alguns custos podem ser re-faturados para o cliente" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "O empregado deve ter um endereço de casa" @@ -402,7 +404,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Após ter criado a fatura, reembolsar despesas" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "Aviso!" @@ -490,7 +492,7 @@ msgid "Employee encode all his expenses" msgstr "Funcionário codifica todos os seus gastos" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -518,7 +520,7 @@ msgid "Draft" msgstr "Rascunho" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -541,6 +543,7 @@ msgid "The direct manager approves the sheet" msgstr "O gestor direto aprova a folha" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Montante Total" @@ -590,7 +593,7 @@ msgstr "Utilizador" #. module: hr_expense #: model:ir.ui.menu,name:hr_expense.menu_hr_product msgid "Expense Categories" -msgstr "" +msgstr "Categorias de despesas" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -686,7 +689,6 @@ msgid "Unit Price" msgstr "Preço Unitário" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -716,7 +718,7 @@ msgstr "Data da despesa" #. module: hr_expense #: field:hr.expense.expense,user_valid:0 msgid "Validation By" -msgstr "" +msgstr "Validada por" #. module: hr_expense #: view:hr.expense.expense:0 @@ -857,10 +859,10 @@ msgid "Name" msgstr "Nome" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" -msgstr "" +msgstr "Só pode apagar despesas rascunho!" #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 diff --git a/addons/hr_expense/i18n/pt_BR.po b/addons/hr_expense/i18n/pt_BR.po index f552892ceb9..3912a24e050 100644 --- a/addons/hr_expense/i18n/pt_BR.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -153,8 +153,10 @@ msgstr "Mensagens" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "Erro!" @@ -251,7 +253,7 @@ msgstr "" "kanban." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "Atenção" @@ -359,7 +361,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Alguns custos podem ser refaturados para o cliente" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "O funcionário precisa ter um endereço residencial." @@ -414,7 +416,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Depois de criar a fatura, reembolsar despesas" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "Aviso!" @@ -502,7 +504,7 @@ msgid "Employee encode all his expenses" msgstr "Funcionário codifica todas suas despesas" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -532,7 +534,7 @@ msgid "Draft" msgstr "Provisório" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -557,6 +559,7 @@ msgid "The direct manager approves the sheet" msgstr "O Gerente aprova a Planilha" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Valor Total" @@ -712,7 +715,6 @@ msgid "Unit Price" msgstr "Preço Unitário" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -883,7 +885,7 @@ msgid "Name" msgstr "Nome" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "Você só pode excluir despesas provisórias!" @@ -980,6 +982,12 @@ msgstr "Refaturar" #~ "O nome do objeto precisa iniciar com x_ e não conter nenhum caracter " #~ "especial!" +#~ msgid "Date Confirmed" +#~ msgstr "Data confirmada" + +#~ msgid "All expenses" +#~ msgstr "Todas as despesas" + #~ msgid "Validation" #~ msgstr "Validação" @@ -990,10 +998,16 @@ msgstr "Refaturar" #~ "Determinar se o produto pode ser visível na lista de produtos dentro de uma " #~ "seleção de uma despesas de RH." +#~ msgid "Print HR expenses" +#~ msgstr "Imprimir despesas de RH" + #, python-format #~ msgid "Error !" #~ msgstr "Erro !" +#~ msgid "New Expenses Sheet" +#~ msgstr "Nova lista de despesas" + #~ msgid "Invoiced" #~ msgstr "Faturado" @@ -1006,6 +1020,18 @@ msgstr "Refaturar" #~ msgid "Date Validated" #~ msgstr "Data de validação" +#~ msgid "My Draft expenses" +#~ msgstr "Minhas despesas previstas" + +#~ msgid "Cancel" +#~ msgstr "Cancelar" + +#~ msgid "Expense Process" +#~ msgstr "Processo de despesa" + +#~ msgid "Draft expenses" +#~ msgstr "Despesas previstas" + #~ msgid "Employee's Invoice" #~ msgstr "Fatura do Funcionário" @@ -1172,3 +1198,36 @@ msgstr "Refaturar" #, python-format #~ msgid "Supplier Invoices" #~ msgstr "Faturas de Fornecedor" + +#, python-format +#~ msgid "" +#~ "Please configure Default Expanse account for Product purchase, " +#~ "`property_account_expense_categ`" +#~ msgstr "" +#~ "Por favor configurar a conta de Extensão padrão para compra do produto, " +#~ "`property_account_expense_categ`" + +#~ msgid "Expenses waiting payment" +#~ msgstr "Despesas à espera de pagamento" + +#~ msgid "Expenses waiting validation" +#~ msgstr "Despesas à Espera de Validação" + +#~ msgid "My expenses waiting validation" +#~ msgstr "Minhas despesas Esperando Validação" + +#, python-format +#~ msgid "The employee must have a contact address" +#~ msgstr "O Empregado DEVE ter UM ENDEREÇO ​​de Contato" + +#~ msgid "Account Move" +#~ msgstr "Conta Movimento" + +#~ msgid "Expense Sheet" +#~ msgstr "Folha de Despesa" + +#~ msgid "Short Description" +#~ msgstr "Curta Descrição" + +#~ msgid "Expenses waiting invoice" +#~ msgstr "Despesas espera fatura" diff --git a/addons/hr_expense/i18n/ro.po b/addons/hr_expense/i18n/ro.po index eb780427687..53292d8ee37 100644 --- a/addons/hr_expense/i18n/ro.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -152,8 +152,10 @@ msgstr "Mesaje" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "Eroare!" @@ -252,7 +254,7 @@ msgstr "" "in format HTML, cu scopul de a se introduce in vizualizari kanban." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "Avertisment" @@ -360,7 +362,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Anumite costuri ar putea fi refacturate clientului" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "Angajatul trebuie sa aiba o adresa de acasa." @@ -415,7 +417,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Dupa crearea facturii, rambursati cheltuielile" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "Avertisment!" @@ -503,7 +505,7 @@ msgid "Employee encode all his expenses" msgstr "Salariatul isi inregistreaza toate cheltuielile" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -533,7 +535,7 @@ msgid "Draft" msgstr "Ciorna" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -558,6 +560,7 @@ msgid "The direct manager approves the sheet" msgstr "Superiorul ierarhic aproba foaia." #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Suma totala" @@ -714,7 +717,6 @@ msgid "Unit Price" msgstr "Pret unitar" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -886,7 +888,7 @@ msgid "Name" msgstr "Nume" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "Puteti sterge doar cheltuielile in starea ciorna!" diff --git a/addons/hr_expense/i18n/ru.po b/addons/hr_expense/i18n/ru.po index 4a815d43099..c68930f0724 100644 --- a/addons/hr_expense/i18n/ru.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -148,8 +148,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -237,7 +239,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -344,7 +346,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Некоторые расходы могут быть пересчитаны клиенту" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -399,7 +401,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "После создания счета, возмещать расходы" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -487,7 +489,7 @@ msgid "Employee encode all his expenses" msgstr "Сотрудник описывает все свои расходы" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -515,7 +517,7 @@ msgid "Draft" msgstr "Черновик" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -538,6 +540,7 @@ msgid "The direct manager approves the sheet" msgstr "Руководитель утверждает отчет" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Итоговая сумма" @@ -683,7 +686,6 @@ msgid "Unit Price" msgstr "Цена за ед." #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -849,7 +851,7 @@ msgid "Name" msgstr "Название" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/sl.po b/addons/hr_expense/i18n/sl.po index 724ee47f907..09af4f72d3c 100644 --- a/addons/hr_expense/i18n/sl.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -148,8 +148,10 @@ msgstr "Sporočila" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "Napaka!" @@ -236,7 +238,7 @@ msgid "" msgstr "Povzetek (število sporočil,..)" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "Opozorilo" @@ -343,7 +345,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -398,7 +400,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "Opozorilo!" @@ -486,7 +488,7 @@ msgid "Employee encode all his expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -514,7 +516,7 @@ msgid "Draft" msgstr "Osnutek" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -537,6 +539,7 @@ msgid "The direct manager approves the sheet" msgstr "" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Skupni znesek" @@ -682,7 +685,6 @@ msgid "Unit Price" msgstr "Cena enote" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -848,7 +850,7 @@ msgid "Name" msgstr "Ime" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/sq.po b/addons/hr_expense/i18n/sq.po index 3504add7cd1..17df08e5909 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -149,8 +149,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -237,7 +239,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -344,7 +346,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -399,7 +401,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -487,7 +489,7 @@ msgid "Employee encode all his expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -515,7 +517,7 @@ msgid "Draft" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -538,6 +540,7 @@ msgid "The direct manager approves the sheet" msgstr "" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "" @@ -683,7 +686,6 @@ msgid "Unit Price" msgstr "" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -849,7 +851,7 @@ msgid "Name" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/sr.po b/addons/hr_expense/i18n/sr.po index 63244711583..ba1ec6d0325 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:22+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -149,8 +149,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -237,7 +239,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -344,7 +346,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -399,7 +401,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -487,7 +489,7 @@ msgid "Employee encode all his expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -515,7 +517,7 @@ msgid "Draft" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -538,6 +540,7 @@ msgid "The direct manager approves the sheet" msgstr "" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "" @@ -683,7 +686,6 @@ msgid "Unit Price" msgstr "" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -849,7 +851,7 @@ msgid "Name" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/sr@latin.po b/addons/hr_expense/i18n/sr@latin.po index 946831f85f2..1aa6625328c 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -150,8 +150,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -239,7 +241,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -346,7 +348,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Neki troškovi mogu da budu prefakturisani na kupca" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -401,7 +403,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Nakon fakturisanja ,nadoknađeni troškovi" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -489,7 +491,7 @@ msgid "Employee encode all his expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -517,7 +519,7 @@ msgid "Draft" msgstr "Nacrt" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -540,6 +542,7 @@ msgid "The direct manager approves the sheet" msgstr "" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Ukupan iznos" @@ -685,7 +688,6 @@ msgid "Unit Price" msgstr "Pojedinačna cena" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -851,7 +853,7 @@ msgid "Name" msgstr "Ime" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/sv.po b/addons/hr_expense/i18n/sv.po index bb21d06b3a4..fb752d61b5e 100644 --- a/addons/hr_expense/i18n/sv.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -150,8 +150,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -240,7 +242,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -347,7 +349,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "Vissa kostnader kan faktureras kunden" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -402,7 +404,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Efter skapandet av faktura, ersätt kostnader" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -490,7 +492,7 @@ msgid "Employee encode all his expenses" msgstr "Anställd koda alla hans utgifter" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -518,7 +520,7 @@ msgid "Draft" msgstr "Preliminär" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -541,6 +543,7 @@ msgid "The direct manager approves the sheet" msgstr "Chefen godkänner blanketten." #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Totalsumma" @@ -686,7 +689,6 @@ msgid "Unit Price" msgstr "Styckpris" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -858,7 +860,7 @@ msgid "Name" msgstr "Namn" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/th.po b/addons/hr_expense/i18n/th.po index c3e70f447d8..8fd527c3032 100644 --- a/addons/hr_expense/i18n/th.po +++ b/addons/hr_expense/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-06-21 05:35+0000\n" -"X-Generator: Launchpad (build 16677)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 2a968a08b69..4d2b04c89b2 100644 --- a/addons/hr_expense/i18n/tlh.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -148,8 +148,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -236,7 +238,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -343,7 +345,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -398,7 +400,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -486,7 +488,7 @@ msgid "Employee encode all his expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -514,7 +516,7 @@ msgid "Draft" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -537,6 +539,7 @@ msgid "The direct manager approves the sheet" msgstr "" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "" @@ -682,7 +685,6 @@ msgid "Unit Price" msgstr "" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -848,7 +850,7 @@ msgid "Name" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/tr.po b/addons/hr_expense/i18n/tr.po index 73d50f26085..bbc794def73 100644 --- a/addons/hr_expense/i18n/tr.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -35,7 +35,7 @@ msgstr "Muhasebeci masrafları geri ödeme" #. module: hr_expense #: model:mail.message.subtype,description:hr_expense.mt_expense_approved msgid "Expense approved" -msgstr "Gider onaylanmış" +msgstr "Gider onaylandı" #. module: hr_expense #: field:hr.expense.expense,date_confirm:0 @@ -86,7 +86,7 @@ msgstr "Mart" #. module: hr_expense #: field:hr.expense.expense,message_unread:0 msgid "Unread Messages" -msgstr "Okunmamış mesajlar" +msgstr "Okunmamış Mesajlar" #. module: hr_expense #: field:hr.expense.expense,company_id:0 @@ -112,6 +112,8 @@ msgid "" "No expense journal found. Please make sure you have a journal with type " "'purchase' configured." msgstr "" +"Gider yevmiyesi bulunamadı. Lütfen \"satınalma\" türü olarak yapılandırılmış " +"bir yevmiyesi olduğundan emin olun." #. module: hr_expense #: model:ir.model,name:hr_expense.model_hr_expense_report @@ -149,8 +151,10 @@ msgstr "Mesajlar" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "Hata!" @@ -215,6 +219,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 "" +"Gider isteği oluşturulduğunda durumu 'Taslak' olur.\n" +" Kullanıcı tarafından onaylanıp yöneticiye gönderildiğinde durumu 'Onay " +"Bekliyor' olur. \n" +"Yönetici kabul ettiğinde durumu 'Kabul Edildi' olur.\n" +" Gider isteği için bir makbuz kesildiğinde durumu 'Yapıldı' olur." #. module: hr_expense #: help:hr.expense.expense,date_confirm:0 @@ -222,6 +231,7 @@ msgid "" "Date of the confirmation of the sheet expense. It's filled when the button " "Confirm is pressed." msgstr "" +"Gider tablosunun onaylanma tarihi. Onayla düğmesine basıldığında doldurulur." #. module: hr_expense #: view:hr.expense.report:0 @@ -235,9 +245,11 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Sohbetçi özetini (mesaj sayısı, ...) barındırır. Bu özet kanban " +"görünümlerine eklenmek üzere doğrudan html biçimindedir." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "Uyarı" @@ -255,7 +267,7 @@ msgstr "Toplam:" #. module: hr_expense #: model:process.transition,name:hr_expense.process_transition_refuseexpense0 msgid "Refuse expense" -msgstr "Red Gider" +msgstr "Rededilen Gider" #. module: hr_expense #: field:hr.expense.report,price_average:0 @@ -271,17 +283,17 @@ msgstr "Onayla" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_supplierinvoice0 msgid "The accoutant validates the sheet" -msgstr "" +msgstr "Muhasebeci tabloyu doğrular" #. module: hr_expense #: field:hr.expense.report,delay_valid:0 msgid "Delay to Valid" -msgstr "" +msgstr "Onaylama Süresi" #. module: hr_expense #: help:hr.expense.line,sequence:0 msgid "Gives the sequence order when displaying a list of expense lines." -msgstr "" +msgstr "Gider kalemlerinin liste olarak görüntülenme sırasını verir." #. module: hr_expense #: field:hr.expense.expense,state:0 @@ -310,7 +322,7 @@ msgstr "Bekleyen" #. module: hr_expense #: field:hr.expense.expense,message_follower_ids:0 msgid "Followers" -msgstr "Takipçiler" +msgstr "İzleyiciler" #. module: hr_expense #: report:hr.expense:0 @@ -336,18 +348,18 @@ msgstr "Mik." #: view:hr.expense.report:0 #: field:hr.expense.report,price_total:0 msgid "Total Price" -msgstr "Toplam fiyat" +msgstr "Toplam Fiyat" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_reinvoicing0 msgid "Some costs may be reinvoices to the customer" -msgstr "" +msgstr "Bazı maliyetler müşteriye geri fatura edilebilir." #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." -msgstr "" +msgstr "Çalışanın bir ev adresi olmalıdır." #. module: hr_expense #: view:board.board:0 @@ -359,28 +371,28 @@ msgstr "Benim Giderlerim" #. module: hr_expense #: view:hr.expense.report:0 msgid "Creation Date" -msgstr "Oluşturma tarihi" +msgstr "Oluşturma Tarihi" #. module: hr_expense #: model:ir.actions.report.xml,name:hr_expense.hr_expenses msgid "HR expenses" -msgstr "İK gigerleri" +msgstr "İK Giderleri" #. module: hr_expense #: field:hr.expense.expense,id:0 msgid "Sheet ID" -msgstr "" +msgstr "Tablo ID" #. module: hr_expense #: model:process.transition,name:hr_expense.process_transition_reimburseexpense0 msgid "Reimburse expense" -msgstr "" +msgstr "Gider ödeme" #. module: hr_expense #: field:hr.expense.expense,journal_id:0 #: field:hr.expense.report,journal_id:0 msgid "Force Journal" -msgstr "" +msgstr "Yevmiye Zorla" #. module: hr_expense #: view:hr.expense.report:0 @@ -399,7 +411,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "Fatura oluşturulduktan sonra, giderleri geri ödeme" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "Uyarı!" @@ -479,7 +491,7 @@ msgstr "Personel Makbuzu" #. module: hr_expense #: selection:hr.expense.expense,state:0 msgid "Waiting Approval" -msgstr "Onay bekleyen" +msgstr "Onay Bekleyen" #. module: hr_expense #: model:process.node,note:hr_expense.process_node_draftexpenses0 @@ -487,12 +499,12 @@ msgid "Employee encode all his expenses" msgstr "Personel bütün giderlerini kodlama" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " "Unit of Measure" -msgstr "" +msgstr "Seçilen Birim ürün Ölçü Birimi ile aynı kategoriye ait değil" #. module: hr_expense #: help:hr.expense.expense,journal_id:0 @@ -515,12 +527,14 @@ msgid "Draft" msgstr "Taslak" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " "`property_account_expense_categ`." msgstr "" +"Ürün satınalma için Varsayılan Gider hesabı yapılandırın: " +"`property_account_expense_categ`." #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_approveexpense0 @@ -538,6 +552,7 @@ msgid "The direct manager approves the sheet" msgstr "Doğrudan Yöneticisi sayfasını onayla" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "Toplam Tutar" @@ -555,7 +570,7 @@ msgstr "Taslak Giderleri" #. module: hr_expense #: field:hr.expense.expense,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçisi mi" +msgstr "Bir İzleyicidir" #. module: hr_expense #: model:ir.actions.act_window,name:hr_expense.product_normal_form_view_installer @@ -609,11 +624,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni gider kaydı için tıklayın. \n" +"

\n" +" OpenERP tüm sürecin izlenmesini sağlayacaktır; gider " +"tablosu\n" +" yönetici(ler) tarafından doğrulanır, çalışanın giderleri " +"ödenir\n" +" bazı giderler müşteriye geri fatura edilebilir.\n" +"

\n" +" " #. module: hr_expense #: view:hr.expense.expense:0 msgid "Generate Accounting Entries" -msgstr "Muhasebe Girişler Üretme" +msgstr "Muhasebe Girişler Oluştur" #. module: hr_expense #: selection:hr.expense.report,month:0 @@ -664,7 +689,7 @@ msgstr "Tedarikçi Fatura" #. module: hr_expense #: view:hr.expense.expense:0 msgid "Expenses Sheet" -msgstr "Giderler Formu" +msgstr "Gider Formları" #. module: hr_expense #: field:hr.expense.report,voucher_id:0 @@ -683,7 +708,6 @@ msgid "Unit Price" msgstr "Birim Fiyat" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -739,7 +763,7 @@ msgstr "Kabul" #. module: hr_expense #: report:hr.expense:0 msgid "This document must be dated and signed for reimbursement" -msgstr "" +msgstr "Ödeme için belgeye tarih konulup imzalanmalıdır" #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_refuseexpense0 @@ -755,6 +779,11 @@ msgid "" "based on real costs, set the cost at 0.00. The user will set the real price " "when recording his expense sheet." msgstr "" +"Bir çalışan için izin verilen her gider türü için bir ürün tanımlayın (araç " +"ile yolculuk, hostel, lokanta, vb.). Çalışana sabit bir tutar ödeme " +"yapıyorsanız, ürüne bir maliyet ve ölçü birimi girin. Gerçek maliyetlere " +"göre ödeme yapıyorsanız, maliyeti 0.00 olarak ayarlayın. Kullanıcı gider " +"tablosunu kaydederken gerçek fiyatı belirtecektir." #. module: hr_expense #: selection:hr.expense.expense,state:0 @@ -762,7 +791,7 @@ msgstr "" #: model:mail.message.subtype,name:hr_expense.mt_expense_approved #: model:process.node,name:hr_expense.process_node_approved0 msgid "Approved" -msgstr "Onaylandı" +msgstr "Onaylanan" #. module: hr_expense #: field:hr.expense.line,product_id:0 @@ -820,7 +849,7 @@ msgstr "Gider doğruladı, Onay bekliyor" #. module: hr_expense #: report:hr.expense:0 msgid "Ref." -msgstr "" +msgstr "Ref." #. module: hr_expense #: field:hr.expense.report,employee_id:0 @@ -849,7 +878,7 @@ msgid "Name" msgstr "Adı" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "Sadece taslak giderleri silebilirsiniz!" @@ -857,7 +886,7 @@ msgstr "Sadece taslak giderleri silebilirsiniz!" #. module: hr_expense #: field:hr.expense.expense,account_move_id:0 msgid "Ledger Posting" -msgstr "Defteri Kebir İşleme" +msgstr "Defteri Kebire İşleme" #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_approveinvoice0 @@ -897,7 +926,7 @@ msgstr "Sıralama" #. module: hr_expense #: model:process.transition,note:hr_expense.process_transition_confirmexpense0 msgid "Expense is confirmed." -msgstr "Gideri onaylandı." +msgstr "Gider onaylandı." #. module: hr_expense #: view:hr.expense.expense:0 @@ -911,7 +940,7 @@ msgstr "Giderler" #. module: hr_expense #: help:product.product,hr_expense_ok:0 msgid "Specify if the product can be selected in an HR expense line." -msgstr "" +msgstr "Ürünün İK gider kalemlerinden seçilebileceğini belirleyin." #. 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 455fc0c55e1..814164109c8 100644 --- a/addons/hr_expense/i18n/uk.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -148,8 +148,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -236,7 +238,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -343,7 +345,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -398,7 +400,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -486,7 +488,7 @@ msgid "Employee encode all his expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -514,7 +516,7 @@ msgid "Draft" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -537,6 +539,7 @@ msgid "The direct manager approves the sheet" msgstr "" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "" @@ -682,7 +685,6 @@ msgid "Unit Price" msgstr "" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -848,7 +850,7 @@ msgid "Name" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/vi.po b/addons/hr_expense/i18n/vi.po index 4ff608b6beb..5c933d4733a 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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -149,8 +149,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -237,7 +239,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -344,7 +346,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -399,7 +401,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -487,7 +489,7 @@ msgid "Employee encode all his expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -515,7 +517,7 @@ msgid "Draft" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -538,6 +540,7 @@ msgid "The direct manager approves the sheet" msgstr "" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "" @@ -683,7 +686,6 @@ msgid "Unit Price" msgstr "" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -849,7 +851,7 @@ msgid "Name" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/zh_CN.po b/addons/hr_expense/i18n/zh_CN.po index 4c3bdbd6bf8..9c339003421 100644 --- a/addons/hr_expense/i18n/zh_CN.po +++ b/addons/hr_expense/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -148,8 +148,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -236,7 +238,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -343,7 +345,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "有些成本可能要重开发票给客户" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -398,7 +400,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "创建发票后报销费用" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -486,7 +488,7 @@ msgid "Employee encode all his expenses" msgstr "员工所有的费用" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -514,7 +516,7 @@ msgid "Draft" msgstr "草稿" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -537,6 +539,7 @@ msgid "The direct manager approves the sheet" msgstr "经理直接审批这表" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "总金额" @@ -682,7 +685,6 @@ msgid "Unit Price" msgstr "单价" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -850,7 +852,7 @@ msgid "Name" msgstr "名称" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_expense/i18n/zh_TW.po b/addons/hr_expense/i18n/zh_TW.po index 55ef7cb44db..eb8a39a9f6f 100644 --- a/addons/hr_expense/i18n/zh_TW.po +++ b/addons/hr_expense/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-16 05:29+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_expense #: view:hr.expense.expense:0 @@ -148,8 +148,10 @@ msgstr "" #. module: hr_expense #: code:addons/hr_expense/hr_expense.py:172 -#: code:addons/hr_expense/hr_expense.py:181 -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 +#: code:addons/hr_expense/hr_expense.py:240 +#: code:addons/hr_expense/hr_expense.py:349 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "Error!" msgstr "" @@ -236,7 +238,7 @@ msgid "" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "Warning" msgstr "" @@ -343,7 +345,7 @@ msgid "Some costs may be reinvoices to the customer" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:197 +#: code:addons/hr_expense/hr_expense.py:238 #, python-format msgid "The employee must have a home address." msgstr "" @@ -398,7 +400,7 @@ msgid "After creating invoice, reimburse expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "Warning!" msgstr "" @@ -486,7 +488,7 @@ msgid "Employee encode all his expenses" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:301 +#: code:addons/hr_expense/hr_expense.py:453 #, python-format msgid "" "Selected Unit of Measure does not belong to the same category as the product " @@ -514,7 +516,7 @@ msgid "Draft" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:181 +#: code:addons/hr_expense/hr_expense.py:353 #, python-format msgid "" "Please configure Default Expense account for Product purchase: " @@ -537,6 +539,7 @@ msgid "The direct manager approves the sheet" msgstr "" #. module: hr_expense +#: view:hr.expense.expense:0 #: field:hr.expense.expense,amount:0 msgid "Total Amount" msgstr "" @@ -682,7 +685,6 @@ msgid "Unit Price" msgstr "" #. module: hr_expense -#: selection:hr.expense.expense,state:0 #: view:hr.expense.report:0 #: selection:hr.expense.report,state:0 msgid "Done" @@ -848,7 +850,7 @@ msgid "Name" msgstr "" #. module: hr_expense -#: code:addons/hr_expense/hr_expense.py:116 +#: code:addons/hr_expense/hr_expense.py:121 #, python-format msgid "You can only delete draft expenses!" msgstr "" diff --git a/addons/hr_holidays/i18n/ar.po b/addons/hr_holidays/i18n/ar.po index 657cdf3d9a4..c73dc2e07db 100644 --- a/addons/hr_holidays/i18n/ar.po +++ b/addons/hr_holidays/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -32,7 +32,7 @@ msgid "Waiting Second Approval" msgstr "في انتظار الموافقة الثانية" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -271,12 +271,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "تحذير!" @@ -314,7 +314,7 @@ msgid "Sick Leaves" msgstr "أعطال مرضية" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -385,7 +385,7 @@ msgid "Wheat" msgstr "قمحي" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -409,7 +409,7 @@ msgid "Number of Days" msgstr "عدد الأيام" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -511,7 +511,7 @@ msgid "Start Date" msgstr "تاريخ البدء" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -760,7 +760,7 @@ msgid "Validated" msgstr "تم التحقق" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -824,7 +824,7 @@ msgid "To Submit" msgstr "للإرسال" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -923,8 +923,8 @@ msgid "Messages and communication history" msgstr "الرسائل و سجل التواصل" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/bg.po b/addons/hr_holidays/i18n/bg.po index 1b9d06a504d..77bb496d9e1 100644 --- a/addons/hr_holidays/i18n/bg.po +++ b/addons/hr_holidays/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -32,7 +32,7 @@ msgid "Waiting Second Approval" msgstr "Чакащи второ одобрение" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -267,12 +267,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "Предупреждение!" @@ -310,7 +310,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -381,7 +381,7 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -405,7 +405,7 @@ msgid "Number of Days" msgstr "Брой дни" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -507,7 +507,7 @@ msgid "Start Date" msgstr "Начална дата" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -755,7 +755,7 @@ msgid "Validated" msgstr "Проверен" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -819,7 +819,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -916,8 +916,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/bs.po b/addons/hr_holidays/i18n/bs.po index c3cc7e7445c..d9faa33eedd 100644 --- a/addons/hr_holidays/i18n/bs.po +++ b/addons/hr_holidays/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -32,7 +32,7 @@ msgid "Waiting Second Approval" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -267,12 +267,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "" @@ -310,7 +310,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -381,7 +381,7 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -405,7 +405,7 @@ msgid "Number of Days" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -507,7 +507,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -755,7 +755,7 @@ msgid "Validated" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -819,7 +819,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -916,8 +916,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/ca.po b/addons/hr_holidays/i18n/ca.po index fac7ba26e45..2f4317c1d0e 100644 --- a/addons/hr_holidays/i18n/ca.po +++ b/addons/hr_holidays/i18n/ca.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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -32,7 +32,7 @@ msgid "Waiting Second Approval" msgstr "A l'espera de segona aprovació" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -270,12 +270,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "Avís!" @@ -313,7 +313,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -384,7 +384,7 @@ msgid "Wheat" msgstr "Groc palla" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -408,7 +408,7 @@ msgid "Number of Days" msgstr "Número de dies" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -510,7 +510,7 @@ msgid "Start Date" msgstr "Data d'inici" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -762,7 +762,7 @@ msgid "Validated" msgstr "Validat" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -826,7 +826,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -927,8 +927,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/cs.po b/addons/hr_holidays/i18n/cs.po index 13df1c05312..b0771fa2c72 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\n" #. module: hr_holidays @@ -34,7 +34,7 @@ msgid "Waiting Second Approval" msgstr "Čekající na druhé schválení" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -272,12 +272,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "Varování!" @@ -315,7 +315,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -386,7 +386,7 @@ msgid "Wheat" msgstr "Pšeničná" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -410,7 +410,7 @@ msgid "Number of Days" msgstr "Počet dní" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -512,7 +512,7 @@ msgid "Start Date" msgstr "Počáteční datum" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -764,7 +764,7 @@ msgid "Validated" msgstr "Ověřeno" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -828,7 +828,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -928,8 +928,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/da.po b/addons/hr_holidays/i18n/da.po index 35ddb05c050..ccfdba06c5b 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -268,12 +268,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "" @@ -311,7 +311,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -382,7 +382,7 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -406,7 +406,7 @@ msgid "Number of Days" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -508,7 +508,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -756,7 +756,7 @@ msgid "Validated" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -820,7 +820,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -917,8 +917,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/de.po b/addons/hr_holidays/i18n/de.po index 1c250f9e8c8..ec2ad78ba8e 100644 --- a/addons/hr_holidays/i18n/de.po +++ b/addons/hr_holidays/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "Zweite Genehmigung" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -285,12 +285,12 @@ msgstr "" "weiterzuarbeiten." #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "Warnung !" @@ -328,7 +328,7 @@ msgid "Sick Leaves" msgstr "Krankheitsstände" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "Abwesenheitsanfrage für %s" @@ -399,7 +399,7 @@ msgid "Wheat" msgstr "Weiss" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "Zuteilung für %s" @@ -431,7 +431,7 @@ msgid "Number of Days" msgstr "Anzahl Tage" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -554,7 +554,7 @@ msgid "Start Date" msgstr "Start am" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -829,7 +829,7 @@ msgid "Validated" msgstr "Bestätigt" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "Sie können keine Anfrage im %s Status stornieren" @@ -896,7 +896,7 @@ msgid "To Submit" msgstr "Zu bestätigen" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -997,8 +997,8 @@ msgid "Messages and communication history" msgstr "Nachrichten und Kommunikations-Historie" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/el.po b/addons/hr_holidays/i18n/el.po index 4cfb27cb6ef..fe1fa45bcff 100644 --- a/addons/hr_holidays/i18n/el.po +++ b/addons/hr_holidays/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" @@ -35,7 +35,7 @@ msgid "Waiting Second Approval" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -270,12 +270,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "" @@ -313,7 +313,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -384,7 +384,7 @@ msgid "Wheat" msgstr "Σιταρένιο" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -408,7 +408,7 @@ msgid "Number of Days" msgstr "Ημέρες" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -510,7 +510,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -758,7 +758,7 @@ msgid "Validated" msgstr "Επικυρωμένη" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -822,7 +822,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -919,8 +919,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/es.po b/addons/hr_holidays/i18n/es.po index bd0b738ad0f..1147b182e82 100644 --- a/addons/hr_holidays/i18n/es.po +++ b/addons/hr_holidays/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -32,7 +32,7 @@ msgid "Waiting Second Approval" msgstr "A la espera de segunda aprobación" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -277,12 +277,12 @@ msgstr "" "directamente en formato HTML para poder ser insertado en las vistas kanban." #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "¡Aviso!" @@ -320,7 +320,7 @@ msgid "Sick Leaves" msgstr "Ausencias por enfermedad" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "Petición de ausencia para %s" @@ -391,7 +391,7 @@ msgid "Wheat" msgstr "Amarillo" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "Asignación para %s" @@ -419,7 +419,7 @@ msgid "Number of Days" msgstr "Número de días" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -539,7 +539,7 @@ msgid "Start Date" msgstr "Fecha inicio" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -807,7 +807,7 @@ msgid "Validated" msgstr "Validado" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "No puede eliminar una ausencia que está en estado %s." @@ -874,7 +874,7 @@ msgid "To Submit" msgstr "A enviar" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -976,8 +976,8 @@ msgid "Messages and communication history" msgstr "Mensajes e historial de comunicación" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/es_AR.po b/addons/hr_holidays/i18n/es_AR.po index d217992d520..d9a07ab0283 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -268,12 +268,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "" @@ -311,7 +311,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -382,7 +382,7 @@ msgid "Wheat" msgstr "Trigo" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -406,7 +406,7 @@ msgid "Number of Days" msgstr "Cantidad de días" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -508,7 +508,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -756,7 +756,7 @@ msgid "Validated" msgstr "Validado" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -820,7 +820,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -917,8 +917,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/es_CR.po b/addons/hr_holidays/i18n/es_CR.po index 2280d598ab0..cc13ed5a5a2 100644 --- a/addons/hr_holidays/i18n/es_CR.po +++ b/addons/hr_holidays/i18n/es_CR.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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: hr_holidays @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "A la espera de segunda aprobación" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -272,12 +272,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "¡Aviso!" @@ -315,7 +315,7 @@ msgid "Sick Leaves" msgstr "Permisos de" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "Requisito para permiso %s" @@ -386,7 +386,7 @@ msgid "Wheat" msgstr "Amarillo" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "Asignación para %s" @@ -410,7 +410,7 @@ msgid "Number of Days" msgstr "Número de días" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -521,7 +521,7 @@ msgid "Start Date" msgstr "Fecha inicio" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -773,7 +773,7 @@ msgid "Validated" msgstr "Validado" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -837,7 +837,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -939,8 +939,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/es_EC.po b/addons/hr_holidays/i18n/es_EC.po index 5fc2adbc371..83ced371658 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -268,12 +268,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "" @@ -311,7 +311,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -382,7 +382,7 @@ msgid "Wheat" msgstr "Trigo" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -406,7 +406,7 @@ msgid "Number of Days" msgstr "Número de días" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -508,7 +508,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -756,7 +756,7 @@ msgid "Validated" msgstr "Validado" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -820,7 +820,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -917,8 +917,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/et.po b/addons/hr_holidays/i18n/et.po index 0d746645af9..6f24053fe45 100644 --- a/addons/hr_holidays/i18n/et.po +++ b/addons/hr_holidays/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -32,7 +32,7 @@ msgid "Waiting Second Approval" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -267,12 +267,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "" @@ -310,7 +310,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -381,7 +381,7 @@ msgid "Wheat" msgstr "Nisukarva" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -405,7 +405,7 @@ msgid "Number of Days" msgstr "Päevade arv" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -507,7 +507,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -755,7 +755,7 @@ msgid "Validated" msgstr "Kinnitatud" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -819,7 +819,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -916,8 +916,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/fi.po b/addons/hr_holidays/i18n/fi.po index 753e2d1a263..879366a2dd9 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "Odottaa toista hyväksyntää" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -268,12 +268,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "" @@ -311,7 +311,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -382,7 +382,7 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -406,7 +406,7 @@ msgid "Number of Days" msgstr "Päivien lukumäärä" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -508,7 +508,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -756,7 +756,7 @@ msgid "Validated" msgstr "Vahvistettu" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -820,7 +820,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -917,8 +917,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/fr.po b/addons/hr_holidays/i18n/fr.po index 8e82a47ad29..1187a0757b4 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,12 +33,14 @@ msgid "Waiting Second Approval" msgstr "En attente d'une deuxième approbation" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " "resource manager." msgstr "" +"Vous ne pouvez pas modifier une demande de congé qui a déjà été approuvé. " +"Merci de contacter un responsable des ressources humaines." #. module: hr_holidays #: help:hr.holidays.status,remaining_leaves:0 @@ -63,7 +65,7 @@ msgstr "Mode d'allocation" #. module: hr_holidays #: field:hr.employee,leave_date_from:0 msgid "From Date" -msgstr "" +msgstr "Date de début" #. module: hr_holidays #: view:hr.holidays:0 @@ -75,7 +77,7 @@ msgstr "Département" #: model:ir.actions.act_window,name:hr_holidays.request_approve_allocation #: model:ir.ui.menu,name:hr_holidays.menu_request_approve_allocation msgid "Allocation Requests to Approve" -msgstr "" +msgstr "Demandes d'attribution de congés à approuver" #. module: hr_holidays #: help:hr.holidays,category_id:0 @@ -95,7 +97,7 @@ msgstr "Jours restants" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "of the" -msgstr "" +msgstr "du" #. module: hr_holidays #: selection:hr.holidays,holiday_type:0 @@ -108,21 +110,23 @@ msgid "" "The default duration interval between the start date and the end date is 8 " "hours. Feel free to adapt it to your needs." msgstr "" +"La durée par défaut entre la date de début et de fin est 8 heures. Vous " +"pouvez la modifier à votre guise." #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_refused msgid "Request refused" -msgstr "" +msgstr "Demande refusée" #. module: hr_holidays #: field:hr.holidays,number_of_days_temp:0 msgid "Allocation" -msgstr "" +msgstr "Attribution" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "to" -msgstr "" +msgstr "au" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -133,6 +137,8 @@ msgstr "Cyan clair" #: constraint:hr.holidays:0 msgid "You can not have 2 leaves that overlaps on same day!" msgstr "" +"Vous ne pouvez pas avoir 2 demandes de congés qui se chevauchent dans la " +"même journée." #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -147,7 +153,7 @@ msgstr "Type d'absence" #. module: hr_holidays #: view:hr.holidays:0 msgid "Validate" -msgstr "" +msgstr "Valider" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 @@ -184,18 +190,18 @@ msgstr "Congés" #. module: hr_holidays #: field:hr.holidays,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Messages" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Analyze from" -msgstr "" +msgstr "Analyser depuis" #. module: hr_holidays #: code:addons/hr_holidays/wizard/hr_holidays_summary_department.py:44 #, python-format msgid "Error!" -msgstr "" +msgstr "Erreur !" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_request_approve_holidays @@ -240,7 +246,7 @@ msgstr "Validation" #. module: hr_holidays #: help:hr.holidays,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Si coché, de nouveaux messages demandent votre attention." #. module: hr_holidays #: field:hr.holidays.status,color_name:0 @@ -271,14 +277,16 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Contient le résumé de la discussion (nombre de messages, ...). Ce résumé est " +"au format HTML pour permettre son utilisation dans la vue kanban." #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "Avertissement !" @@ -291,7 +299,7 @@ msgstr "Magenta" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.act_hr_leave_request_to_meeting msgid "Leave Meetings" -msgstr "" +msgstr "Congés" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_cl @@ -316,7 +324,7 @@ msgid "Sick Leaves" msgstr "Arrêts maladie" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "Demande de congés pour %s" @@ -324,13 +332,13 @@ msgstr "Demande de congés pour %s" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Sum" -msgstr "" +msgstr "Total" #. module: hr_holidays #: view:hr.holidays.status:0 #: model:ir.actions.act_window,name:hr_holidays.open_view_holiday_status msgid "Leave Types" -msgstr "" +msgstr "Type de congé" #. module: hr_holidays #: field:hr.holidays.status,remaining_leaves:0 @@ -340,7 +348,7 @@ msgstr "Congés restants" #. module: hr_holidays #: field:hr.holidays,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Abonnés" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_remaining_leaves_user @@ -387,7 +395,7 @@ msgid "Wheat" msgstr "Blé" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "Allocation pour %s" @@ -403,6 +411,13 @@ msgid "" " \n" "The status is 'Approved', when holiday request is approved by manager." msgstr "" +"L'état est 'À soumettre', quand la demande de congés est créée. \n" +"L'état est 'À approuver', quand la demande de congés est confirmée par " +"l'utilisateur. \n" +"L'état est 'Refusée', quand la demande de congés est refusé par le " +"responsable. \n" +"L'état est 'Approuvée', quand la demande de congés est approuvée par le " +"responsable." #. module: hr_holidays #: view:hr.holidays:0 @@ -411,7 +426,7 @@ msgid "Number of Days" msgstr "Nombre de jours" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -444,7 +459,7 @@ msgstr "En attente d'approbation" #. module: hr_holidays #: field:hr.holidays,category_id:0 msgid "Employee Tag" -msgstr "" +msgstr "Étiquette d'employé" #. module: hr_holidays #: field:hr.holidays.summary.employee,emp:0 @@ -457,6 +472,8 @@ msgid "" "Filters only on allocations and requests that belong to an holiday type that " "is 'active' (active field is True)" msgstr "" +"Filtrer uniquement les demandes et les attributions qui ont un type de " +"congés 'actif' (champ actif est vrai)" #. module: hr_holidays #: model:ir.actions.act_window,help:hr_holidays.hr_holidays_leaves_assign_legal @@ -468,6 +485,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Vous pouvez attribuer des congés légaux restants pour chaque " +"employé, OpenERP\n" +" créera et validera automatiquement ces demandes " +"d'attribution.\n" +"

\n" +" " #. module: hr_holidays #: help:hr.holidays.status,categ_id:0 @@ -475,12 +499,15 @@ msgid "" "Once a leave is validated, OpenERP will create a corresponding meeting of " "this type in the calendar." msgstr "" +"Une fois la demande validée, OpenERP créera un rendez-vous de ce type dans " +"le calendrier." #. module: hr_holidays #: code:addons/hr_holidays/wizard/hr_holidays_summary_department.py:44 #, python-format msgid "You have to select at least one Department. And try again." msgstr "" +"Vous devez sélectionner au moins un département et essayer de nouveau." #. module: hr_holidays #: field:hr.holidays,parent_id:0 @@ -500,7 +527,7 @@ msgstr "Mois" #. module: hr_holidays #: field:hr.holidays,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Messages non lus" #. module: hr_holidays #: view:hr.holidays:0 @@ -521,18 +548,20 @@ msgid "Start Date" msgstr "Date de début" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " "allocation request for this leave type." msgstr "" +"Il n'y a pas assez %s d'attribué pour l'employé %s; Merci de créer une " +"demande d'allocation pour ce type de congés." #. module: hr_holidays #: view:hr.holidays.summary.dept:0 #: view:hr.holidays.summary.employee:0 msgid "or" -msgstr "" +msgstr "ou" #. module: hr_holidays #: model:ir.actions.act_window,help:hr_holidays.open_ask_holidays @@ -547,11 +576,22 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquer pour créer une nouvelle demande de congés.\n" +"

\n" +" Une fois votre demande enregistrée, elle sera envoyée\n" +" à un responsable pour validation. Merci de vous assurer " +"d'avoir bien saisi le bon\n" +" type de congés (récupération, maladie, ...) et le nombre " +"exact\n" +" de jours ouvrés correspondant à votre demande.\n" +"

\n" +" " #. module: hr_holidays #: sql_constraint:hr.holidays:0 msgid "The employee or employee category of this request is missing." -msgstr "" +msgstr "L'employé ou la catégorie d'employé de cette demande est manquant." #. module: hr_holidays #: view:hr.holidays:0 @@ -574,16 +614,19 @@ msgid "" "leaves than the available ones for this type and take them into account for " "the \"Remaining Legal Leaves\" defined on the employee form." msgstr "" +"Si vous cochez cette case, le système autorisera les employés à demander " +"plus de congés de ce type que le nombre disponible et il les prendra en " +"compte pour le champs \"Nombre de congés restants\" du formulaire employé." #. module: hr_holidays #: view:hr.holidays:0 msgid "Reset to New" -msgstr "" +msgstr "Remettre à l'état nouveau" #. module: hr_holidays #: sql_constraint:hr.holidays:0 msgid "The number of days must be greater than 0." -msgstr "" +msgstr "Le nombre de jours doit être supérieur à 0." #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -593,7 +636,7 @@ msgstr "Corail clair" #. module: hr_holidays #: field:hr.employee,leave_date_to:0 msgid "To Date" -msgstr "" +msgstr "Date de fin" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -608,7 +651,7 @@ msgstr "Allouer des congés pour les employés" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_view_holiday_status msgid "Leaves Types" -msgstr "" +msgstr "Types de congés" #. module: hr_holidays #: field:hr.holidays,meeting_id:0 @@ -621,12 +664,14 @@ msgid "" "This color will be used in the leaves summary located in Reporting\\Leaves " "by Department." msgstr "" +"Cette couleur sera utilisée dans le rapport récapitulatif des congés " +"accessible dans Suivi d'activité/Rapports/Congés par départements." #. module: hr_holidays #: view:hr.holidays:0 #: field:hr.holidays,state:0 msgid "Status" -msgstr "" +msgstr "État" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -636,12 +681,12 @@ msgstr "Ivoire" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_summary_employee msgid "HR Leaves Summary Report By Employee" -msgstr "" +msgstr "RH Rapport récapitulatif des congés par employé" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.request_approve_holidays msgid "Requests to Approve" -msgstr "" +msgstr "Demandes à approuver" #. module: hr_holidays #: field:hr.holidays.status,leaves_taken:0 @@ -651,7 +696,7 @@ msgstr "Congés déjà pris" #. module: hr_holidays #: field:hr.holidays,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Est abonné" #. module: hr_holidays #: field:hr.holidays,user_id:0 @@ -678,7 +723,7 @@ msgstr "Première approbation" #. module: hr_holidays #: field:hr.holidays,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Résumé" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_unpaid @@ -699,7 +744,7 @@ msgstr "Résumé des congés" #. module: hr_holidays #: view:hr.holidays:0 msgid "Submit to Manager" -msgstr "" +msgstr "Soumettre au responsable" #. module: hr_holidays #: view:hr.employee:0 @@ -773,10 +818,10 @@ msgid "Validated" msgstr "Validé" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." -msgstr "" +msgstr "Vous ne pouvez pas supprimer des congés qui sont dans l'état %s." #. module: hr_holidays #: view:hr.holidays:0 @@ -790,6 +835,8 @@ msgid "" "By Employee: Allocation/Request for individual Employee, By Employee Tag: " "Allocation/Request for group of employees in category" msgstr "" +"Par employé: Attribution/Demande par employée, par catégorie d'employée: " +"Attribution/Demande pour le groupe d'employé de la catégorie" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_resource_calendar_leaves @@ -806,7 +853,7 @@ msgstr "Appliquer la double validation" #: view:hr.employee:0 #: view:hr.holidays:0 msgid "days" -msgstr "" +msgstr "jours" #. module: hr_holidays #: view:hr.holidays.summary.dept:0 @@ -834,10 +881,10 @@ msgstr "Département(s)" #. module: hr_holidays #: selection:hr.holidays,state:0 msgid "To Submit" -msgstr "" +msgstr "À soumettre" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -854,7 +901,7 @@ msgstr "Description" #. module: hr_holidays #: selection:hr.holidays,holiday_type:0 msgid "By Employee Tag" -msgstr "" +msgstr "Par catégorie d'employé" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 @@ -866,7 +913,7 @@ msgstr "Refusée" #. module: hr_holidays #: field:hr.holidays.status,categ_id:0 msgid "Meeting Type" -msgstr "" +msgstr "Type de réunion" #. module: hr_holidays #: field:hr.holidays.remaining.leaves.user,no_of_leaves:0 @@ -876,7 +923,7 @@ msgstr "Congés restants" #. module: hr_holidays #: view:hr.holidays:0 msgid "Allocated Days" -msgstr "" +msgstr "Jours attribués" #. module: hr_holidays #: view:hr.holidays:0 @@ -926,7 +973,7 @@ msgstr "Mode" #: selection:hr.holidays.summary.dept,holiday_type:0 #: selection:hr.holidays.summary.employee,holiday_type:0 msgid "Both Approved and Confirmed" -msgstr "" +msgstr "Approuvés et confirmés" #. module: hr_holidays #: view:hr.holidays:0 @@ -936,15 +983,15 @@ msgstr "Approuver" #. module: hr_holidays #: help:hr.holidays,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Historique des messages et des communications" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." -msgstr "" +msgstr "La date de début doit être antérieure à la date de fin." #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays @@ -957,6 +1004,8 @@ msgid "" "When selected, the Allocation/Leave Requests for this type require a second " "validation to be approved." msgstr "" +"Si coché, la demande de congés/attribution de ce type nécéssitera une " +"seconde validation pour être approuvée." #. module: hr_holidays #: view:hr.holidays:0 @@ -968,7 +1017,7 @@ msgstr "Demandes d'attribution" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Color" -msgstr "" +msgstr "Couleur" #. module: hr_holidays #: help:hr.employee,remaining_leaves:0 @@ -977,6 +1026,9 @@ msgid "" "to create allocation/leave request. Total based on all the leave types " "without overriding limit." msgstr "" +"Le nombre total de congés attribués à cet employé, pour modifier cette " +"valeur créer une demande d'attribution de congés. Le total se base sur " +"l'ensemble des types de congé sans limite." #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -986,7 +1038,7 @@ msgstr "Rose clair" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "leaves." -msgstr "" +msgstr "congés." #. module: hr_holidays #: view:hr.holidays:0 @@ -996,7 +1048,7 @@ msgstr "Responsable" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_summary_dept msgid "HR Leaves Summary Report By Department" -msgstr "" +msgstr "RH Rapport récapitualatif des congés par département" #. module: hr_holidays #: view:hr.holidays:0 @@ -1006,7 +1058,7 @@ msgstr "Année" #. module: hr_holidays #: view:hr.holidays:0 msgid "Duration" -msgstr "" +msgstr "Durée" #. module: hr_holidays #: view:hr.holidays:0 @@ -1018,7 +1070,7 @@ msgstr "À approuver" #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_approved msgid "Request approved" -msgstr "" +msgstr "Demande approuvée" #. module: hr_holidays #: field:hr.holidays,notes:0 @@ -1028,7 +1080,7 @@ msgstr "Raisons" #. module: hr_holidays #: field:hr.holidays.summary.employee,holiday_type:0 msgid "Select Leave Type" -msgstr "" +msgstr "Choisir le type de congés" #~ msgid "Holidays" #~ msgstr "Vacances" diff --git a/addons/hr_holidays/i18n/gu.po b/addons/hr_holidays/i18n/gu.po index d125c0cdbab..3d4b275f99d 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -268,12 +268,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "ચેતવણી!" @@ -311,7 +311,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -382,7 +382,7 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -406,7 +406,7 @@ msgid "Number of Days" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -508,7 +508,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -756,7 +756,7 @@ msgid "Validated" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -820,7 +820,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -917,8 +917,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/hi.po b/addons/hr_holidays/i18n/hi.po index 8393b2e8cf7..3a06d533145 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -268,12 +268,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "" @@ -311,7 +311,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -382,7 +382,7 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -406,7 +406,7 @@ msgid "Number of Days" msgstr "दिनों की संख्या" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -508,7 +508,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -756,7 +756,7 @@ msgid "Validated" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -820,7 +820,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -917,8 +917,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/hr.po b/addons/hr_holidays/i18n/hr.po index ad9625ac438..3b3b71be498 100644 --- a/addons/hr_holidays/i18n/hr.po +++ b/addons/hr_holidays/i18n/hr.po @@ -13,31 +13,33 @@ msgstr "" "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 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Blue" -msgstr "" +msgstr "Plavo" #. module: hr_holidays #: field:hr.holidays,linked_request_ids:0 msgid "Linked Requests" -msgstr "" +msgstr "Povezani zahtjevi" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 msgid "Waiting Second Approval" -msgstr "" +msgstr "Čeka drugo odobrenje" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " "resource manager." msgstr "" +"Nemožete modificirati zahtjev za odsustvom koji je odobren. Kontaktirajte " +"voditelja ljudskih resursa." #. module: hr_holidays #: help:hr.holidays.status,remaining_leaves:0 @@ -47,59 +49,59 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Leaves Management" -msgstr "" +msgstr "Upravljanje odsustvima" #. module: hr_holidays #: view:hr.holidays:0 msgid "Group By..." -msgstr "" +msgstr "Grupiraj po..." #. module: hr_holidays #: field:hr.holidays,holiday_type:0 msgid "Allocation Mode" -msgstr "" +msgstr "Dodjeljivanje" #. module: hr_holidays #: field:hr.employee,leave_date_from:0 msgid "From Date" -msgstr "" +msgstr "Od datuma" #. module: hr_holidays #: view:hr.holidays:0 #: field:hr.holidays,department_id:0 msgid "Department" -msgstr "" +msgstr "Odjel" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.request_approve_allocation #: model:ir.ui.menu,name:hr_holidays.menu_request_approve_allocation msgid "Allocation Requests to Approve" -msgstr "" +msgstr "Zahtjevi za odobrenje" #. module: hr_holidays #: help:hr.holidays,category_id:0 msgid "Category of Employee" -msgstr "" +msgstr "Kategorije djelatnika" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Brown" -msgstr "" +msgstr "Smeđe" #. module: hr_holidays #: view:hr.holidays:0 msgid "Remaining Days" -msgstr "" +msgstr "Ostalo dana" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "of the" -msgstr "" +msgstr "od" #. module: hr_holidays #: selection:hr.holidays,holiday_type:0 msgid "By Employee" -msgstr "" +msgstr "Po djelatniku" #. module: hr_holidays #: view:hr.holidays:0 @@ -107,11 +109,13 @@ msgid "" "The default duration interval between the start date and the end date is 8 " "hours. Feel free to adapt it to your needs." msgstr "" +"Zadani preiod između početnog i završnog datuma je postavljen na 8 sati. " +"Slobodno izmjenite po potrebi." #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_refused msgid "Request refused" -msgstr "" +msgstr "Zahtjev odbijen" #. module: hr_holidays #: field:hr.holidays,number_of_days_temp:0 @@ -121,32 +125,32 @@ msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "to" -msgstr "" +msgstr "za" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Cyan" -msgstr "" +msgstr "Svjetlo Cyan" #. module: hr_holidays #: constraint:hr.holidays:0 msgid "You can not have 2 leaves that overlaps on same day!" -msgstr "" +msgstr "Nije moguće imati dva odsustva koja se preklapaju sa datumima" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Green" -msgstr "" +msgstr "Svijetlo zeleno" #. module: hr_holidays #: field:hr.employee,current_leave_id:0 msgid "Current Leave Type" -msgstr "" +msgstr "Trenutni tip odsustva" #. module: hr_holidays #: view:hr.holidays:0 msgid "Validate" -msgstr "" +msgstr "Potvrdi" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 @@ -160,7 +164,7 @@ msgstr "Odobreno" #. module: hr_holidays #: view:hr.holidays:0 msgid "Search Leave" -msgstr "" +msgstr "Pretraži odsustva" #. module: hr_holidays #: view:hr.holidays:0 @@ -178,12 +182,12 @@ msgstr "" #: model:ir.actions.act_window,name:hr_holidays.act_hr_employee_holiday_request #: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays msgid "Leaves" -msgstr "" +msgstr "Izostanci" #. module: hr_holidays #: field:hr.holidays,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Poruke" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -194,31 +198,31 @@ msgstr "" #: code:addons/hr_holidays/wizard/hr_holidays_summary_department.py:44 #, python-format msgid "Error!" -msgstr "" +msgstr "Greška!" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_request_approve_holidays msgid "Leave Requests to Approve" -msgstr "" +msgstr "Zahtjevi za odsustvo za Odobriti" #. module: hr_holidays #: view:hr.holidays.summary.dept:0 #: model:ir.actions.act_window,name:hr_holidays.action_hr_holidays_summary_dept #: model:ir.ui.menu,name:hr_holidays.menu_account_central_journal msgid "Leaves by Department" -msgstr "" +msgstr "Odsustva po odjelima" #. module: hr_holidays #: field:hr.holidays,manager_id2:0 #: selection:hr.holidays,state:0 msgid "Second Approval" -msgstr "" +msgstr "Drugo odobrenje" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 #: selection:hr.holidays,state:0 msgid "Cancelled" -msgstr "" +msgstr "Otkazano" #. module: hr_holidays #: help:hr.holidays,type:0 @@ -227,26 +231,30 @@ msgid "" "Choose 'Allocation Request' if you want to increase the number of leaves " "available for someone" msgstr "" +"Odaberite 'Zahtjev za odsustvo' ako netko želiuzeti slobodan dan. \n" +"Odaberite 'Dodjeljivanje dana' ukoliko želite povećati broj slobodnih dana " +"nekome." #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Validation" -msgstr "" +msgstr "Provjera" #. module: hr_holidays #: help:hr.holidays,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Ako je odabrano, nove poruke zahtijevaju Vašu pažnju." #. module: hr_holidays #: field:hr.holidays.status,color_name:0 msgid "Color in Report" -msgstr "" +msgstr "Boja u izvještaju" #. module: hr_holidays #: help:hr.holidays,manager_id:0 msgid "This area is automatically filled by the user who validate the leave" msgstr "" +"Ovo područje je automatski popunjeno od korisnika koji odobrava odsustvo" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -257,7 +265,7 @@ msgstr "" #: field:hr.holidays.summary.dept,holiday_type:0 #: model:ir.model,name:hr_holidays.model_hr_holidays_status msgid "Leave Type" -msgstr "" +msgstr "Tip odsustva" #. module: hr_holidays #: help:hr.holidays,message_summary:0 @@ -265,27 +273,29 @@ 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." #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" -msgstr "" +msgstr "Upozorenje!" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Magenta" -msgstr "" +msgstr "Magenta" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.act_hr_leave_request_to_meeting msgid "Leave Meetings" -msgstr "" +msgstr "Sastanci" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_cl @@ -307,24 +317,24 @@ msgstr "Od" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_sl msgid "Sick Leaves" -msgstr "" +msgstr "Bolovanje" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" -msgstr "" +msgstr "Zahtjev za odsustvom za %s" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Sum" -msgstr "" +msgstr "Suma" #. module: hr_holidays #: view:hr.holidays.status:0 #: model:ir.actions.act_window,name:hr_holidays.open_view_holiday_status msgid "Leave Types" -msgstr "" +msgstr "Tipovi odsustva" #. module: hr_holidays #: field:hr.holidays.status,remaining_leaves:0 @@ -334,12 +344,12 @@ msgstr "Neiskorišteni GO" #. module: hr_holidays #: field:hr.holidays,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Pratitelji" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_remaining_leaves_user msgid "Total holidays by type" -msgstr "" +msgstr "Ukupno praznika po tipu" #. module: hr_holidays #: view:hr.employee:0 @@ -353,27 +363,27 @@ msgstr "Djelatnik" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 msgid "New" -msgstr "" +msgstr "Novi" #. module: hr_holidays #: view:hr.holidays:0 msgid "Type" -msgstr "" +msgstr "Tip" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Red" -msgstr "" +msgstr "Crveno" #. module: hr_holidays #: view:hr.holidays.remaining.leaves.user:0 msgid "Leaves by Type" -msgstr "" +msgstr "Odsustva po tipu" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Salmon" -msgstr "" +msgstr "Svjetlo zelena" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -381,10 +391,10 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" -msgstr "" +msgstr "Odobrenje za %s" #. module: hr_holidays #: help:hr.holidays,state:0 @@ -402,10 +412,10 @@ msgstr "" #: view:hr.holidays:0 #: field:hr.holidays,number_of_days:0 msgid "Number of Days" -msgstr "" +msgstr "Broj dana" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -420,22 +430,22 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Search Leave Type" -msgstr "" +msgstr "Pretraži tipove odsustva" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 msgid "Waiting Approval" -msgstr "" +msgstr "Čeka odobrenje" #. module: hr_holidays #: field:hr.holidays,category_id:0 msgid "Employee Tag" -msgstr "" +msgstr "Oznaka djelatnika" #. module: hr_holidays #: field:hr.holidays.summary.employee,emp:0 msgid "Employee(s)" -msgstr "" +msgstr "Djelatnik/ci" #. module: hr_holidays #: view:hr.holidays:0 @@ -443,6 +453,8 @@ msgid "" "Filters only on allocations and requests that belong to an holiday type that " "is 'active' (active field is True)" msgstr "" +"Filtrira samo odobrenja i zahtjeve koji pripadaju tipu praznika koji je " +"'aktivan' (polje aktivan ja označeno)" #. module: hr_holidays #: model:ir.actions.act_window,help:hr_holidays.hr_holidays_leaves_assign_legal @@ -461,17 +473,19 @@ msgid "" "Once a leave is validated, OpenERP will create a corresponding meeting of " "this type in the calendar." msgstr "" +"Jednom kad je odsustvo dodbreno, OpenERP će stvoriti odgovarajući sastanak " +"tog tipa u kalendaru." #. module: hr_holidays #: code:addons/hr_holidays/wizard/hr_holidays_summary_department.py:44 #, python-format msgid "You have to select at least one Department. And try again." -msgstr "" +msgstr "Morate odabrati najmanje jedan odjel, pa pokušajte ponovo." #. module: hr_holidays #: field:hr.holidays,parent_id:0 msgid "Parent" -msgstr "" +msgstr "Nadređeni" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -481,33 +495,33 @@ msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Month" -msgstr "" +msgstr "Mjesec" #. module: hr_holidays #: field:hr.holidays,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Nepročitane poruke" #. module: hr_holidays #: view:hr.holidays:0 #: 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 "Zahtjevi za odsustvom" #. module: hr_holidays #: field:hr.holidays.status,limit:0 msgid "Allow to Override Limit" -msgstr "" +msgstr "Dozvoli da pređe limit" #. module: hr_holidays #: view:hr.holidays:0 #: field:hr.holidays,date_from:0 msgid "Start Date" -msgstr "" +msgstr "Početni datum" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -518,7 +532,7 @@ msgstr "" #: view:hr.holidays.summary.dept:0 #: view:hr.holidays.summary.employee:0 msgid "or" -msgstr "" +msgstr "ili" #. module: hr_holidays #: model:ir.actions.act_window,help:hr_holidays.open_ask_holidays @@ -542,7 +556,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Category" -msgstr "" +msgstr "Kategorija" #. module: hr_holidays #: help:hr.holidays.status,max_leaves:0 @@ -550,6 +564,8 @@ msgid "" "This value is given by the sum of all holidays requests with a positive " "value." msgstr "" +"Ova je vrijednost dobivena kao suma svih zahtjeva za godišnjim sa pozitivnom " +"vrijednošću." #. module: hr_holidays #: help:hr.holidays.status,limit:0 @@ -558,16 +574,19 @@ msgid "" "leaves than the available ones for this type and take them into account for " "the \"Remaining Legal Leaves\" defined on the employee form." msgstr "" +"Ako je označeno, sistem dozvoljava djelatnicima da koriste više odsustva od " +"raspoloživih dana za taj tip i prebace ih na račun preostali slobodni dani " +"definiranom na formi djelatnika" #. module: hr_holidays #: view:hr.holidays:0 msgid "Reset to New" -msgstr "" +msgstr "Postavi na novi" #. module: hr_holidays #: sql_constraint:hr.holidays:0 msgid "The number of days must be greater than 0." -msgstr "" +msgstr "Broja dana mora biti veći od 0" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -577,12 +596,12 @@ msgstr "" #. module: hr_holidays #: field:hr.employee,leave_date_to:0 msgid "To Date" -msgstr "" +msgstr "Do datuma" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Black" -msgstr "" +msgstr "Crna" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.hr_holidays_leaves_assign_legal @@ -592,12 +611,12 @@ msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_view_holiday_status msgid "Leaves Types" -msgstr "" +msgstr "Tipovi odsustva" #. module: hr_holidays #: field:hr.holidays,meeting_id:0 msgid "Meeting" -msgstr "" +msgstr "Sastanak" #. module: hr_holidays #: help:hr.holidays.status,color_name:0 @@ -610,7 +629,7 @@ msgstr "" #: view:hr.holidays:0 #: field:hr.holidays,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -625,7 +644,7 @@ msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.request_approve_holidays msgid "Requests to Approve" -msgstr "" +msgstr "Zahtjevi za odobriti" #. module: hr_holidays #: field:hr.holidays.status,leaves_taken:0 @@ -635,18 +654,18 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Pratitelj" #. module: hr_holidays #: field:hr.holidays,user_id:0 #: field:hr.holidays.remaining.leaves.user,user_id:0 msgid "User" -msgstr "" +msgstr "Korisnik" #. module: hr_holidays #: field:hr.holidays.status,active:0 msgid "Active" -msgstr "" +msgstr "Aktivan" #. module: hr_holidays #: view:hr.employee:0 @@ -657,17 +676,17 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,manager_id:0 msgid "First Approval" -msgstr "" +msgstr "Prvo odobrenje" #. module: hr_holidays #: field:hr.holidays,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Sažetak" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_unpaid msgid "Unpaid" -msgstr "" +msgstr "Neplaćeno" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -725,7 +744,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Misc" -msgstr "" +msgstr "Ostalo" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_comp @@ -747,15 +766,15 @@ msgstr "" #: view:hr.holidays.summary.dept:0 #: view:hr.holidays.summary.employee:0 msgid "Cancel" -msgstr "" +msgstr "Otkaži" #. module: hr_holidays #: view:hr.holidays:0 msgid "Validated" -msgstr "" +msgstr "Potvrđeno" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -776,42 +795,42 @@ msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_resource_calendar_leaves msgid "Leave Detail" -msgstr "" +msgstr "Detalji o odsustvu" #. module: hr_holidays #: field:hr.holidays,double_validation:0 #: field:hr.holidays.status,double_validation:0 msgid "Apply Double Validation" -msgstr "" +msgstr "Primjeni dvostruku ovjeru" #. module: hr_holidays #: view:hr.employee:0 #: view:hr.holidays:0 msgid "days" -msgstr "" +msgstr "dani" #. module: hr_holidays #: view:hr.holidays.summary.dept:0 #: view:hr.holidays.summary.employee:0 msgid "Print" -msgstr "" +msgstr "Ispis" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Details" -msgstr "" +msgstr "Pojedinosti" #. module: hr_holidays #: view:board.board:0 #: view:hr.holidays:0 #: model:ir.actions.act_window,name:hr_holidays.action_hr_holidays_leaves_by_month msgid "My Leaves" -msgstr "" +msgstr "Moja odsustva" #. module: hr_holidays #: field:hr.holidays.summary.dept,depts:0 msgid "Department(s)" -msgstr "" +msgstr "Odjel(i)" #. module: hr_holidays #: selection:hr.holidays,state:0 @@ -819,19 +838,19 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 #, python-format msgid "Leave Request" -msgstr "" +msgstr "Zahtjev za odsustvo" #. module: hr_holidays #: view:hr.holidays:0 #: field:hr.holidays,name:0 msgid "Description" -msgstr "" +msgstr "Opis" #. module: hr_holidays #: selection:hr.holidays,holiday_type:0 @@ -843,12 +862,12 @@ msgstr "" #: selection:hr.holidays,state:0 #: model:mail.message.subtype,name:hr_holidays.mt_holidays_refused msgid "Refused" -msgstr "" +msgstr "Odbijen" #. module: hr_holidays #: field:hr.holidays.status,categ_id:0 msgid "Meeting Type" -msgstr "" +msgstr "Vrsta sastanka" #. module: hr_holidays #: field:hr.holidays.remaining.leaves.user,no_of_leaves:0 @@ -868,7 +887,7 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,date_to:0 msgid "End Date" -msgstr "" +msgstr "Završni Datum" #. module: hr_holidays #: help:hr.holidays.status,leaves_taken:0 @@ -880,7 +899,7 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Violet" -msgstr "" +msgstr "Ljubičasta" #. module: hr_holidays #: field:hr.holidays.status,max_leaves:0 @@ -897,7 +916,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Mode" -msgstr "" +msgstr "Način" #. module: hr_holidays #: selection:hr.holidays.summary.dept,holiday_type:0 @@ -908,16 +927,16 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Approve" -msgstr "" +msgstr "Odobri" #. module: hr_holidays #: help:hr.holidays,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Poruke i povijest komunikacije" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." @@ -926,7 +945,7 @@ msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays msgid "Leave" -msgstr "" +msgstr "Odsustvo" #. module: hr_holidays #: help:hr.holidays.status,double_validation:0 @@ -945,7 +964,7 @@ msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Color" -msgstr "" +msgstr "Boja" #. module: hr_holidays #: help:hr.employee,remaining_leaves:0 @@ -968,7 +987,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Manager" -msgstr "" +msgstr "Voditelj" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_summary_dept @@ -978,24 +997,24 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Year" -msgstr "" +msgstr "Godina" #. module: hr_holidays #: view:hr.holidays:0 msgid "Duration" -msgstr "" +msgstr "Trajanje" #. module: hr_holidays #: view:hr.holidays:0 #: selection:hr.holidays,state:0 #: model:mail.message.subtype,name:hr_holidays.mt_holidays_confirmed msgid "To Approve" -msgstr "" +msgstr "Za odobriti" #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_approved msgid "Request approved" -msgstr "" +msgstr "Zahtjev odobren" #. module: hr_holidays #: field:hr.holidays,notes:0 diff --git a/addons/hr_holidays/i18n/hu.po b/addons/hr_holidays/i18n/hu.po index fd168ce9869..ff121b67522 100644 --- a/addons/hr_holidays/i18n/hu.po +++ b/addons/hr_holidays/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -32,7 +32,7 @@ msgid "Waiting Second Approval" msgstr "Várakozás a második jóváhagyásra" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -278,12 +278,12 @@ msgstr "" "direkt HTML formátumú ahhoz hogy beilleszthető legyen a kanban nézetekbe." #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "Vigyázat!" @@ -321,7 +321,7 @@ msgid "Sick Leaves" msgstr "Betegszabadságok" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "Szabadság igény ehhez %s" @@ -392,7 +392,7 @@ msgid "Wheat" msgstr "Búzaszín" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "Kihelyezés ehhez %s" @@ -424,7 +424,7 @@ msgid "Number of Days" msgstr "Napok száma" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -546,7 +546,7 @@ msgid "Start Date" msgstr "Kezdő dátum" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -817,7 +817,7 @@ msgid "Validated" msgstr "Érvényesített" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "Nem törölhet olyan szabadságot ami %s állapotú." @@ -883,7 +883,7 @@ msgid "To Submit" msgstr "Benyújt" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -982,8 +982,8 @@ msgid "Messages and communication history" msgstr "Üzenetek és kommunikáció történet" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/id.po b/addons/hr_holidays/i18n/id.po index 06b98cc9586..9466daaf24c 100644 --- a/addons/hr_holidays/i18n/id.po +++ b/addons/hr_holidays/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -32,7 +32,7 @@ msgid "Waiting Second Approval" msgstr "Menunggu Persetujuan Kedua" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -278,12 +278,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "Peringatan!" @@ -321,7 +321,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -392,7 +392,7 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -416,7 +416,7 @@ msgid "Number of Days" msgstr "Jumlah Hari" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -518,7 +518,7 @@ msgid "Start Date" msgstr "Tanggal Mulai" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -770,7 +770,7 @@ msgid "Validated" msgstr "Sudah DIvalidasi" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -834,7 +834,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -935,8 +935,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/it.po b/addons/hr_holidays/i18n/it.po index 21bcd794ed4..0bb2a51ffe8 100644 --- a/addons/hr_holidays/i18n/it.po +++ b/addons/hr_holidays/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -32,7 +32,7 @@ msgid "Waiting Second Approval" msgstr "In attesa della seconda approvazione" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -273,12 +273,12 @@ msgstr "" "direttamente in html così da poter essere inserito nelle viste kanban." #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "Attenzione!" @@ -316,7 +316,7 @@ msgid "Sick Leaves" msgstr "Permessi Malattia" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "Richiesta permesso per %s" @@ -387,7 +387,7 @@ msgid "Wheat" msgstr "Beige" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "Allocazione per %s" @@ -411,7 +411,7 @@ msgid "Number of Days" msgstr "Numero Giorni" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -513,7 +513,7 @@ msgid "Start Date" msgstr "Data inizio" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -765,7 +765,7 @@ msgid "Validated" msgstr "Convalidata" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -829,7 +829,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -929,8 +929,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/ja.po b/addons/hr_holidays/i18n/ja.po index 6b7a39b646f..4e5de615e69 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "2番目の承認待ち" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -270,12 +270,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "警告" @@ -313,7 +313,7 @@ msgid "Sick Leaves" msgstr "病欠" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "%s の休暇申請" @@ -384,7 +384,7 @@ msgid "Wheat" msgstr "小麦色" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "%s の割当て" @@ -408,7 +408,7 @@ msgid "Number of Days" msgstr "日数" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -513,7 +513,7 @@ msgid "Start Date" msgstr "開始日" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -761,7 +761,7 @@ msgid "Validated" msgstr "承諾済み" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -825,7 +825,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -922,8 +922,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/ko.po b/addons/hr_holidays/i18n/ko.po index 8fef847260f..3ed6d4ec753 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -268,12 +268,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "" @@ -311,7 +311,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -382,7 +382,7 @@ msgid "Wheat" msgstr "밀" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -406,7 +406,7 @@ msgid "Number of Days" msgstr "일 수" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -508,7 +508,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -756,7 +756,7 @@ msgid "Validated" msgstr "검증됨" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -820,7 +820,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -917,8 +917,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/lt.po b/addons/hr_holidays/i18n/lt.po index b6ed0a6e39b..b5b9065cc27 100644 --- a/addons/hr_holidays/i18n/lt.po +++ b/addons/hr_holidays/i18n/lt.po @@ -13,13 +13,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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Blue" -msgstr "" +msgstr "Mėlyna" #. module: hr_holidays #: field:hr.holidays,linked_request_ids:0 @@ -32,7 +32,7 @@ msgid "Waiting Second Approval" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -52,12 +52,12 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Group By..." -msgstr "" +msgstr "Grupuoti pagal..." #. module: hr_holidays #: field:hr.holidays,holiday_type:0 msgid "Allocation Mode" -msgstr "" +msgstr "Rėžimas" #. module: hr_holidays #: field:hr.employee,leave_date_from:0 @@ -68,18 +68,18 @@ msgstr "" #: view:hr.holidays:0 #: field:hr.holidays,department_id:0 msgid "Department" -msgstr "" +msgstr "Padalinys" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.request_approve_allocation #: model:ir.ui.menu,name:hr_holidays.menu_request_approve_allocation msgid "Allocation Requests to Approve" -msgstr "" +msgstr "Paskyrimų pritarimas" #. module: hr_holidays #: help:hr.holidays,category_id:0 msgid "Category of Employee" -msgstr "" +msgstr "Darbuotojų kategorija" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -89,7 +89,7 @@ msgstr "Ruda" #. module: hr_holidays #: view:hr.holidays:0 msgid "Remaining Days" -msgstr "" +msgstr "Liko dienų" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -99,7 +99,7 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays,holiday_type:0 msgid "By Employee" -msgstr "" +msgstr "Pagal darbuotoją" #. module: hr_holidays #: view:hr.holidays:0 @@ -107,6 +107,8 @@ msgid "" "The default duration interval between the start date and the end date is 8 " "hours. Feel free to adapt it to your needs." msgstr "" +"Numatytasis laiko intervalas tarp pradžios ir pabaigos datų yra 8 valandos, " +"tačiau jūs galite datas keisti kaip tik norite." #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_refused @@ -116,12 +118,12 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,number_of_days_temp:0 msgid "Allocation" -msgstr "" +msgstr "Paskirta" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "to" -msgstr "" +msgstr "iki" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -146,7 +148,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Validate" -msgstr "" +msgstr "Patvirtinti" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 @@ -155,7 +157,7 @@ msgstr "" #: selection:hr.holidays.summary.employee,holiday_type:0 #: model:mail.message.subtype,name:hr_holidays.mt_holidays_approved msgid "Approved" -msgstr "Patvirtintas" +msgstr "Pritarta" #. module: hr_holidays #: view:hr.holidays:0 @@ -178,12 +180,12 @@ msgstr "" #: model:ir.actions.act_window,name:hr_holidays.act_hr_employee_holiday_request #: model:ir.ui.menu,name:hr_holidays.menu_open_ask_holidays msgid "Leaves" -msgstr "" +msgstr "Atostogos" #. module: hr_holidays #: field:hr.holidays,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Pranešimai" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -194,19 +196,19 @@ msgstr "" #: code:addons/hr_holidays/wizard/hr_holidays_summary_department.py:44 #, python-format msgid "Error!" -msgstr "" +msgstr "Klaida!" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_request_approve_holidays msgid "Leave Requests to Approve" -msgstr "" +msgstr "Prašymų pritarimas" #. module: hr_holidays #: view:hr.holidays.summary.dept:0 #: model:ir.actions.act_window,name:hr_holidays.action_hr_holidays_summary_dept #: model:ir.ui.menu,name:hr_holidays.menu_account_central_journal msgid "Leaves by Department" -msgstr "" +msgstr "Atostogos pagal padalinį" #. module: hr_holidays #: field:hr.holidays,manager_id2:0 @@ -218,7 +220,7 @@ msgstr "" #: selection:hr.employee,current_leave_state:0 #: selection:hr.holidays,state:0 msgid "Cancelled" -msgstr "" +msgstr "Atšauktas" #. module: hr_holidays #: help:hr.holidays,type:0 @@ -231,17 +233,17 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Validation" -msgstr "" +msgstr "Patvirtinimas" #. module: hr_holidays #: help:hr.holidays,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Jeigu pažymėta, naujos žinutės reikalaus jūsų dėmesio." #. module: hr_holidays #: field:hr.holidays.status,color_name:0 msgid "Color in Report" -msgstr "" +msgstr "Spalva ataskaitoje" #. module: hr_holidays #: help:hr.holidays,manager_id:0 @@ -257,7 +259,7 @@ msgstr "" #: field:hr.holidays.summary.dept,holiday_type:0 #: model:ir.model,name:hr_holidays.model_hr_holidays_status msgid "Leave Type" -msgstr "" +msgstr "Atostogų tipas" #. module: hr_holidays #: help:hr.holidays,message_summary:0 @@ -265,17 +267,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 "" +"Saugo pokalbių suvestinę (žinučių skaičius, ...). Ši apžvalga saugoma html " +"formatu, kad būtų galima įterpti į kanban rodinius." #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" -msgstr "" +msgstr "Įspėjimas!" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -285,7 +289,7 @@ msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.act_hr_leave_request_to_meeting msgid "Leave Meetings" -msgstr "" +msgstr "Susitikimas dėl atostogų" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_cl @@ -307,10 +311,10 @@ msgstr "Nuo" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_sl msgid "Sick Leaves" -msgstr "" +msgstr "Neatvykimas dėl ligos" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -324,7 +328,7 @@ msgstr "" #: view:hr.holidays.status:0 #: model:ir.actions.act_window,name:hr_holidays.open_view_holiday_status msgid "Leave Types" -msgstr "" +msgstr "Atostogų tipai" #. module: hr_holidays #: field:hr.holidays.status,remaining_leaves:0 @@ -334,7 +338,7 @@ msgstr "Neišnaudotos atostogos" #. module: hr_holidays #: field:hr.holidays,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Prenumeratoriai" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_remaining_leaves_user @@ -353,12 +357,12 @@ msgstr "Darbuotojas" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 msgid "New" -msgstr "" +msgstr "Nauja" #. module: hr_holidays #: view:hr.holidays:0 msgid "Type" -msgstr "" +msgstr "Tipas" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -381,7 +385,7 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -405,7 +409,7 @@ msgid "Number of Days" msgstr "Dienų skaičius" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -425,12 +429,12 @@ msgstr "" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 msgid "Waiting Approval" -msgstr "" +msgstr "Laukiama patvirtinimo" #. module: hr_holidays #: field:hr.holidays,category_id:0 msgid "Employee Tag" -msgstr "" +msgstr "Darbuotojo kategorija" #. module: hr_holidays #: field:hr.holidays.summary.employee,emp:0 @@ -443,6 +447,8 @@ msgid "" "Filters only on allocations and requests that belong to an holiday type that " "is 'active' (active field is True)" msgstr "" +"Rodo tik tuos paskyrimus ar prašymus, kurių atostogų tipas yra „aktyvus“ " +"(pažymėtas laukas „Aktyvus“)" #. module: hr_holidays #: model:ir.actions.act_window,help:hr_holidays.hr_holidays_leaves_assign_legal @@ -461,6 +467,7 @@ msgid "" "Once a leave is validated, OpenERP will create a corresponding meeting of " "this type in the calendar." msgstr "" +"Kai atostogos bus patvirintos, OpenERP kalendoriuje sukurs šio tipo įvykį." #. module: hr_holidays #: code:addons/hr_holidays/wizard/hr_holidays_summary_department.py:44 @@ -471,7 +478,7 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,parent_id:0 msgid "Parent" -msgstr "" +msgstr "Tėvinis" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -481,33 +488,33 @@ msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Month" -msgstr "" +msgstr "Mėnuo" #. module: hr_holidays #: field:hr.holidays,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Neskaitytos žinutės" #. module: hr_holidays #: view:hr.holidays:0 #: 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 "Atostogų prašymai" #. module: hr_holidays #: field:hr.holidays.status,limit:0 msgid "Allow to Override Limit" -msgstr "" +msgstr "Leisti viršyti limitą" #. module: hr_holidays #: view:hr.holidays:0 #: field:hr.holidays,date_from:0 msgid "Start Date" -msgstr "" +msgstr "Pradžios data" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -518,7 +525,7 @@ msgstr "" #: view:hr.holidays.summary.dept:0 #: view:hr.holidays.summary.employee:0 msgid "or" -msgstr "" +msgstr "arba" #. module: hr_holidays #: model:ir.actions.act_window,help:hr_holidays.open_ask_holidays @@ -533,6 +540,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad įvestumėte atostogų prašymą.\n" +"

\n" +" Įvedus atostogų prašymas, jis bus nusiųstas peržiūrėti " +"vadovui.\n" +" Įsitikikinte, kad nustatėte teisingą atostogų tipą\n" +" (neapmokamos, apmokamos, ligos atostogos) ir prašomą\n" +" atostogų dienų skaičių.\n" +"

\n" +" " #. module: hr_holidays #: sql_constraint:hr.holidays:0 @@ -542,7 +559,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Category" -msgstr "" +msgstr "Kategorija" #. module: hr_holidays #: help:hr.holidays.status,max_leaves:0 @@ -558,11 +575,14 @@ msgid "" "leaves than the available ones for this type and take them into account for " "the \"Remaining Legal Leaves\" defined on the employee form." msgstr "" +"Jeigu pažymėta, sistema leis darbuotojui skirti daugiau atostogų nei jam yra " +"likę pagal šį tipą. Taip pat atostogų dienų skaičius galės viršyti „Likę " +"skirtų atostogų“ reikšmę darbuotojo formoje." #. module: hr_holidays #: view:hr.holidays:0 msgid "Reset to New" -msgstr "" +msgstr "Atkurti kaip juodraštį" #. module: hr_holidays #: sql_constraint:hr.holidays:0 @@ -582,7 +602,7 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Black" -msgstr "" +msgstr "Juoda" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.hr_holidays_leaves_assign_legal @@ -592,12 +612,12 @@ msgstr "" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_view_holiday_status msgid "Leaves Types" -msgstr "" +msgstr "Atostogų tipai" #. module: hr_holidays #: field:hr.holidays,meeting_id:0 msgid "Meeting" -msgstr "" +msgstr "Susitikimas" #. module: hr_holidays #: help:hr.holidays.status,color_name:0 @@ -605,12 +625,14 @@ msgid "" "This color will be used in the leaves summary located in Reporting\\Leaves " "by Department." msgstr "" +"Ši spalva bus naudojama atostogų apžvalgos ataskaitoje esančioje Ataskaitos\\" +"Atostogos pagal padalinį." #. module: hr_holidays #: view:hr.holidays:0 #: field:hr.holidays,state:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -625,7 +647,7 @@ msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.request_approve_holidays msgid "Requests to Approve" -msgstr "" +msgstr "Prašymų pritarimas" #. module: hr_holidays #: field:hr.holidays.status,leaves_taken:0 @@ -635,7 +657,7 @@ msgstr "Išnaudotos dienos" #. module: hr_holidays #: field:hr.holidays,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Ar prenumeratorius" #. module: hr_holidays #: field:hr.holidays,user_id:0 @@ -646,13 +668,13 @@ msgstr "Naudotojas" #. module: hr_holidays #: field:hr.holidays.status,active:0 msgid "Active" -msgstr "" +msgstr "Aktyvus" #. module: hr_holidays #: view:hr.employee:0 #: field:hr.employee,remaining_leaves:0 msgid "Remaining Legal Leaves" -msgstr "" +msgstr "Likę skirtų atostogų" #. module: hr_holidays #: field:hr.holidays,manager_id:0 @@ -662,12 +684,12 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Santrauka" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_unpaid msgid "Unpaid" -msgstr "" +msgstr "Neapmokėta" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -678,12 +700,12 @@ msgstr "" #: model:ir.actions.report.xml,name:hr_holidays.report_holidays_summary #: model:ir.ui.menu,name:hr_holidays.menu_open_company_allocation msgid "Leaves Summary" -msgstr "" +msgstr "Atostogų suvestinė" #. module: hr_holidays #: view:hr.holidays:0 msgid "Submit to Manager" -msgstr "" +msgstr "Pateikti vadovui" #. module: hr_holidays #: view:hr.employee:0 @@ -698,7 +720,7 @@ msgstr "Šviesiai mėlyna" #. module: hr_holidays #: view:hr.holidays:0 msgid "My Department Leaves" -msgstr "" +msgstr "Mano padalinio atostogos" #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_confirmed @@ -713,7 +735,7 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,type:0 msgid "Request Type" -msgstr "" +msgstr "Tipas" #. module: hr_holidays #: help:hr.holidays.status,active:0 @@ -721,11 +743,13 @@ msgid "" "If the active field is set to false, it will allow you to hide the leave " "type without removing it." msgstr "" +"Jeigu aktyvus laukelis nustatytas kaip \"ne\", leidžiame paslėpti atostogų " +"tipą, jo nepašalinus." #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Misc" -msgstr "" +msgstr "Kita" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_comp @@ -735,13 +759,13 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Yellow" -msgstr "" +msgstr "Šviesiai geltona" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.action_hr_available_holidays_report #: model:ir.ui.menu,name:hr_holidays.menu_hr_available_holidays_report_tree msgid "Leaves Analysis" -msgstr "" +msgstr "Atostogų analizė" #. module: hr_holidays #: view:hr.holidays.summary.dept:0 @@ -755,7 +779,7 @@ msgid "Validated" msgstr "Patvirtintos" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -764,7 +788,7 @@ msgstr "" #: view:hr.holidays:0 #: selection:hr.holidays,type:0 msgid "Allocation Request" -msgstr "" +msgstr "Atostogų paskyrimas" #. module: hr_holidays #: help:hr.holidays,holiday_type:0 @@ -772,23 +796,26 @@ msgid "" "By Employee: Allocation/Request for individual Employee, By Employee Tag: " "Allocation/Request for group of employees in category" msgstr "" +"Pagal darbuotoją: paskyrimas/prašymas pildomas individualiam darbuotojui\n" +"Pagal darbuotojų kategoriją: paskyrimas/prašymas pildomas grupei darbuotojų, " +"kurie priklauso pasirinktai kategorijai" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_resource_calendar_leaves msgid "Leave Detail" -msgstr "" +msgstr "Išvykimo informacija" #. module: hr_holidays #: field:hr.holidays,double_validation:0 #: field:hr.holidays.status,double_validation:0 msgid "Apply Double Validation" -msgstr "" +msgstr "Reikalingas dvigubas patvirtinimas" #. module: hr_holidays #: view:hr.employee:0 #: view:hr.holidays:0 msgid "days" -msgstr "" +msgstr "dienų" #. module: hr_holidays #: view:hr.holidays.summary.dept:0 @@ -799,14 +826,14 @@ msgstr "Spausdinti" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Details" -msgstr "" +msgstr "Detalės" #. module: hr_holidays #: view:board.board:0 #: view:hr.holidays:0 #: model:ir.actions.act_window,name:hr_holidays.action_hr_holidays_leaves_by_month msgid "My Leaves" -msgstr "" +msgstr "Mano atostogos" #. module: hr_holidays #: field:hr.holidays.summary.dept,depts:0 @@ -816,16 +843,16 @@ msgstr "Padalinys(iai)" #. module: hr_holidays #: selection:hr.holidays,state:0 msgid "To Submit" -msgstr "" +msgstr "Juodraštis" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 #, python-format msgid "Leave Request" -msgstr "" +msgstr "Atostogų prašymas" #. module: hr_holidays #: view:hr.holidays:0 @@ -836,19 +863,19 @@ msgstr "Aprašymas" #. module: hr_holidays #: selection:hr.holidays,holiday_type:0 msgid "By Employee Tag" -msgstr "" +msgstr "Pagal darbuotojo kategoriją" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 #: selection:hr.holidays,state:0 #: model:mail.message.subtype,name:hr_holidays.mt_holidays_refused msgid "Refused" -msgstr "Atmestos" +msgstr "Atmesta" #. module: hr_holidays #: field:hr.holidays.status,categ_id:0 msgid "Meeting Type" -msgstr "" +msgstr "Kalendoriaus įrašo tipas" #. module: hr_holidays #: field:hr.holidays.remaining.leaves.user,no_of_leaves:0 @@ -863,12 +890,12 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "To Confirm" -msgstr "" +msgstr "Pateikta" #. module: hr_holidays #: field:hr.holidays,date_to:0 msgid "End Date" -msgstr "" +msgstr "Pabaigos data" #. module: hr_holidays #: help:hr.holidays.status,leaves_taken:0 @@ -880,12 +907,12 @@ msgstr "" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Violet" -msgstr "" +msgstr "Violetinė" #. module: hr_holidays #: field:hr.holidays.status,max_leaves:0 msgid "Maximum Allowed" -msgstr "" +msgstr "Skirta atostogoms" #. module: hr_holidays #: help:hr.holidays,manager_id2:0 @@ -897,27 +924,27 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Mode" -msgstr "" +msgstr "Rėžimas" #. module: hr_holidays #: selection:hr.holidays.summary.dept,holiday_type:0 #: selection:hr.holidays.summary.employee,holiday_type:0 msgid "Both Approved and Confirmed" -msgstr "" +msgstr "Kartu pritarta bei patvirtinta" #. module: hr_holidays #: view:hr.holidays:0 msgid "Approve" -msgstr "" +msgstr "Pritarti" #. module: hr_holidays #: help:hr.holidays,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Žinučių ir pranešimų istorija" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." @@ -926,7 +953,7 @@ msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays msgid "Leave" -msgstr "" +msgstr "Atostogos" #. module: hr_holidays #: help:hr.holidays.status,double_validation:0 @@ -934,13 +961,14 @@ msgid "" "When selected, the Allocation/Leave Requests for this type require a second " "validation to be approved." msgstr "" +"Kai pažymėta, šio tipo paskyrimas/prašymas bus tvirtinamas du kartus." #. module: hr_holidays #: view:hr.holidays:0 #: model:ir.actions.act_window,name:hr_holidays.open_allocation_holidays #: model:ir.ui.menu,name:hr_holidays.menu_open_allocation_holidays msgid "Allocation Requests" -msgstr "" +msgstr "Atostogų paskyrimai" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -954,11 +982,15 @@ msgid "" "to create allocation/leave request. Total based on all the leave types " "without overriding limit." msgstr "" +"Šim darbuotojui skirtų bendras atostogų dienų skaičius. Pakeiskite šią " +"reiškmę, kad būtų galima sukurti atostogų prašymus. Bendras atostogų dienų " +"skaičius galioja visiems atostogų/pravaikštų tipams ir šis limitas negali " +"būti viršytas." #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Pink" -msgstr "" +msgstr "Šviesiai rožinė" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -968,7 +1000,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Manager" -msgstr "" +msgstr "Vadovas" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_summary_dept @@ -978,19 +1010,19 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Year" -msgstr "" +msgstr "Metai" #. module: hr_holidays #: view:hr.holidays:0 msgid "Duration" -msgstr "" +msgstr "Laikotarpis" #. module: hr_holidays #: view:hr.holidays:0 #: selection:hr.holidays,state:0 #: model:mail.message.subtype,name:hr_holidays.mt_holidays_confirmed msgid "To Approve" -msgstr "" +msgstr "Pritarta" #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_approved @@ -1005,7 +1037,7 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays.summary.employee,holiday_type:0 msgid "Select Leave Type" -msgstr "" +msgstr "Pasirinkite atostogų tipą" #~ msgid "Holidays" #~ msgstr "Atostogos" diff --git a/addons/hr_holidays/i18n/lv.po b/addons/hr_holidays/i18n/lv.po index d9984cdc995..6c60fe69a35 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -268,12 +268,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "" @@ -311,7 +311,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -382,7 +382,7 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -406,7 +406,7 @@ msgid "Number of Days" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -508,7 +508,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -756,7 +756,7 @@ msgid "Validated" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -820,7 +820,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -917,8 +917,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/mk.po b/addons/hr_holidays/i18n/mk.po index c5c419e81a1..64360e61145 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "Се чека на второ одобрување" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -45,12 +45,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 +71,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 +92,7 @@ msgstr "Кафена" #. module: hr_holidays #: view:hr.holidays:0 msgid "Remaining Days" -msgstr "Останати Денови" +msgstr "Преостанати Денови" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -277,12 +277,12 @@ msgstr "" "директно во html формат со цел да биде вметнато во kanban преглед." #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "Предупредување!" @@ -317,10 +317,10 @@ 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 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "Барање за Отсуство за %s" @@ -391,7 +391,7 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "Распределба за %s" @@ -423,7 +423,7 @@ msgid "Number of Days" msgstr "Број на денови" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -443,7 +443,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 @@ -521,7 +521,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 @@ -535,7 +535,7 @@ msgid "Start Date" msgstr "Почетен датум" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -570,7 +570,7 @@ msgstr "" "испратено до\n" " менаџерот за потврдување. Осигурете се дека сте го подесиле " "правиот тип на отсуство\n" -" type (заздравување, законски одмори, болест) и точниот број\n" +" (заздравување, законски одмори, болест) и точниот број\n" " на денови поврзани со вашето отсуство.\n" "

\n" " " @@ -679,7 +679,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 @@ -701,7 +701,7 @@ msgstr "Активен" #: view:hr.employee:0 #: field:hr.employee,remaining_leaves:0 msgid "Remaining Legal Leaves" -msgstr "Останати Легални Отсуства" +msgstr "Останати законски отсуства" #. module: hr_holidays #: field:hr.holidays,manager_id:0 @@ -747,7 +747,7 @@ msgstr "Светло сина" #. module: hr_holidays #: view:hr.holidays:0 msgid "My Department Leaves" -msgstr "Мои Секторски Отсуства" +msgstr "Отсуства во моето одделение" #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_confirmed @@ -806,7 +806,7 @@ msgid "Validated" msgstr "Валидирано" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "Не може да избришете отсуство кое е во %s состојба." @@ -835,7 +835,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 @@ -864,7 +864,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 @@ -872,7 +872,7 @@ msgid "To Submit" msgstr "Да се поднесе" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -974,8 +974,8 @@ msgid "Messages and communication history" msgstr "Историја на пораки и комуникација" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." @@ -1014,6 +1014,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_holidays/i18n/mn.po b/addons/hr_holidays/i18n/mn.po index a080e96a785..c972ce16f41 100644 --- a/addons/hr_holidays/i18n/mn.po +++ b/addons/hr_holidays/i18n/mn.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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -32,7 +32,7 @@ msgid "Waiting Second Approval" msgstr "2 дахь зөвшөөрлийг хүлээж байна" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -277,12 +277,12 @@ msgstr "" "html форматтай бөгөөд канбан харагдацад шууд орж харагдах боломжтой." #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "Анхааруулга!" @@ -320,7 +320,7 @@ msgid "Sick Leaves" msgstr "Өвчний чөлөө" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "%s-н амралт, чөлөөний хүсэлт" @@ -391,7 +391,7 @@ msgid "Wheat" msgstr "Үр тарианы өнгө" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "%s хуваарилалт" @@ -421,7 +421,7 @@ msgid "Number of Days" msgstr "Хоногийн тоо" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -539,7 +539,7 @@ msgid "Start Date" msgstr "Эхэлсэн огноо" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -616,7 +616,7 @@ msgstr "Шинэ болгох" #. module: hr_holidays #: sql_constraint:hr.holidays:0 msgid "The number of days must be greater than 0." -msgstr "Өдрийн тоо нь 0-с их байх ёстой." +msgstr "Хоногийн тоо нь 0-с их байх ёстой." #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -808,7 +808,7 @@ msgid "Validated" msgstr "Батламжилсан" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "%s төлөвтэй амралт, чөлөөг устгах боломжгүй." @@ -874,7 +874,7 @@ msgid "To Submit" msgstr "Илгээх" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -976,8 +976,8 @@ msgid "Messages and communication history" msgstr "Зурвас болон харилцсан түүх" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/nb.po b/addons/hr_holidays/i18n/nb.po index 771902ff8ec..0a6f12f387b 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -268,12 +268,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "Advarsel!" @@ -311,7 +311,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "Etterlat forespørsel for %s" @@ -382,7 +382,7 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "Avsetning for% s" @@ -406,7 +406,7 @@ msgid "Number of Days" msgstr "Antall dager." #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -508,7 +508,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -756,7 +756,7 @@ msgid "Validated" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -820,7 +820,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -917,8 +917,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/nl.po b/addons/hr_holidays/i18n/nl.po index 514c5da6f88..160c3f178ae 100644 --- a/addons/hr_holidays/i18n/nl.po +++ b/addons/hr_holidays/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -32,7 +32,7 @@ msgid "Waiting Second Approval" msgstr "Wacht op tweede goedkeuring" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -279,12 +279,12 @@ msgstr "" "ingevoegd." #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "Waarschuwing!" @@ -322,7 +322,7 @@ msgid "Sick Leaves" msgstr "Ziekteverlof" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "Verlofaanvraag voor %s" @@ -393,7 +393,7 @@ msgid "Wheat" msgstr "Tarwe" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "Verloftoewijzing voor %s" @@ -425,7 +425,7 @@ msgid "Number of Days" msgstr "Aantal dagen" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -546,7 +546,7 @@ msgid "Start Date" msgstr "Begindatum" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -816,7 +816,7 @@ msgid "Validated" msgstr "Goedgekeurd" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "U kunt geen verlof verwijderen welke zich in de %s status bevind." @@ -883,7 +883,7 @@ msgid "To Submit" msgstr "In te dienen" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -985,8 +985,8 @@ msgid "Messages and communication history" msgstr "Berichten en communicatie historie" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/nl_BE.po b/addons/hr_holidays/i18n/nl_BE.po index 4ff235bd8fe..0cdc141a0a8 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -268,12 +268,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "" @@ -311,7 +311,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -382,7 +382,7 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -406,7 +406,7 @@ msgid "Number of Days" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -508,7 +508,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -756,7 +756,7 @@ msgid "Validated" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -820,7 +820,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -917,8 +917,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/pl.po b/addons/hr_holidays/i18n/pl.po index ad5730d2268..69f9de2e946 100644 --- a/addons/hr_holidays/i18n/pl.po +++ b/addons/hr_holidays/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-06-23 05:13+0000\n" -"X-Generator: Launchpad (build 16677)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\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 214d881b928..c8532e7e5c0 100644 --- a/addons/hr_holidays/i18n/pt.po +++ b/addons/hr_holidays/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -32,7 +32,7 @@ msgid "Waiting Second Approval" msgstr "A aguardar confirmação da aprovação" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -271,12 +271,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "Atenção!" @@ -314,7 +314,7 @@ msgid "Sick Leaves" msgstr "Ausências por Doença" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "Pedido de Ausência para %s" @@ -385,7 +385,7 @@ msgid "Wheat" msgstr "Trigo" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "Alocação para %s" @@ -409,7 +409,7 @@ msgid "Number of Days" msgstr "Numero de dias" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -475,7 +475,7 @@ msgstr "" #: code:addons/hr_holidays/wizard/hr_holidays_summary_department.py:44 #, python-format msgid "You have to select at least one Department. And try again." -msgstr "" +msgstr "Tem que selecionar pelo menos um departamento, e tente de novo." #. module: hr_holidays #: field:hr.holidays,parent_id:0 @@ -516,7 +516,7 @@ msgid "Start Date" msgstr "Data de início" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -578,7 +578,7 @@ msgstr "" #. module: hr_holidays #: sql_constraint:hr.holidays:0 msgid "The number of days must be greater than 0." -msgstr "" +msgstr "O número de dias tem que ser maior que 0." #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -768,7 +768,7 @@ msgid "Validated" msgstr "Validado" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -832,7 +832,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -933,8 +933,8 @@ msgid "Messages and communication history" msgstr "Histórico de mensagens e comunicação" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/pt_BR.po b/addons/hr_holidays/i18n/pt_BR.po index 3a1dcfb1b0f..7b023c436fa 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -34,7 +34,7 @@ msgid "Waiting Second Approval" msgstr "Aguardando Segunda Aprovação" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -280,12 +280,12 @@ msgstr "" "kanban." #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "Aviso!" @@ -323,7 +323,7 @@ msgid "Sick Leaves" msgstr "Folgas por Doença" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "Folga Solicitada por %s" @@ -394,7 +394,7 @@ msgid "Wheat" msgstr "Bege" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "Alocação para %s" @@ -424,7 +424,7 @@ msgid "Number of Days" msgstr "Número de Dias" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -545,7 +545,7 @@ msgid "Start Date" msgstr "Data Inicial" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -817,7 +817,7 @@ msgid "Validated" msgstr "Validado" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "Você não pode excluir uma folga que está no estado %s." @@ -883,7 +883,7 @@ msgid "To Submit" msgstr "Para Enviar" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -984,8 +984,8 @@ msgid "Messages and communication history" msgstr "Histórico de mensagens e comunicação" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/ro.po b/addons/hr_holidays/i18n/ro.po index fb5c0fcef4b..4693066c8d3 100644 --- a/addons/hr_holidays/i18n/ro.po +++ b/addons/hr_holidays/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -32,7 +32,7 @@ msgid "Waiting Second Approval" msgstr "Se asteapta a doua aprobare" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -278,12 +278,12 @@ msgstr "" "in format HTML, cu scopul de a se introduce in vizualizari kanban." #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "Avertizare!" @@ -321,7 +321,7 @@ msgid "Sick Leaves" msgstr "Concedii medicale" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "Cerere de concediu pentru %s" @@ -392,7 +392,7 @@ msgid "Wheat" msgstr "Grau" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "Alocare pentru %s" @@ -424,7 +424,7 @@ msgid "Number of Days" msgstr "Numar de zile" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -545,7 +545,7 @@ msgid "Start Date" msgstr "Data de inceput" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -817,7 +817,7 @@ msgid "Validated" msgstr "Validat(a)" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "Nu puteti sterge un concediu care este in starea %s." @@ -883,7 +883,7 @@ msgid "To Submit" msgstr "De Depus" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -985,8 +985,8 @@ msgid "Messages and communication history" msgstr "Istoric mesaje si conversatii" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/ru.po b/addons/hr_holidays/i18n/ru.po index c2ce405b8e7..2d08e1561df 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "Ожидает второго подтверждения" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -268,12 +268,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "" @@ -311,7 +311,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -382,7 +382,7 @@ msgid "Wheat" msgstr "Пшеничный" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -406,7 +406,7 @@ msgid "Number of Days" msgstr "Кол-во дней" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -508,7 +508,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -756,7 +756,7 @@ msgid "Validated" msgstr "Проверено" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -820,7 +820,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -919,8 +919,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/sl.po b/addons/hr_holidays/i18n/sl.po index e88e033974d..1209b83d4f9 100644 --- a/addons/hr_holidays/i18n/sl.po +++ b/addons/hr_holidays/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -32,7 +32,7 @@ msgid "Waiting Second Approval" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -267,12 +267,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "" @@ -310,7 +310,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -381,7 +381,7 @@ msgid "Wheat" msgstr "Pšenična" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -405,7 +405,7 @@ msgid "Number of Days" msgstr "Število dni" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -507,7 +507,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -755,7 +755,7 @@ msgid "Validated" msgstr "Potrjeno" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -819,7 +819,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -916,8 +916,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/sq.po b/addons/hr_holidays/i18n/sq.po index d15c95a642f..09c37d5cf2e 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -268,12 +268,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "" @@ -311,7 +311,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -382,7 +382,7 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -406,7 +406,7 @@ msgid "Number of Days" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -508,7 +508,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -756,7 +756,7 @@ msgid "Validated" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -820,7 +820,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -917,8 +917,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/sr.po b/addons/hr_holidays/i18n/sr.po index 41cc64b427c..e8192b7247a 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -268,12 +268,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "" @@ -311,7 +311,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -382,7 +382,7 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -406,7 +406,7 @@ msgid "Number of Days" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -508,7 +508,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -756,7 +756,7 @@ msgid "Validated" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -820,7 +820,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -917,8 +917,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/sr@latin.po b/addons/hr_holidays/i18n/sr@latin.po index bd3c98114f6..3cb4eeffa3d 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "U Očekivanju Druge POtvrde" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -268,12 +268,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "" @@ -311,7 +311,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -382,7 +382,7 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -406,7 +406,7 @@ msgid "Number of Days" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -508,7 +508,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -756,7 +756,7 @@ msgid "Validated" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -820,7 +820,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -917,8 +917,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/sv.po b/addons/hr_holidays/i18n/sv.po index cf06e9189c9..7c058564536 100644 --- a/addons/hr_holidays/i18n/sv.po +++ b/addons/hr_holidays/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -32,7 +32,7 @@ msgid "Waiting Second Approval" msgstr "Väntar på Andra godkännandet" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -270,12 +270,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "Varning!" @@ -313,7 +313,7 @@ msgid "Sick Leaves" msgstr "Sjukfrånvaro" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "Ledighetsbegäran för %s" @@ -384,7 +384,7 @@ msgid "Wheat" msgstr "Vete" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "Tilldelning för %s" @@ -408,7 +408,7 @@ msgid "Number of Days" msgstr "Antal dagar" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -518,7 +518,7 @@ msgid "Start Date" msgstr "Startdatum" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -770,7 +770,7 @@ msgid "Validated" msgstr "Bekräftad" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -834,7 +834,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -935,8 +935,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/th.po b/addons/hr_holidays/i18n/th.po index 18bc24ce991..7f42bf09329 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "กำลังรอการอนุมัติระดับที่สอง" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -63,7 +63,7 @@ msgstr "" #. module: hr_holidays #: field:hr.employee,leave_date_from:0 msgid "From Date" -msgstr "" +msgstr "ตั้งแต่วันที่" #. module: hr_holidays #: view:hr.holidays:0 @@ -117,17 +117,17 @@ msgstr "" #. module: hr_holidays #: field:hr.holidays,number_of_days_temp:0 msgid "Allocation" -msgstr "" +msgstr "การจัดสรร" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "to" -msgstr "" +msgstr "ถึง" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Cyan" -msgstr "" +msgstr "สีฟ้าอ่อน" #. module: hr_holidays #: constraint:hr.holidays:0 @@ -147,7 +147,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Validate" -msgstr "" +msgstr "ตรวจสอบ" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 @@ -184,7 +184,7 @@ msgstr "การลา" #. module: hr_holidays #: field:hr.holidays,message_ids:0 msgid "Messages" -msgstr "" +msgstr "ข้อความ" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -195,7 +195,7 @@ msgstr "" #: code:addons/hr_holidays/wizard/hr_holidays_summary_department.py:44 #, python-format msgid "Error!" -msgstr "" +msgstr "ผิดพลาด!" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_request_approve_holidays @@ -237,12 +237,12 @@ msgstr "การตรวจสอบความถูกต้อง" #. module: hr_holidays #: help:hr.holidays,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "ถ้าการตรวจสอบข้อความใหม่ให้ระบุความสนใจของคุณ" #. module: hr_holidays #: field:hr.holidays.status,color_name:0 msgid "Color in Report" -msgstr "" +msgstr "สีในรายงาน" #. module: hr_holidays #: help:hr.holidays,manager_id:0 @@ -268,12 +268,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "คำเตือน!" @@ -308,10 +308,10 @@ 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 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -319,7 +319,7 @@ msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Sum" -msgstr "" +msgstr "รวม" #. module: hr_holidays #: view:hr.holidays.status:0 @@ -335,7 +335,7 @@ msgstr "วันที่เหลืออยู่" #. module: hr_holidays #: field:hr.holidays,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "ติดตาม" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_remaining_leaves_user @@ -354,7 +354,7 @@ msgstr "พนักงาน" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 msgid "New" -msgstr "" +msgstr "ใหม่" #. module: hr_holidays #: view:hr.holidays:0 @@ -374,7 +374,7 @@ msgstr "การลาแยกตามประเภท" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 msgid "Light Salmon" -msgstr "" +msgstr "สีส้มอ่อน" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -382,7 +382,7 @@ msgid "Wheat" msgstr "สีเหลืองอ่อน" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -406,7 +406,7 @@ msgid "Number of Days" msgstr "จำนวนวัน" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -431,7 +431,7 @@ msgstr "กำลังรอการอนุมัติ" #. module: hr_holidays #: field:hr.holidays,category_id:0 msgid "Employee Tag" -msgstr "" +msgstr "แท็กพนักงาน" #. module: hr_holidays #: field:hr.holidays.summary.employee,emp:0 @@ -482,12 +482,12 @@ msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Month" -msgstr "" +msgstr "เดือน" #. module: hr_holidays #: field:hr.holidays,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "ข้อความที่ยังไม่ได้อ่าน" #. module: hr_holidays #: view:hr.holidays:0 @@ -508,7 +508,7 @@ msgid "Start Date" msgstr "วันที่เริ่มต้น" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -519,7 +519,7 @@ msgstr "" #: view:hr.holidays.summary.dept:0 #: view:hr.holidays.summary.employee:0 msgid "or" -msgstr "" +msgstr "หรือ" #. module: hr_holidays #: model:ir.actions.act_window,help:hr_holidays.open_ask_holidays @@ -611,7 +611,7 @@ msgstr "" #: view:hr.holidays:0 #: field:hr.holidays,state:0 msgid "Status" -msgstr "" +msgstr "สถานะ" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -626,7 +626,7 @@ msgstr "" #. module: hr_holidays #: model:ir.actions.act_window,name:hr_holidays.request_approve_holidays msgid "Requests to Approve" -msgstr "" +msgstr "ขออนุมัติ" #. module: hr_holidays #: field:hr.holidays.status,leaves_taken:0 @@ -636,7 +636,7 @@ msgstr "วันลาที่ใช้ไปแล้ว" #. module: hr_holidays #: field:hr.holidays,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "เป็นผู้ติดตาม" #. module: hr_holidays #: field:hr.holidays,user_id:0 @@ -663,12 +663,12 @@ msgstr "การอนุมัติครั้งแรก" #. module: hr_holidays #: field:hr.holidays,message_summary:0 msgid "Summary" -msgstr "" +msgstr "สรุป" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_unpaid msgid "Unpaid" -msgstr "" +msgstr "ไม่ได้ค่าจ้าง" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -684,7 +684,7 @@ msgstr "สรุปการลา" #. module: hr_holidays #: view:hr.holidays:0 msgid "Submit to Manager" -msgstr "" +msgstr "ส่งไปยังผู้จัดการ" #. module: hr_holidays #: view:hr.employee:0 @@ -731,7 +731,7 @@ msgstr "เบ็ดเตล็ด" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_comp msgid "Compensatory Days" -msgstr "" +msgstr "วันชดเชย" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -756,7 +756,7 @@ msgid "Validated" msgstr "ผ่านการตรวจสอบแล้ว" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -789,7 +789,7 @@ msgstr "" #: view:hr.employee:0 #: view:hr.holidays:0 msgid "days" -msgstr "" +msgstr "วัน" #. module: hr_holidays #: view:hr.holidays.summary.dept:0 @@ -817,10 +817,10 @@ msgstr "แผนก" #. module: hr_holidays #: selection:hr.holidays,state:0 msgid "To Submit" -msgstr "" +msgstr "ที่จะส่ง" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -837,7 +837,7 @@ msgstr "รายละเอียด" #. module: hr_holidays #: selection:hr.holidays,holiday_type:0 msgid "By Employee Tag" -msgstr "" +msgstr "โดยแท็กของพนักงาน" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 @@ -898,13 +898,13 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Mode" -msgstr "" +msgstr "โหมด" #. module: hr_holidays #: selection:hr.holidays.summary.dept,holiday_type:0 #: selection:hr.holidays.summary.employee,holiday_type:0 msgid "Both Approved and Confirmed" -msgstr "" +msgstr "ได้รับการอนุมัติและได้รับการยืนยัน ทั้งสอง" #. module: hr_holidays #: view:hr.holidays:0 @@ -914,11 +914,11 @@ msgstr "อนุมัติ" #. module: hr_holidays #: help:hr.holidays,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "ข้อความและประวัติการสื่อสาร" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." @@ -946,7 +946,7 @@ msgstr "" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Color" -msgstr "" +msgstr "สี" #. module: hr_holidays #: help:hr.employee,remaining_leaves:0 @@ -979,12 +979,12 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Year" -msgstr "" +msgstr "ปี" #. module: hr_holidays #: view:hr.holidays:0 msgid "Duration" -msgstr "" +msgstr "ระยะเวลา" #. module: hr_holidays #: view:hr.holidays:0 diff --git a/addons/hr_holidays/i18n/tlh.po b/addons/hr_holidays/i18n/tlh.po index e236f88de94..7338a473a14 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -268,12 +268,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "" @@ -311,7 +311,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -382,7 +382,7 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -406,7 +406,7 @@ msgid "Number of Days" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -508,7 +508,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -756,7 +756,7 @@ msgid "Validated" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -820,7 +820,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -917,8 +917,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/tr.po b/addons/hr_holidays/i18n/tr.po index 97ca1afcdf3..b00e7d73dab 100644 --- a/addons/hr_holidays/i18n/tr.po +++ b/addons/hr_holidays/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -32,7 +32,7 @@ msgid "Waiting Second Approval" msgstr "İkinci Onayı Bekliyor" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -76,7 +76,7 @@ msgstr "Departmen" #: model:ir.actions.act_window,name:hr_holidays.request_approve_allocation #: model:ir.ui.menu,name:hr_holidays.menu_request_approve_allocation msgid "Allocation Requests to Approve" -msgstr "Tahsis İstekleri Onaylayacak" +msgstr "Onaylanacak Tahsis İstekleri" #. module: hr_holidays #: help:hr.holidays,category_id:0 @@ -109,6 +109,8 @@ msgid "" "The default duration interval between the start date and the end date is 8 " "hours. Feel free to adapt it to your needs." msgstr "" +"başlangıç ​​tarihi ve bitiş tarihi arasındaki varsayılan süre aralığı8 saat " +"ise. İhtiyaçlarınıza uyarlamak için çekinmeden." #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_refused @@ -123,7 +125,7 @@ msgstr "Tahsis" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "to" -msgstr "" +msgstr "ye" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -133,7 +135,7 @@ msgstr "Açık Mavi" #. module: hr_holidays #: constraint:hr.holidays:0 msgid "You can not have 2 leaves that overlaps on same day!" -msgstr "" +msgstr "Aynı günle örtüşen 2 izin olmaz!" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -162,12 +164,12 @@ msgstr "Onaylanmış" #. module: hr_holidays #: view:hr.holidays:0 msgid "Search Leave" -msgstr "" +msgstr "İzin Ara" #. module: hr_holidays #: view:hr.holidays:0 msgid "Refuse" -msgstr "Reddetme" +msgstr "Reddet" #. module: hr_holidays #: code:addons/hr_holidays/hr_holidays.py:433 @@ -190,7 +192,7 @@ msgstr "Mesajlar" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Analyze from" -msgstr "" +msgstr "Analiz" #. module: hr_holidays #: code:addons/hr_holidays/wizard/hr_holidays_summary_department.py:44 @@ -249,6 +251,7 @@ msgstr "" #: help:hr.holidays,manager_id:0 msgid "This area is automatically filled by the user who validate the leave" msgstr "" +"Bu alan otomatik olarak izin doğrulama kullanıcısı tarafından doldurulur" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -267,14 +270,16 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Sohbetçi özetini (mesaj sayısı, ...) barındırır. Bu özet kanban " +"görünümlerine eklenmek üzere doğrudan html biçimindedir." #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "Uyarı!" @@ -312,7 +317,7 @@ msgid "Sick Leaves" msgstr "Hastalık İzinleri" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "İzni İsteği %s" @@ -336,7 +341,7 @@ msgstr "Kalan İzinler" #. module: hr_holidays #: field:hr.holidays,message_follower_ids:0 msgid "Followers" -msgstr "Takipçiler" +msgstr "İzleyiciler" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_hr_holidays_remaining_leaves_user @@ -383,7 +388,7 @@ msgid "Wheat" msgstr "Buğday" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "Tahsisi %s" @@ -399,15 +404,22 @@ msgid "" " \n" "The status is 'Approved', when holiday request is approved by manager." msgstr "" +"bir izin isteği oluşturulduğunda, durumu 'gönderim' olarak ayarlanır. " +" \n" +"bir izin isteği oluşturulduğunda, kullanıcı durumu 'onaylanma' olarak " +"ayarlanır. \n" +"The status is 'Refused', when holiday request is refused by manager. " +" \n" +"The status is 'Approved', when holiday request is approved by manager." #. module: hr_holidays #: view:hr.holidays:0 #: field:hr.holidays,number_of_days:0 msgid "Number of Days" -msgstr "Günlerin Sayısı" +msgstr "Gün Sayısı" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -456,6 +468,12 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Sen, her bir çalışan için kalan Yasal İzinler atayabilirsin, " +"OpenERP\n" +" otomatik olarak oluşturur ve tahsis taleplerini doğrular.\n" +"

\n" +" " #. module: hr_holidays #: help:hr.holidays.status,categ_id:0 @@ -500,7 +518,7 @@ msgstr "İzin İstekleri" #. module: hr_holidays #: field:hr.holidays.status,limit:0 msgid "Allow to Override Limit" -msgstr "" +msgstr "Limit Aşımı İzni" #. module: hr_holidays #: view:hr.holidays:0 @@ -509,7 +527,7 @@ msgid "Start Date" msgstr "Başlama Tarihi" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -538,11 +556,9 @@ msgstr "" "

\n" " Yeni bir izin isteği oluşturmak için tıklayın.\n" "

\n" -" izin isteği kayıtedildikten sonra, gönderilecek\n" -" doğrulama için Yöneticisine.İzni ayarlamak için emin olun\n" -" türü (iyileşme, resmi tatil, hastalık) ve kesin\n" -" number of open days related to your leave.\n" -"

\n" +" izin isteği kayıt edildikten sonra, Yöneticisine\n" +" doğrulama için gönderilecek.\n" +"

\n" " " #. module: hr_holidays @@ -646,7 +662,7 @@ msgstr "Daima Alınan İzinler" #. module: hr_holidays #: field:hr.holidays,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçisi mi" +msgstr "Bir İzleyicidir" #. module: hr_holidays #: field:hr.holidays,user_id:0 @@ -736,7 +752,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays.status:0 msgid "Misc" -msgstr "" +msgstr "Çeşitli" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_comp @@ -766,10 +782,10 @@ msgid "Validated" msgstr "Doğrulanmış" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." -msgstr "" +msgstr "%s durumda bir izini silemezsiniz." #. module: hr_holidays #: view:hr.holidays:0 @@ -787,7 +803,7 @@ msgstr "" #. module: hr_holidays #: model:ir.model,name:hr_holidays.model_resource_calendar_leaves msgid "Leave Detail" -msgstr "İzin Ayrıntısı" +msgstr "İzin Detayları" #. module: hr_holidays #: field:hr.holidays,double_validation:0 @@ -830,7 +846,7 @@ msgid "To Submit" msgstr "Gönderin" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -847,7 +863,7 @@ msgstr "Açıklama" #. module: hr_holidays #: selection:hr.holidays,holiday_type:0 msgid "By Employee Tag" -msgstr "" +msgstr "Personel Etiketi" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 @@ -915,12 +931,12 @@ msgstr "" #: selection:hr.holidays.summary.dept,holiday_type:0 #: selection:hr.holidays.summary.employee,holiday_type:0 msgid "Both Approved and Confirmed" -msgstr "" +msgstr "Onaylandı ve Doğrulandı" #. module: hr_holidays #: view:hr.holidays:0 msgid "Approve" -msgstr "Onay" +msgstr "Onayla" #. module: hr_holidays #: help:hr.holidays,message_ids:0 @@ -928,8 +944,8 @@ msgid "Messages and communication history" msgstr "Mesajlar ve iletişim geçmişi" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/uk.po b/addons/hr_holidays/i18n/uk.po index 071fc8976a3..f97f4c79e94 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -268,12 +268,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "" @@ -311,7 +311,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -382,7 +382,7 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -406,7 +406,7 @@ msgid "Number of Days" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -508,7 +508,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -756,7 +756,7 @@ msgid "Validated" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -820,7 +820,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -917,8 +917,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/vi.po b/addons/hr_holidays/i18n/vi.po index 923a4a5fb17..6f847f37ffd 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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -33,7 +33,7 @@ msgid "Waiting Second Approval" msgstr "Đang chờ Chấp thuận Thứ hai" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -268,12 +268,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "Cảnh báo!" @@ -311,7 +311,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -382,7 +382,7 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -406,7 +406,7 @@ msgid "Number of Days" msgstr "Số ngày" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -508,7 +508,7 @@ msgid "Start Date" msgstr "Ngày bắt đầu" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -756,7 +756,7 @@ msgid "Validated" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -820,7 +820,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -917,8 +917,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_holidays/i18n/zh_CN.po b/addons/hr_holidays/i18n/zh_CN.po index 0bedd068e9a..4bb62da547f 100644 --- a/addons/hr_holidays/i18n/zh_CN.po +++ b/addons/hr_holidays/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -32,7 +32,7 @@ msgid "Waiting Second Approval" msgstr "等待第二次审批" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -111,17 +111,17 @@ msgstr "开始时间与结束时间之间的默认时间间隔是8小时,你 #. module: hr_holidays #: model:mail.message.subtype,description:hr_holidays.mt_holidays_refused msgid "Request refused" -msgstr "" +msgstr "请求已拒绝" #. module: hr_holidays #: field:hr.holidays,number_of_days_temp:0 msgid "Allocation" -msgstr "" +msgstr "分配" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "to" -msgstr "" +msgstr "到" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -146,7 +146,7 @@ msgstr "当前请假类型" #. module: hr_holidays #: view:hr.holidays:0 msgid "Validate" -msgstr "" +msgstr "生效" #. module: hr_holidays #: selection:hr.employee,current_leave_state:0 @@ -183,7 +183,7 @@ msgstr "假期" #. module: hr_holidays #: field:hr.holidays,message_ids:0 msgid "Messages" -msgstr "" +msgstr "消息" #. module: hr_holidays #: xsl:holidays.summary:0 @@ -194,7 +194,7 @@ msgstr "" #: code:addons/hr_holidays/wizard/hr_holidays_summary_department.py:44 #, python-format msgid "Error!" -msgstr "" +msgstr "错误!" #. module: hr_holidays #: model:ir.ui.menu,name:hr_holidays.menu_request_approve_holidays @@ -238,7 +238,7 @@ msgstr "审核" #. module: hr_holidays #: help:hr.holidays,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "如果选中的话,你需要注意新的消息。" #. module: hr_holidays #: field:hr.holidays.status,color_name:0 @@ -266,15 +266,15 @@ 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: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "警告!" @@ -312,7 +312,7 @@ msgid "Sick Leaves" msgstr "病假" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "%s 的请假申请" @@ -383,7 +383,7 @@ msgid "Wheat" msgstr "麦黄色" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "%s 的年假" @@ -411,7 +411,7 @@ msgid "Number of Days" msgstr "天数" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -500,7 +500,7 @@ msgstr "月" #. module: hr_holidays #: field:hr.holidays,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "未读消息" #. module: hr_holidays #: view:hr.holidays:0 @@ -521,7 +521,7 @@ msgid "Start Date" msgstr "开始日期" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -532,7 +532,7 @@ msgstr "没有足够的%s分配给员工%s;请为这种假期类型创建一 #: view:hr.holidays.summary.dept:0 #: view:hr.holidays.summary.employee:0 msgid "or" -msgstr "" +msgstr "或" #. module: hr_holidays #: model:ir.actions.act_window,help:hr_holidays.open_ask_holidays @@ -576,7 +576,7 @@ msgstr "" #. module: hr_holidays #: view:hr.holidays:0 msgid "Reset to New" -msgstr "" +msgstr "重置为新的" #. module: hr_holidays #: sql_constraint:hr.holidays:0 @@ -591,7 +591,7 @@ msgstr "浅珊瑚色" #. module: hr_holidays #: field:hr.employee,leave_date_to:0 msgid "To Date" -msgstr "" +msgstr "到 日期" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -624,7 +624,7 @@ msgstr "" #: view:hr.holidays:0 #: field:hr.holidays,state:0 msgid "Status" -msgstr "" +msgstr "状态" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -649,7 +649,7 @@ msgstr "准假已通过" #. module: hr_holidays #: field:hr.holidays,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "是一个关注者" #. module: hr_holidays #: field:hr.holidays,user_id:0 @@ -676,7 +676,7 @@ msgstr "首次审批" #. module: hr_holidays #: field:hr.holidays,message_summary:0 msgid "Summary" -msgstr "" +msgstr "总览" #. module: hr_holidays #: model:hr.holidays.status,name:hr_holidays.holiday_status_unpaid @@ -697,7 +697,7 @@ msgstr "准假摘要" #. module: hr_holidays #: view:hr.holidays:0 msgid "Submit to Manager" -msgstr "" +msgstr "提交给经理" #. module: hr_holidays #: view:hr.employee:0 @@ -769,7 +769,7 @@ msgid "Validated" msgstr "已生效" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -802,7 +802,7 @@ msgstr "要两次生效" #: view:hr.employee:0 #: view:hr.holidays:0 msgid "days" -msgstr "" +msgstr "天" #. module: hr_holidays #: view:hr.holidays.summary.dept:0 @@ -830,10 +830,10 @@ msgstr "部门" #. module: hr_holidays #: selection:hr.holidays,state:0 msgid "To Submit" -msgstr "" +msgstr "提交" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -862,7 +862,7 @@ msgstr "已拒绝" #. module: hr_holidays #: field:hr.holidays.status,categ_id:0 msgid "Meeting Type" -msgstr "" +msgstr "会议类型" #. module: hr_holidays #: field:hr.holidays.remaining.leaves.user,no_of_leaves:0 @@ -927,11 +927,11 @@ msgstr "审批" #. module: hr_holidays #: help:hr.holidays,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "消息和通信记录" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." @@ -947,7 +947,7 @@ msgstr "准假" msgid "" "When selected, the Allocation/Leave Requests for this type require a second " "validation to be approved." -msgstr "" +msgstr "选中后,这种类型的分配和请假请求需经要求二次验证才能批准" #. module: hr_holidays #: view:hr.holidays:0 @@ -959,7 +959,7 @@ msgstr "分配准假" #. module: hr_holidays #: xsl:holidays.summary:0 msgid "Color" -msgstr "" +msgstr "色彩" #. module: hr_holidays #: help:hr.employee,remaining_leaves:0 @@ -997,7 +997,7 @@ msgstr "年" #. module: hr_holidays #: view:hr.holidays:0 msgid "Duration" -msgstr "" +msgstr "时长" #. module: hr_holidays #: view:hr.holidays:0 @@ -1019,7 +1019,7 @@ msgstr "原因" #. module: hr_holidays #: field:hr.holidays.summary.employee,holiday_type:0 msgid "Select Leave Type" -msgstr "" +msgstr "选择休假类型" #~ msgid "Set to Draft" #~ msgstr "设为草稿" diff --git a/addons/hr_holidays/i18n/zh_TW.po b/addons/hr_holidays/i18n/zh_TW.po index 5a158cad0df..0e3cfede0e4 100644 --- a/addons/hr_holidays/i18n/zh_TW.po +++ b/addons/hr_holidays/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-16 05:30+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:23+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_holidays #: selection:hr.holidays.status,color_name:0 @@ -32,7 +32,7 @@ msgid "Waiting Second Approval" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:298 +#: code:addons/hr_holidays/hr_holidays.py:309 #, python-format msgid "" "You cannot modify a leave request that has been approved. Contact a human " @@ -267,12 +267,12 @@ msgid "" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 #: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 -#: code:addons/hr_holidays/hr_holidays.py:298 -#: code:addons/hr_holidays/hr_holidays.py:421 -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 +#: code:addons/hr_holidays/hr_holidays.py:309 +#: code:addons/hr_holidays/hr_holidays.py:432 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "Warning!" msgstr "" @@ -310,7 +310,7 @@ msgid "Sick Leaves" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:478 +#: code:addons/hr_holidays/hr_holidays.py:489 #, python-format msgid "Leave Request for %s" msgstr "" @@ -381,7 +381,7 @@ msgid "Wheat" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:476 +#: code:addons/hr_holidays/hr_holidays.py:487 #, python-format msgid "Allocation for %s" msgstr "" @@ -405,7 +405,7 @@ msgid "Number of Days" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:471 +#: code:addons/hr_holidays/hr_holidays.py:482 #, python-format msgid "" "The feature behind the field 'Remaining Legal Leaves' can only be used when " @@ -507,7 +507,7 @@ msgid "Start Date" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:421 +#: code:addons/hr_holidays/hr_holidays.py:432 #, python-format msgid "" "There are not enough %s allocated for employee %s; please create an " @@ -755,7 +755,7 @@ msgid "Validated" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:238 +#: code:addons/hr_holidays/hr_holidays.py:249 #, python-format msgid "You cannot delete a leave which is in %s state." msgstr "" @@ -819,7 +819,7 @@ msgid "To Submit" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:343 +#: code:addons/hr_holidays/hr_holidays.py:354 #: view:hr.holidays:0 #: selection:hr.holidays,type:0 #: field:resource.calendar.leaves,holiday_id:0 @@ -916,8 +916,8 @@ msgid "Messages and communication history" msgstr "" #. module: hr_holidays -#: code:addons/hr_holidays/hr_holidays.py:249 -#: code:addons/hr_holidays/hr_holidays.py:274 +#: code:addons/hr_holidays/hr_holidays.py:260 +#: code:addons/hr_holidays/hr_holidays.py:285 #: sql_constraint:hr.holidays:0 #, python-format msgid "The start date must be anterior to the end date." diff --git a/addons/hr_payroll/i18n/ar.po b/addons/hr_payroll/i18n/ar.po index cb399fc1248..9e4ee79e484 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-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -200,11 +200,11 @@ msgid "Notes" msgstr "الملاحظات" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "خطأ!" @@ -277,7 +277,7 @@ msgid "Draft Slip" msgstr "مسودة ظرف المرتب" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "أيام العمل العادية المدفوعة بنسبة 100٪" @@ -428,7 +428,7 @@ msgid "Percentage based on" msgstr "نسبة مئوية على أساس" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -476,7 +476,7 @@ msgid "Salary Rules" msgstr "قانون الأجور" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "استرداد: " @@ -508,7 +508,7 @@ msgid "Fixed Amount" msgstr "مبلغ ثابت" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -644,7 +644,7 @@ msgid "Computation" msgstr "أحسب/حساب" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -684,7 +684,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -742,7 +742,7 @@ msgid "Percentage (%)" msgstr "النسبة المئوية (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -855,7 +855,7 @@ msgid "Contribution" msgstr "المشاركة" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -922,7 +922,7 @@ msgid "General" msgstr "عام" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1074,7 +1074,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1181,7 +1181,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1212,7 +1212,7 @@ msgid "The code that can be used in the salary rules" msgstr "الرمز الذي يمكن استخدامه في قواعد الراتب" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/bg.po b/addons/hr_payroll/i18n/bg.po index 49c84f45852..ae14dba8bd3 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-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "Фиксирана количество" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -639,7 +639,7 @@ msgid "Computation" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -679,7 +679,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -737,7 +737,7 @@ msgid "Percentage (%)" msgstr "Процент (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -850,7 +850,7 @@ msgid "Contribution" msgstr "Участници" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -917,7 +917,7 @@ msgid "General" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1069,7 +1069,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1176,7 +1176,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1207,7 +1207,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/ca.po b/addons/hr_payroll/i18n/ca.po index 98e2563301e..b37733999bc 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-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "Import fix" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -639,7 +639,7 @@ msgid "Computation" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -679,7 +679,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -737,7 +737,7 @@ msgid "Percentage (%)" msgstr "Percentatge (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -850,7 +850,7 @@ msgid "Contribution" msgstr "Contribució" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -917,7 +917,7 @@ msgid "General" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1069,7 +1069,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1176,7 +1176,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1207,7 +1207,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/cs.po b/addons/hr_payroll/i18n/cs.po index 51920baa156..cf942c52c7a 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-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\n" #. module: hr_payroll @@ -199,11 +199,11 @@ msgid "Notes" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -276,7 +276,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -424,7 +424,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -472,7 +472,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -504,7 +504,7 @@ msgid "Fixed Amount" msgstr "Pevná částka" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -640,7 +640,7 @@ msgid "Computation" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -680,7 +680,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -738,7 +738,7 @@ msgid "Percentage (%)" msgstr "Procenta (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -851,7 +851,7 @@ msgid "Contribution" msgstr "Příspěvky" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -918,7 +918,7 @@ msgid "General" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1070,7 +1070,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1177,7 +1177,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1208,7 +1208,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/da.po b/addons/hr_payroll/i18n/da.po index e27de3d491e..7a3a85ac149 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-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -639,7 +639,7 @@ msgid "Computation" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -679,7 +679,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -737,7 +737,7 @@ msgid "Percentage (%)" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -850,7 +850,7 @@ msgid "Contribution" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -917,7 +917,7 @@ msgid "General" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1069,7 +1069,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1176,7 +1176,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1207,7 +1207,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/de.po b/addons/hr_payroll/i18n/de.po index 8fe40ab511c..004d39a15fd 100644 --- a/addons/hr_payroll/i18n/de.po +++ b/addons/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-03-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -202,11 +202,11 @@ msgid "Notes" msgstr "Bemerkungen" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "Fehler !" @@ -279,7 +279,7 @@ msgid "Draft Slip" msgstr "Lohnkont Entwurf" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "Normale Arbeitstage zu 100% bezahlt" @@ -446,7 +446,7 @@ msgid "Percentage based on" msgstr "Prozent basierend auf" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "%s (Kopie)" @@ -494,7 +494,7 @@ msgid "Salary Rules" msgstr "Lohnkonto Rechenregeln" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "Vergütung " @@ -526,7 +526,7 @@ msgid "Fixed Amount" msgstr "Fester Betrag" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "Warnung !" @@ -664,7 +664,7 @@ msgid "Computation" msgstr "Berechnung" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "Falsche Bedingungen für die Bandbreiten der Abrechnungsregel %s (%s)" @@ -707,7 +707,7 @@ msgid "" msgstr "Wenn markiert, dann sind alle hier erzeugten Lohnkonten Vergütungen." #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -767,7 +767,7 @@ msgid "Percentage (%)" msgstr "Prozent (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "Falsche Menge wurde definiert für diese Abrechnungsregel %s (%s)." @@ -881,7 +881,7 @@ msgid "Contribution" msgstr "Arbeitnehmer / Arbeitgeber Anteile" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "Guthaben Lohnkonto" @@ -948,7 +948,7 @@ msgid "General" msgstr "Allgemein" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "Lohnkonto von %s für %s" @@ -1105,7 +1105,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "Lohnkontozeilen je Beitragskonto" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1222,7 +1222,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "Lohnkonto Rechenregel Kategorien Hierarchie" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "Falscher Python Code für die Berechnungsformel %s (%s)." @@ -1253,7 +1253,7 @@ msgid "The code that can be used in the salary rules" msgstr "Der Code der in der Rechenregeln verwendet werden kann" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "Falsche Python Bedingung für die Abrechnungsregel %s (%s)." diff --git a/addons/hr_payroll/i18n/en_GB.po b/addons/hr_payroll/i18n/en_GB.po index 0663a571778..d4e4c626f76 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -200,11 +200,11 @@ msgid "Notes" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -277,7 +277,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -425,7 +425,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -473,7 +473,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -505,7 +505,7 @@ msgid "Fixed Amount" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -641,7 +641,7 @@ msgid "Computation" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -681,7 +681,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -739,7 +739,7 @@ msgid "Percentage (%)" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -852,7 +852,7 @@ msgid "Contribution" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -919,7 +919,7 @@ msgid "General" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1071,7 +1071,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1178,7 +1178,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1209,7 +1209,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/es.po b/addons/hr_payroll/i18n/es.po index 0f9a2835f56..d2960ff410b 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -201,11 +201,11 @@ msgid "Notes" msgstr "Notas" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "¡Error!" @@ -278,7 +278,7 @@ msgid "Draft Slip" msgstr "Nómina borrador" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "Días de trabajo normales pagados al 100%" @@ -443,7 +443,7 @@ msgid "Percentage based on" msgstr "Porcentaje basado en" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "%s (copiar)" @@ -491,7 +491,7 @@ msgid "Salary Rules" msgstr "Reglas salariales" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "Devolución: " @@ -523,7 +523,7 @@ msgid "Fixed Amount" msgstr "Importe fijo" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "¡Advertencia!" @@ -662,7 +662,7 @@ msgid "Computation" msgstr "Cálculo" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "Rango de condición erróneo para la regla de salario %s (%s)." @@ -707,7 +707,7 @@ msgstr "" "nóminas reembolso." #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "Porcentaje base o cantidad errónea para la regla de salario %s (%s)." @@ -765,7 +765,7 @@ msgid "Percentage (%)" msgstr "Porcentaje (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "Cantidad errónea definida para la regla de salario %s (%s)." @@ -878,7 +878,7 @@ msgid "Contribution" msgstr "Contribución" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "Abonar nómina" @@ -945,7 +945,7 @@ msgid "General" msgstr "General" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "Nómina salarial de %s para %s" @@ -1101,7 +1101,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "Líneas de nómina por registro de contribución" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1216,7 +1216,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "Jerarquía de categorías de reglas salariales" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "Código python erróneo en la regla de salario %s (%s)." @@ -1247,7 +1247,7 @@ msgid "The code that can be used in the salary rules" msgstr "El código puede ser usado en las reglas salariales" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "Código python erróneo en la regla de salario %s (%s)." diff --git a/addons/hr_payroll/i18n/es_CR.po b/addons/hr_payroll/i18n/es_CR.po index 1cc68bda366..05a66431cd0 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: hr_payroll @@ -204,11 +204,11 @@ msgid "Notes" msgstr "Notas" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -281,7 +281,7 @@ msgid "Draft Slip" msgstr "Borrador Slip" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "Días normales de trabajo pagado al 100%" @@ -437,7 +437,7 @@ msgid "Percentage based on" msgstr "Porcentaje basado en" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -485,7 +485,7 @@ msgid "Salary Rules" msgstr "Reglas de Salario" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "Reembolso: " @@ -517,7 +517,7 @@ msgid "Fixed Amount" msgstr "Importe fijo" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -657,7 +657,7 @@ msgid "Computation" msgstr "Cálculo" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -702,7 +702,7 @@ msgstr "" "aquí son boletas de pago de reembolso." #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -760,7 +760,7 @@ msgid "Percentage (%)" msgstr "Porcentaje (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -873,7 +873,7 @@ msgid "Contribution" msgstr "Contribución" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "Reembolso de nómina" @@ -940,7 +940,7 @@ msgid "General" msgstr "General" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "Salario Slip de %s para %s" @@ -1097,7 +1097,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "Linea de nómina por registro de contribución" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1208,7 +1208,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "Jerarquía de categorías de reglas de salario" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1239,7 +1239,7 @@ msgid "The code that can be used in the salary rules" msgstr "El código puede ser usado en la regla de salario" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/es_EC.po b/addons/hr_payroll/i18n/es_EC.po index cdb336b77d0..d77007b3ac7 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -201,11 +201,11 @@ msgid "Notes" msgstr "Notas" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -278,7 +278,7 @@ msgid "Draft Slip" msgstr "Rol Borrador" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "Dias trabajo normales pagados con el 100%" @@ -433,7 +433,7 @@ msgid "Percentage based on" msgstr "Porcentaje basado en" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -481,7 +481,7 @@ msgid "Salary Rules" msgstr "Reglas salariales" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "Reembolso " @@ -513,7 +513,7 @@ msgid "Fixed Amount" msgstr "Importe fijo" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -651,7 +651,7 @@ msgid "Computation" msgstr "Cálculo" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -695,7 +695,7 @@ msgstr "" "Si check, indica que todos los roles generados son roles reembolsados" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -753,7 +753,7 @@ msgid "Percentage (%)" msgstr "Porcentaje (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -866,7 +866,7 @@ msgid "Contribution" msgstr "Contribución" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "Rol reembolsado" @@ -933,7 +933,7 @@ msgid "General" msgstr "General" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "Rol de pagos de %s por (%s)" @@ -1089,7 +1089,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "Lineas de roles por registro de contribuciones" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1199,7 +1199,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "Categorías de reglas de categorías jerárquica" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1230,7 +1230,7 @@ msgid "The code that can be used in the salary rules" msgstr "El código que puede ser usado en las reglas de salario" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/es_MX.po b/addons/hr_payroll/i18n/es_MX.po index 0806e1ba388..bb635e277e8 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -639,7 +639,7 @@ msgid "Computation" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -679,7 +679,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -737,7 +737,7 @@ msgid "Percentage (%)" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -850,7 +850,7 @@ msgid "Contribution" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -917,7 +917,7 @@ msgid "General" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1069,7 +1069,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1176,7 +1176,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1207,7 +1207,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/et.po b/addons/hr_payroll/i18n/et.po index b26f8507da2..c03d52b3dc6 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-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "Märkused" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "Kindel summa" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -639,7 +639,7 @@ msgid "Computation" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -679,7 +679,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -737,7 +737,7 @@ msgid "Percentage (%)" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -850,7 +850,7 @@ msgid "Contribution" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -917,7 +917,7 @@ msgid "General" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1069,7 +1069,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1176,7 +1176,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1207,7 +1207,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/fi.po b/addons/hr_payroll/i18n/fi.po index 38b29b51ff0..dc3310ea6cb 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -639,7 +639,7 @@ msgid "Computation" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -679,7 +679,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -737,7 +737,7 @@ msgid "Percentage (%)" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -850,7 +850,7 @@ msgid "Contribution" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -917,7 +917,7 @@ msgid "General" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1069,7 +1069,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1176,7 +1176,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1207,7 +1207,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/fr.po b/addons/hr_payroll/i18n/fr.po index 705086d36a1..7568d890101 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -203,14 +203,14 @@ msgid "Notes" msgstr "Notes" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" -msgstr "" +msgstr "Erreur!" #. module: hr_payroll #: report:contribution.register.lines:0 @@ -236,7 +236,7 @@ msgstr "Autres informations" #. module: hr_payroll #: field:hr.config.settings,module_hr_payroll_account:0 msgid "Link your payroll to accounting system" -msgstr "" +msgstr "Liez votre paie au système comptable" #. module: hr_payroll #: help:hr.payslip.line,amount_select:0 @@ -280,7 +280,7 @@ msgid "Draft Slip" msgstr "Bulletin de paie brouillon" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "Jours travaillés à 100%" @@ -305,7 +305,7 @@ msgstr "Structure" #. module: hr_payroll #: field:hr.contribution.register,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Partenaire" #. module: hr_payroll #: view:hr.payslip:0 @@ -436,15 +436,15 @@ msgid "Percentage based on" msgstr "Pourcentage basé sur" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (copie)" #. module: hr_payroll #: help:hr.config.settings,module_hr_payroll_account:0 msgid "Create journal entries from payslips" -msgstr "" +msgstr "Créer des mouvements d'écritures à partir des fiches de paie" #. module: hr_payroll #: field:hr.payslip,paid:0 @@ -467,7 +467,7 @@ msgstr "Lignes du bulletin de paie" #. module: hr_payroll #: view:hr.payslip:0 msgid "Miscellaneous" -msgstr "" +msgstr "Divers" #. module: hr_payroll #: selection:hr.payslip,state:0 @@ -484,7 +484,7 @@ msgid "Salary Rules" msgstr "Règles salariales" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "Remboursement : " @@ -516,10 +516,10 @@ msgid "Fixed Amount" msgstr "Montant fixe" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" -msgstr "" +msgstr "Attention !" #. module: hr_payroll #: help:hr.payslip.line,active:0 @@ -630,7 +630,7 @@ msgstr "Détails pour le calcul du bulletin" #: help:hr.payslip.line,appears_on_payslip:0 #: help:hr.salary.rule,appears_on_payslip:0 msgid "Used to display the salary rule on payslip." -msgstr "" +msgstr "Utilisé pour montrer la règle de salaire sur la fiche de paie." #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_hr_payslip_input @@ -656,10 +656,11 @@ msgid "Computation" msgstr "Calcul" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" +"Mauvaise condition de l'intervalle défini pour la règle de salaire %s (%s)." #. module: hr_payroll #: help:hr.payslip.input,amount:0 @@ -702,10 +703,12 @@ msgstr "" "des bulletins de paie de remboursement." #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" +"Mauvaise base de pourcentage ou quantité définie pour la règle de salaire %s " +"(%s)" #. module: hr_payroll #: model:ir.actions.act_window,name:hr_payroll.action_view_hr_payroll_structure_list_form @@ -760,10 +763,10 @@ msgid "Percentage (%)" msgstr "Pourcentage (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." -msgstr "" +msgstr "Mauvaise quantité définie pour la règle de salaire %s (%s)" #. module: hr_payroll #: view:hr.payslip:0 @@ -849,6 +852,8 @@ msgstr "Contrat" #, python-format msgid "You must select employee(s) to generate payslip(s)." msgstr "" +"Vous devez sélectionnner un (des) employé(s) pour générer une (des) fiche(s) " +"de paie." #. module: hr_payroll #: report:paylip.details:0 @@ -873,7 +878,7 @@ msgid "Contribution" msgstr "Contribution" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "Bulletin de remboursement" @@ -940,7 +945,7 @@ msgid "General" msgstr "Général" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "Bulletin de paie de %s pour %s" @@ -1097,10 +1102,12 @@ msgid "PaySlip Lines By Conribution Register" msgstr "Lignes du bulletin de salaire par registre de contribution" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" +"Vous ne pouvez supprimer une fiche de paie qui ne soit ni brouillon ni " +"annulée!" #. module: hr_payroll #: report:paylip.details:0 @@ -1172,6 +1179,10 @@ msgid "" "* If the payslip is confirmed then status is set to 'Done'. \n" "* When user cancel payslip the status is 'Rejected'." msgstr "" +"* Quand la fiche de paie est créée, le statut est 'Brouillon'.\n" +"* Si la fiche de paie est en revue, le statut est 'En Attente'.\n" +"* Si la fiche de paie est confirmée, le statut est 'Terminée'.\n" +"* Quand l'utilisateur annule la fiche de paie, le statut est 'Rejetée'." #. module: hr_payroll #: help:hr.payslip.line,condition_range:0 @@ -1199,7 +1210,7 @@ msgstr "Entrées du bulletin de salaire" #. module: hr_payroll #: view:hr.payslip:0 msgid "Other Inputs" -msgstr "" +msgstr "Autres entrées" #. module: hr_payroll #: model:ir.actions.act_window,name:hr_payroll.action_hr_salary_rule_category_tree_view @@ -1208,10 +1219,10 @@ msgid "Salary Rule Categories Hierarchy" msgstr "Hiérarchie des catégories de règles salariales" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." -msgstr "" +msgstr "Mauvais code python défini pour la règle de salaire %s (%s)." #. module: hr_payroll #: report:contribution.register.lines:0 @@ -1239,10 +1250,10 @@ msgid "The code that can be used in the salary rules" msgstr "Code qui peut être utilisé dans les règles salariales" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." -msgstr "" +msgstr "Mauvaise condition python définie pour la règle de salaire %s (%s)." #. module: hr_payroll #: view:hr.payslip.run:0 diff --git a/addons/hr_payroll/i18n/gl.po b/addons/hr_payroll/i18n/gl.po index 5e242365c54..58fe6fdedeb 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "Importe fijo" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -639,7 +639,7 @@ msgid "Computation" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -679,7 +679,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -737,7 +737,7 @@ msgid "Percentage (%)" msgstr "Porcentaxe (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -850,7 +850,7 @@ msgid "Contribution" msgstr "Contribución" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -917,7 +917,7 @@ msgid "General" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1069,7 +1069,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1176,7 +1176,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1207,7 +1207,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/gu.po b/addons/hr_payroll/i18n/gu.po index 208e57be651..e2068ea12c9 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "નોંધ" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -639,7 +639,7 @@ msgid "Computation" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -679,7 +679,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -737,7 +737,7 @@ msgid "Percentage (%)" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -850,7 +850,7 @@ msgid "Contribution" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -917,7 +917,7 @@ msgid "General" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1069,7 +1069,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1176,7 +1176,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1207,7 +1207,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/he.po b/addons/hr_payroll/i18n/he.po index 6ebd8e2710c..d0ec5cd7aa6 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -639,7 +639,7 @@ msgid "Computation" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -679,7 +679,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -737,7 +737,7 @@ msgid "Percentage (%)" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -850,7 +850,7 @@ msgid "Contribution" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -917,7 +917,7 @@ msgid "General" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1069,7 +1069,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1176,7 +1176,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1207,7 +1207,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/hr.po b/addons/hr_payroll/i18n/hr.po index bcf2ec9e92d..d4f58bfb3a7 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "Bilješke" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "Greška!" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "Radni dani plaćeni 100%" @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "Postotak baziran na" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "%s (kopija)" @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "Fiksni iznos" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "Upozorenje!" @@ -639,7 +639,7 @@ msgid "Computation" msgstr "Izračun" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -679,7 +679,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -737,7 +737,7 @@ msgid "Percentage (%)" msgstr "Postotak (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -850,7 +850,7 @@ msgid "Contribution" msgstr "Doprinos" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -917,7 +917,7 @@ msgid "General" msgstr "Opće" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1069,7 +1069,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1176,7 +1176,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1207,7 +1207,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/hu.po b/addons/hr_payroll/i18n/hu.po index 71ed4032cb2..120143b8f2b 100644 --- a/addons/hr_payroll/i18n/hu.po +++ b/addons/hr_payroll/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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -203,11 +203,11 @@ msgid "Notes" msgstr "Jegyzetek" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "Hiba!" @@ -280,7 +280,7 @@ msgid "Draft Slip" msgstr "Jegyzék tervezet" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "Normál munkanap 100%-an fizetve" @@ -446,7 +446,7 @@ msgid "Percentage based on" msgstr "Százalék ez alapján" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "%s (másolat)" @@ -494,7 +494,7 @@ msgid "Salary Rules" msgstr "Fizetési szabályok" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "Visszatérítés: " @@ -526,7 +526,7 @@ msgid "Fixed Amount" msgstr "Fix összeg" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "Figyelem!" @@ -666,7 +666,7 @@ msgid "Computation" msgstr "Számítás" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -713,7 +713,7 @@ msgstr "" "jegyzék az visszatérítési fizetési jegyzék." #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -773,7 +773,7 @@ msgid "Percentage (%)" msgstr "Százalék (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -889,7 +889,7 @@ msgid "Contribution" msgstr "Közreműködés" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "Visszatérítési fizetési jegyzék" @@ -956,7 +956,7 @@ msgid "General" msgstr "Általános" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "%s fizetési jegyzéke, időszak: %s" @@ -1114,7 +1114,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "Fizetési jegyzék a Hozzájárulások iktatása szerint" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1232,7 +1232,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "Fizetési szabály kategóriák rangsora" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "Téves python kód meghatározás erre a fizetési szabályra %s (%s)." @@ -1263,7 +1263,7 @@ msgid "The code that can be used in the salary rules" msgstr "A kód ami használható a fizetési szabályokra" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/id.po b/addons/hr_payroll/i18n/id.po index 3abf4beb6d7..6f05dfc3896 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -26,7 +26,7 @@ msgstr "" #. module: hr_payroll #: selection:hr.contract,schedule_pay:0 msgid "Monthly" -msgstr "" +msgstr "Bulanan" #. module: hr_payroll #: field:hr.payslip.line,rate:0 @@ -43,7 +43,7 @@ msgstr "" #. module: hr_payroll #: field:hr.payslip.worked_days,number_of_days:0 msgid "Number of Days" -msgstr "" +msgstr "Jumlah Hari" #. module: hr_payroll #: help:hr.salary.rule.category,parent_id:0 @@ -62,14 +62,14 @@ msgstr "Dikelompokan berdasarkan ..." #. module: hr_payroll #: view:hr.payslip:0 msgid "States" -msgstr "Status" +msgstr "Propinsi" #. module: hr_payroll #: field:hr.payslip.line,input_ids:0 #: view:hr.salary.rule:0 #: field:hr.salary.rule,input_ids:0 msgid "Inputs" -msgstr "" +msgstr "Masukkan" #. module: hr_payroll #: field:hr.payslip.line,parent_rule_id:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "Jumlah Tetap" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -639,7 +639,7 @@ msgid "Computation" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -679,7 +679,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -737,7 +737,7 @@ msgid "Percentage (%)" msgstr "Presentase" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -850,7 +850,7 @@ msgid "Contribution" msgstr "Kontribusi" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -917,7 +917,7 @@ msgid "General" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1069,7 +1069,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1176,7 +1176,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1207,7 +1207,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/it.po b/addons/hr_payroll/i18n/it.po index 6424f3ab1ae..947ddbe10de 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "Importo fisso" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -639,7 +639,7 @@ msgid "Computation" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -679,7 +679,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -737,7 +737,7 @@ msgid "Percentage (%)" msgstr "Percentuale (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -850,7 +850,7 @@ msgid "Contribution" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -917,7 +917,7 @@ msgid "General" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1069,7 +1069,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1176,7 +1176,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1207,7 +1207,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/ja.po b/addons/hr_payroll/i18n/ja.po index 7f6cf6282e2..91990e25285 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "注記" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "ドラフトの明細書" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "100%支払われる通常の仕事日" @@ -425,7 +425,7 @@ msgid "Percentage based on" msgstr "次に基いたパーセント" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -473,7 +473,7 @@ msgid "Salary Rules" msgstr "給与ルール" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "返金 " @@ -505,7 +505,7 @@ msgid "Fixed Amount" msgstr "固定金額" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -641,7 +641,7 @@ msgid "Computation" msgstr "計算" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -683,7 +683,7 @@ msgid "" msgstr "これをチェックすると、これ以降の給与明細は返金明細になります。" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -741,7 +741,7 @@ msgid "Percentage (%)" msgstr "パーセント(%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -854,7 +854,7 @@ msgid "Contribution" msgstr "寄与" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "返金給与明細" @@ -921,7 +921,7 @@ msgid "General" msgstr "一般" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "%s のための %s の給与明細" @@ -1075,7 +1075,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "寄与登録の給与明細行" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1184,7 +1184,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "給与ルールの項目階層" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1215,7 +1215,7 @@ msgid "The code that can be used in the salary rules" msgstr "給与ルールに使われるコード" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/lo.po b/addons/hr_payroll/i18n/lo.po index 54a05c00f99..623a21c2109 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -639,7 +639,7 @@ msgid "Computation" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -679,7 +679,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -737,7 +737,7 @@ msgid "Percentage (%)" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -850,7 +850,7 @@ msgid "Contribution" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -917,7 +917,7 @@ msgid "General" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1069,7 +1069,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1176,7 +1176,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1207,7 +1207,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/lt.po b/addons/hr_payroll/i18n/lt.po index d2f941a05c3..b09c3b16d52 100644 --- a/addons/hr_payroll/i18n/lt.po +++ b/addons/hr_payroll/i18n/lt.po @@ -14,36 +14,36 @@ msgstr "" "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 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 #: field:hr.salary.rule,condition_select:0 msgid "Condition Based on" -msgstr "" +msgstr "Taikymo sąlyga" #. module: hr_payroll #: selection:hr.contract,schedule_pay:0 msgid "Monthly" -msgstr "Kas mėnesį" +msgstr "Kartą per mėnesį" #. module: hr_payroll #: field:hr.payslip.line,rate:0 msgid "Rate (%)" -msgstr "" +msgstr "Koeficientas (%)" #. module: hr_payroll #: view:hr.payslip.line:0 #: model:ir.model,name:hr_payroll.model_hr_salary_rule_category #: report:paylip.details:0 msgid "Salary Rule Category" -msgstr "" +msgstr "Atlyginimo taisyklių kategorijos" #. module: hr_payroll #: field:hr.payslip.worked_days,number_of_days:0 msgid "Number of Days" -msgstr "" +msgstr "Dienų skaičius" #. module: hr_payroll #: help:hr.salary.rule.category,parent_id:0 @@ -51,25 +51,27 @@ msgid "" "Linking a salary category to its parent is used only for the reporting " "purpose." msgstr "" +"Atlyginimo taisyklių kategorijos susiejimas su tėvine kategorija naudojimas " +"tik ataskaitose." #. module: hr_payroll #: view:hr.payslip:0 #: view:hr.payslip.line:0 #: view:hr.salary.rule:0 msgid "Group By..." -msgstr "" +msgstr "Grupuoti pagal..." #. module: hr_payroll #: view:hr.payslip:0 msgid "States" -msgstr "" +msgstr "Būsenos" #. module: hr_payroll #: field:hr.payslip.line,input_ids:0 #: view:hr.salary.rule:0 #: field:hr.salary.rule,input_ids:0 msgid "Inputs" -msgstr "" +msgstr "Priedai" #. module: hr_payroll #: field:hr.payslip.line,parent_rule_id:0 @@ -85,13 +87,13 @@ msgstr "" #: field:hr.payslip.run,slip_ids:0 #: model:ir.actions.act_window,name:hr_payroll.act_hr_employee_payslip_list msgid "Payslips" -msgstr "" +msgstr "Algalapiai" #. module: hr_payroll #: field:hr.payroll.structure,parent_id:0 #: field:hr.salary.rule.category,parent_id:0 msgid "Parent" -msgstr "" +msgstr "Tėvinis" #. module: hr_payroll #: field:hr.contribution.register,company_id:0 @@ -101,18 +103,18 @@ msgstr "" #: field:hr.salary.rule,company_id:0 #: field:hr.salary.rule.category,company_id:0 msgid "Company" -msgstr "" +msgstr "Įmonė" #. module: hr_payroll #: view:hr.payslip:0 msgid "Done Slip" -msgstr "" +msgstr "Patvirtinti algalapiai" #. module: hr_payroll #: view:hr.payslip:0 #: view:hr.payslip.run:0 msgid "Set to Draft" -msgstr "" +msgstr "Nustatyti kaip juodraštį" #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_hr_salary_rule @@ -123,14 +125,14 @@ msgstr "" #: view:hr.payslip:0 #: view:hr.payslip.run:0 msgid "to" -msgstr "" +msgstr "iki" #. module: hr_payroll #: field:hr.payslip,payslip_run_id:0 #: view:hr.payslip.run:0 #: model:ir.model,name:hr_payroll.model_hr_payslip_run msgid "Payslip Batches" -msgstr "" +msgstr "Algalapių suvestinė" #. module: hr_payroll #: view:hr.payslip.employees:0 @@ -138,6 +140,8 @@ msgid "" "This wizard will generate payslips for all selected employee(s) based on the " "dates and credit note specified on Payslips Run." msgstr "" +"Šis vedlys sukurs algalapius visiems pasirinktiems darbuotojams pagal " +"nurodytą laikotarpį ant algalapių suvestinės." #. module: hr_payroll #: report:contribution.register.lines:0 @@ -149,7 +153,7 @@ msgstr "" #. module: hr_payroll #: view:hr.salary.rule:0 msgid "Children Definition" -msgstr "" +msgstr "Vaikinės taisyklės" #. module: hr_payroll #: field:hr.payslip.input,payslip_id:0 @@ -158,23 +162,23 @@ msgstr "" #: model:ir.model,name:hr_payroll.model_hr_payslip #: report:payslip:0 msgid "Pay Slip" -msgstr "" +msgstr "Algalapis" #. module: hr_payroll #: view:hr.payslip.employees:0 msgid "Generate" -msgstr "" +msgstr "Sukurti" #. module: hr_payroll #: help:hr.payslip.line,amount_percentage_base:0 #: help:hr.salary.rule,amount_percentage_base:0 msgid "result will be affected to a variable" -msgstr "" +msgstr "Rezultatas bus skaičiuojamas pagal šią reiškmę" #. module: hr_payroll #: report:contribution.register.lines:0 msgid "Total:" -msgstr "" +msgstr "Iš viso:" #. module: hr_payroll #: model:ir.actions.act_window,name:hr_payroll.act_children_salary_rules @@ -195,17 +199,17 @@ msgstr "" #. module: hr_payroll #: view:hr.salary.rule.category:0 msgid "Notes" -msgstr "" +msgstr "Pastabos" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" -msgstr "" +msgstr "Klaida!" #. module: hr_payroll #: report:contribution.register.lines:0 @@ -214,7 +218,7 @@ msgstr "" #: report:paylip.details:0 #: report:payslip:0 msgid "Amount" -msgstr "" +msgstr "Kiekis" #. module: hr_payroll #: view:hr.payslip:0 @@ -226,7 +230,7 @@ msgstr "" #. module: hr_payroll #: view:hr.payslip:0 msgid "Other Information" -msgstr "" +msgstr "Kita informacija" #. module: hr_payroll #: field:hr.config.settings,module_hr_payroll_account:0 @@ -237,29 +241,29 @@ msgstr "" #: help:hr.payslip.line,amount_select:0 #: help:hr.salary.rule,amount_select:0 msgid "The computation method for the rule amount." -msgstr "" +msgstr "Skaičiavimo būdas naudojamas sumos apskaičiavimui." #. module: hr_payroll #: view:payslip.lines.contribution.register:0 msgid "Contribution Register's Payslip Lines" -msgstr "" +msgstr "Algalapio eilutės pagal įmokų registrą" #. module: hr_payroll #: code:addons/hr_payroll/wizard/hr_payroll_payslips_by_employees.py:52 #, python-format msgid "Warning !" -msgstr "" +msgstr "Perspėjimas!" #. module: hr_payroll #: report:paylip.details:0 msgid "Details by Salary Rule Category:" -msgstr "" +msgstr "Detali atlyginimo struktūra:" #. module: hr_payroll #: report:paylip.details:0 #: report:payslip:0 msgid "Note" -msgstr "" +msgstr "Pastaba" #. module: hr_payroll #: field:hr.payroll.structure,code:0 @@ -267,45 +271,45 @@ msgstr "" #: report:paylip.details:0 #: report:payslip:0 msgid "Reference" -msgstr "" +msgstr "Numeris" #. module: hr_payroll #: view:hr.payslip:0 msgid "Draft Slip" -msgstr "" +msgstr "Algalapių juodraščiai" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" -msgstr "" +msgstr "Darbas dieną (normalus darbo laikas)" #. module: hr_payroll #: field:hr.payslip.line,condition_range_max:0 #: field:hr.salary.rule,condition_range_max:0 msgid "Maximum Range" -msgstr "" +msgstr "Didžiausia reikšmė" #. module: hr_payroll #: report:paylip.details:0 #: report:payslip:0 msgid "Identification No" -msgstr "" +msgstr "Asmens kodas" #. module: hr_payroll #: field:hr.payslip,struct_id:0 msgid "Structure" -msgstr "" +msgstr "Struktūra" #. module: hr_payroll #: field:hr.contribution.register,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Partneris" #. module: hr_payroll #: view:hr.payslip:0 msgid "Total Working Days" -msgstr "" +msgstr "Iš viso" #. module: hr_payroll #: help:hr.payslip.line,code:0 @@ -314,21 +318,23 @@ msgid "" "The code of salary rules can be used as reference in computation of other " "rules. In that case, it is case sensitive." msgstr "" +"Atlyginimo taisyklės kodas gali būti naudojamas kitų taisyklių " +"skaičiavimuose." #. module: hr_payroll #: selection:hr.contract,schedule_pay:0 msgid "Weekly" -msgstr "" +msgstr "Kartą per savaitę" #. module: hr_payroll #: view:hr.payslip:0 msgid "From" -msgstr "" +msgstr "Nuo" #. module: hr_payroll #: view:hr.payslip:0 msgid "Confirm" -msgstr "" +msgstr "Patvirtinti" #. module: hr_payroll #: model:ir.actions.act_window,help:hr_payroll.action_contribution_register_form @@ -344,12 +350,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte įmokų registrą.\n" +"

\n" +" Įmokų registre fiksuojamos algalapio sumos mokamos\n" +" trečiosioms šalims. Tai gali būti socialinio draudimo " +"įmokos,\n" +" nekilnojamojo turto mokesčiai ar bet kokia kita mokama " +"suma.\n" +"

\n" +" " #. module: hr_payroll #: help:hr.payslip.line,condition_range_max:0 #: help:hr.salary.rule,condition_range_max:0 msgid "The maximum amount, applied for this rule." msgstr "" +"Didžiausia intervalo reiškmė, kad būtų pritaikyta ši atlyginimo skaičiavimo " +"taisyklė." #. module: hr_payroll #: help:hr.payslip.line,condition_python:0 @@ -358,6 +376,7 @@ msgid "" "Applied this rule for calculation if condition is true. You can specify " "condition like basic > 1000." msgstr "" +"Jiegu sąlyga teigiama, tai bus pritaikyta ši atlyginimo skaičiavimo taisyklė." #. module: hr_payroll #: report:contribution.register.lines:0 @@ -373,12 +392,12 @@ msgstr "" #. module: hr_payroll #: selection:hr.contract,schedule_pay:0 msgid "Quarterly" -msgstr "" +msgstr "Kas ketvirtį" #. module: hr_payroll #: selection:hr.payslip,state:0 msgid "Waiting" -msgstr "" +msgstr "Laukiama" #. module: hr_payroll #: help:hr.salary.rule,quantity:0 @@ -387,6 +406,11 @@ msgid "" "for Meal Voucher having fixed amount of 1€ per worked day can have its " "quantity defined in expression like worked_days.WORK100.number_of_days." msgstr "" +"Skaičiuojant atlyginimą, šios išraiškos reikšmė dauginama iš procentinės " +"dalies ar fiksuotos sumos. Kaip pavyzdys, kiekvienai dirbtai dienai " +"darbuotojams išduodamas 1 € vertės maitinimo talonas. Kad apskaičiuoti " +"algalapio laikotarpiui tenkančią sumą, reikia dauginti iš dirbtų dienų, t.y. " +"iš išraiškos worked_days.WORK100.number_of_days." #. module: hr_payroll #: view:hr.salary.rule:0 @@ -398,18 +422,18 @@ msgstr "" #: field:hr.payslip.line,employee_id:0 #: model:ir.model,name:hr_payroll.model_hr_employee msgid "Employee" -msgstr "" +msgstr "Darbuotojas" #. module: hr_payroll #: selection:hr.contract,schedule_pay:0 msgid "Semi-annually" -msgstr "" +msgstr "Kas pusmetį" #. module: hr_payroll #: report:paylip.details:0 #: report:payslip:0 msgid "Email" -msgstr "" +msgstr "El. paštas" #. module: hr_payroll #: view:hr.payslip.run:0 @@ -420,13 +444,13 @@ msgstr "" #: field:hr.payslip.line,amount_percentage_base:0 #: field:hr.salary.rule,amount_percentage_base:0 msgid "Percentage based on" -msgstr "" +msgstr "Procentinė dalis nuo" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (kopija)" #. module: hr_payroll #: help:hr.config.settings,module_hr_payroll_account:0 @@ -436,12 +460,12 @@ msgstr "" #. module: hr_payroll #: field:hr.payslip,paid:0 msgid "Made Payment Order ? " -msgstr "" +msgstr "Atliktas mokėjimas " #. module: hr_payroll #: report:contribution.register.lines:0 msgid "PaySlip Lines by Contribution Register" -msgstr "" +msgstr "Algalapio eilutės pagal įmokų registrą" #. module: hr_payroll #: view:hr.payslip:0 @@ -454,12 +478,12 @@ msgstr "" #. module: hr_payroll #: view:hr.payslip:0 msgid "Miscellaneous" -msgstr "" +msgstr "Kita" #. module: hr_payroll #: selection:hr.payslip,state:0 msgid "Rejected" -msgstr "" +msgstr "Atmesta" #. module: hr_payroll #: view:hr.payroll.structure:0 @@ -468,31 +492,31 @@ msgstr "" #: model:ir.actions.act_window,name:hr_payroll.action_salary_rule_form #: model:ir.ui.menu,name:hr_payroll.menu_action_hr_salary_rule_form msgid "Salary Rules" -msgstr "" +msgstr "Atlyginimo taisyklės" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " -msgstr "" +msgstr "Grąžinimas: " #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_payslip_lines_contribution_register msgid "PaySlip Lines by Contribution Registers" -msgstr "" +msgstr "Algalapio eilutės pagal įmokų registrus" #. module: hr_payroll #: view:hr.payslip:0 #: selection:hr.payslip,state:0 #: view:hr.payslip.run:0 msgid "Done" -msgstr "" +msgstr "Atlikta" #. module: hr_payroll #: field:hr.payslip.line,appears_on_payslip:0 #: field:hr.salary.rule,appears_on_payslip:0 msgid "Appears on Payslip" -msgstr "" +msgstr "Rodyti algalapyje" #. module: hr_payroll #: field:hr.payslip.line,amount_fix:0 @@ -500,13 +524,13 @@ msgstr "" #: field:hr.salary.rule,amount_fix:0 #: selection:hr.salary.rule,amount_select:0 msgid "Fixed Amount" -msgstr "" +msgstr "Fiksuota suma" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" -msgstr "" +msgstr "Įspėjimas!" #. module: hr_payroll #: help:hr.payslip.line,active:0 @@ -515,22 +539,24 @@ msgid "" "If the active field is set to false, it will allow you to hide the salary " "rule without removing it." msgstr "" +"Jeigu aktyvus laukelis nustatytas kaip \"ne\", leidžiame paslėpti atlyginimo " +"skaičiavimo taisyklę, jos nepašalinus." #. module: hr_payroll #: field:hr.payslip,state:0 #: field:hr.payslip.run,state:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: hr_payroll #: view:hr.payslip:0 msgid "Worked Days & Inputs" -msgstr "" +msgstr "Priskaitymai / išskaitymai" #. module: hr_payroll #: field:hr.payslip,details_by_salary_rule_category:0 msgid "Details by Salary Rule Category" -msgstr "" +msgstr "Detali atlyginimo struktūra" #. module: hr_payroll #: model:ir.actions.act_window,name:hr_payroll.action_payslip_lines_contribution_register @@ -541,23 +567,23 @@ msgstr "" #: help:hr.payslip.line,register_id:0 #: help:hr.salary.rule,register_id:0 msgid "Eventual third party involved in the salary payment of the employees." -msgstr "" +msgstr "Trečiąjai šaliai mokama įmoka nuo darbuotojo atlyginimo." #. module: hr_payroll #: field:hr.payslip.worked_days,number_of_hours:0 msgid "Number of Hours" -msgstr "" +msgstr "Valandų skaičius" #. module: hr_payroll #: view:hr.payslip:0 msgid "PaySlip Batch" -msgstr "" +msgstr "Algalapių suvestinės" #. module: hr_payroll #: field:hr.payslip.line,condition_range_min:0 #: field:hr.salary.rule,condition_range_min:0 msgid "Minimum Range" -msgstr "" +msgstr "Mažiausia reikšmė" #. module: hr_payroll #: field:hr.payslip.line,child_ids:0 @@ -573,19 +599,19 @@ msgstr "" #: report:payslip:0 #: field:payslip.lines.contribution.register,date_to:0 msgid "Date To" -msgstr "" +msgstr "Iki" #. module: hr_payroll #: selection:hr.payslip.line,condition_select:0 #: selection:hr.salary.rule,condition_select:0 msgid "Range" -msgstr "" +msgstr "Reikšmė patenka į intervalą" #. module: hr_payroll #: model:ir.actions.act_window,name:hr_payroll.action_view_hr_payroll_structure_tree #: model:ir.ui.menu,name:hr_payroll.menu_hr_payroll_structure_tree msgid "Salary Structures Hierarchy" -msgstr "" +msgstr "Atlyginimo struktūros hierarchija" #. module: hr_payroll #: help:hr.employee,total_wage:0 @@ -601,19 +627,20 @@ msgstr "" #: field:hr.payslip,credit_note:0 #: field:hr.payslip.run,credit_note:0 msgid "Credit Note" -msgstr "" +msgstr "Grąžinama" #. module: hr_payroll #: view:hr.payslip:0 #: model:ir.actions.act_window,name:hr_payroll.act_payslip_lines msgid "Payslip Computation Details" -msgstr "" +msgstr "Atlyginimo apskaičiavimo duomenys" #. module: hr_payroll #: help:hr.payslip.line,appears_on_payslip:0 #: help:hr.salary.rule,appears_on_payslip:0 msgid "Used to display the salary rule on payslip." msgstr "" +"Pažymėjus lauką, algalapyje bus rodoma atlyginimo skaičiavimo taisyklė." #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_hr_payslip_input @@ -625,7 +652,7 @@ msgstr "" #: model:ir.actions.act_window,name:hr_payroll.action_hr_salary_rule_category #: model:ir.ui.menu,name:hr_payroll.menu_hr_salary_rule_category msgid "Salary Rule Categories" -msgstr "" +msgstr "Atlyginimo taisyklių kategorijos" #. module: hr_payroll #: help:hr.payslip.input,contract_id:0 @@ -636,10 +663,10 @@ msgstr "" #. module: hr_payroll #: view:hr.salary.rule:0 msgid "Computation" -msgstr "" +msgstr "Apskaičiavimas" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -651,25 +678,30 @@ msgid "" "basic salary for per product can defined in expression like result = " "inputs.SALEURO.amount * contract.wage*0.01." msgstr "" +"Skaičiuojant atlyginimą, šios išraiškos reikšmė dauginama iš procentinės " +"dalies ar fiksuotos sumos. Kaip pavyzdys, kiekvienai dirbtai dienai " +"darbuotojams išduodamas 1 € vertės maitinimo talonas. Kad apskaičiuoti " +"algalapio laikotarpiui tenkančią sumą, reikia dauginti iš dirbtų dienų, t.y. " +"iš išraiškos worked_days.WORK100.number_of_days." #. module: hr_payroll #: view:hr.payslip.line:0 #: field:hr.payslip.line,amount_select:0 #: field:hr.salary.rule,amount_select:0 msgid "Amount Type" -msgstr "" +msgstr "Skaičiavimo būdas" #. module: hr_payroll #: field:hr.payslip.line,category_id:0 #: view:hr.salary.rule:0 #: field:hr.salary.rule,category_id:0 msgid "Category" -msgstr "" +msgstr "Kategorija" #. module: hr_payroll #: view:hr.salary.rule:0 msgid "Company Contribution" -msgstr "" +msgstr "Įmonės įmokos" #. module: hr_payroll #: help:hr.payslip.run,credit_note:0 @@ -677,9 +709,11 @@ msgid "" "If its checked, indicates that all payslips generated from here are refund " "payslips." msgstr "" +"Jeigu pažymėta, tai visi algalapiai sukurti šioje suvestinėje, bus grąžinimo " +"algalapiai." #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -688,12 +722,12 @@ msgstr "" #: model:ir.actions.act_window,name:hr_payroll.action_view_hr_payroll_structure_list_form #: model:ir.ui.menu,name:hr_payroll.menu_hr_payroll_structure_view msgid "Salary Structures" -msgstr "" +msgstr "Atlyginimo struktūra" #. module: hr_payroll #: view:hr.payslip.run:0 msgid "Draft Payslip Batches" -msgstr "" +msgstr "Algalapių suvestinių juodraščiai" #. module: hr_payroll #: view:hr.payslip:0 @@ -701,7 +735,7 @@ msgstr "" #: view:hr.payslip.run:0 #: selection:hr.payslip.run,state:0 msgid "Draft" -msgstr "" +msgstr "Juodraštis" #. module: hr_payroll #: report:contribution.register.lines:0 @@ -711,22 +745,22 @@ msgstr "" #: report:payslip:0 #: field:payslip.lines.contribution.register,date_from:0 msgid "Date From" -msgstr "" +msgstr "Nuo" #. module: hr_payroll #: view:hr.payslip.run:0 msgid "Done Payslip Batches" -msgstr "" +msgstr "Patvirtintos algalapių suvestinės" #. module: hr_payroll #: report:paylip.details:0 msgid "Payslip Lines by Contribution Register:" -msgstr "" +msgstr "Algalapio eilutės pagal įmokų registrą:" #. module: hr_payroll #: view:hr.salary.rule:0 msgid "Conditions" -msgstr "" +msgstr "Sąlygos" #. module: hr_payroll #: field:hr.payslip.line,amount_percentage:0 @@ -734,10 +768,10 @@ msgstr "" #: field:hr.salary.rule,amount_percentage:0 #: selection:hr.salary.rule,amount_select:0 msgid "Percentage (%)" -msgstr "" +msgstr "Procentinė dalis (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -745,7 +779,7 @@ msgstr "" #. module: hr_payroll #: view:hr.payslip:0 msgid "Worked Day" -msgstr "" +msgstr "Dirbtos darbo dienos" #. module: hr_payroll #: view:hr.payroll.structure:0 @@ -755,7 +789,7 @@ msgstr "" #. module: hr_payroll #: model:ir.actions.report.xml,name:hr_payroll.payslip_report msgid "Employee PaySlip" -msgstr "" +msgstr "Darbuotojo algalapis" #. module: hr_payroll #: field:hr.payslip.line,salary_rule_id:0 @@ -765,35 +799,37 @@ msgstr "" #. module: hr_payroll #: model:ir.actions.report.xml,name:hr_payroll.payslip_details_report msgid "PaySlip Details" -msgstr "" +msgstr "Detalus darbuotojo algalapis" #. module: hr_payroll #: view:hr.payslip:0 msgid "Compute Sheet" -msgstr "" +msgstr "Skaičiuoti atlyginimą" #. module: hr_payroll #: field:hr.payslip.line,active:0 #: field:hr.salary.rule,active:0 msgid "Active" -msgstr "" +msgstr "Aktyvus" #. module: hr_payroll #: view:hr.salary.rule:0 msgid "Child Rules" -msgstr "" +msgstr "Vaikinės taisyklės" #. module: hr_payroll #: help:hr.payslip.line,condition_range_min:0 #: help:hr.salary.rule,condition_range_min:0 msgid "The minimum amount, applied for this rule." msgstr "" +"Mažiausia intervalo reiškmė, kad būtų pritaikyta ši atlyginimo skaičiavimo " +"taisyklė." #. module: hr_payroll #: selection:hr.payslip.line,condition_select:0 #: selection:hr.salary.rule,condition_select:0 msgid "Python Expression" -msgstr "" +msgstr "Python išraiška" #. module: hr_payroll #: report:paylip.details:0 @@ -804,13 +840,13 @@ msgstr "" #. module: hr_payroll #: view:hr.payslip:0 msgid "Companies" -msgstr "" +msgstr "Įmonės" #. module: hr_payroll #: report:paylip.details:0 #: report:payslip:0 msgid "Authorized Signature" -msgstr "" +msgstr "Įgalioto asmens parašas" #. module: hr_payroll #: field:hr.payslip,contract_id:0 @@ -819,7 +855,7 @@ msgstr "" #: field:hr.payslip.worked_days,contract_id:0 #: model:ir.model,name:hr_payroll.model_hr_contract msgid "Contract" -msgstr "" +msgstr "Darbo sutartis" #. module: hr_payroll #: code:addons/hr_payroll/wizard/hr_payroll_payslips_by_employees.py:52 @@ -831,18 +867,18 @@ msgstr "" #: report:paylip.details:0 #: report:payslip:0 msgid "Credit" -msgstr "" +msgstr "Kreditas" #. module: hr_payroll #: field:hr.contract,schedule_pay:0 msgid "Scheduled Pay" -msgstr "" +msgstr "Išmokamas atlyginimas" #. module: hr_payroll #: field:hr.payslip.line,condition_python:0 #: field:hr.salary.rule,condition_python:0 msgid "Python Condition" -msgstr "" +msgstr "Python sąlyga" #. module: hr_payroll #: view:hr.contribution.register:0 @@ -850,7 +886,7 @@ msgid "Contribution" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -865,12 +901,12 @@ msgstr "" #: field:hr.payslip.line,quantity:0 #: field:hr.salary.rule,quantity:0 msgid "Quantity" -msgstr "" +msgstr "Kiekis" #. module: hr_payroll #: view:hr.payslip:0 msgid "Refund" -msgstr "" +msgstr "Grąžinimas" #. module: hr_payroll #: report:contribution.register.lines:0 @@ -883,7 +919,7 @@ msgstr "" #: report:paylip.details:0 #: report:payslip:0 msgid "Code" -msgstr "" +msgstr "Kodas" #. module: hr_payroll #: field:hr.payslip.line,amount_python_compute:0 @@ -891,7 +927,7 @@ msgstr "" #: field:hr.salary.rule,amount_python_compute:0 #: selection:hr.salary.rule,amount_select:0 msgid "Python Code" -msgstr "" +msgstr "Python kodas" #. module: hr_payroll #: field:hr.payslip.input,sequence:0 @@ -899,28 +935,28 @@ msgstr "" #: field:hr.payslip.worked_days,sequence:0 #: field:hr.salary.rule,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Seka" #. module: hr_payroll #: view:hr.payslip:0 msgid "Period" -msgstr "" +msgstr "Periodas" #. module: hr_payroll #: view:hr.payslip.run:0 msgid "Period from" -msgstr "" +msgstr "Periodas nuo" #. module: hr_payroll #: view:hr.salary.rule:0 msgid "General" -msgstr "" +msgstr "Bendra" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" -msgstr "" +msgstr "Darbo užmokestis - %s / %s" #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_hr_payslip_employees @@ -934,7 +970,7 @@ msgstr "" #: view:hr.payslip.line:0 #: model:ir.model,name:hr_payroll.model_hr_payroll_structure msgid "Salary Structure" -msgstr "" +msgstr "Atlyginimo struktūra" #. module: hr_payroll #: field:hr.contribution.register,register_line_ids:0 @@ -950,7 +986,7 @@ msgstr "" #: view:hr.payslip.run:0 #: selection:hr.payslip.run,state:0 msgid "Close" -msgstr "" +msgstr "Uždaryta" #. module: hr_payroll #: help:hr.payslip,struct_id:0 @@ -960,33 +996,36 @@ msgid "" "mandatory anymore and thus the rules applied will be all the rules set on " "the structure of all contracts of the employee valid for the chosen period" msgstr "" +"Apibrėžia atlyginimo apskaičiavimo taisykles, kurios taikomos šiam " +"algalapiui pagal pasirinktą darbo sutartį. Jeigu paliksite tuščią darbo " +"sutarties lauką, nebebus būtina pasirinkti atlyginimo struktūros." #. module: hr_payroll #: field:hr.payroll.structure,children_ids:0 #: field:hr.salary.rule.category,children_ids:0 msgid "Children" -msgstr "" +msgstr "Vaikinis" #. module: hr_payroll #: help:hr.payslip,credit_note:0 msgid "Indicates this payslip has a refund of another" -msgstr "" +msgstr "Parodo, kad tai yra kito algalapio grąžinimas" #. module: hr_payroll #: selection:hr.contract,schedule_pay:0 msgid "Bi-monthly" -msgstr "" +msgstr "Du kartus per mėnesį" #. module: hr_payroll #: report:paylip.details:0 msgid "Pay Slip Details" -msgstr "" +msgstr "Algalapio duomenys" #. module: hr_payroll #: model:ir.actions.act_window,name:hr_payroll.action_view_hr_payslip_form #: model:ir.ui.menu,name:hr_payroll.menu_department_tree msgid "Employee Payslips" -msgstr "" +msgstr "Darbuotojų algalapiai" #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_hr_config_settings @@ -999,22 +1038,22 @@ msgstr "" #: field:hr.salary.rule,register_id:0 #: model:ir.model,name:hr_payroll.model_hr_contribution_register msgid "Contribution Register" -msgstr "" +msgstr "Įmokų registras" #. module: hr_payroll #: view:payslip.lines.contribution.register:0 msgid "Print" -msgstr "" +msgstr "Spausdinti" #. module: hr_payroll #: view:hr.payslip.line:0 msgid "Calculations" -msgstr "" +msgstr "Skaičiavimai" #. module: hr_payroll #: view:hr.payslip:0 msgid "Worked Days" -msgstr "" +msgstr "Dirbtas laikas ir atosotogos" #. module: hr_payroll #: view:hr.payslip:0 @@ -1026,7 +1065,7 @@ msgstr "" #: model:ir.actions.act_window,name:hr_payroll.action_hr_payslip_run_tree #: model:ir.ui.menu,name:hr_payroll.menu_hr_payslip_run msgid "Payslips Batches" -msgstr "" +msgstr "Algalapių suvestinės" #. module: hr_payroll #: view:hr.contribution.register:0 @@ -1042,7 +1081,7 @@ msgstr "" #: field:hr.salary.rule,note:0 #: field:hr.salary.rule.category,note:0 msgid "Description" -msgstr "" +msgstr "Aprašymas" #. module: hr_payroll #: field:hr.employee,total_wage:0 @@ -1054,14 +1093,14 @@ msgstr "" #: model:ir.actions.act_window,name:hr_payroll.action_contribution_register_form #: model:ir.ui.menu,name:hr_payroll.menu_action_hr_contribution_register_form msgid "Contribution Registers" -msgstr "" +msgstr "Įmokų registrai" #. module: hr_payroll #: model:ir.ui.menu,name:hr_payroll.menu_hr_payroll_reporting #: model:ir.ui.menu,name:hr_payroll.menu_hr_root_payroll #: model:ir.ui.menu,name:hr_payroll.payroll_configure msgid "Payroll" -msgstr "" +msgstr "Darbo užmokestis" #. module: hr_payroll #: model:ir.actions.report.xml,name:hr_payroll.contribution_register @@ -1069,7 +1108,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1078,7 +1117,7 @@ msgstr "" #: report:paylip.details:0 #: report:payslip:0 msgid "Address" -msgstr "" +msgstr "Adresas" #. module: hr_payroll #: field:hr.payslip,worked_days_line_ids:0 @@ -1102,13 +1141,13 @@ msgstr "" #: report:paylip.details:0 #: report:payslip:0 msgid "Name" -msgstr "" +msgstr "Pavadinimas" #. module: hr_payroll #: help:hr.payslip.line,amount_percentage:0 #: help:hr.salary.rule,amount_percentage:0 msgid "For example, enter 50.0 to apply a percentage of 50%" -msgstr "" +msgstr "Pavyzdžiui, įrašykite 50.0, kad būtų skaičiuojama 50%" #. module: hr_payroll #: view:hr.payroll.structure:0 @@ -1121,19 +1160,19 @@ msgstr "" #: field:hr.payslip.employees,employee_ids:0 #: view:hr.payslip.line:0 msgid "Employees" -msgstr "" +msgstr "Darbuotojai" #. module: hr_payroll #: report:paylip.details:0 #: report:payslip:0 msgid "Bank Account" -msgstr "" +msgstr "Banko sąskaita" #. module: hr_payroll #: help:hr.payslip.line,sequence:0 #: help:hr.salary.rule,sequence:0 msgid "Use to arrange calculation sequence" -msgstr "" +msgstr "Naudokite, kad išdėstytumėte skaičiavimo seką" #. module: hr_payroll #: help:hr.payslip,state:0 @@ -1153,11 +1192,15 @@ msgid "" "but you can also use categories code fields in lowercase as a variable names " "(hra, ma, lta, etc.) and the variable basic." msgstr "" +"Įrašykite lauko pavadinimą iš algalapio formos, kurio reikšmė bus tikrinama " +"ar atitinka intervalą. Vietoj algalapio formoje esančio lauko, galima " +"naudoti kategorijų kodus, įvedant juos mažosiomis raidėmis (hra, ma, lta, ir " +"t.t.)." #. module: hr_payroll #: selection:hr.contract,schedule_pay:0 msgid "Annually" -msgstr "" +msgstr "Kartą per metus" #. module: hr_payroll #: field:hr.payslip,input_line_ids:0 @@ -1167,16 +1210,16 @@ msgstr "" #. module: hr_payroll #: view:hr.payslip:0 msgid "Other Inputs" -msgstr "" +msgstr "Kiti priskaitymai" #. module: hr_payroll #: model:ir.actions.act_window,name:hr_payroll.action_hr_salary_rule_category_tree_view #: model:ir.ui.menu,name:hr_payroll.menu_hr_salary_rule_category_tree_view msgid "Salary Rule Categories Hierarchy" -msgstr "" +msgstr "Atlyginimo taisyklių kategorijų hierarchija" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1187,17 +1230,17 @@ msgstr "" #: report:paylip.details:0 #: report:payslip:0 msgid "Total" -msgstr "" +msgstr "Iš viso" #. module: hr_payroll #: view:hr.payslip:0 msgid "Salary Computation" -msgstr "" +msgstr "Atlyginimo skaičiavimas" #. module: hr_payroll #: view:hr.payslip:0 msgid "Details By Salary Rule Category" -msgstr "" +msgstr "Detali atlyginimo struktūra" #. module: hr_payroll #: help:hr.payslip.input,code:0 @@ -1207,7 +1250,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" @@ -1216,7 +1259,7 @@ msgstr "" #: view:hr.payslip.run:0 #: model:ir.actions.act_window,name:hr_payroll.action_hr_payslip_by_employees msgid "Generate Payslips" -msgstr "" +msgstr "Sukurti algalapius" #. module: hr_payroll #: view:hr.payslip.line:0 @@ -1226,13 +1269,13 @@ msgstr "" #. module: hr_payroll #: selection:hr.contract,schedule_pay:0 msgid "Bi-weekly" -msgstr "" +msgstr "Du kartus per savaitę" #. module: hr_payroll #: selection:hr.payslip.line,condition_select:0 #: selection:hr.salary.rule,condition_select:0 msgid "Always True" -msgstr "" +msgstr "Taikyti visados" #. module: hr_payroll #: report:contribution.register.lines:0 @@ -1242,10 +1285,10 @@ msgstr "" #. module: hr_payroll #: view:hr.payslip:0 msgid "Accounting" -msgstr "" +msgstr "Apskaita" #. module: hr_payroll #: field:hr.payslip.line,condition_range:0 #: field:hr.salary.rule,condition_range:0 msgid "Range Based on" -msgstr "" +msgstr "Intervalas pagal" diff --git a/addons/hr_payroll/i18n/lv.po b/addons/hr_payroll/i18n/lv.po index ef71927a2ff..c3742275202 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "Piezīmes" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "Algas Lapas Melnraksts" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "Parastās Darba Dienas tiek 100% apmaksātas" @@ -425,7 +425,7 @@ msgid "Percentage based on" msgstr "Procentu attiecība bāzēta uz" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -473,7 +473,7 @@ msgid "Salary Rules" msgstr "Algas Noteikumi" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "Atmaksa: " @@ -505,7 +505,7 @@ msgid "Fixed Amount" msgstr "Fiksēta Summa" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -643,7 +643,7 @@ msgid "Computation" msgstr "Aprēķināšana" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -684,7 +684,7 @@ msgstr "" "Atzīmējot tiks parādīts, ka visas šeit ģenerētās algu lapas ir algu atmaksas." #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -742,7 +742,7 @@ msgid "Percentage (%)" msgstr "Procentu Attiecība (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -855,7 +855,7 @@ msgid "Contribution" msgstr "Citi atvilkumi vai ieņēmumi" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "Atmaksas Lapa" @@ -922,7 +922,7 @@ msgid "General" msgstr "Vispārīgi" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "%s Alga priekš %s" @@ -1074,7 +1074,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1181,7 +1181,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "Algas Noteikumu Kategoriju Hierarhija" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1212,7 +1212,7 @@ msgid "The code that can be used in the salary rules" msgstr "Kods, kas var tikt lietots algas noteikumos" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/mk.po b/addons/hr_payroll/i18n/mk.po index b3618a7f424..08a00243535 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -200,11 +200,11 @@ msgid "Notes" msgstr "Белешки" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "Грешка!" @@ -277,7 +277,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "Нормални работни денови платени 100%" @@ -427,7 +427,7 @@ msgid "Percentage based on" msgstr "Процент базиран на" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "%s (копија)" @@ -475,7 +475,7 @@ msgid "Salary Rules" msgstr "Правила за плата" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "Поврат: " @@ -507,7 +507,7 @@ msgid "Fixed Amount" msgstr "Фиксен износ" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "Внимание!" @@ -646,7 +646,7 @@ msgid "Computation" msgstr "Пресметка" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -686,7 +686,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -746,7 +746,7 @@ msgid "Percentage (%)" msgstr "Процент (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "Погрешна количина дефинирана за правилото за плата %s (%s)." @@ -859,7 +859,7 @@ msgid "Contribution" msgstr "Придонес" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -926,7 +926,7 @@ msgid "General" msgstr "Општо" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1078,7 +1078,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1185,7 +1185,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "Грешка дефиниран python код за правило за плата %s (%s)." @@ -1216,7 +1216,7 @@ msgid "The code that can be used in the salary rules" msgstr "Код кој може да се користи во правила за плата" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/mn.po b/addons/hr_payroll/i18n/mn.po index 6374902ea9a..9d11663021d 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -203,11 +203,11 @@ msgid "Notes" msgstr "Тэмдэглэгээ" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "Алдаа!" @@ -280,7 +280,7 @@ msgid "Draft Slip" msgstr "Ноорог хуудас" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "Энгийн ажлын өдөрүүд 100%-р төлөгдөнө" @@ -443,7 +443,7 @@ msgid "Percentage based on" msgstr "Хувийн үндэслэл нь" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "%s (хуулбар)" @@ -491,7 +491,7 @@ msgid "Salary Rules" msgstr "Цалингийн дүрэм" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "Нөхөн төлөх " @@ -523,7 +523,7 @@ msgid "Fixed Amount" msgstr "Тогтмол дүн" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "Анхааруулга!" @@ -623,7 +623,7 @@ msgstr "Цалингийн хуудас" #: field:hr.payslip,credit_note:0 #: field:hr.payslip.run,credit_note:0 msgid "Credit Note" -msgstr "Кредитийн тэмдэглэл" +msgstr "Буцаалт" #. module: hr_payroll #: view:hr.payslip:0 @@ -661,7 +661,7 @@ msgid "Computation" msgstr "Тооцоололт" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "%s (%s) цалингийн дүрэмд мужийн нөхцөл буруу байна." @@ -706,7 +706,7 @@ msgstr "" "төлбөрийн цалингийн хуудсууд байна." #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "%s (%s) цалингийн дүрэмд буруу хувь эсвэл тоо хэмжээ байна." @@ -764,7 +764,7 @@ msgid "Percentage (%)" msgstr "Хувь (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "%s (%s) цалингийн дүрэмд буруу тоо хэмжээ тодорхойлогдсон байна." @@ -877,7 +877,7 @@ msgid "Contribution" msgstr "Ажил олгогчийн даах суутгал" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "Нөхөн төлбөрийн цалингийн хуудас" @@ -944,7 +944,7 @@ msgid "General" msgstr "Ерөнхий" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "%s-н цалингийн хуудас %s хувьд" @@ -1101,7 +1101,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "Цалингийн хуудсын мөрүүд нь хандивын бүртгэлээр" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "Ноорог эсвэл цуцлагдсан биш бол цалингийн хуудсыг устгах боломжгүй!" @@ -1217,7 +1217,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "Цалингийн Дүрмийн Ангилалын Урагийн мод" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "%s (%s) цалингийн дүрэмд буруу Python код тодорхойлогдсон байна." @@ -1248,7 +1248,7 @@ msgid "The code that can be used in the salary rules" msgstr "Цалингийн дүрэмд хэрэглэгдэж болох код" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "%s (%s) цалингийн дүрэмд буруу Python нөхцөл тодорхойлогдсон байна." diff --git a/addons/hr_payroll/i18n/nb.po b/addons/hr_payroll/i18n/nb.po index feaedb7ccd1..44896251439 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "Notater" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "Utkast til lønnslipp" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "Prosent basert på" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "Lønnsregler" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "Fast beløp" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -639,7 +639,7 @@ msgid "Computation" msgstr "Beregning" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -679,7 +679,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -737,7 +737,7 @@ msgid "Percentage (%)" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -850,7 +850,7 @@ msgid "Contribution" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -917,7 +917,7 @@ msgid "General" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1069,7 +1069,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1176,7 +1176,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1207,7 +1207,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/nl.po b/addons/hr_payroll/i18n/nl.po index ae7bbb97e86..863fe7c2064 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 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -202,11 +202,11 @@ msgid "Notes" msgstr "Notities" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "Fout!" @@ -279,7 +279,7 @@ msgid "Draft Slip" msgstr "Concept salarisstrook" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "Standaard Werkdagen 100% betaald" @@ -435,7 +435,7 @@ msgid "Percentage based on" msgstr "Percentage gebaseerd op" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "%s (kopie)" @@ -483,7 +483,7 @@ msgid "Salary Rules" msgstr "Salaris definities" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "Credit: " @@ -515,7 +515,7 @@ msgid "Fixed Amount" msgstr "Vast Bedrag" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "Waarschuwing!" @@ -656,7 +656,7 @@ msgid "Computation" msgstr "Berekening" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -696,7 +696,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -754,7 +754,7 @@ msgid "Percentage (%)" msgstr "Percentage (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -867,7 +867,7 @@ msgid "Contribution" msgstr "Contributie" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "Credit salarisstrook" @@ -934,7 +934,7 @@ msgid "General" msgstr "Algemeen" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "Loonafschrift van %s voor %s" @@ -1086,7 +1086,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1193,7 +1193,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1224,7 +1224,7 @@ msgid "The code that can be used in the salary rules" msgstr "De code die gebruikt kan worden in de salaris regels" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/pl.po b/addons/hr_payroll/i18n/pl.po index 7db49919a4e..a5f957d350c 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -202,11 +202,11 @@ msgid "Notes" msgstr "Uwagi" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "Błąd!" @@ -279,7 +279,7 @@ msgid "Draft Slip" msgstr "Projekt listy płac" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -427,7 +427,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -475,7 +475,7 @@ msgid "Salary Rules" msgstr "Reguły wynagrodzenia" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "Refundacja: " @@ -507,7 +507,7 @@ msgid "Fixed Amount" msgstr "Kwota stała" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "Ostrzeżenie !" @@ -643,7 +643,7 @@ msgid "Computation" msgstr "Obliczenia" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -683,7 +683,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -741,7 +741,7 @@ msgid "Percentage (%)" msgstr "Procentowo (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -854,7 +854,7 @@ msgid "Contribution" msgstr "Dotacja" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -921,7 +921,7 @@ msgid "General" msgstr "Ogólne" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1073,7 +1073,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1180,7 +1180,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1211,7 +1211,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/pt.po b/addons/hr_payroll/i18n/pt.po index e5359ab15b3..595d109192d 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -204,11 +204,11 @@ msgid "Notes" msgstr "Notas" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "Erro!" @@ -281,7 +281,7 @@ msgid "Draft Slip" msgstr "Rascunho do recibo" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "Dias normais de trabalho pagos a 100%" @@ -306,7 +306,7 @@ msgstr "Estrutura" #. module: hr_payroll #: field:hr.contribution.register,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Parceiro" #. module: hr_payroll #: view:hr.payslip:0 @@ -437,7 +437,7 @@ msgid "Percentage based on" msgstr "Percentagem baseada em" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "%s (cópia)" @@ -485,7 +485,7 @@ msgid "Salary Rules" msgstr "Regras salariais" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "Reembolsar: " @@ -517,7 +517,7 @@ msgid "Fixed Amount" msgstr "Montante fixo" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "Atenção!" @@ -656,7 +656,7 @@ msgid "Computation" msgstr "Cálculo" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -701,7 +701,7 @@ msgstr "" "daqui são recibos de reembolso." #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -759,7 +759,7 @@ msgid "Percentage (%)" msgstr "Percentagem (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -872,7 +872,7 @@ msgid "Contribution" msgstr "Contribuição" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "Reembolso de Recibo de Vencimento" @@ -939,7 +939,7 @@ msgid "General" msgstr "Geral" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "Recibo Salarial de %s para %s" @@ -1096,7 +1096,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "Linhas de recibos de vencimento por registo de contribuição" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1206,7 +1206,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "Hierarquia das Categorias das Regras Salariais" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1237,7 +1237,7 @@ msgid "The code that can be used in the salary rules" msgstr "O código que pode ser utilizado em regras salariais" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/pt_BR.po b/addons/hr_payroll/i18n/pt_BR.po index d19a61b1aa0..0b95e294659 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -204,11 +204,11 @@ msgid "Notes" msgstr "Anotações" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "Erro!" @@ -281,7 +281,7 @@ msgid "Draft Slip" msgstr "Holerites Provisórios" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "Dias normais trabalhados pagos 100%" @@ -447,7 +447,7 @@ msgid "Percentage based on" msgstr "Porcentagem baseada na" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "%s (cópia)" @@ -495,7 +495,7 @@ msgid "Salary Rules" msgstr "Regras de Salários" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "Reembolso: " @@ -527,7 +527,7 @@ msgid "Fixed Amount" msgstr "Quantidade fixa" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "Aviso!" @@ -666,7 +666,7 @@ msgid "Computation" msgstr "Calcular" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -712,7 +712,7 @@ msgstr "" "recibos de reembolso." #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -771,7 +771,7 @@ msgid "Percentage (%)" msgstr "Porcentagem (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "Quantidade errada definida para a regra de salário %s (%s)." @@ -884,7 +884,7 @@ msgid "Contribution" msgstr "Contribuição" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "Holerites de Reembolso" @@ -951,7 +951,7 @@ msgid "General" msgstr "Geral" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "Folha de Pagamento de %s para %s" @@ -1108,7 +1108,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "Holerites por linhas de Contribuições Registrada" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1224,7 +1224,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "Hierarquia da Regra de Salário" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "Código Python errado definido para a regra de salário %s (%s)." @@ -1255,7 +1255,7 @@ msgid "The code that can be used in the salary rules" msgstr "O código que pode ser usado nas regras de salários" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "Condição python errada definida para a regra de salário %s (%s)." diff --git a/addons/hr_payroll/i18n/ro.po b/addons/hr_payroll/i18n/ro.po index 956191f45b9..5dce89d5e53 100644 --- a/addons/hr_payroll/i18n/ro.po +++ b/addons/hr_payroll/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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -204,11 +204,11 @@ msgid "Notes" msgstr "Note" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "Eroare!" @@ -281,7 +281,7 @@ msgid "Draft Slip" msgstr "Fluturas de salariu ciorna" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "Zile lucratoare obisnuite platite 100%" @@ -447,7 +447,7 @@ msgid "Percentage based on" msgstr "Procent bazat pe" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "%s (copie)" @@ -495,7 +495,7 @@ msgid "Salary Rules" msgstr "Reguli salariale" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "Rambursare " @@ -527,7 +527,7 @@ msgid "Fixed Amount" msgstr "Suma fixa" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "Avertisment!" @@ -665,7 +665,7 @@ msgid "Computation" msgstr "Calcul" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "Conditie gresita a limitei definita pentru regula salariala %s (%s)." @@ -710,7 +710,7 @@ msgstr "" "aici sunt restituiri." #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -770,7 +770,7 @@ msgid "Percentage (%)" msgstr "Procentaj (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "Cantitate gresita definita pentru regula salariala %s (%s)." @@ -884,7 +884,7 @@ msgid "Contribution" msgstr "Contributie" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "Fluturas de salariu restituiri" @@ -951,7 +951,7 @@ msgid "General" msgstr "General" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "Fluturas de salariu %s pentru %s" @@ -1108,7 +1108,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "Linii Fluturas de salariu dupa Registrul Contributiei" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1228,7 +1228,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "Ierarhie Categorii Regula Salariala" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "Cod python gresit definit pentru regula salariala %s (%s)." @@ -1259,7 +1259,7 @@ msgid "The code that can be used in the salary rules" msgstr "Codul care poate fi utilizat in regulile salariale" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "Conditie python gresita definita pentru regula salariala %s (%s)." diff --git a/addons/hr_payroll/i18n/ru.po b/addons/hr_payroll/i18n/ru.po index 8a2e6a5c98f..0b0c488a167 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "Примечания" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "Фиксированная величина" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -639,7 +639,7 @@ msgid "Computation" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -679,7 +679,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -737,7 +737,7 @@ msgid "Percentage (%)" msgstr "Процентное соотношение (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -850,7 +850,7 @@ msgid "Contribution" msgstr "Авторы" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -917,7 +917,7 @@ msgid "General" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1069,7 +1069,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1176,7 +1176,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1207,7 +1207,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/sl.po b/addons/hr_payroll/i18n/sl.po index 9df66444d25..a744f403da7 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "Beležke" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "Napaka!" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "%s (kopija)" @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "Opozorilo!" @@ -639,7 +639,7 @@ msgid "Computation" msgstr "Izračun" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -679,7 +679,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -737,7 +737,7 @@ msgid "Percentage (%)" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -850,7 +850,7 @@ msgid "Contribution" msgstr "Prispevek" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -917,7 +917,7 @@ msgid "General" msgstr "Splošno" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1069,7 +1069,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1176,7 +1176,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1207,7 +1207,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/sr.po b/addons/hr_payroll/i18n/sr.po index 5a1e2091136..7c37b2e2063 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -639,7 +639,7 @@ msgid "Computation" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -679,7 +679,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -737,7 +737,7 @@ msgid "Percentage (%)" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -850,7 +850,7 @@ msgid "Contribution" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -917,7 +917,7 @@ msgid "General" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1069,7 +1069,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1176,7 +1176,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1207,7 +1207,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/sr@latin.po b/addons/hr_payroll/i18n/sr@latin.po index ff7370c1e3b..80132f94145 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -639,7 +639,7 @@ msgid "Computation" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -679,7 +679,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -737,7 +737,7 @@ msgid "Percentage (%)" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -850,7 +850,7 @@ msgid "Contribution" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -917,7 +917,7 @@ msgid "General" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1069,7 +1069,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1176,7 +1176,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1207,7 +1207,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/sv.po b/addons/hr_payroll/i18n/sv.po index 3d6df8e61e0..b3fb4f151d5 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -201,11 +201,11 @@ msgid "Notes" msgstr "Noteringar" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -278,7 +278,7 @@ msgid "Draft Slip" msgstr "Utkast Slip" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "Normala arbetsdagar betalas 100%" @@ -433,7 +433,7 @@ msgid "Percentage based on" msgstr "Procentsats baserad på" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -481,7 +481,7 @@ msgid "Salary Rules" msgstr "LöneRegler" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "Återbetalning: " @@ -513,7 +513,7 @@ msgid "Fixed Amount" msgstr "Fast belopp" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -651,7 +651,7 @@ msgid "Computation" msgstr "Beräkning" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -696,7 +696,7 @@ msgstr "" "härifrån är återbetalningslönespecifikationer." #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -754,7 +754,7 @@ msgid "Percentage (%)" msgstr "Procent (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -867,7 +867,7 @@ msgid "Contribution" msgstr "Bidrag" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "Återbetalningslönebesked" @@ -934,7 +934,7 @@ msgid "General" msgstr "Allmänt" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "Lönebesked för %s för %s" @@ -1091,7 +1091,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "Lönespecifikationsrader från Bidragsregistret" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1201,7 +1201,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "Lön Regel Kategorier Hierarki" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1232,7 +1232,7 @@ msgid "The code that can be used in the salary rules" msgstr "Den kod som kan användas i lön reglerna" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/tr.po b/addons/hr_payroll/i18n/tr.po index 800801a2f71..d27d8d6db94 100644 --- a/addons/hr_payroll/i18n/tr.po +++ b/addons/hr_payroll/i18n/tr.po @@ -14,14 +14,14 @@ msgstr "" "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 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 #: field:hr.salary.rule,condition_select:0 msgid "Condition Based on" -msgstr "Koşu Bazında" +msgstr "Koşul Bazında" #. module: hr_payroll #: selection:hr.contract,schedule_pay:0 @@ -50,7 +50,7 @@ msgstr "Gün Sayısı" msgid "" "Linking a salary category to its parent is used only for the reporting " "purpose." -msgstr "" +msgstr "Amaç üst bir maaş kategori bağlantı raporlama için kullanılır." #. module: hr_payroll #: view:hr.payslip:0 @@ -75,7 +75,7 @@ msgstr "Girişler" #: field:hr.payslip.line,parent_rule_id:0 #: field:hr.salary.rule,parent_rule_id:0 msgid "Parent Salary Rule" -msgstr "Esas Maaş Kural" +msgstr "Üst Maaş Kural" #. module: hr_payroll #: view:hr.employee:0 @@ -91,7 +91,7 @@ msgstr "Maaş Bordroları" #: field:hr.payroll.structure,parent_id:0 #: field:hr.salary.rule.category,parent_id:0 msgid "Parent" -msgstr "Ana" +msgstr "Üst" #. module: hr_payroll #: field:hr.contribution.register,company_id:0 @@ -106,7 +106,7 @@ msgstr "Firma" #. module: hr_payroll #: view:hr.payslip:0 msgid "Done Slip" -msgstr "" +msgstr "Biten Fiş" #. module: hr_payroll #: view:hr.payslip:0 @@ -117,20 +117,20 @@ msgstr "Taslağa Ayarlayın" #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_hr_salary_rule msgid "hr.salary.rule" -msgstr "" +msgstr "hr.salary.rule" #. module: hr_payroll #: view:hr.payslip:0 #: view:hr.payslip.run:0 msgid "to" -msgstr "" +msgstr "ye" #. module: hr_payroll #: field:hr.payslip,payslip_run_id:0 #: view:hr.payslip.run:0 #: model:ir.model,name:hr_payroll.model_hr_payslip_run msgid "Payslip Batches" -msgstr "" +msgstr "Toplu Maaş Bordrosu" #. module: hr_payroll #: view:hr.payslip.employees:0 @@ -169,7 +169,7 @@ msgstr "Genel" #: help:hr.payslip.line,amount_percentage_base:0 #: help:hr.salary.rule,amount_percentage_base:0 msgid "result will be affected to a variable" -msgstr "" +msgstr "sonuç bir değişkene etkilenecektir" #. module: hr_payroll #: report:contribution.register.lines:0 @@ -185,12 +185,12 @@ msgstr "Tüm Alt Kurallar" #: view:hr.payslip:0 #: view:hr.salary.rule:0 msgid "Input Data" -msgstr "Data Giriş" +msgstr "Veri Girişi" #. module: hr_payroll #: constraint:hr.payslip:0 msgid "Payslip 'Date From' must be before 'Date To'." -msgstr "Maaş bordrosu 'Gönderen: Tarih' önce 'Tarihine' olmalıdır." +msgstr "Maaş bordrosu 'Tarihden' önce 'Tarihine' olmalıdır." #. module: hr_payroll #: view:hr.salary.rule.category:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "Notlar" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "Hata!" @@ -221,7 +221,7 @@ msgstr "Tutar" #: view:hr.payslip.line:0 #: model:ir.model,name:hr_payroll.model_hr_payslip_line msgid "Payslip Line" -msgstr "Maaş bordrosu Satır" +msgstr "Maaş Bordro Satırı" #. module: hr_payroll #: view:hr.payslip:0 @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "Taslak Fiş" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "Normal Çalışma Günleri %100 ödenmektedir" @@ -300,7 +300,7 @@ msgstr "Yapı" #. module: hr_payroll #: field:hr.contribution.register,partner_id:0 msgid "Partner" -msgstr "Partner" +msgstr "İş Ortağı" #. module: hr_payroll #: view:hr.payslip:0 @@ -323,12 +323,12 @@ msgstr "Haftalık" #. module: hr_payroll #: view:hr.payslip:0 msgid "From" -msgstr "itibaren" +msgstr "den" #. module: hr_payroll #: view:hr.payslip:0 msgid "Confirm" -msgstr "Onaylamak" +msgstr "Onayla" #. module: hr_payroll #: model:ir.actions.act_window,help:hr_payroll.action_contribution_register_form @@ -368,7 +368,7 @@ msgstr "Kayıt Adı" #. module: hr_payroll #: view:hr.payslip.employees:0 msgid "Payslips by Employees" -msgstr "Personel maaş bordroları" +msgstr "Personel Maaş Bordroları" #. module: hr_payroll #: selection:hr.contract,schedule_pay:0 @@ -414,7 +414,7 @@ msgstr "Email" #. module: hr_payroll #: view:hr.payslip.run:0 msgid "Search Payslip Batches" -msgstr "Maaş bordrosu Toplu işlemi Arama" +msgstr "MaaşBordrosu Toplu İşlemi Arama" #. module: hr_payroll #: field:hr.payslip.line,amount_percentage_base:0 @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "Yüzde Bazında" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "%s (kopya)" @@ -436,7 +436,7 @@ msgstr "Maaş bordroları dan yevmiye girişleri oluşturma" #. module: hr_payroll #: field:hr.payslip,paid:0 msgid "Made Payment Order ? " -msgstr "Ödeme Sipariş yapılır? " +msgstr "Ödeme Sipariş Yap ? " #. module: hr_payroll #: report:contribution.register.lines:0 @@ -449,7 +449,7 @@ msgstr "" #: view:hr.payslip.line:0 #: model:ir.actions.act_window,name:hr_payroll.act_contribution_reg_payslip_lines msgid "Payslip Lines" -msgstr "Maaş bordrosu Satırları" +msgstr "MaaşBordrosu Satırları" #. module: hr_payroll #: view:hr.payslip:0 @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "Maaş Kuralları" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "İade: " @@ -479,7 +479,7 @@ msgstr "İade: " #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_payslip_lines_contribution_register msgid "PaySlip Lines by Contribution Registers" -msgstr "" +msgstr "Katkı Kayıtlarına göre MaaşBordro Satırı" #. module: hr_payroll #: view:hr.payslip:0 @@ -492,7 +492,7 @@ msgstr "Biten" #: field:hr.payslip.line,appears_on_payslip:0 #: field:hr.salary.rule,appears_on_payslip:0 msgid "Appears on Payslip" -msgstr "Maaş bordrosu üzerinde Görünüyor" +msgstr "MaaşBordrosu üzerinde Görünsün" #. module: hr_payroll #: field:hr.payslip.line,amount_fix:0 @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "Sabit Tutar" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "Uyarı!" @@ -515,6 +515,8 @@ msgid "" "If the active field is set to false, it will allow you to hide the salary " "rule without removing it." msgstr "" +"Etkin alanda yanlış ayarlanırsa, size maaş gizleme sağlayacak bu kural " +"kaldırmadan." #. module: hr_payroll #: field:hr.payslip,state:0 @@ -573,7 +575,7 @@ msgstr "Alt Maaş Kural" #: report:payslip:0 #: field:payslip.lines.contribution.register,date_to:0 msgid "Date To" -msgstr "için Tarihi" +msgstr "Tarihine" #. module: hr_payroll #: selection:hr.payslip.line,condition_select:0 @@ -585,7 +587,7 @@ msgstr "Aralık" #: model:ir.actions.act_window,name:hr_payroll.action_view_hr_payroll_structure_tree #: model:ir.ui.menu,name:hr_payroll.menu_hr_payroll_structure_tree msgid "Salary Structures Hierarchy" -msgstr "Maaş Yapı Hiyerarşi" +msgstr "Maaş Yapı Hiyerarşisi" #. module: hr_payroll #: help:hr.employee,total_wage:0 @@ -601,7 +603,7 @@ msgstr "Maaş Bordrosu" #: field:hr.payslip,credit_note:0 #: field:hr.payslip.run,credit_note:0 msgid "Credit Note" -msgstr "Alack Notu" +msgstr "Alacak Notu" #. module: hr_payroll #: view:hr.payslip:0 @@ -639,10 +641,10 @@ msgid "Computation" msgstr "Hesaplama" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." -msgstr "" +msgstr "Yanlış aralık koşulu maaş kural %s (%s) için tanımlama." #. module: hr_payroll #: help:hr.payslip.input,amount:0 @@ -669,7 +671,7 @@ msgstr "Kategori" #. module: hr_payroll #: view:hr.salary.rule:0 msgid "Company Contribution" -msgstr "" +msgstr "Şirket Katkısı" #. module: hr_payroll #: help:hr.payslip.run,credit_note:0 @@ -677,23 +679,25 @@ msgid "" "If its checked, indicates that all payslips generated from here are refund " "payslips." msgstr "" +"Bu İşaretliyse, buradan oluşturulan tüm maaş bordroları iade olduğunu " +"gösterir" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." -msgstr "" +msgstr "Yanlış yüzde bazlı veya maaş adet kuralı %s (%s) için tanımlanan." #. module: hr_payroll #: model:ir.actions.act_window,name:hr_payroll.action_view_hr_payroll_structure_list_form #: model:ir.ui.menu,name:hr_payroll.menu_hr_payroll_structure_view msgid "Salary Structures" -msgstr "Maaş Yapısı" +msgstr "Ücret Yapısı" #. module: hr_payroll #: view:hr.payslip.run:0 msgid "Draft Payslip Batches" -msgstr "" +msgstr "Taslak Maaş Bordrosu Toplu" #. module: hr_payroll #: view:hr.payslip:0 @@ -711,17 +715,17 @@ msgstr "Taslak" #: report:payslip:0 #: field:payslip.lines.contribution.register,date_from:0 msgid "Date From" -msgstr "" +msgstr "Tarihinden" #. module: hr_payroll #: view:hr.payslip.run:0 msgid "Done Payslip Batches" -msgstr "" +msgstr "Biten Mmaaş Bordrosu Toplu" #. module: hr_payroll #: report:paylip.details:0 msgid "Payslip Lines by Contribution Register:" -msgstr "" +msgstr "Katkı Kayıtları Yapılan MaaşBordrosu Satırları:" #. module: hr_payroll #: view:hr.salary.rule:0 @@ -737,25 +741,25 @@ msgid "Percentage (%)" msgstr "Yüzde (%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." -msgstr "" +msgstr "Yanlış miktar maaş kural %s (%s) için tanımlanan." #. module: hr_payroll #: view:hr.payslip:0 msgid "Worked Day" -msgstr "" +msgstr "Çalışılan Gün" #. module: hr_payroll #: view:hr.payroll.structure:0 msgid "Employee Function" -msgstr "" +msgstr "Personel Fonksiyonu" #. module: hr_payroll #: model:ir.actions.report.xml,name:hr_payroll.payslip_report msgid "Employee PaySlip" -msgstr "" +msgstr "Personel MaaşBordrosu" #. module: hr_payroll #: field:hr.payslip.line,salary_rule_id:0 @@ -765,12 +769,12 @@ msgstr "Kural" #. module: hr_payroll #: model:ir.actions.report.xml,name:hr_payroll.payslip_details_report msgid "PaySlip Details" -msgstr "" +msgstr "Maaş Bordrosu Detayları" #. module: hr_payroll #: view:hr.payslip:0 msgid "Compute Sheet" -msgstr "" +msgstr "Tabloyu Hesapla" #. module: hr_payroll #: field:hr.payslip.line,active:0 @@ -787,13 +791,13 @@ msgstr "Alt Kurallar" #: help:hr.payslip.line,condition_range_min:0 #: help:hr.salary.rule,condition_range_min:0 msgid "The minimum amount, applied for this rule." -msgstr "" +msgstr "Bu kural için uygulanan minimum tutar,." #. module: hr_payroll #: selection:hr.payslip.line,condition_select:0 #: selection:hr.salary.rule,condition_select:0 msgid "Python Expression" -msgstr "" +msgstr "Python Expression" #. module: hr_payroll #: report:paylip.details:0 @@ -825,7 +829,7 @@ msgstr "Sözleşme" #: code:addons/hr_payroll/wizard/hr_payroll_payslips_by_employees.py:52 #, python-format msgid "You must select employee(s) to generate payslip(s)." -msgstr "" +msgstr "Bu maaş bordrosu üretmek için çalışan (lar) seçmelisiniz." #. module: hr_payroll #: report:paylip.details:0 @@ -836,21 +840,21 @@ msgstr "Alacak" #. module: hr_payroll #: field:hr.contract,schedule_pay:0 msgid "Scheduled Pay" -msgstr "" +msgstr "Planlanmış Ödeme" #. module: hr_payroll #: field:hr.payslip.line,condition_python:0 #: field:hr.salary.rule,condition_python:0 msgid "Python Condition" -msgstr "" +msgstr "Python Koşulu" #. module: hr_payroll #: view:hr.contribution.register:0 msgid "Contribution" -msgstr "" +msgstr "Katkı" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "Maaş Bordrosu İade" @@ -891,7 +895,7 @@ msgstr "Kod" #: field:hr.salary.rule,amount_python_compute:0 #: selection:hr.salary.rule,amount_select:0 msgid "Python Code" -msgstr "" +msgstr "Python Kod" #. module: hr_payroll #: field:hr.payslip.input,sequence:0 @@ -909,7 +913,7 @@ msgstr "Dönem" #. module: hr_payroll #: view:hr.payslip.run:0 msgid "Period from" -msgstr "" +msgstr "Dönem'den" #. module: hr_payroll #: view:hr.salary.rule:0 @@ -917,10 +921,10 @@ msgid "General" msgstr "Genel" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" -msgstr "" +msgstr "Ücret Makbuzu %s nın %s" #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_hr_payslip_employees @@ -986,12 +990,12 @@ msgstr "Öde Fiş Detaylar" #: model:ir.actions.act_window,name:hr_payroll.action_view_hr_payslip_form #: model:ir.ui.menu,name:hr_payroll.menu_department_tree msgid "Employee Payslips" -msgstr "Personel maaş bordroları" +msgstr "Personel Maaş Bordroları" #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr_payroll #: view:hr.payslip.line:0 @@ -1069,7 +1073,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "Sen taslak veya iptal olmayan bir maaş bordrosu silemezsiniz!" @@ -1078,7 +1082,7 @@ msgstr "Sen taslak veya iptal olmayan bir maaş bordrosu silemezsiniz!" #: report:paylip.details:0 #: report:payslip:0 msgid "Address" -msgstr "adres" +msgstr "Adres" #. module: hr_payroll #: field:hr.payslip,worked_days_line_ids:0 @@ -1108,7 +1112,7 @@ msgstr "Adı" #: help:hr.payslip.line,amount_percentage:0 #: help:hr.salary.rule,amount_percentage:0 msgid "For example, enter 50.0 to apply a percentage of 50%" -msgstr "" +msgstr "Örenk, 50% yüzdesi uygulamak için 50,0 girin" #. module: hr_payroll #: view:hr.payroll.structure:0 @@ -1173,13 +1177,13 @@ msgstr "Diğer Girdiler" #: model:ir.actions.act_window,name:hr_payroll.action_hr_salary_rule_category_tree_view #: model:ir.ui.menu,name:hr_payroll.menu_hr_salary_rule_category_tree_view msgid "Salary Rule Categories Hierarchy" -msgstr "" +msgstr "Maaş Kural Kategori Hiyerarşileri" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." -msgstr "" +msgstr "Yanlış python kodu maaş kural %s (%s) için tanımlanan." #. module: hr_payroll #: report:contribution.register.lines:0 @@ -1204,10 +1208,10 @@ msgstr "Maaş Kural Kategori Detayları" #: help:hr.payslip.worked_days,code:0 #: help:hr.rule.input,code:0 msgid "The code that can be used in the salary rules" -msgstr "" +msgstr "Maaş kurallar için kullanılabilir kod" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "Maaş kuralı için tanımlanan Yanlış python koşulu %s (%s)." @@ -1248,4 +1252,4 @@ msgstr "Muhasebe" #: field:hr.payslip.line,condition_range:0 #: field:hr.salary.rule,condition_range:0 msgid "Range Based on" -msgstr "Aralığı Bazında" +msgstr "Aralık Bazında" diff --git a/addons/hr_payroll/i18n/vi.po b/addons/hr_payroll/i18n/vi.po index 0f244c7d620..63abccab696 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "" @@ -423,7 +423,7 @@ msgid "Percentage based on" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "" @@ -471,7 +471,7 @@ msgid "Salary Rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "" @@ -503,7 +503,7 @@ msgid "Fixed Amount" msgstr "Giá trị cố định" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "" @@ -639,7 +639,7 @@ msgid "Computation" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -679,7 +679,7 @@ msgid "" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -737,7 +737,7 @@ msgid "Percentage (%)" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." msgstr "" @@ -850,7 +850,7 @@ msgid "Contribution" msgstr "Đóng góp" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "" @@ -917,7 +917,7 @@ msgid "General" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "" @@ -1069,7 +1069,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1176,7 +1176,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1207,7 +1207,7 @@ msgid "The code that can be used in the salary rules" msgstr "" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll/i18n/zh_CN.po b/addons/hr_payroll/i18n/zh_CN.po index 3881e7545b8..eb10292619e 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-16 05:40+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:34+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll #: field:hr.payslip.line,condition_select:0 @@ -198,11 +198,11 @@ msgid "Notes" msgstr "备注" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 #: code:addons/hr_payroll/hr_payroll.py:871 -#: code:addons/hr_payroll/hr_payroll.py:877 -#: code:addons/hr_payroll/hr_payroll.py:894 -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:876 +#: code:addons/hr_payroll/hr_payroll.py:882 +#: code:addons/hr_payroll/hr_payroll.py:899 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Error!" msgstr "错误!" @@ -275,7 +275,7 @@ msgid "Draft Slip" msgstr "工资条草稿" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:427 +#: code:addons/hr_payroll/hr_payroll.py:432 #, python-format msgid "Normal Working Days paid at 100%" msgstr "正常工作日100%付薪" @@ -424,7 +424,7 @@ msgid "Percentage based on" msgstr "百分比基数" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:85 +#: code:addons/hr_payroll/hr_payroll.py:90 #, python-format msgid "%s (copy)" msgstr "%s (副本)" @@ -472,7 +472,7 @@ msgid "Salary Rules" msgstr "工资规则" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:336 +#: code:addons/hr_payroll/hr_payroll.py:341 #, python-format msgid "Refund: " msgstr "冲销 " @@ -504,7 +504,7 @@ msgid "Fixed Amount" msgstr "固定金额" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "Warning!" msgstr "警告!" @@ -640,7 +640,7 @@ msgid "Computation" msgstr "计算" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:894 +#: code:addons/hr_payroll/hr_payroll.py:899 #, python-format msgid "Wrong range condition defined for salary rule %s (%s)." msgstr "" @@ -682,7 +682,7 @@ msgid "" msgstr "如果勾选了这一项,表示这里生成的工资条是退还的工资条。" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:871 +#: code:addons/hr_payroll/hr_payroll.py:876 #, python-format msgid "Wrong percentage base or quantity defined for salary rule %s (%s)." msgstr "" @@ -740,10 +740,10 @@ msgid "Percentage (%)" msgstr "百分比(%)" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:866 +#: code:addons/hr_payroll/hr_payroll.py:871 #, python-format msgid "Wrong quantity defined for salary rule %s (%s)." -msgstr "" +msgstr "为薪资规则 %s (%s) 定义的数量错误。" #. module: hr_payroll #: view:hr.payslip:0 @@ -828,7 +828,7 @@ msgstr "合同" #: code:addons/hr_payroll/wizard/hr_payroll_payslips_by_employees.py:52 #, python-format msgid "You must select employee(s) to generate payslip(s)." -msgstr "" +msgstr "您必须选择员工以生成工资单。" #. module: hr_payroll #: report:paylip.details:0 @@ -853,7 +853,7 @@ msgid "Contribution" msgstr "捐款" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:346 +#: code:addons/hr_payroll/hr_payroll.py:351 #, python-format msgid "Refund Payslip" msgstr "收回工资条" @@ -912,7 +912,7 @@ msgstr "会计周期" #. module: hr_payroll #: view:hr.payslip.run:0 msgid "Period from" -msgstr "" +msgstr "会计期间从" #. module: hr_payroll #: view:hr.salary.rule:0 @@ -920,7 +920,7 @@ msgid "General" msgstr "基本设置" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:669 +#: code:addons/hr_payroll/hr_payroll.py:674 #, python-format msgid "Salary Slip of %s for %s" msgstr "工资条:%s %s" @@ -995,7 +995,7 @@ msgstr "员工工资条" #. module: hr_payroll #: model:ir.model,name:hr_payroll.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr_payroll #: view:hr.payslip.line:0 @@ -1073,7 +1073,7 @@ msgid "PaySlip Lines By Conribution Register" msgstr "按贡献者的工资条明细" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:365 +#: code:addons/hr_payroll/hr_payroll.py:370 #, python-format msgid "You cannot delete a payslip which is not draft or cancelled!" msgstr "" @@ -1180,7 +1180,7 @@ msgid "Salary Rule Categories Hierarchy" msgstr "工资规则类别树" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:877 +#: code:addons/hr_payroll/hr_payroll.py:882 #, python-format msgid "Wrong python code defined for salary rule %s (%s)." msgstr "" @@ -1211,7 +1211,7 @@ msgid "The code that can be used in the salary rules" msgstr "可以在工资规则中使用的编号" #. module: hr_payroll -#: code:addons/hr_payroll/hr_payroll.py:900 +#: code:addons/hr_payroll/hr_payroll.py:905 #, python-format msgid "Wrong python condition defined for salary rule %s (%s)." msgstr "" diff --git a/addons/hr_payroll_account/i18n/ar.po b/addons/hr_payroll_account/i18n/ar.po index 92b4ff27e62..1517df19aed 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "حساب دائن" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" -msgstr "ظرف مرتب لـ %s" +msgstr "قسيمة دفع مرتب لـ %s" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "قيد محاسبي" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -86,11 +86,11 @@ msgstr "دفعات ظرف المرتب" #. module: hr_payroll_account #: model:ir.model,name:hr_payroll_account.model_hr_payslip_employees msgid "Generate payslips for all selected employees" -msgstr "إنشاء ظرف المرتبات لجميع العاملين الحددة" +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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "خطأ في الإعدادات!" @@ -98,7 +98,7 @@ msgstr "خطأ في الإعدادات!" #. module: hr_payroll_account #: model:ir.model,name:hr_payroll_account.model_hr_salary_rule msgid "hr.salary.rule" -msgstr "hr.salary.rule" +msgstr "" #. module: hr_payroll_account #: view:hr.contract:0 @@ -112,8 +112,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "تعديل القيد" diff --git a/addons/hr_payroll_account/i18n/bg.po b/addons/hr_payroll_account/i18n/bg.po index 94d1d1d2a0a..a61cfdb36f5 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -89,8 +89,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "" @@ -112,8 +112,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "" diff --git a/addons/hr_payroll_account/i18n/ca.po b/addons/hr_payroll_account/i18n/ca.po index dba516c883e..3c815610c8f 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -91,8 +91,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "" @@ -114,8 +114,8 @@ msgid "Pay Slip" msgstr "Nòmina" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "" diff --git a/addons/hr_payroll_account/i18n/cs.po b/addons/hr_payroll_account/i18n/cs.po index f981b32d5e1..f1b47fca88e 100644 --- a/addons/hr_payroll_account/i18n/cs.po +++ b/addons/hr_payroll_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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -89,8 +89,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "" @@ -112,8 +112,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "" diff --git a/addons/hr_payroll_account/i18n/da.po b/addons/hr_payroll_account/i18n/da.po index 1d0f6e416be..6010b2153f5 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -89,8 +89,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "" @@ -112,8 +112,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "" diff --git a/addons/hr_payroll_account/i18n/de.po b/addons/hr_payroll_account/i18n/de.po index 01428b0f85d..f78584e9458 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "Habenkonto" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "Lohnkonto von %s" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "Buchung" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -90,8 +90,8 @@ msgid "Generate payslips for all selected employees" msgstr "Erzeuge Lohnkonten für alle ausgewählten Mitarbeiter" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "Konfigurationsfehler!" @@ -113,8 +113,8 @@ msgid "Pay Slip" msgstr "Mitarbeitervergütung" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "Differenzbuchung" diff --git a/addons/hr_payroll_account/i18n/en_GB.po b/addons/hr_payroll_account/i18n/en_GB.po index 3c48600c909..8730eabeb30 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "Credit Account" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "Payslip of %s" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -42,7 +42,7 @@ msgid "Accounting Entry" msgstr "Accounting Entry" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -91,8 +91,8 @@ msgid "Generate payslips for all selected employees" msgstr "Generate payslips for all selected employees" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "Configuration Error!" @@ -114,8 +114,8 @@ msgid "Pay Slip" msgstr "Pay Slip" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "Adjustment Entry" diff --git a/addons/hr_payroll_account/i18n/es.po b/addons/hr_payroll_account/i18n/es.po index d261d89116d..cd9e575d378 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "Cuenta acreedora" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "Nómina de %s" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -43,7 +43,7 @@ msgid "Accounting Entry" msgstr "Asiento contable" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -94,8 +94,8 @@ msgid "Generate payslips for all selected employees" msgstr "Generar las nóminas para todos los empleados seleccionados" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "¡Error de configuración!" @@ -117,8 +117,8 @@ msgid "Pay Slip" msgstr "Nómina" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "Asiento de ajuste" diff --git a/addons/hr_payroll_account/i18n/es_CR.po b/addons/hr_payroll_account/i18n/es_CR.po index 47e7e51c9ae..86f43fd909b 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: hr_payroll_account @@ -24,13 +24,13 @@ msgid "Credit Account" msgstr "Cuenta de Crédito" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "Nómina de %s" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -44,7 +44,7 @@ msgid "Accounting Entry" msgstr "Contabilidad por partida" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -95,8 +95,8 @@ msgid "Generate payslips for all selected employees" msgstr "Generar boletas de pago para todos los empleados seleccionados" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "¡Error de configuración!" @@ -118,8 +118,8 @@ msgid "Pay Slip" msgstr "Nómina" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "Ajuste de entrada" diff --git a/addons/hr_payroll_account/i18n/es_EC.po b/addons/hr_payroll_account/i18n/es_EC.po index fcbf3122382..4dafebfa8e4 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "Cuenta de Crédito" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "Nómina de %s" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -42,7 +42,7 @@ msgid "Accounting Entry" msgstr "Asiento Contable" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -91,8 +91,8 @@ msgid "Generate payslips for all selected employees" msgstr "Generar nómina para los empleados seleccionados" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "Error de Configuración !" @@ -114,8 +114,8 @@ msgid "Pay Slip" msgstr "Nómina" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "Asiento de Ajuste" diff --git a/addons/hr_payroll_account/i18n/es_PY.po b/addons/hr_payroll_account/i18n/es_PY.po index d99d48bb170..dc84ec4095c 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -90,8 +90,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "" @@ -113,8 +113,8 @@ msgid "Pay Slip" msgstr "Hoja de Pago" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "" diff --git a/addons/hr_payroll_account/i18n/fr.po b/addons/hr_payroll_account/i18n/fr.po index dfb3ab74c19..1023846e854 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "Compte de crédit" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "Bulletin de paie de %s" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -43,7 +43,7 @@ msgid "Accounting Entry" msgstr "Entrée comptable" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -95,8 +95,8 @@ msgid "Generate payslips for all selected employees" msgstr "Génère les bulletins de paie pour tous les employés sélectionnés" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "Erreur de paramétrage !" @@ -118,8 +118,8 @@ msgid "Pay Slip" msgstr "Feuille de paie" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "Entrée d'ajustement" diff --git a/addons/hr_payroll_account/i18n/gl.po b/addons/hr_payroll_account/i18n/gl.po index 14282794b71..2a541bbeb94 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -89,8 +89,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "" @@ -112,8 +112,8 @@ msgid "Pay Slip" msgstr "Nómina" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "" diff --git a/addons/hr_payroll_account/i18n/gu.po b/addons/hr_payroll_account/i18n/gu.po index aa979d77dad..132cfe18b0c 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -89,8 +89,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "રેખાંકન ભૂલ" @@ -112,8 +112,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "" diff --git a/addons/hr_payroll_account/i18n/hr.po b/addons/hr_payroll_account/i18n/hr.po index 66be66a8645..918314aeb28 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "Kreditni račun" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -89,8 +89,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "Greška u konfiguraciji!" @@ -112,8 +112,8 @@ msgid "Pay Slip" msgstr "Obračunski list" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "" diff --git a/addons/hr_payroll_account/i18n/hu.po b/addons/hr_payroll_account/i18n/hu.po index 4006c76f710..c0bb3adfcde 100644 --- a/addons/hr_payroll_account/i18n/hu.po +++ b/addons/hr_payroll_account/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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -22,13 +22,13 @@ msgid "Credit Account" msgstr "Kedvezményezett folyószámla" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "%s fizetési jegyzék (Payslip)" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "Könyvelési bevitel" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -91,8 +91,8 @@ msgid "Generate payslips for all selected employees" msgstr "Fizetési jegyzék létrehozása az összes kijelölt alkalmazottnak" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "Beállítási hiba!" @@ -114,8 +114,8 @@ msgid "Pay Slip" msgstr "Fizetési jegyzék" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "" diff --git a/addons/hr_payroll_account/i18n/id.po b/addons/hr_payroll_account/i18n/id.po index 1122a286290..f88a79f5ff2 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -89,8 +89,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "" @@ -112,8 +112,8 @@ msgid "Pay Slip" msgstr "Slip Pembayaran" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "" diff --git a/addons/hr_payroll_account/i18n/it.po b/addons/hr_payroll_account/i18n/it.po index cca0eea6098..4c997d56028 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "Conto Credito" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -89,8 +89,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "Errore di configurazione!" @@ -112,8 +112,8 @@ msgid "Pay Slip" msgstr "Busta paga" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "" diff --git a/addons/hr_payroll_account/i18n/ja.po b/addons/hr_payroll_account/i18n/ja.po index 797b2e1dfaf..588008f0451 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "貸方勘定科目" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "%s の給与明細書" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "会計入力" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -89,8 +89,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "設定エラー" @@ -112,8 +112,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "調整項目" diff --git a/addons/hr_payroll_account/i18n/lt.po b/addons/hr_payroll_account/i18n/lt.po index c29df14b44e..74c62a52b1d 100644 --- a/addons/hr_payroll_account/i18n/lt.po +++ b/addons/hr_payroll_account/i18n/lt.po @@ -14,22 +14,22 @@ msgstr "" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-04-30 05:29+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 msgid "Credit Account" -msgstr "" +msgstr "Kreditinė sąskaita" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -38,10 +38,10 @@ msgstr "" #. module: hr_payroll_account #: field:hr.payslip,move_id:0 msgid "Accounting Entry" -msgstr "" +msgstr "DK įrašas" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -50,38 +50,38 @@ msgstr "" #. module: hr_payroll_account #: field:hr.salary.rule,account_tax_id:0 msgid "Tax Code" -msgstr "" +msgstr "Mokesčių kodas" #. module: hr_payroll_account #: field:hr.payslip,period_id:0 msgid "Force Period" -msgstr "" +msgstr "Periodas" #. module: hr_payroll_account #: help:hr.payslip,period_id:0 msgid "Keep empty to use the period of the validation(Payslip) date." -msgstr "" +msgstr "Palikti tuščią, norint naudoti periodą pagal algalapio datą." #. module: hr_payroll_account #: model:ir.model,name:hr_payroll_account.model_hr_contract msgid "Contract" -msgstr "" +msgstr "Darbo sutartis" #. module: hr_payroll_account #: field:hr.contract,analytic_account_id:0 #: field:hr.salary.rule,analytic_account_id:0 msgid "Analytic Account" -msgstr "" +msgstr "Analitinė sąskaita" #. module: hr_payroll_account #: field:hr.salary.rule,account_debit:0 msgid "Debit Account" -msgstr "" +msgstr "Debetinė sąskaita" #. module: hr_payroll_account #: model:ir.model,name:hr_payroll_account.model_hr_payslip_run msgid "Payslip Batches" -msgstr "" +msgstr "Algalapių suvestinė" #. module: hr_payroll_account #: model:ir.model,name:hr_payroll_account.model_hr_payslip_employees @@ -89,11 +89,11 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Klaida nustatymuose!" #. module: hr_payroll_account #: model:ir.model,name:hr_payroll_account.model_hr_salary_rule @@ -104,16 +104,16 @@ msgstr "" #: view:hr.contract:0 #: view:hr.salary.rule:0 msgid "Accounting" -msgstr "" +msgstr "Apskaita" #. module: hr_payroll_account #: model:ir.model,name:hr_payroll_account.model_hr_payslip msgid "Pay Slip" -msgstr "" +msgstr "Algalapis" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "" @@ -123,4 +123,4 @@ msgstr "" #: field:hr.payslip,journal_id:0 #: field:hr.payslip.run,journal_id:0 msgid "Salary Journal" -msgstr "" +msgstr "Darbo užmokesčio žiniaraštis" diff --git a/addons/hr_payroll_account/i18n/lv.po b/addons/hr_payroll_account/i18n/lv.po index 7a284a21d73..e9cb0b00fe8 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -89,8 +89,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "" @@ -112,8 +112,8 @@ msgid "Pay Slip" msgstr "Algas Lapa" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "" diff --git a/addons/hr_payroll_account/i18n/mk.po b/addons/hr_payroll_account/i18n/mk.po index 6bc6538aa89..bcf1a979389 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "Сметка Побарува" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "Извод од платен список на %s" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "Сметководствен внес" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -74,12 +74,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 @@ -92,8 +92,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "Грешка конфигурација!" @@ -115,11 +115,11 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" -msgstr "Запис за прилагодување" +msgstr "Внес за прилагодување" #. module: hr_payroll_account #: field:hr.contract,journal_id:0 diff --git a/addons/hr_payroll_account/i18n/mn.po b/addons/hr_payroll_account/i18n/mn.po index 91373f56ffe..c93740b7a2d 100644 --- a/addons/hr_payroll_account/i18n/mn.po +++ b/addons/hr_payroll_account/i18n/mn.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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -22,13 +22,13 @@ msgid "Credit Account" msgstr "Зарлагын данс" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "%s-н цалингийн хуудас" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -40,7 +40,7 @@ msgid "Accounting Entry" msgstr "Дансны бичилт" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -49,7 +49,7 @@ msgstr "\"%s\" зардлын журналыг орлогын данстай з #. module: hr_payroll_account #: field:hr.salary.rule,account_tax_id:0 msgid "Tax Code" -msgstr "Татварын дугаар" +msgstr "Татварын Код" #. module: hr_payroll_account #: field:hr.payslip,period_id:0 @@ -89,8 +89,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "Тохиргооны алдаа!" @@ -112,8 +112,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "Тохируулах бичилт" diff --git a/addons/hr_payroll_account/i18n/nb.po b/addons/hr_payroll_account/i18n/nb.po index 0600f14c635..956d4e34a72 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "Kredittkonto" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "Lønnslipp av %s." #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -42,7 +42,7 @@ msgid "Accounting Entry" msgstr "Regnskapsmessig oppføring" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -90,8 +90,8 @@ msgid "Generate payslips for all selected employees" msgstr "Generer lønnsslipper for alle utvalgte ansatte." #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "Konfigurasjonsfeil!" @@ -113,8 +113,8 @@ msgid "Pay Slip" msgstr "Lønnslipp" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "Justering oppføring" diff --git a/addons/hr_payroll_account/i18n/nl.po b/addons/hr_payroll_account/i18n/nl.po index 7a502934814..e9d5921e4df 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "Krediet rekening" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "Loonafschrift van %s" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -42,7 +42,7 @@ msgid "Accounting Entry" msgstr "Financiële boeking" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -92,8 +92,8 @@ msgid "Generate payslips for all selected employees" msgstr "Genereer loonafschriften voor alle geselecteerde werknemer" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "Configuratiefout!" @@ -115,8 +115,8 @@ msgid "Pay Slip" msgstr "Loonafschrift" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "Aanpassingsboeking" diff --git a/addons/hr_payroll_account/i18n/pl.po b/addons/hr_payroll_account/i18n/pl.po index 9530b2a251b..f3a9c71054e 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -89,8 +89,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "" @@ -112,8 +112,8 @@ msgid "Pay Slip" msgstr "Pasek wypłaty" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "" diff --git a/addons/hr_payroll_account/i18n/pt.po b/addons/hr_payroll_account/i18n/pt.po index 586774cd170..24362d50755 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "Conta de crédito" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "Recibo de vencimento de %s" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -43,7 +43,7 @@ msgid "Accounting Entry" msgstr "Entrada contabilidade" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -95,8 +95,8 @@ msgid "Generate payslips for all selected employees" msgstr "Gerar recibos de vencimento para todos os funcionários selecionados" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "Erro de Configuração!" @@ -118,8 +118,8 @@ msgid "Pay Slip" msgstr "Recibo Vencimento" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "Entrada de Ajuste" diff --git a/addons/hr_payroll_account/i18n/pt_BR.po b/addons/hr_payroll_account/i18n/pt_BR.po index 42d65f877e1..60e24a6ed54 100644 --- a/addons/hr_payroll_account/i18n/pt_BR.po +++ b/addons/hr_payroll_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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -24,13 +24,13 @@ msgid "Credit Account" msgstr "Conta de Crédito" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "Holerites de %s" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -43,7 +43,7 @@ msgid "Accounting Entry" msgstr "Entrada Contábil" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -92,8 +92,8 @@ msgid "Generate payslips for all selected employees" msgstr "Gerar holerites para todos os funcionários selecionados" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "Erro de Configuração!" @@ -115,8 +115,8 @@ msgid "Pay Slip" msgstr "Holerite" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "Entrada de Ajuste" diff --git a/addons/hr_payroll_account/i18n/ro.po b/addons/hr_payroll_account/i18n/ro.po index 8717d66541e..8b9317a0025 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "Cont de Credit" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "Fluturas de salariu al %s" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -42,7 +42,7 @@ msgid "Accounting Entry" msgstr "Inregistrare Contabila" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -93,8 +93,8 @@ msgid "Generate payslips for all selected employees" msgstr "Generati fluturasii de salariu pentru toti angajatii selectati" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "Eroare de configurare!" @@ -116,8 +116,8 @@ msgid "Pay Slip" msgstr "Fluturas de salariu" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "Ajustare Inregistrare" diff --git a/addons/hr_payroll_account/i18n/ru.po b/addons/hr_payroll_account/i18n/ru.po index 1ba5d84716a..f492d124ed2 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -89,8 +89,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "" @@ -112,8 +112,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "" diff --git a/addons/hr_payroll_account/i18n/sl.po b/addons/hr_payroll_account/i18n/sl.po index 859a809bfe8..e76d0d3258c 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -89,8 +89,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "Napaka v nastavitvah" @@ -112,8 +112,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "" diff --git a/addons/hr_payroll_account/i18n/sr@latin.po b/addons/hr_payroll_account/i18n/sr@latin.po index a253d91a6c7..004311123ca 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "Platni nalog" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "Obračunski list %s" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "Stavka naloga" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -90,8 +90,8 @@ msgid "Generate payslips for all selected employees" msgstr "Napravi obračunski list za sve izabrane zaposlene" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "Greška podešavanja!" @@ -113,8 +113,8 @@ msgid "Pay Slip" msgstr "Obračunski list" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "Stavka podešavanja" diff --git a/addons/hr_payroll_account/i18n/sv.po b/addons/hr_payroll_account/i18n/sv.po index d5386e0a660..8c1c15004a4 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "Kreditkonto" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "Lönespecifikation för %s" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "Bokföringstransaktion" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -89,8 +89,8 @@ msgid "Generate payslips for all selected employees" msgstr "Generera lönespecifikationer för valda anställda" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "Konfigurationsfel!" @@ -112,8 +112,8 @@ msgid "Pay Slip" msgstr "Lönebesked" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "Korrigeringstransaktion" diff --git a/addons/hr_payroll_account/i18n/tr.po b/addons/hr_payroll_account/i18n/tr.po index 6b97c810a8c..defef0fe3b5 100644 --- a/addons/hr_payroll_account/i18n/tr.po +++ b/addons/hr_payroll_account/i18n/tr.po @@ -14,113 +14,114 @@ msgstr "" "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 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 msgid "Credit Account" -msgstr "" +msgstr "Alacak Hesabı" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" -msgstr "" +msgstr "%s Maaş Bordrosu" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" msgstr "" +"Gider Yevmiye \"%s\" Alacak Hesap düzgün olarak yapılandırılmış değil!" #. module: hr_payroll_account #: field:hr.payslip,move_id:0 msgid "Accounting Entry" -msgstr "" +msgstr "Muhasebe Girişi" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" -msgstr "" +msgstr "Gider Yevmiye \"%s\" Borç Hesap düzgün yapılandırılmış değil!" #. module: hr_payroll_account #: field:hr.salary.rule,account_tax_id:0 msgid "Tax Code" -msgstr "" +msgstr "Vergi Kodu" #. module: hr_payroll_account #: field:hr.payslip,period_id:0 msgid "Force Period" -msgstr "" +msgstr "Dönemi Zorla" #. module: hr_payroll_account #: help:hr.payslip,period_id:0 msgid "Keep empty to use the period of the validation(Payslip) date." -msgstr "" +msgstr "Dönemi tarihini doğrulama (Maaş Bordrosu) kullanmak için boş tutun." #. module: hr_payroll_account #: model:ir.model,name:hr_payroll_account.model_hr_contract msgid "Contract" -msgstr "" +msgstr "Sözleşme" #. module: hr_payroll_account #: field:hr.contract,analytic_account_id:0 #: field:hr.salary.rule,analytic_account_id:0 msgid "Analytic Account" -msgstr "Analiz Hesabı" +msgstr "Analitik Hesap" #. module: hr_payroll_account #: field:hr.salary.rule,account_debit:0 msgid "Debit Account" -msgstr "" +msgstr "Borç Hesabı" #. module: hr_payroll_account #: model:ir.model,name:hr_payroll_account.model_hr_payslip_run msgid "Payslip Batches" -msgstr "" +msgstr "Maaş Bordrosu Toplu" #. module: hr_payroll_account #: model:ir.model,name:hr_payroll_account.model_hr_payslip_employees msgid "Generate payslips for all selected employees" -msgstr "" +msgstr "Seçilen tüm personeller için maaş bordroları oluşturma" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Yapılandırma Hatası!" #. module: hr_payroll_account #: model:ir.model,name:hr_payroll_account.model_hr_salary_rule msgid "hr.salary.rule" -msgstr "" +msgstr "hr.salary.rule" #. module: hr_payroll_account #: view:hr.contract:0 #: view:hr.salary.rule:0 msgid "Accounting" -msgstr "" +msgstr "Muhasebe" #. module: hr_payroll_account #: model:ir.model,name:hr_payroll_account.model_hr_payslip msgid "Pay Slip" -msgstr "" +msgstr "Makbuz" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:158 -#: code:addons/hr_payroll_account/hr_payroll_account.py:174 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" -msgstr "" +msgstr "Düzeltme Girişi" #. 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 "" +msgstr "Maaş Yevmiyesi" diff --git a/addons/hr_payroll_account/i18n/zh_CN.po b/addons/hr_payroll_account/i18n/zh_CN.po index c03b16f7602..26f404d90a9 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_payroll_account #: field:hr.salary.rule,account_credit:0 @@ -23,13 +23,13 @@ msgid "Credit Account" msgstr "贷方科目" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:103 +#: code:addons/hr_payroll_account/hr_payroll_account.py:104 #, python-format msgid "Payslip of %s" msgstr "%s 的工资条" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:156 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Credit Account!" @@ -41,7 +41,7 @@ msgid "Accounting Entry" msgstr "会计凭证" #. module: hr_payroll_account -#: code:addons/hr_payroll_account/hr_payroll_account.py:172 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "" "The Expense Journal \"%s\" has not properly configured the Debit Account!" @@ -89,8 +89,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:157 +#: code:addons/hr_payroll_account/hr_payroll_account.py:173 #, python-format msgid "Configuration Error!" msgstr "设置错误!" @@ -112,8 +112,8 @@ 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 +#: code:addons/hr_payroll_account/hr_payroll_account.py:159 +#: code:addons/hr_payroll_account/hr_payroll_account.py:175 #, python-format msgid "Adjustment Entry" msgstr "调整凭证" diff --git a/addons/hr_recruitment/i18n/ar.po b/addons/hr_recruitment/i18n/ar.po index e8404490c1a..ce2abb7af83 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 1c635310dc3..05d6c1fe3c4 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 b2a186e9853..a3bb16d275a 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/cs.po b/addons/hr_recruitment/i18n/cs.po index c5ac49a5b6d..5b64be948d4 100644 --- a/addons/hr_recruitment/i18n/cs.po +++ b/addons/hr_recruitment/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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 e6f97cde4b2..f6f4f7ebcf9 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 203f5884e88..19fdb0dadf6 100644 --- a/addons/hr_recruitment/i18n/de.po +++ b/addons/hr_recruitment/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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 66dbe470956..e98d06020b8 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 d6c9497e451..386648b4217 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 90f3f430044..7b822379918 100644 --- a/addons/hr_recruitment/i18n/fr.po +++ b/addons/hr_recruitment/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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 @@ -34,12 +34,12 @@ msgstr "Exigences" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Application Summary" -msgstr "" +msgstr "Résumé de la candidature" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Start Interview" -msgstr "" +msgstr "Commencer l'entretien" #. module: hr_recruitment #: view:hr.applicant:0 @@ -120,7 +120,7 @@ msgstr "Origines des candidats" #: code:addons/hr_recruitment/hr_recruitment.py:445 #, python-format msgid "You must define Applied Job for this applicant." -msgstr "" +msgstr "Vous devez définir le poste auquel ce candidat postule." #. module: hr_recruitment #: view:hr.applicant:0 @@ -153,12 +153,31 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour ajouter un nouveau candidat.\n" +"

\n" +" OpenERP vous permet de suivre les candidats dans le " +"processus\n" +" de recrutement et de suivre toutes les opérations : " +"réunions, entretiens, etc.\n" +"

\n" +" Si vous paramétrez la passerelle de courriel, les " +"candidatures et leur CV\n" +" en pièce jointe sont enregistrés automatiquement quand un " +"courriel est envoyé\n" +" à jobs@votresociete.com . Si vous installez le module de " +"gestion\n" +" documentaire, tous les CV seront indexés automatiquement, ce " +"qui vous \n" +" permettra de parcourir leur contenu.\n" +"

\n" +" " #. 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 "" +msgstr "Candidatures" #. module: hr_recruitment #: field:hr.applicant,day_open:0 @@ -168,12 +187,12 @@ msgstr "Jours pour ouvrir" #. module: hr_recruitment #: field:hr.applicant,emp_id:0 msgid "employee" -msgstr "" +msgstr "employé" #. module: hr_recruitment #: field:hr.config.settings,fetchmail_applicants:0 msgid "Create applicants from an incoming email account" -msgstr "" +msgstr "Créer des candidats à partir d'un compte de courriel entrant" #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -236,6 +255,8 @@ msgid "" "Stages of the recruitment process may be different per department. If this " "stage is common to all departments, keep this field empty." msgstr "" +"Les étapes du processus de recrutement peuvent être différents par service. " +"Si cette étape est commune à tous les services, gardez ce champ vide." #. module: hr_recruitment #: help:hr.applicant,message_unread:0 @@ -373,7 +394,7 @@ msgstr "Monster" #. module: hr_recruitment #: model:mail.message.subtype,name:hr_recruitment.mt_applicant_hired msgid "Applicant Hired" -msgstr "" +msgstr "Candidat engagé" #. module: hr_recruitment #: field:hr.applicant,email_from:0 @@ -393,6 +414,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour ajouter une nouvelle étape dans le processus de " +"recrutement.\n" +"

\n" +" Définissez ici vos étapes dans le processus de recrutement, par " +"exemple:\n" +" qualification initiale, premier entretien, second entretien, " +"refusé, contrat signé.\n" +"

\n" +" " #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -410,6 +441,8 @@ msgid "" "Email alias for this job position. New emails will automatically create new " "applicants for this job position." msgstr "" +"Alias de courriel pour ce poste. Les nouveaux courriels vont automatiquement " +"créer de nouveaux candidats pour ce poste." #. module: hr_recruitment #: selection:hr.applicant,priority:0 @@ -565,12 +598,12 @@ msgstr "En cours" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Hire & Create Employee" -msgstr "" +msgstr "Embaucher et créer l'employé" #. module: hr_recruitment #: model:mail.message.subtype,description:hr_recruitment.mt_applicant_hired msgid "Applicant hired" -msgstr "" +msgstr "Candidat engagé" #. module: hr_recruitment #: view:hr.applicant:0 @@ -611,7 +644,7 @@ msgstr "" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_applicant_category msgid "Category of applicant" -msgstr "" +msgstr "Catégorie de candidat" #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -654,7 +687,7 @@ msgstr "" #. module: hr_recruitment #: model:mail.message.subtype,name:hr_recruitment.mt_applicant_refused msgid "Applicant Refused" -msgstr "" +msgstr "Candidat refusé" #. module: hr_recruitment #: view:hr.applicant:0 @@ -758,13 +791,13 @@ msgstr "Statut" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Schedule interview with this applicant" -msgstr "" +msgstr "Planifier un entretien avec ce candidat" #. module: hr_recruitment #: code:addons/hr_recruitment/hr_recruitment.py:407 #, python-format msgid "Applicant created" -msgstr "" +msgstr "Candidat créé" #. module: hr_recruitment #: view:hr.applicant:0 @@ -816,7 +849,7 @@ msgstr "Actif" #: view:hr.recruitment.report:0 #: field:hr.recruitment.report,nbr:0 msgid "# of Applications" -msgstr "" +msgstr "Nb. de candidatures" #. module: hr_recruitment #: model:ir.actions.act_window,help:hr_recruitment.hr_recruitment_stage_act @@ -830,6 +863,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour ajouter une nouvelle étape dans le processus de " +"recrutement.\n" +"

\n" +" N'oubliez pas de préciser le service si votre processus de " +"recrutement\n" +" dépend du poste.\n" +"

\n" +" " #. module: hr_recruitment #: field:hr.applicant,response:0 @@ -844,7 +886,7 @@ msgstr "Octobre" #. module: hr_recruitment #: field:hr.config.settings,module_document_ftp:0 msgid "Allow the automatic indexation of resumes" -msgstr "" +msgstr "Autoriser l'indexation automatique des CV" #. module: hr_recruitment #: field:hr.applicant,salary_proposed_extra:0 @@ -860,7 +902,7 @@ msgstr "Janvier" #: 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 "" +msgstr "Un contact avec le même nom existe déjà." #. module: hr_recruitment #: model:ir.actions.act_window,name:hr_recruitment.hr_recruitment_stage_form_installer @@ -958,6 +1000,10 @@ msgid "" "(jobs@mycompany.com),\n" " and create automatically application documents in the system." msgstr "" +"Permet aux candidats d'envoyer leur candidature au poste à une adresse " +"courriel (jobs@masociete.com),\n" +" et crée " +"automatiquement des documents de candidature dans le système." #. module: hr_recruitment #: view:hr.applicant:0 @@ -1008,7 +1054,7 @@ msgstr "LinkedIn" #. module: hr_recruitment #: model:mail.message.subtype,name:hr_recruitment.mt_job_new_applicant msgid "New Applicant" -msgstr "" +msgstr "Nouveau candidat" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_recruitment_stage @@ -1073,7 +1119,7 @@ msgstr "Bouche à oreille" #. module: hr_recruitment #: field:hr.recruitment.stage,fold:0 msgid "Hide in views if empty" -msgstr "" +msgstr "Cacher dans les vues si vide" #. module: hr_recruitment #: help:hr.config.settings,module_document_ftp:0 @@ -1108,7 +1154,7 @@ msgstr "" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Departement:" -msgstr "" +msgstr "Service :" #. module: hr_recruitment #: selection:hr.applicant,priority:0 @@ -1124,7 +1170,7 @@ msgstr "Degré de recrutement" #. module: hr_recruitment #: field:hr.recruitment.report,salary_prop_avg:0 msgid "Avg. Proposed Salary" -msgstr "" +msgstr "Salaire moyen proposé" #. module: hr_recruitment #: view:hr.applicant:0 @@ -1157,12 +1203,12 @@ msgstr "Novembre" #. module: hr_recruitment #: field:hr.recruitment.report,salary_exp_avg:0 msgid "Avg. Expected Salary" -msgstr "" +msgstr "Salaire moyen attendu" #. module: hr_recruitment #: view:hr.recruitment.report:0 msgid "Avg Expected Salary" -msgstr "" +msgstr "Salaire moyen attendu" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_recruitment_partner_create @@ -1202,7 +1248,7 @@ msgstr "" #. module: hr_recruitment #: model:mail.message.subtype,description:hr_recruitment.mt_applicant_refused msgid "Applicant refused" -msgstr "" +msgstr "Candidat refusé" #. module: hr_recruitment #: field:hr.recruitment.stage,department_id:0 @@ -1262,12 +1308,12 @@ msgstr "Ouvert" #. module: hr_recruitment #: view:board.board:0 msgid "Applications to be Processed" -msgstr "" +msgstr "Candidatures à traiter" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Schedule Interview" -msgstr "" +msgstr "Planifier un entretien" #, python-format #~ msgid "A partner is already defined on this job request." diff --git a/addons/hr_recruitment/i18n/hi.po b/addons/hr_recruitment/i18n/hi.po index 832c0227b0e..3645cc60309 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 55f37172f77..ebea4a4c241 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 7d956b34c6d..d9d8567f923 100644 --- a/addons/hr_recruitment/i18n/hu.po +++ b/addons/hr_recruitment/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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 61346aaec0a..ef540f32eb8 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 e2e976750b2..8384c3ad1e0 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 803b77c8c2c..a222188d9f7 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 ca261b156da..8a873af4266 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 45376a84668..73cba3453f4 100644 --- a/addons/hr_recruitment/i18n/mn.po +++ b/addons/hr_recruitment/i18n/mn.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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 @@ -1309,7 +1309,7 @@ msgstr "Байгууллагын санал болгосон цалин боло #. module: hr_recruitment #: help:hr.recruitment.report,delay_close:0 msgid "Number of Days to close the project issue" -msgstr "Төслийн даалгаврыг хаах хүртэлх өдрийн тоо" +msgstr "Төслийн даалгаврыг хаах хүртэлх хоногийн тоо" #. module: hr_recruitment #: selection:hr.recruitment.report,state:0 diff --git a/addons/hr_recruitment/i18n/nb.po b/addons/hr_recruitment/i18n/nb.po index 6a07645f013..3d475db0408 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 b6d414d19ea..f879f40aa9b 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 @@ -178,7 +178,7 @@ msgstr "" #: 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 "Programma's" +msgstr "Sollicitaties" #. module: hr_recruitment #: field:hr.applicant,day_open:0 @@ -465,7 +465,7 @@ msgstr "Augustus" #: field:hr.applicant,create_date:0 #: view:hr.recruitment.report:0 msgid "Creation Date" -msgstr "Datum gemaakt" +msgstr "Aanmaakdatum" #. module: hr_recruitment #: model:ir.actions.act_window,name:hr_recruitment.action_hr_recruitment_hired_employee @@ -607,7 +607,7 @@ msgstr "In behandeling" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Hire & Create Employee" -msgstr "Huur & maak werknemer" +msgstr "Werknemer aannemen en aanmaken" #. module: hr_recruitment #: model:mail.message.subtype,description:hr_recruitment.mt_applicant_hired diff --git a/addons/hr_recruitment/i18n/pl.po b/addons/hr_recruitment/i18n/pl.po index e34165af28b..ca6b4d7f961 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:36+0000\n" +"X-Generator: Launchpad (build 16753)\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 8a580ed079a..ac0b8ff5882 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 b9eabdccce2..9375b79d265 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 b7e367adc60..2ae42bc5b8f 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 f0c289b36f0..3058029df1a 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 5fe0d75aa83..bc4f38c4d62 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 c5153c93b74..7f5fae2b435 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-16 05:42+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 600a6dc3b50..3e14084aa64 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 80763de40fc..188e5da8c3b 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 diff --git a/addons/hr_recruitment/i18n/th.po b/addons/hr_recruitment/i18n/th.po index fb80cbf4ca7..59d68c7c657 100644 --- a/addons/hr_recruitment/i18n/th.po +++ b/addons/hr_recruitment/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-06-21 05:36+0000\n" -"X-Generator: Launchpad (build 16677)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 @@ -129,7 +129,7 @@ msgstr "งาน" #. module: hr_recruitment #: field:hr.recruitment.partner.create,close:0 msgid "Close job request" -msgstr "" +msgstr "ขอปิดงาน" #. module: hr_recruitment #: model:ir.actions.act_window,help:hr_recruitment.crm_case_categ0_act_job @@ -162,12 +162,12 @@ msgstr "โปรแกรม" #. module: hr_recruitment #: field:hr.applicant,day_open:0 msgid "Days to Open" -msgstr "" +msgstr "วันที่จะเปิด" #. module: hr_recruitment #: field:hr.applicant,emp_id:0 msgid "employee" -msgstr "" +msgstr "พนักงาน" #. module: hr_recruitment #: field:hr.config.settings,fetchmail_applicants:0 @@ -194,7 +194,7 @@ msgstr "ปฏิเสธ" #. module: hr_recruitment #: model:hr.recruitment.degree,name:hr_recruitment.degree_licenced msgid "Master Degree" -msgstr "" +msgstr "ปริญญาโท" #. module: hr_recruitment #: field:hr.applicant,partner_mobile:0 @@ -209,7 +209,7 @@ msgstr "ข้อความ" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Next Actions" -msgstr "" +msgstr "การกระทำต่อไป" #. module: hr_recruitment #: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:38 @@ -221,7 +221,7 @@ msgstr "ผิดพลาด!" #. module: hr_recruitment #: model:hr.recruitment.degree,name:hr_recruitment.degree_bac5 msgid "Doctoral Degree" -msgstr "" +msgstr "ปริญญาเอก" #. module: hr_recruitment #: field:hr.applicant,job_id:0 @@ -339,12 +339,12 @@ msgstr "" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Print interview report" -msgstr "" +msgstr "พิมพ์รายงานการสัมภาษณ์" #. module: hr_recruitment #: view:hr.recruitment.report:0 msgid "Hired employees" -msgstr "" +msgstr "พนักงานได้รับการว่าจ้าง" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_job @@ -370,7 +370,7 @@ msgstr "" #. module: hr_recruitment #: model:mail.message.subtype,name:hr_recruitment.mt_applicant_hired msgid "Applicant Hired" -msgstr "" +msgstr "ผู้สมัครได้รับการว่าจ้าง" #. module: hr_recruitment #: field:hr.applicant,email_from:0 @@ -399,7 +399,7 @@ msgstr "เหลืออยู่" #. module: hr_recruitment #: field:hr.applicant,title_action:0 msgid "Next Action" -msgstr "" +msgstr "การกระทำต่อไป" #. module: hr_recruitment #: help:hr.job,alias_id:0 @@ -430,7 +430,7 @@ msgstr "วันที่สร้าง" #: 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 "" +msgstr "สร้างพนักงาน" #. module: hr_recruitment #: view:hr.applicant:0 @@ -442,12 +442,12 @@ msgstr "" #. module: hr_recruitment #: model:hr.recruitment.stage,name:hr_recruitment.stage_job1 msgid "Initial Qualification" -msgstr "" +msgstr "คุณสมบัติเบื้องต้น" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Print Interview" -msgstr "" +msgstr "พิมพ์ บทสัมภาษณ์" #. module: hr_recruitment #: view:hr.applicant:0 @@ -466,13 +466,13 @@ msgstr "สัมภาษณ์ครั้งที่สอง" #. module: hr_recruitment #: model:ir.actions.act_window,name:hr_recruitment.hr_job_stage_act msgid "Recruitment / Applicants Stages" -msgstr "" +msgstr "รับสมัครงาน / ขั้นตอนสมัคร" #. module: hr_recruitment #: field:hr.applicant,salary_expected:0 #: view:hr.recruitment.report:0 msgid "Expected Salary" -msgstr "" +msgstr "เงินเดือนที่ต้องการ" #. module: hr_recruitment #: selection:hr.recruitment.report,month:0 @@ -487,7 +487,7 @@ msgstr "" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Applicants" -msgstr "" +msgstr "ผู้สมัคร" #. module: hr_recruitment #: code:addons/hr_recruitment/hr_recruitment.py:360 @@ -498,12 +498,12 @@ msgstr "ไม่มีชื่อเรื่อง" #. module: hr_recruitment #: field:hr.recruitment.report,salary_exp:0 msgid "Salary Expected" -msgstr "" +msgstr "เงินเดือนที่ต้องการ" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_applicant msgid "Applicant" -msgstr "" +msgstr "ยื่นคำขอ" #. module: hr_recruitment #: help:hr.recruitment.stage,sequence:0 @@ -542,12 +542,12 @@ msgstr "มีนาคม" #: 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 "" +msgstr "ขั้นตอน" #. module: hr_recruitment #: view:hr.recruitment.report:0 msgid "Draft recruitment" -msgstr "" +msgstr "แบบร่างสรรหา" #. module: hr_recruitment #: view:hr.applicant:0 @@ -562,12 +562,12 @@ msgstr "อยู่ระหว่างดำเนินการ" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Hire & Create Employee" -msgstr "" +msgstr "ว่าจ้างและสร้างพนักงาน" #. module: hr_recruitment #: model:mail.message.subtype,description:hr_recruitment.mt_applicant_hired msgid "Applicant hired" -msgstr "" +msgstr "ผู้สมัครได้รับการว่าจ้าง" #. module: hr_recruitment #: view:hr.applicant:0 @@ -577,7 +577,7 @@ msgstr "" #. module: hr_recruitment #: field:hr.applicant,probability:0 msgid "Probability" -msgstr "" +msgstr "ความน่าจะเป็น" #. module: hr_recruitment #: selection:hr.recruitment.report,month:0 @@ -598,7 +598,7 @@ msgstr "ธันวาคม" #: 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 "" +msgstr "รายชื่อผู้ติดต่อถูกกำหนดไว้แล้วเมื่อของานนี้" #. module: hr_recruitment #: field:hr.applicant,categ_ids:0 @@ -608,7 +608,7 @@ msgstr "แท็ก" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_applicant_category msgid "Category of applicant" -msgstr "" +msgstr "หมวดหมู่ของผู้สมัคร" #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -619,12 +619,12 @@ msgstr "เดือน" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Answer related job question" -msgstr "" +msgstr "ตอบคำถามที่เกี่ยวข้องกับงาน" #. module: hr_recruitment #: model:hr.recruitment.stage,name:hr_recruitment.stage_job2 msgid "First Interview" -msgstr "" +msgstr "สัมภาษณ์ครั้งแรก" #. module: hr_recruitment #: field:hr.applicant,write_date:0 @@ -656,23 +656,23 @@ msgstr "" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Schedule Meeting" -msgstr "" +msgstr "ตารางเวลาการประชุม" #. module: hr_recruitment #: field:hr.applicant,partner_name:0 msgid "Applicant's Name" -msgstr "" +msgstr "ชื่อของผู้ยื่นคำขอ" #. module: hr_recruitment #: selection:hr.applicant,priority:0 #: selection:hr.recruitment.report,priority:0 msgid "Very Good" -msgstr "" +msgstr "ดีมาก" #. module: hr_recruitment #: field:hr.applicant,user_email:0 msgid "User Email" -msgstr "" +msgstr "อีเมลของผู้ใช้" #. module: hr_recruitment #: field:hr.applicant,date_open:0 @@ -682,7 +682,7 @@ msgstr "เปิดแล้ว" #. module: hr_recruitment #: view:hr.recruitment.report:0 msgid "Group By ..." -msgstr "" +msgstr "กลุ่มตาม ..." #. module: hr_recruitment #: view:hired.employee:0 @@ -692,7 +692,7 @@ msgstr "ไม่" #. module: hr_recruitment #: help:hr.applicant,salary_expected:0 msgid "Salary Expected by Applicant" -msgstr "" +msgstr "เงินเดือนที่ต้องการของผู้สมัคร" #. module: hr_recruitment #: view:hr.applicant:0 @@ -710,7 +710,7 @@ msgstr "" #. module: hr_recruitment #: model:ir.ui.menu,name:hr_recruitment.menu_hr_recruitment_degree msgid "Degrees" -msgstr "" +msgstr "ปริญญา" #. module: hr_recruitment #: field:hr.applicant,date_closed:0 @@ -726,7 +726,7 @@ msgstr "" #. module: hr_recruitment #: field:hr.recruitment.report,delay_close:0 msgid "Avg. Delay to Close" -msgstr "" +msgstr "เฉลี่ย ความล่าช้าในการปิด" #. module: hr_recruitment #: help:hr.applicant,salary_proposed:0 @@ -783,7 +783,7 @@ msgstr "มิถุนายน" #. module: hr_recruitment #: field:hr.applicant,day_close:0 msgid "Days to Close" -msgstr "" +msgstr "วันที่จะปิด" #. module: hr_recruitment #: field:hr.applicant,message_is_follower:0 @@ -848,7 +848,7 @@ msgstr "" #. module: hr_recruitment #: selection:hr.recruitment.report,month:0 msgid "January" -msgstr "" +msgstr "มกราคม" #. module: hr_recruitment #: code:addons/hr_recruitment/wizard/hr_recruitment_create_partner_job.py:56 @@ -960,7 +960,7 @@ msgstr "อยู่ระหว่างทำงาน" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Subject / Applicant" -msgstr "" +msgstr "หัวข้อ / ผู้สมัคร" #. module: hr_recruitment #: help:hr.recruitment.degree,sequence:0 @@ -970,7 +970,7 @@ msgstr "" #. module: hr_recruitment #: model:mail.message.subtype,description:hr_recruitment.mt_stage_changed msgid "Stage changed" -msgstr "" +msgstr "ขั้นตอนการเปลี่ยนแปลง" #. module: hr_recruitment #: view:hr.applicant:0 @@ -989,7 +989,7 @@ msgstr "" #. module: hr_recruitment #: view:hired.employee:0 msgid "Create New Employee" -msgstr "" +msgstr "สร้างพนักงานใหม่" #. module: hr_recruitment #: model:hr.recruitment.source,name:hr_recruitment.source_linkedin @@ -999,7 +999,7 @@ msgstr "LinkedIn" #. module: hr_recruitment #: model:mail.message.subtype,name:hr_recruitment.mt_job_new_applicant msgid "New Applicant" -msgstr "" +msgstr "ผู้สมัครใหม่" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_recruitment_stage @@ -1089,12 +1089,12 @@ msgstr "ถูกปฏิเสธ" #: selection:hr.recruitment.report,state:0 #: selection:hr.recruitment.stage,state:0 msgid "Hired" -msgstr "" +msgstr "จ้าง" #. module: hr_recruitment #: field:hr.applicant,reference:0 msgid "Referred By" -msgstr "" +msgstr "อ้างอิงโดย" #. module: hr_recruitment #: view:hr.applicant:0 @@ -1110,7 +1110,7 @@ msgstr "" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_recruitment_degree msgid "Degree of Recruitment" -msgstr "" +msgstr "ระดับของการรับสมัครงาน" #. module: hr_recruitment #: field:hr.recruitment.report,salary_prop_avg:0 @@ -1120,7 +1120,7 @@ msgstr "" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Open Jobs" -msgstr "" +msgstr "เปิด งาน" #. module: hr_recruitment #: selection:hr.recruitment.report,month:0 diff --git a/addons/hr_recruitment/i18n/tr.po b/addons/hr_recruitment/i18n/tr.po index 9934edb1a7a..0bc1fac92c3 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_recruitment #: help:hr.applicant,active:0 @@ -23,12 +23,14 @@ msgid "" "If the active field is set to false, it will allow you to hide the case " "without removing it." msgstr "" +"Etkin alanda yanlış olarak ayarlanırsa, bu durumda gizleme sağlayacak " +"kaldırmadan." #. module: hr_recruitment #: view:hr.recruitment.stage:0 #: field:hr.recruitment.stage,requirements:0 msgid "Requirements" -msgstr "İşe alım" +msgstr "İşe Alım" #. module: hr_recruitment #: view:hr.applicant:0 @@ -51,11 +53,13 @@ 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 sırasında, durum çubuğu veya kanban görünümünde, örneğin " +"görünmezgörüntülemek için bu aşamada herhangi bir kayıt yoktur." #. module: hr_recruitment #: model:hr.recruitment.degree,name:hr_recruitment.degree_graduate msgid "Graduate" -msgstr "lisansüstü" +msgstr "Lisansüstü" #. module: hr_recruitment #: view:hr.applicant:0 @@ -174,7 +178,7 @@ msgstr "" #: 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 "Uygulamalar" +msgstr "Başvurular" #. module: hr_recruitment #: field:hr.applicant,day_open:0 @@ -201,12 +205,12 @@ msgstr "Gün" #: view:hr.recruitment.partner.create:0 #: model:ir.actions.act_window,name:hr_recruitment.action_hr_recruitment_partner_create msgid "Create Contact" -msgstr "Sözleşme Oluştur" +msgstr "Kontak Oluştur" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Refuse" -msgstr "reddetme" +msgstr "Reddet" #. module: hr_recruitment #: model:hr.recruitment.degree,name:hr_recruitment.degree_licenced @@ -244,7 +248,7 @@ msgstr "Doktora Derecesi" #: field:hr.applicant,job_id:0 #: field:hr.recruitment.report,job_id:0 msgid "Applied Job" -msgstr "Uygulanan İş" +msgstr "Başvurulan İş" #. module: hr_recruitment #: help:hr.recruitment.stage,department_id:0 @@ -318,12 +322,12 @@ msgstr "Önerilen Maaş" #: view:hr.recruitment.report:0 #: field:hr.recruitment.report,partner_id:0 msgid "Partner" -msgstr "Partner" +msgstr "İş Ortağı" #. module: hr_recruitment #: view:hr.recruitment.report:0 msgid "Avg Proposed Salary" -msgstr "Ort Maaş Önerilen" +msgstr "Ort Önerilen Maaş" #. module: hr_recruitment #: view:hr.applicant:0 @@ -351,7 +355,7 @@ msgstr "Partnere Dönüştür" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_recruitment_report msgid "Recruitments Statistics" -msgstr "İşe alımlarda İstatistikleri" +msgstr "İşe Alım İstatistikleri" #. module: hr_recruitment #: view:hr.applicant:0 @@ -377,7 +381,7 @@ msgstr "Kaynak" #. module: hr_recruitment #: field:hr.applicant,message_follower_ids:0 msgid "Followers" -msgstr "Takipçiler" +msgstr "İzleyiciler" #. module: hr_recruitment #: model:hr.recruitment.source,name:hr_recruitment.source_monster @@ -392,7 +396,7 @@ msgstr "" #. module: hr_recruitment #: field:hr.applicant,email_from:0 msgid "Email" -msgstr "" +msgstr "E-mail" #. module: hr_recruitment #: model:ir.actions.act_window,help:hr_recruitment.hr_job_stage_act @@ -407,6 +411,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Işe alım sürecinde yeni bir aşamaya eklemek için tıklayın.\n" +"

\n" +" burada işe alım sürecinin sizin aşamalarında tanımlayın örnek:\n" +" qualification call, first interview, second interview, refused,\n" +" hired.\n" +"

\n" +" " #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -424,6 +436,8 @@ msgid "" "Email alias for this job position. New emails will automatically create new " "applicants for this job position." msgstr "" +"Bu iş pozisyonu için e-posta takma adı. Bu iş pozisyonu için başvuruda yeni " +"e-posta otomatik olarak oluşturur." #. module: hr_recruitment #: selection:hr.applicant,priority:0 @@ -499,7 +513,7 @@ msgstr "Temmuz" #. module: hr_recruitment #: field:hr.applicant,email_cc:0 msgid "Watchers Emails" -msgstr "" +msgstr "İzleyici E-postalar" #. module: hr_recruitment #: view:hr.applicant:0 @@ -537,7 +551,7 @@ msgstr "Kontak" #. module: hr_recruitment #: help:hr.applicant,salary_expected_extra:0 msgid "Salary Expected by Applicant, extra advantages" -msgstr "Başvuru, ekstra avantajlar Beklenen Maaş" +msgstr "Başvuru, ekstra avantajları Beklenen Maaş" #. module: hr_recruitment #: help:hr.applicant,state:0 @@ -589,7 +603,7 @@ msgstr "" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Jobs - Recruitment Form" -msgstr "" +msgstr "İşler - İşe Alım Formu" #. module: hr_recruitment #: field:hr.applicant,probability:0 @@ -625,7 +639,7 @@ msgstr "Etiketler" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_applicant_category msgid "Category of applicant" -msgstr "Başvuru Kategori" +msgstr "Başvuru Kategorisi" #. module: hr_recruitment #: view:hr.recruitment.report:0 @@ -678,7 +692,7 @@ msgstr "Toplantı Takvimi" #. module: hr_recruitment #: field:hr.applicant,partner_name:0 msgid "Applicant's Name" -msgstr "Başvuru Adı" +msgstr "Başvuranın Adı" #. module: hr_recruitment #: selection:hr.applicant,priority:0 @@ -775,7 +789,7 @@ msgstr "Bu başvuru görüşmesi için planlayın" #: code:addons/hr_recruitment/hr_recruitment.py:407 #, python-format msgid "Applicant created" -msgstr "Başvuru oluşturuldu " +msgstr "Başvuru oluşturuldu" #. module: hr_recruitment #: view:hr.applicant:0 @@ -800,12 +814,12 @@ msgstr "Haziran" #. module: hr_recruitment #: field:hr.applicant,day_close:0 msgid "Days to Close" -msgstr "" +msgstr "Kapanış Günü" #. module: hr_recruitment #: field:hr.applicant,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçisi mi" +msgstr "Bir İzleyicidir" #. module: hr_recruitment #: field:hr.recruitment.report,user_id:0 @@ -841,6 +855,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Işe alım sürecinde yeni bir aşamaya eklemek için tıklayın.\n" +"

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

\n" +" " #. module: hr_recruitment #: field:hr.applicant,response:0 @@ -855,7 +877,7 @@ msgstr "Ekim" #. module: hr_recruitment #: field:hr.config.settings,module_document_ftp:0 msgid "Allow the automatic indexation of resumes" -msgstr "" +msgstr "Özgeçmişi otomatik endekslemeye izin ver" #. module: hr_recruitment #: field:hr.applicant,salary_proposed_extra:0 @@ -871,7 +893,7 @@ msgstr "Ocak" #: 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 "" +msgstr "Bu kişi zaten aynı ad ile mevcut." #. module: hr_recruitment #: model:ir.actions.act_window,name:hr_recruitment.hr_recruitment_stage_form_installer @@ -958,6 +980,7 @@ msgstr "İptal" #: view:hr.recruitment.partner.create:0 msgid "Are you sure you want to create a contact based on this job request ?" msgstr "" +"Bu iş talebi üzerine bir kişi oluşturmak için istediğinizden emin misiniz?" #. module: hr_recruitment #: help:hr.config.settings,fetchmail_applicants:0 @@ -966,6 +989,9 @@ msgid "" "(jobs@mycompany.com),\n" " and create automatically application documents in the system." msgstr "" +"Başvuru e-posta adresine onların iş başvurusu göndermesine izin ver " +"(jobs@mycompany.com),\n" +" ve sistemde başvuru belgelerini otomatik olarak oluşturma." #. module: hr_recruitment #: view:hr.applicant:0 @@ -1061,7 +1087,7 @@ msgstr "Açıklama" #. module: hr_recruitment #: model:mail.message.subtype,name:hr_recruitment.mt_stage_changed msgid "Stage Changed" -msgstr "Durmu Değişti" +msgstr "Durumu Değişti" #. module: hr_recruitment #: selection:hr.recruitment.report,month:0 @@ -1071,7 +1097,7 @@ msgstr "Mayıs" #. module: hr_recruitment #: model:hr.recruitment.stage,name:hr_recruitment.stage_job5 msgid "Contract Signed" -msgstr "Sözleşmeyi İmzaladı" +msgstr "Sözleşme İmzaladı" #. module: hr_recruitment #: model:hr.recruitment.source,name:hr_recruitment.source_word @@ -1081,7 +1107,7 @@ msgstr "Ağızdan Duyma" #. module: hr_recruitment #: field:hr.recruitment.stage,fold:0 msgid "Hide in views if empty" -msgstr "" +msgstr "Boş ise görünümlerinide gizle" #. module: hr_recruitment #: help:hr.config.settings,module_document_ftp:0 @@ -1098,7 +1124,7 @@ msgstr "" #: model:hr.recruitment.stage,name:hr_recruitment.stage_job6 #: selection:hr.recruitment.stage,state:0 msgid "Refused" -msgstr "RedEdilen" +msgstr "RedEdildi" #. module: hr_recruitment #: selection:hr.applicant,state:0 @@ -1111,7 +1137,7 @@ msgstr "Gizlenen" #. module: hr_recruitment #: field:hr.applicant,reference:0 msgid "Referred By" -msgstr "Refransıyla" +msgstr "Referansı" #. module: hr_recruitment #: view:hr.applicant:0 @@ -1122,22 +1148,22 @@ msgstr "Departemen:" #: selection:hr.applicant,priority:0 #: selection:hr.recruitment.report,priority:0 msgid "On Average" -msgstr "" +msgstr "Orta" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_recruitment_degree msgid "Degree of Recruitment" -msgstr "" +msgstr "İşe Alım Derecesi" #. module: hr_recruitment #: field:hr.recruitment.report,salary_prop_avg:0 msgid "Avg. Proposed Salary" -msgstr "" +msgstr "Ort. Önerilen Maaş" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Open Jobs" -msgstr "" +msgstr "Açık İşler" #. module: hr_recruitment #: selection:hr.recruitment.report,month:0 @@ -1165,12 +1191,12 @@ msgstr "Kasım" #. module: hr_recruitment #: field:hr.recruitment.report,salary_exp_avg:0 msgid "Avg. Expected Salary" -msgstr "" +msgstr "Ort. Beklenen Maaş" #. module: hr_recruitment #: view:hr.recruitment.report:0 msgid "Avg Expected Salary" -msgstr "" +msgstr "Ort. Beklenen Maaş" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_recruitment_partner_create @@ -1180,17 +1206,17 @@ msgstr "" #. module: hr_recruitment #: help:hr.applicant,email_from:0 msgid "These people will receive email." -msgstr "" +msgstr "Bu insanlardan e-posta alacaksınız." #. module: hr_recruitment #: field:hr.job,alias_id:0 msgid "Alias" -msgstr "" +msgstr "Takma adı" #. module: hr_recruitment #: view:hr.recruitment.report:0 msgid "Pending recruitment" -msgstr "Beklemeyen iş-alım" +msgstr "Bekleyen iş-alım" #. module: hr_recruitment #: view:hr.applicant:0 @@ -1241,7 +1267,7 @@ msgstr "Atanmamış İşe-Alımlar" #. module: hr_recruitment #: model:ir.model,name:hr_recruitment.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr_recruitment #: help:hr.recruitment.stage,state:0 @@ -1255,7 +1281,7 @@ msgstr "" #. module: hr_recruitment #: help:hr.applicant,salary_proposed_extra:0 msgid "Salary Proposed by the Organisation, extra advantages" -msgstr "" +msgstr "Organizasyon tarafından önerilen maaş, ekstra avantajları" #. module: hr_recruitment #: help:hr.recruitment.report,delay_close:0 @@ -1270,12 +1296,12 @@ msgstr "Açık" #. module: hr_recruitment #: view:board.board:0 msgid "Applications to be Processed" -msgstr "" +msgstr "İşlenmiş Başvurular" #. module: hr_recruitment #: view:hr.applicant:0 msgid "Schedule Interview" -msgstr "" +msgstr "Görüşme Programı" #~ msgid "# of Cases" #~ msgstr "Vak'aların sayısı" diff --git a/addons/hr_recruitment/i18n/vi.po b/addons/hr_recruitment/i18n/vi.po index 4b19aaca2b8..4cac8608016 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 10c1b525345..d85055359b4 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 ef235c4b435..4d388ab8f7a 100644 --- a/addons/hr_timesheet/i18n/ar.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -190,10 +190,10 @@ msgid "Costs and Revenues" msgstr "التكاليف والأرباح" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -287,7 +287,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "حدد مهمة الموظف كمنتج مع نوع ‘خدمة‘." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -300,7 +300,7 @@ msgid "Total cost" msgstr "التكلفة الكلية" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -413,7 +413,7 @@ msgid "August" msgstr "أغسطس" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -606,7 +606,7 @@ msgid "Sign Out By Project" msgstr "سجل خروج من المشروع" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/bg.po b/addons/hr_timesheet/i18n/bg.po index 6f078654bef..76fdb20eb90 100644 --- a/addons/hr_timesheet/i18n/bg.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -187,10 +187,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -284,7 +284,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -297,7 +297,7 @@ msgid "Total cost" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -408,7 +408,7 @@ msgid "August" msgstr "Август" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -598,7 +598,7 @@ msgid "Sign Out By Project" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/bs.po b/addons/hr_timesheet/i18n/bs.po index 0d8dbc19a38..2eeccc2d85d 100644 --- a/addons/hr_timesheet/i18n/bs.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -187,10 +187,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -284,7 +284,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -297,7 +297,7 @@ msgid "Total cost" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -408,7 +408,7 @@ msgid "August" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -598,7 +598,7 @@ msgid "Sign Out By Project" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/ca.po b/addons/hr_timesheet/i18n/ca.po index 5f27bf0b185..5ae87b94fc5 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -192,10 +192,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -290,7 +290,7 @@ msgstr "" "Especifica la designació de l'empleat com un producte de tipus 'servei'." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -303,7 +303,7 @@ msgid "Total cost" msgstr "Cost total" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -414,7 +414,7 @@ msgid "August" msgstr "Agost" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -608,7 +608,7 @@ msgid "Sign Out By Project" msgstr "Surt d'un projecte" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/cs.po b/addons/hr_timesheet/i18n/cs.po index 9371cbefd61..37fd33b9b65 100644 --- a/addons/hr_timesheet/i18n/cs.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\n" #. module: hr_timesheet @@ -192,10 +192,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -289,7 +289,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "Určuje zařazení zaměstnance jako výrobek s typem 'služba'." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -302,7 +302,7 @@ msgid "Total cost" msgstr "Celková cena" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -416,7 +416,7 @@ msgid "August" msgstr "Srpen" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -610,7 +610,7 @@ msgid "Sign Out By Project" msgstr "Odhlášení podle projektu" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/da.po b/addons/hr_timesheet/i18n/da.po index 714e5bc6436..6cd17b4a732 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -188,10 +188,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -285,7 +285,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -298,7 +298,7 @@ msgid "Total cost" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -409,7 +409,7 @@ msgid "August" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -599,7 +599,7 @@ msgid "Sign Out By Project" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/de.po b/addons/hr_timesheet/i18n/de.po index 7ffa955951c..c0e2b8c36a2 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -214,10 +214,10 @@ msgid "Costs and Revenues" msgstr "Kosten und Erlöse" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -325,7 +325,7 @@ msgstr "" "für den Mitarbeiter" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -341,7 +341,7 @@ msgid "Total cost" msgstr "Gesamtkosten" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -458,7 +458,7 @@ msgid "August" msgstr "August" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -655,7 +655,7 @@ msgid "Sign Out By Project" msgstr "Abmeldung von Projekt" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/el.po b/addons/hr_timesheet/i18n/el.po index f92ee2d3daf..d68b9baa44d 100644 --- a/addons/hr_timesheet/i18n/el.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" @@ -190,10 +190,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -287,7 +287,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -300,7 +300,7 @@ msgid "Total cost" msgstr "Συνολικό Κόστος" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -411,7 +411,7 @@ msgid "August" msgstr "Αύγουστος" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -601,7 +601,7 @@ msgid "Sign Out By Project" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/en_GB.po b/addons/hr_timesheet/i18n/en_GB.po index 1a8d6283956..ff84510d075 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -213,10 +213,10 @@ msgid "Costs and Revenues" msgstr "Costs and Revenues" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -321,7 +321,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "Specifies employee's designation as a product with type 'service'." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -336,7 +336,7 @@ msgid "Total cost" msgstr "Total cost" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -452,7 +452,7 @@ msgid "August" msgstr "August" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -648,7 +648,7 @@ msgid "Sign Out By Project" msgstr "Sign Out By Project" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/es.po b/addons/hr_timesheet/i18n/es.po index f81e7d14488..1c2d3a03513 100644 --- a/addons/hr_timesheet/i18n/es.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -210,10 +210,10 @@ msgid "Costs and Revenues" msgstr "Costes e ingresos" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -317,7 +317,7 @@ msgstr "" "Especifica la designación del empleado como un producto de tipo 'servicio'." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -332,7 +332,7 @@ msgid "Total cost" msgstr "Coste total" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -449,7 +449,7 @@ msgid "August" msgstr "Agosto" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -645,7 +645,7 @@ msgid "Sign Out By Project" msgstr "Salir de un proyecto" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/es_AR.po b/addons/hr_timesheet/i18n/es_AR.po index 6570b12c09c..54fc9a01427 100644 --- a/addons/hr_timesheet/i18n/es_AR.po +++ b/addons/hr_timesheet/i18n/es_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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -187,10 +187,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -284,7 +284,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -297,7 +297,7 @@ msgid "Total cost" msgstr "Costo total" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -408,7 +408,7 @@ msgid "August" msgstr "Agosto" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -598,7 +598,7 @@ msgid "Sign Out By Project" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/es_CR.po b/addons/hr_timesheet/i18n/es_CR.po index 817e347ca1c..bd72e6db628 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -192,10 +192,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -290,7 +290,7 @@ msgstr "" "Especifica la designación del empleado como un producto de tipo 'servicio'." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -303,7 +303,7 @@ msgid "Total cost" msgstr "Coste total" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -418,7 +418,7 @@ msgid "August" msgstr "Agosto" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -612,7 +612,7 @@ msgid "Sign Out By Project" msgstr "Salir de un proyecto" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/es_EC.po b/addons/hr_timesheet/i18n/es_EC.po index 4b6185884f1..b2c048625e0 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -192,10 +192,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -290,7 +290,7 @@ msgstr "" "Especifica la designación del empleado como un producto de tipo 'servicio'." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -303,7 +303,7 @@ msgid "Total cost" msgstr "Coste total" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -417,7 +417,7 @@ msgid "August" msgstr "Agosto" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -611,7 +611,7 @@ msgid "Sign Out By Project" msgstr "Salir de un proyecto" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/et.po b/addons/hr_timesheet/i18n/et.po index 554ac6a60a8..63838eb8535 100644 --- a/addons/hr_timesheet/i18n/et.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -187,10 +187,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -284,7 +284,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -297,7 +297,7 @@ msgid "Total cost" msgstr "Kogukulu" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -408,7 +408,7 @@ msgid "August" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -598,7 +598,7 @@ msgid "Sign Out By Project" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/fi.po b/addons/hr_timesheet/i18n/fi.po index 52587f2eed2..5357c2b103b 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -188,10 +188,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -285,7 +285,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "Määritä tuote työntekijälle. Tuotteen tyyppi 'palvelu'." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -298,7 +298,7 @@ msgid "Total cost" msgstr "Lopullinen kustannus" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -409,7 +409,7 @@ msgid "August" msgstr "Elokuu" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -599,7 +599,7 @@ msgid "Sign Out By Project" msgstr "Kijraudu ulos projektilta" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/fr.po b/addons/hr_timesheet/i18n/fr.po index 36d8deca9c7..35902e66263 100644 --- a/addons/hr_timesheet/i18n/fr.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #~ msgid "Error: UOS must be in a different category than the UOM" #~ msgstr "Erreur : l'UdV doit appartenir à une autre catégorie que l'UdM" @@ -78,7 +78,7 @@ msgstr "" #. module: hr_timesheet #: field:hr.employee,uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Unité de mesure" #. module: hr_timesheet #: field:hr.employee,journal_id:0 @@ -106,7 +106,7 @@ msgstr "Feuille de temps" #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Please define employee for this user!" -msgstr "" +msgstr "SVP Veuillez définir l'employé pour cet utilisateur!" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:44 @@ -132,7 +132,7 @@ msgstr "Ven." #: 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 "Activités des feuilles de temps" #. module: hr_timesheet #: field:hr.sign.out.project,analytic_amount:0 @@ -169,12 +169,12 @@ msgstr "Imprimer la feuille de temps des employés" #: code:addons/hr_timesheet/wizard/hr_timesheet_sign_in_out.py:132 #, python-format msgid "Please define employee for your user." -msgstr "" +msgstr "SVP Définissez l'employé pour cet utilisateur." #. module: hr_timesheet #: model:ir.actions.act_window,name:hr_timesheet.act_analytic_cost_revenue msgid "Costs & Revenues" -msgstr "" +msgstr "Coûts & revenus" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:44 @@ -191,17 +191,17 @@ msgstr "Compte analytique" #. module: hr_timesheet #: view:account.analytic.account:0 msgid "Costs and Revenues" -msgstr "" +msgstr "Coûts et revenus" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" -msgstr "" +msgstr "Avertissement!" #. module: hr_timesheet #: field:hr.analytic.timesheet,partner_id:0 @@ -257,7 +257,7 @@ msgstr "Imprimer" #. module: hr_timesheet #: help:account.analytic.account,use_timesheets:0 msgid "Check this field if this project manages timesheets" -msgstr "" +msgstr "Cochez ce champ si ce projet gère les feuilles de temps" #. module: hr_timesheet #: view:hr.analytical.timesheet.users:0 @@ -283,7 +283,7 @@ msgstr "Date de début" #: code:addons/hr_timesheet/wizard/hr_timesheet_sign_in_out.py:77 #, python-format msgid "Please define cost unit for this employee." -msgstr "" +msgstr "SVP Définissez le coût unitaire pour cet employé." #. module: hr_timesheet #: help:hr.employee,product_id:0 @@ -292,7 +292,7 @@ msgstr "" "Définit la qualification d'un employé comme un produit de type 'service'." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -305,7 +305,7 @@ msgid "Total cost" msgstr "Coût total" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -352,7 +352,7 @@ msgstr "Description du travail" #: view:hr.sign.in.project:0 #: view:hr.sign.out.project:0 msgid "or" -msgstr "" +msgstr "ou" #. module: hr_timesheet #: xsl:hr.analytical.timesheet:0 @@ -419,7 +419,7 @@ msgid "August" msgstr "août" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -439,7 +439,7 @@ msgstr "juin" #: field:hr.sign.in.project,state:0 #: field:hr.sign.out.project,state:0 msgid "Current Status" -msgstr "" +msgstr "Statut actuel" #. module: hr_timesheet #: view:hr.analytic.timesheet:0 @@ -506,7 +506,7 @@ msgstr "Identifiant de l'employé" #. module: hr_timesheet #: view:hr.analytical.timesheet.users:0 msgid "Period" -msgstr "" +msgstr "Période" #. module: hr_timesheet #: view:hr.sign.out.project:0 @@ -614,7 +614,7 @@ msgid "Sign Out By Project" msgstr "Sortie par projet" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " @@ -649,7 +649,7 @@ msgstr "avril" #: code:addons/hr_timesheet/wizard/hr_timesheet_sign_in_out.py:132 #, python-format msgid "User Error!" -msgstr "" +msgstr "Erreur utilisateur!" #. module: hr_timesheet #: view:hr.sign.in.project:0 @@ -665,7 +665,7 @@ msgstr "Année" #. module: hr_timesheet #: view:hr.analytic.timesheet:0 msgid "Duration" -msgstr "" +msgstr "Durée" #. module: hr_timesheet #: view:hr.analytic.timesheet:0 diff --git a/addons/hr_timesheet/i18n/gl.po b/addons/hr_timesheet/i18n/gl.po index 683ea27a5a0..ece12506623 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -192,10 +192,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -290,7 +290,7 @@ msgstr "" "Especifica a designación do empregado como un produto de tipo 'servizo'." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -303,7 +303,7 @@ msgid "Total cost" msgstr "Custo total" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -414,7 +414,7 @@ msgid "August" msgstr "Agosto" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -608,7 +608,7 @@ msgid "Sign Out By Project" msgstr "Saír dun proxecto" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/hr.po b/addons/hr_timesheet/i18n/hr.po index 10e3a9e4c50..8ae370339be 100644 --- a/addons/hr_timesheet/i18n/hr.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: hr\n" #. module: hr_timesheet @@ -188,10 +188,10 @@ msgid "Costs and Revenues" msgstr "Troškovi i prihodi" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -285,7 +285,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -298,7 +298,7 @@ msgid "Total cost" msgstr "Ukupni trošak" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -409,7 +409,7 @@ msgid "August" msgstr "Kolovoz" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -599,7 +599,7 @@ msgid "Sign Out By Project" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/hu.po b/addons/hr_timesheet/i18n/hu.po index f0978f7f4e3..7b7482a49db 100644 --- a/addons/hr_timesheet/i18n/hu.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -213,10 +213,10 @@ msgid "Costs and Revenues" msgstr "Költségek és Árbevételek" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -324,7 +324,7 @@ msgstr "" "ki." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -340,7 +340,7 @@ msgid "Total cost" msgstr "Összes költség" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -457,7 +457,7 @@ msgid "August" msgstr "Augusztus" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -653,7 +653,7 @@ msgid "Sign Out By Project" msgstr "Kijelentkezés a projektből" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/id.po b/addons/hr_timesheet/i18n/id.po index 0c27902ab4a..3ee386ad065 100644 --- a/addons/hr_timesheet/i18n/id.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -187,10 +187,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -284,7 +284,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -297,7 +297,7 @@ msgid "Total cost" msgstr "Total biaya" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -408,7 +408,7 @@ msgid "August" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -598,7 +598,7 @@ msgid "Sign Out By Project" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/it.po b/addons/hr_timesheet/i18n/it.po index 042ebbbd108..872106f890b 100644 --- a/addons/hr_timesheet/i18n/it.po +++ b/addons/hr_timesheet/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-15 14:49+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -191,10 +191,10 @@ msgid "Costs and Revenues" msgstr "Costi e ricavi" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -289,7 +289,7 @@ msgstr "" "Specifica la designazione dell'impiegato come un prodotto di tipo servizio." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -305,7 +305,7 @@ msgid "Total cost" msgstr "Costo Totale" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -422,7 +422,7 @@ msgid "August" msgstr "Agosto" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -618,7 +618,7 @@ msgid "Sign Out By Project" msgstr "Uscita per Progetto" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/ja.po b/addons/hr_timesheet/i18n/ja.po index 74160bca386..4cc830d8df1 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -190,10 +190,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -287,7 +287,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "従業員の割当てを「サービス」という製品項目で指定する。" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -300,7 +300,7 @@ msgid "Total cost" msgstr "経費の合計" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -411,7 +411,7 @@ msgid "August" msgstr "8月" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -603,7 +603,7 @@ msgid "Sign Out By Project" msgstr "プロジェクトをサインアウト" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/ko.po b/addons/hr_timesheet/i18n/ko.po index 6b8d4a69222..454e5c3fa27 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -188,10 +188,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -285,7 +285,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -298,7 +298,7 @@ msgid "Total cost" msgstr "총 원가" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -409,7 +409,7 @@ msgid "August" msgstr "8월" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -599,7 +599,7 @@ msgid "Sign Out By Project" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/lt.po b/addons/hr_timesheet/i18n/lt.po index d7883a3898f..62c95ba3ab0 100644 --- a/addons/hr_timesheet/i18n/lt.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -187,10 +187,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -284,7 +284,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -297,7 +297,7 @@ msgid "Total cost" msgstr "Bendros sąnaudos" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -408,7 +408,7 @@ msgid "August" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -598,7 +598,7 @@ msgid "Sign Out By Project" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/lv.po b/addons/hr_timesheet/i18n/lv.po index 8431bf26b1b..c5750d2a8be 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -191,10 +191,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -288,7 +288,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "Definē sistēmā darbinieku kā produktu, kura tips ir \"serviss\"." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -301,7 +301,7 @@ msgid "Total cost" msgstr "Kopējās izmaksas" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -412,7 +412,7 @@ msgid "August" msgstr "Augusts" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -605,7 +605,7 @@ msgid "Sign Out By Project" msgstr "Iziet Projekta Ietvaros" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/mk.po b/addons/hr_timesheet/i18n/mk.po index 77d481d44a7..a280d945fd2 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -94,7 +94,7 @@ msgstr "" "Вработените може да го кодираат времето поминато на различни проекти. " "Проектот е аналитичка сметка и времето поминато на проектот генерира трошоци " "на аналитичката сметка. Оваа карактеристика овозможува снимање во исто време " -"и на присуството и на распоредот." +"и на присуството и на временската таблица." #. module: hr_timesheet #: field:hr.employee,uom_id:0 @@ -104,7 +104,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 +115,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 +153,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 +163,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 +184,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 @@ -215,10 +215,10 @@ msgid "Costs and Revenues" msgstr "Трошоци и Приходи" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -274,7 +274,7 @@ msgstr "" " Можете да ги регистрирате и следите вашите работни часови по " "проект секој ден.\n" " Секое врема поминато на проект ќе стане трошок во \n" -" аналитичкот сметководство/договорот и може да биде повторно " +" аналитичкто сметководство/договорот и може да биде повторно " "фактурирано на\n" " клиентите доколку е потребно.\n" "

\n" @@ -289,12 +289,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 @@ -323,14 +324,15 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" "Please set one or we cannot automatically fill the timesheet." msgstr "" "Нема дефинирано аналитичка сметка за проектот.\n" -"Подесете ја или нема да можеме автоматски да го пополниме распоредот." +"Подесете ја или нема да можеме автоматски да ја пополниме временската " +"таблица." #. module: hr_timesheet #: view:hr.analytic.timesheet:0 @@ -338,7 +340,7 @@ msgid "Total cost" msgstr "Вкупен трошок" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -392,12 +394,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 +428,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 @@ -454,7 +456,7 @@ msgid "August" msgstr "Август" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -531,7 +533,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 +566,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 +590,7 @@ msgstr "" "Вработените може да го кодираат времето поминато на различни проекти на кои " "се назначени. Проектот е аналитичка сметка и времето поминато на проектот " "генерира трошоци на аналитичката сметка. Оваа карактеристика овозможува " -"снимање во исто време и на присуството и на распоредот." +"снимање во исто време и на присуството и на временската таблица." #. module: hr_timesheet #: field:hr.sign.in.project,server_date:0 @@ -598,7 +601,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 @@ -650,7 +653,7 @@ msgid "Sign Out By Project" msgstr "Одјава по проект" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/mn.po b/addons/hr_timesheet/i18n/mn.po index e848d21f666..66125b8e808 100644 --- a/addons/hr_timesheet/i18n/mn.po +++ b/addons/hr_timesheet/i18n/mn.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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -211,10 +211,10 @@ msgid "Costs and Revenues" msgstr "Өртөг болон Орлого" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -318,7 +318,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "Ажилтны албан тушаалыг 'Үйлчилгээ' төрлийн бараа шиг тодорхойлно." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -333,7 +333,7 @@ msgid "Total cost" msgstr "Нийт өртөг" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -449,7 +449,7 @@ msgid "August" msgstr "8 сар" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -645,7 +645,7 @@ msgid "Sign Out By Project" msgstr "Гарсан үйлдлийг төслөөр харах" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/nb.po b/addons/hr_timesheet/i18n/nb.po index 12926eb2502..b9d904f83e9 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -191,10 +191,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -288,7 +288,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "Angir ansattes betegnelse som et produkt med type \"service\"." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -301,7 +301,7 @@ msgid "Total cost" msgstr "Totalkostnad" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -415,7 +415,7 @@ msgid "August" msgstr "August" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -610,7 +610,7 @@ msgid "Sign Out By Project" msgstr "Logg ut av prosjekt." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/nl.po b/addons/hr_timesheet/i18n/nl.po index 1387f7ddfb3..00ad1f05145 100644 --- a/addons/hr_timesheet/i18n/nl.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -212,10 +212,10 @@ msgid "Costs and Revenues" msgstr "Kosten en opbrengsten" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -270,7 +270,7 @@ msgstr "" "

\n" " U kunt uw gewerkte uren per dag per project registreren en " "volgen.\n" -" Elke tijd besteed aan een projectgeeft kosten op de " +" Elke tijd besteed aan een project geeft kosten op de " "kostenplaats/contract\n" " en kan, indien nodig, worden doorberekend aan de klant.\n" "

\n" @@ -320,7 +320,7 @@ msgstr "" "Specificeert de naam van de werknemer als product van het type 'dienst'." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -335,7 +335,7 @@ msgid "Total cost" msgstr "Totale kosten" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -452,7 +452,7 @@ msgid "August" msgstr "Augustus" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -648,7 +648,7 @@ msgid "Sign Out By Project" msgstr "Uitklokken op project" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/pl.po b/addons/hr_timesheet/i18n/pl.po index 45a3d7e5948..3de82dbc7ee 100644 --- a/addons/hr_timesheet/i18n/pl.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -190,10 +190,10 @@ msgid "Costs and Revenues" msgstr "Koszty i przychody" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -287,7 +287,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "Określa powiązanie pracownika z produktem typu 'usługa'." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -300,7 +300,7 @@ msgid "Total cost" msgstr "Suma kasztów" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -413,7 +413,7 @@ msgid "August" msgstr "Sierpień" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -606,7 +606,7 @@ msgid "Sign Out By Project" msgstr "Wyjście wg projektu" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/pt.po b/addons/hr_timesheet/i18n/pt.po index dee326a87ef..9d8207a0410 100644 --- a/addons/hr_timesheet/i18n/pt.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -191,10 +191,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -289,7 +289,7 @@ msgstr "" "Especifica a designação do Funcionário como um artigo com 'serviço' tipo." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -302,7 +302,7 @@ msgid "Total cost" msgstr "Custo total" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -416,7 +416,7 @@ msgid "August" msgstr "Agosto" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -611,7 +611,7 @@ msgid "Sign Out By Project" msgstr "Sign Out por Projeto" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/pt_BR.po b/addons/hr_timesheet/i18n/pt_BR.po index b909278f506..5b38e701395 100644 --- a/addons/hr_timesheet/i18n/pt_BR.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -214,10 +214,10 @@ msgid "Costs and Revenues" msgstr "Custos e Receitas" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -323,7 +323,7 @@ msgstr "" "Especifica a designação do funcionário como um produto do tipo \"serviço\"." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -338,7 +338,7 @@ msgid "Total cost" msgstr "Custo total" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -455,7 +455,7 @@ msgid "August" msgstr "Agosto" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -651,7 +651,7 @@ msgid "Sign Out By Project" msgstr "Saídas por Projeto" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/ro.po b/addons/hr_timesheet/i18n/ro.po index e1e20fd420b..a95695f5f99 100644 --- a/addons/hr_timesheet/i18n/ro.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -214,10 +214,10 @@ msgid "Costs and Revenues" msgstr "Costuri si Venituri" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -322,7 +322,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "Specifica numirea angajatului drept un produs de tipul 'servici'." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -338,7 +338,7 @@ msgid "Total cost" msgstr "Cost total" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -456,7 +456,7 @@ msgid "August" msgstr "August" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -652,7 +652,7 @@ msgid "Sign Out By Project" msgstr "Pontaj la iesire dupa Proiect" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/ru.po b/addons/hr_timesheet/i18n/ru.po index 64176899a3b..7be9946b82b 100644 --- a/addons/hr_timesheet/i18n/ru.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -97,13 +97,13 @@ msgstr "Табель сотрудника" #: 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 #, python-format msgid "Please define employee for this user!" -msgstr "" +msgstr "Пожалуйста, определите сотрудника для данного пользователя!" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:44 @@ -166,12 +166,12 @@ msgstr "Распечатать табель сотрудника" #: code:addons/hr_timesheet/wizard/hr_timesheet_sign_in_out.py:132 #, python-format msgid "Please define employee for your user." -msgstr "" +msgstr "Пожалуйста, определите сотрудника для данного пользователя." #. module: hr_timesheet #: model:ir.actions.act_window,name:hr_timesheet.act_analytic_cost_revenue msgid "Costs & Revenues" -msgstr "" +msgstr "Расходы и доходы" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:44 @@ -188,17 +188,17 @@ msgstr "Счет аналитики" #. module: hr_timesheet #: view:account.analytic.account:0 msgid "Costs and Revenues" -msgstr "" +msgstr "Расходы и доходы" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" -msgstr "" +msgstr "Предупреждение!" #. module: hr_timesheet #: field:hr.analytic.timesheet,partner_id:0 @@ -288,7 +288,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -301,7 +301,7 @@ msgid "Total cost" msgstr "Общая стоимость" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -348,7 +348,7 @@ msgstr "Описание работ" #: view:hr.sign.in.project:0 #: view:hr.sign.out.project:0 msgid "or" -msgstr "" +msgstr "или" #. module: hr_timesheet #: xsl:hr.analytical.timesheet:0 @@ -387,7 +387,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 @@ -412,7 +412,7 @@ msgid "August" msgstr "Август" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -498,7 +498,7 @@ msgstr "ID сотрудника" #. module: hr_timesheet #: view:hr.analytical.timesheet.users:0 msgid "Period" -msgstr "" +msgstr "Период" #. module: hr_timesheet #: view:hr.sign.out.project:0 @@ -606,7 +606,7 @@ msgid "Sign Out By Project" msgstr "Выход от проекта" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " @@ -641,7 +641,7 @@ msgstr "Апрель" #: code:addons/hr_timesheet/wizard/hr_timesheet_sign_in_out.py:132 #, python-format msgid "User Error!" -msgstr "" +msgstr "Ошибка пользователя!" #. module: hr_timesheet #: view:hr.sign.in.project:0 @@ -657,7 +657,7 @@ msgstr "Год" #. module: hr_timesheet #: view:hr.analytic.timesheet:0 msgid "Duration" -msgstr "" +msgstr "Продолжительность" #. module: hr_timesheet #: view:hr.analytic.timesheet:0 diff --git a/addons/hr_timesheet/i18n/sl.po b/addons/hr_timesheet/i18n/sl.po index 44c701ba8bb..10f90382ee1 100644 --- a/addons/hr_timesheet/i18n/sl.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -187,10 +187,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -284,7 +284,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -297,7 +297,7 @@ msgid "Total cost" msgstr "Skupni strošek" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -408,7 +408,7 @@ msgid "August" msgstr "avgust" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -598,7 +598,7 @@ msgid "Sign Out By Project" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/sq.po b/addons/hr_timesheet/i18n/sq.po index 8f0fa7b90e2..ca666cc7e50 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -188,10 +188,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -285,7 +285,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -298,7 +298,7 @@ msgid "Total cost" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -409,7 +409,7 @@ msgid "August" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -599,7 +599,7 @@ msgid "Sign Out By Project" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/sr@latin.po b/addons/hr_timesheet/i18n/sr@latin.po index 9cb5ce29a47..bd5d649a009 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -188,10 +188,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -285,7 +285,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -298,7 +298,7 @@ msgid "Total cost" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -409,7 +409,7 @@ msgid "August" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -599,7 +599,7 @@ msgid "Sign Out By Project" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/sv.po b/addons/hr_timesheet/i18n/sv.po index 12b4edd28fd..80872464593 100644 --- a/addons/hr_timesheet/i18n/sv.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -190,10 +190,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -287,7 +287,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "Anger den anställda som en produkt av typen 'tjänst'" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -300,7 +300,7 @@ msgid "Total cost" msgstr "Total kostnad" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -414,7 +414,7 @@ msgid "August" msgstr "August" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -607,7 +607,7 @@ msgid "Sign Out By Project" msgstr "Logga utper projekt" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/th.po b/addons/hr_timesheet/i18n/th.po index 146c1df4146..6814c7e047c 100644 --- a/addons/hr_timesheet/i18n/th.po +++ b/addons/hr_timesheet/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-06-18 05:46+0000\n" -"X-Generator: Launchpad (build 16673)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\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 42b6dbcff47..e365e17f4ba 100644 --- a/addons/hr_timesheet/i18n/tlh.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -187,10 +187,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -284,7 +284,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -297,7 +297,7 @@ msgid "Total cost" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -408,7 +408,7 @@ msgid "August" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -598,7 +598,7 @@ msgid "Sign Out By Project" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/tr.po b/addons/hr_timesheet/i18n/tr.po index 4d1b9a9cc8a..b2ecf3c187f 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -47,7 +47,7 @@ msgstr "" #: code:addons/hr_timesheet/report/users_timesheet.py:77 #, python-format msgid "Wed" -msgstr "Çrş" +msgstr "Çar" #. module: hr_timesheet #: view:hr.sign.out.project:0 @@ -99,7 +99,7 @@ msgstr "ZamanÇizelgesi" #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Please define employee for this user!" -msgstr "" +msgstr "Bu kullanıcı için bir personel tanımlayın!" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:44 @@ -125,7 +125,7 @@ msgstr "Cum" #: 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 "ZamanÇizelge Etkinilkeri" +msgstr "ZamanÇizelge Etkinlikleri" #. module: hr_timesheet #: field:hr.sign.out.project,analytic_amount:0 @@ -162,7 +162,7 @@ msgstr "Personel ZamanÇizelgelerini Yazdır" #: code:addons/hr_timesheet/wizard/hr_timesheet_sign_in_out.py:132 #, python-format msgid "Please define employee for your user." -msgstr "" +msgstr "Bu personel için bir kullanıcı tanımlayın." #. module: hr_timesheet #: model:ir.actions.act_window,name:hr_timesheet.act_analytic_cost_revenue @@ -187,10 +187,10 @@ msgid "Costs and Revenues" msgstr "Maliyetler & Gelir" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -240,6 +240,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kayıt etkinlikler için tıklayın.\n" +"

\n" +" You can register and track your workings hours by project " +"every\n" +" day. Every time spent on a project will become a cost in " +"the\n" +" analytic accounting/contract and can be re-invoiced to\n" +" customers if required.\n" +"

\n" +" " #. module: hr_timesheet #: view:hr.analytical.timesheet.employee:0 @@ -250,7 +261,7 @@ msgstr "Yazdır" #. module: hr_timesheet #: help:account.analytic.account,use_timesheets:0 msgid "Check this field if this project manages timesheets" -msgstr "" +msgstr "Bu proje zamançizelgeleri yönetir, bu alanı kontrol edin" #. module: hr_timesheet #: view:hr.analytical.timesheet.users:0 @@ -276,20 +287,22 @@ msgstr "Başlama Tarihi" #: code:addons/hr_timesheet/wizard/hr_timesheet_sign_in_out.py:77 #, python-format msgid "Please define cost unit for this employee." -msgstr "" +msgstr "Bu personel için maliyet birim belirtiniz." #. module: hr_timesheet #: help:hr.employee,product_id:0 msgid "Specifies employee's designation as a product with type 'service'." -msgstr "" +msgstr "Türü 'hizmet' olan bir ürünü çalışanın atamyın." #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" "Please set one or we cannot automatically fill the timesheet." msgstr "" +"proje üzerinde tanımlı analitik hesap yok.\n" +"bir tane tanımlayın veya otomatik olarak zaman çizelgesi dolduramazsınız." #. module: hr_timesheet #: view:hr.analytic.timesheet:0 @@ -297,12 +310,15 @@ msgid "Total cost" msgstr "Toplam maliyet" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" "Define an employee for the selected user and assign an 'Analytic Journal'!" msgstr "" +"personel için tanımlanan 'Analitik Yevmiye' yok %s \n" +"Seçilen kullanıcı için bir personel tanımlayın ve bir 'Analitik Yevmiye' " +"atayın!" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:41 @@ -360,7 +376,7 @@ msgstr "Personel ZamanÇizelgesi" #: model:ir.actions.act_window,name:hr_timesheet.action_hr_timesheet_sign_in #: model:ir.actions.act_window,name:hr_timesheet.action_hr_timesheet_sign_out msgid "Sign in / Sign out by project" -msgstr "Giriş / Çıkış projeden" +msgstr "Giriş/Çıkış Projeden" #. module: hr_timesheet #: model:ir.actions.act_window,name:hr_timesheet.action_define_analytic_structure @@ -377,7 +393,7 @@ msgstr "Giriş / Çıkış" #. module: hr_timesheet #: view:hr.sign.in.project:0 msgid "(Keep empty for current time)" -msgstr "" +msgstr "(Şimdiki zaman için boş tutun)" #. module: hr_timesheet #: field:account.analytic.account,use_timesheets:0 @@ -408,12 +424,14 @@ msgid "August" msgstr "Ağustos" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" "You should assign an analytic journal on the employee form." msgstr "" +"'%s' Için tanımlanmış bir analitik yevmiye yok.\n" +"Sen personel formundan bir analitik yevmiye atamalısın." #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:41 @@ -472,18 +490,18 @@ msgstr "Ocak" #: code:addons/hr_timesheet/report/users_timesheet.py:77 #, python-format msgid "Thu" -msgstr "Prş" +msgstr "Per" #. module: hr_timesheet #: view:hr.sign.in.project:0 #: view:hr.sign.out.project:0 msgid "Sign In/Out by Project" -msgstr "Giriş / Çıkş Projeden" +msgstr "Giriş/Çıkış Projeden" #. module: hr_timesheet #: model:ir.model,name:hr_timesheet.model_hr_analytical_timesheet_employee msgid "Print Employee Timesheet & Print My Timesheet" -msgstr "" +msgstr "Personel ZamanÇizelgesi Yazdır ve Benim ZamanÇizelgemi Yazdır" #. module: hr_timesheet #: field:hr.sign.in.project,emp_id:0 @@ -515,7 +533,7 @@ msgstr "İptal" #: 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 "Personel ZamanCizelgeleri" +msgstr "Personel ZamanÇizelgeleri" #. module: hr_timesheet #: view:hr.analytic.timesheet:0 @@ -536,6 +554,10 @@ msgid "" "project generates costs on the analytic account. This feature allows to " "record at the same time the attendance and the timesheet." msgstr "" +"Çalışanlar, üzerine atanan farklı projeler için harcanan zamanı " +"kodlama.projen analitik bir hesaptır ve harcanan zaman Proje analitik " +"maliyeti hesap oluşturur.Bu özellik, aynı zamanda katılım ve " +"zamançizelgesine kaydetmenize olanak verir." #. module: hr_timesheet #: field:hr.sign.in.project,server_date:0 @@ -576,12 +598,12 @@ msgstr "Toplam zaman" #. module: hr_timesheet #: view:hr.sign.in.project:0 msgid "(local time on the server side)" -msgstr "" +msgstr "(sunucu tarafında yerel saat)" #. module: hr_timesheet #: model:ir.model,name:hr_timesheet.model_hr_sign_in_project msgid "Sign In By Project" -msgstr "" +msgstr "Proje ile Oturum Aç" #. module: hr_timesheet #: code:addons/hr_timesheet/report/user_timesheet.py:41 @@ -595,15 +617,17 @@ msgstr "Şubat" #. module: hr_timesheet #: model:ir.model,name:hr_timesheet.model_hr_sign_out_project msgid "Sign Out By Project" -msgstr "" +msgstr "Proje ile Oturumu Kapat" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " "Employees." msgstr "" +"Menüsünü kullanarak, bu kullanıcı için bir çalışan oluşturun: İnsan " +"Kaynakları >Personeller." #. module: hr_timesheet #: view:hr.analytical.timesheet.users:0 @@ -665,7 +689,7 @@ msgstr "Toplam" #. module: hr_timesheet #: view:hr.sign.out.project:0 msgid "Change Work" -msgstr "Çalışama Değiştir" +msgstr "İş Değiştir" #~ msgid "Invalid XML for View Architecture!" #~ msgstr "Görüntüleme mimarisi için Geçersiz XML" diff --git a/addons/hr_timesheet/i18n/uk.po b/addons/hr_timesheet/i18n/uk.po index acab0f7a2aa..1a03c994e69 100644 --- a/addons/hr_timesheet/i18n/uk.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -187,10 +187,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -284,7 +284,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -297,7 +297,7 @@ msgid "Total cost" msgstr "Загальна вартість" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -408,7 +408,7 @@ msgid "August" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -598,7 +598,7 @@ msgid "Sign Out By Project" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/vi.po b/addons/hr_timesheet/i18n/vi.po index e09ae2575b2..72fcec9c7c4 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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -188,10 +188,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -285,7 +285,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -298,7 +298,7 @@ msgid "Total cost" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -409,7 +409,7 @@ msgid "August" msgstr "Tháng Tám" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -599,7 +599,7 @@ msgid "Sign Out By Project" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/zh_CN.po b/addons/hr_timesheet/i18n/zh_CN.po index a5f6aec8d9d..86a7da230fb 100644 --- a/addons/hr_timesheet/i18n/zh_CN.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -190,10 +190,10 @@ msgid "Costs and Revenues" msgstr "收支情况" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -287,7 +287,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "为员工指定的产品其类型必须是“服务”。" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -300,7 +300,7 @@ msgid "Total cost" msgstr "总成本" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -411,7 +411,7 @@ msgid "August" msgstr "8月" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -604,7 +604,7 @@ msgid "Sign Out By Project" msgstr "项目签出" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet/i18n/zh_TW.po b/addons/hr_timesheet/i18n/zh_TW.po index 4cf89eabd63..dada42a9647 100644 --- a/addons/hr_timesheet/i18n/zh_TW.po +++ b/addons/hr_timesheet/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-16 05:25+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:18+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet #: model:ir.actions.act_window,help:hr_timesheet.act_analytic_cost_revenue @@ -187,10 +187,10 @@ msgid "Costs and Revenues" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 -#: code:addons/hr_timesheet/hr_timesheet.py:149 -#: code:addons/hr_timesheet/hr_timesheet.py:180 -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:150 +#: code:addons/hr_timesheet/hr_timesheet.py:155 +#: code:addons/hr_timesheet/hr_timesheet.py:186 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #: code:addons/hr_timesheet/wizard/hr_timesheet_print_employee.py:43 #, python-format msgid "Warning!" @@ -284,7 +284,7 @@ msgid "Specifies employee's designation as a product with type 'service'." msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:182 +#: code:addons/hr_timesheet/hr_timesheet.py:188 #, python-format msgid "" "No analytic account is defined on the project.\n" @@ -297,7 +297,7 @@ msgid "Total cost" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:180 +#: code:addons/hr_timesheet/hr_timesheet.py:186 #, python-format msgid "" "No 'Analytic Journal' is defined for employee %s \n" @@ -408,7 +408,7 @@ msgid "August" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:149 +#: code:addons/hr_timesheet/hr_timesheet.py:155 #, python-format msgid "" "No analytic journal defined for '%s'.\n" @@ -598,7 +598,7 @@ msgid "Sign Out By Project" msgstr "" #. module: hr_timesheet -#: code:addons/hr_timesheet/hr_timesheet.py:144 +#: code:addons/hr_timesheet/hr_timesheet.py:150 #, python-format msgid "" "Please create an employee for this user, using the menu: Human Resources > " diff --git a/addons/hr_timesheet_invoice/i18n/ar.po b/addons/hr_timesheet_invoice/i18n/ar.po index 5b2b2e6c351..5602a2ef890 100644 --- a/addons/hr_timesheet_invoice/i18n/ar.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -101,7 +101,7 @@ msgid "Profit" msgstr "الربح" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "لا يمكن التعديل في خط الفاتورة التحليلي!" @@ -162,7 +162,7 @@ msgid "Invoiced Amount" msgstr "كمية الفاتورة" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -241,7 +241,7 @@ msgid "Deadline" msgstr "الموعد النهائي" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "خطأ في الإعدادات!" @@ -278,7 +278,7 @@ msgid "Costs to invoice" msgstr "القيم الى الفاتورة" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -740,7 +740,7 @@ msgid "Timesheets to invoice" msgstr "سجلات الدوام للفاتورة" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -857,7 +857,7 @@ msgid "April" msgstr "إبريل" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -887,8 +887,8 @@ msgid "Units" msgstr "الوحدات" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "خطأ!" diff --git a/addons/hr_timesheet_invoice/i18n/bg.po b/addons/hr_timesheet_invoice/i18n/bg.po index e405c2709ba..cc38eee7bd3 100644 --- a/addons/hr_timesheet_invoice/i18n/bg.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -101,7 +101,7 @@ msgid "Profit" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -162,7 +162,7 @@ msgid "Invoiced Amount" msgstr "Сума по фактура" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -241,7 +241,7 @@ msgid "Deadline" msgstr "Краен срок" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -278,7 +278,7 @@ msgid "Costs to invoice" msgstr "Превърни \"разходи\" на фактура" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -739,7 +739,7 @@ msgid "Timesheets to invoice" msgstr "Превърни графици във фактура" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -856,7 +856,7 @@ msgid "April" msgstr "Април" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -886,8 +886,8 @@ msgid "Units" msgstr "Единици" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/bs.po b/addons/hr_timesheet_invoice/i18n/bs.po index 60245ef307a..28aee344f7c 100644 --- a/addons/hr_timesheet_invoice/i18n/bs.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -101,7 +101,7 @@ msgid "Profit" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -162,7 +162,7 @@ msgid "Invoiced Amount" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -241,7 +241,7 @@ msgid "Deadline" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -278,7 +278,7 @@ msgid "Costs to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -739,7 +739,7 @@ msgid "Timesheets to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -856,7 +856,7 @@ msgid "April" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -886,8 +886,8 @@ msgid "Units" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/ca.po b/addons/hr_timesheet_invoice/i18n/ca.po index 17bee0c6301..c0ffdd2120a 100644 --- a/addons/hr_timesheet_invoice/i18n/ca.po +++ b/addons/hr_timesheet_invoice/i18n/ca.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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -101,7 +101,7 @@ msgid "Profit" msgstr "Benefici" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -162,7 +162,7 @@ msgid "Invoiced Amount" msgstr "Import facturat" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -241,7 +241,7 @@ msgid "Deadline" msgstr "Data límit" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -278,7 +278,7 @@ msgid "Costs to invoice" msgstr "Costos a facturar" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -741,7 +741,7 @@ msgid "Timesheets to invoice" msgstr "Fulls de serveis a facturar" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -858,7 +858,7 @@ msgid "April" msgstr "Abril" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -888,8 +888,8 @@ msgid "Units" msgstr "Unitats" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/cs.po b/addons/hr_timesheet_invoice/i18n/cs.po index e7f47095baf..9fa1786c7fb 100644 --- a/addons/hr_timesheet_invoice/i18n/cs.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -101,7 +101,7 @@ msgid "Profit" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -162,7 +162,7 @@ msgid "Invoiced Amount" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -241,7 +241,7 @@ msgid "Deadline" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -278,7 +278,7 @@ msgid "Costs to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -739,7 +739,7 @@ msgid "Timesheets to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -856,7 +856,7 @@ msgid "April" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -886,8 +886,8 @@ msgid "Units" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/da.po b/addons/hr_timesheet_invoice/i18n/da.po index 421a98bf365..4378a372ce8 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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -102,7 +102,7 @@ msgid "Profit" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -163,7 +163,7 @@ msgid "Invoiced Amount" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -242,7 +242,7 @@ msgid "Deadline" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -279,7 +279,7 @@ msgid "Costs to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -740,7 +740,7 @@ msgid "Timesheets to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -857,7 +857,7 @@ msgid "April" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -887,8 +887,8 @@ msgid "Units" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/de.po b/addons/hr_timesheet_invoice/i18n/de.po index 2e619daad19..f19219c12a4 100644 --- a/addons/hr_timesheet_invoice/i18n/de.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -105,7 +105,7 @@ msgid "Profit" msgstr "Gewinn" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "Sie können keine abgerechnete Kostenstellenbuchung ändern" @@ -183,7 +183,7 @@ msgid "Invoiced Amount" msgstr "Abgerechneter Betrag" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "Die Kostenstelle ist unvollständig!" @@ -267,7 +267,7 @@ msgid "Deadline" msgstr "Frist" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "Konfigurationsfehler!" @@ -304,7 +304,7 @@ msgid "Costs to invoice" msgstr "Abzurechnende Kosten" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "Bitte legen Sie ein Ertragskonto für das Produkt '%s' fest." @@ -769,7 +769,7 @@ msgid "Timesheets to invoice" msgstr "Abrechenbare Zeiterfassungen" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -891,7 +891,7 @@ msgid "April" msgstr "April" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -923,8 +923,8 @@ msgid "Units" msgstr "Einheiten" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "Fehler!" diff --git a/addons/hr_timesheet_invoice/i18n/el.po b/addons/hr_timesheet_invoice/i18n/el.po index f95b5f6aa4d..6999c7c4bb7 100644 --- a/addons/hr_timesheet_invoice/i18n/el.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" @@ -104,7 +104,7 @@ msgid "Profit" msgstr "Κέρδος" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -165,7 +165,7 @@ msgid "Invoiced Amount" msgstr "Αξία Τιμολογίου" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -245,7 +245,7 @@ msgid "Deadline" msgstr "Χρονικό Όριο" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -282,7 +282,7 @@ msgid "Costs to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -743,7 +743,7 @@ msgid "Timesheets to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -860,7 +860,7 @@ msgid "April" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -890,8 +890,8 @@ msgid "Units" msgstr "Μονάδες" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/es.po b/addons/hr_timesheet_invoice/i18n/es.po index 8044b5c2057..2e76beaaed1 100644 --- a/addons/hr_timesheet_invoice/i18n/es.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -103,7 +103,7 @@ msgid "Profit" msgstr "Beneficio" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "¡No puede modificar una línea analítica facturada!" @@ -175,7 +175,7 @@ msgid "Invoiced Amount" msgstr "Importe facturado" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "¡Cuenta analítica incompleta!" @@ -259,7 +259,7 @@ msgid "Deadline" msgstr "Fecha límite" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "¡Error de configuración!" @@ -296,7 +296,7 @@ msgid "Costs to invoice" msgstr "Costos a facturar" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "Por favor defina una cuenta de ingresos para el producto '%s'." @@ -761,7 +761,7 @@ msgid "Timesheets to invoice" msgstr "Hojas de servicios a facturar" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -880,7 +880,7 @@ msgid "April" msgstr "Abril" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -912,8 +912,8 @@ msgid "Units" msgstr "Unidades" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "¡Error!" diff --git a/addons/hr_timesheet_invoice/i18n/es_AR.po b/addons/hr_timesheet_invoice/i18n/es_AR.po index 284a39405fc..1b00e23050a 100644 --- a/addons/hr_timesheet_invoice/i18n/es_AR.po +++ b/addons/hr_timesheet_invoice/i18n/es_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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -101,7 +101,7 @@ msgid "Profit" msgstr "Beneficio" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -162,7 +162,7 @@ msgid "Invoiced Amount" msgstr "Importe facturado" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -241,7 +241,7 @@ msgid "Deadline" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -278,7 +278,7 @@ msgid "Costs to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -739,7 +739,7 @@ msgid "Timesheets to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -856,7 +856,7 @@ msgid "April" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -886,8 +886,8 @@ msgid "Units" msgstr "Unidades" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/es_CR.po b/addons/hr_timesheet_invoice/i18n/es_CR.po index edd451ea12d..5cf504642f1 100644 --- a/addons/hr_timesheet_invoice/i18n/es_CR.po +++ b/addons/hr_timesheet_invoice/i18n/es_CR.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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: hr_timesheet_invoice @@ -102,7 +102,7 @@ msgid "Profit" msgstr "Beneficio" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "¡No se puede modificar una línea de factura analítica!" @@ -163,7 +163,7 @@ msgid "Invoiced Amount" msgstr "Importe facturado" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -242,7 +242,7 @@ msgid "Deadline" msgstr "Fecha límite" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -279,7 +279,7 @@ msgid "Costs to invoice" msgstr "Costos a facturar" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -742,7 +742,7 @@ msgid "Timesheets to invoice" msgstr "Hojas de servicios a facturar" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -859,7 +859,7 @@ msgid "April" msgstr "Abril" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -889,8 +889,8 @@ msgid "Units" msgstr "Unidades" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/es_EC.po b/addons/hr_timesheet_invoice/i18n/es_EC.po index 5cd59354ef2..a309a68b7a7 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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -102,7 +102,7 @@ msgid "Profit" msgstr "Beneficio" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "No se puede modificar una línea de factura analítica" @@ -163,7 +163,7 @@ msgid "Invoiced Amount" msgstr "Importe facturado" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -242,7 +242,7 @@ msgid "Deadline" msgstr "Fecha límite" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -279,7 +279,7 @@ msgid "Costs to invoice" msgstr "Costos a facturar" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -742,7 +742,7 @@ msgid "Timesheets to invoice" msgstr "Hojas de servicios a facturar" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -859,7 +859,7 @@ msgid "April" msgstr "Abril" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -889,8 +889,8 @@ msgid "Units" msgstr "Unidades" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/et.po b/addons/hr_timesheet_invoice/i18n/et.po index b4589e478ad..1242986eac6 100644 --- a/addons/hr_timesheet_invoice/i18n/et.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -101,7 +101,7 @@ msgid "Profit" msgstr "Kasum" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -162,7 +162,7 @@ msgid "Invoiced Amount" msgstr "Arveldatud kogus" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -241,7 +241,7 @@ msgid "Deadline" msgstr "Tähtaeg" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -278,7 +278,7 @@ msgid "Costs to invoice" msgstr "Kulud arveldamiseks" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -739,7 +739,7 @@ msgid "Timesheets to invoice" msgstr "Tääajakaardid arveldamiseks" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -856,7 +856,7 @@ msgid "April" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -886,8 +886,8 @@ msgid "Units" msgstr "Ühikud" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/fi.po b/addons/hr_timesheet_invoice/i18n/fi.po index 3d497cf02d6..8120dd77dd6 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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -102,7 +102,7 @@ msgid "Profit" msgstr "Tuotto" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -163,7 +163,7 @@ msgid "Invoiced Amount" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -242,7 +242,7 @@ msgid "Deadline" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -279,7 +279,7 @@ msgid "Costs to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -740,7 +740,7 @@ msgid "Timesheets to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -857,7 +857,7 @@ msgid "April" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -887,8 +887,8 @@ msgid "Units" msgstr "Yksikköä" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/fr.po b/addons/hr_timesheet_invoice/i18n/fr.po index 5f62b5f72a6..5a8e98ed184 100644 --- a/addons/hr_timesheet_invoice/i18n/fr.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -25,7 +25,7 @@ msgstr "Feuille de temps par utilisateur" #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,name:0 msgid "Internal Name" -msgstr "" +msgstr "Nom interne" #. module: hr_timesheet_invoice #: view:hr_timesheet_invoice.factor:0 @@ -45,13 +45,13 @@ msgstr "" #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_analytic_profit.py:58 #, python-format msgid "No record(s) found for this report." -msgstr "" +msgstr "Aucun enregistrement(s) trouvé pour ce rapport." #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_analytic_profit.py:58 #, python-format msgid "Insufficient Data!" -msgstr "" +msgstr "Données insuffisantes!" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -81,7 +81,7 @@ msgstr "Rouvrir le projet" #. module: hr_timesheet_invoice #: field:report.account.analytic.line.to.invoice,product_uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Unité de mesure" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_report_timesheet_user @@ -103,7 +103,7 @@ msgid "Profit" msgstr "Profit" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "Vous ne pouvez pas modifier une ligne analytique facturée !" @@ -167,10 +167,10 @@ msgid "Invoiced Amount" msgstr "Montant facturé" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" -msgstr "" +msgstr "Compte analytique incomplet !" #. module: hr_timesheet_invoice #: field:report_timesheet.invoice,account_id:0 @@ -180,7 +180,7 @@ msgstr "Projet" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 msgid "Invoice on Timesheets Options" -msgstr "" +msgstr "Options de facturation des feuilles de temps" #. module: hr_timesheet_invoice #: field:report.account.analytic.line.to.invoice,amount:0 @@ -195,7 +195,7 @@ msgstr "Chaque travail terminé sera détaillé sur la facture" #. module: hr_timesheet_invoice #: field:account.analytic.account,pricelist_id:0 msgid "Pricelist" -msgstr "" +msgstr "Liste de prix" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_hr_timesheet_invoice_create @@ -246,10 +246,10 @@ msgid "Deadline" msgstr "Echéance" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Erreur de configuration!" #. module: hr_timesheet_invoice #: field:report.analytic.account.close,partner_id:0 @@ -264,7 +264,7 @@ msgstr "Le temps de chaque travail terminé sera affiché sur la facture" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 msgid "Cancel Contract" -msgstr "" +msgstr "Annuler le contrat" #. module: hr_timesheet_invoice #: field:hr.timesheet.analytic.profit,date_from:0 @@ -283,7 +283,7 @@ msgid "Costs to invoice" msgstr "Coûts à facturer" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "Veuillez définir le compte de revenus de l'article \"%s\"." @@ -346,7 +346,7 @@ msgstr "Forcer l'article" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 msgid "Contract Finished" -msgstr "" +msgstr "Contrat terminé" #. module: hr_timesheet_invoice #: selection:report.account.analytic.line.to.invoice,month:0 @@ -360,13 +360,13 @@ msgstr "Juillet" #. module: hr_timesheet_invoice #: field:account.analytic.line,to_invoice:0 msgid "Invoiceable" -msgstr "" +msgstr "Facturable" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:56 #, python-format msgid "Warning!" -msgstr "" +msgstr "Avertissement!" #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_hr_timesheet_invoice_factor_form @@ -382,7 +382,7 @@ msgstr "Théorique" #. module: hr_timesheet_invoice #: model:hr_timesheet_invoice.factor,name:hr_timesheet_invoice.timesheet_invoice_factor3 msgid "Free of charge" -msgstr "" +msgstr "Gratuit" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_report_account_analytic_line_to_invoice @@ -413,7 +413,7 @@ msgstr "Oui (100%)" #. module: hr_timesheet_invoice #: view:report_timesheet.user:0 msgid "Timesheet by users" -msgstr "" +msgstr "Feuilles de temps par utilisateur" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_final_invoice_create.py:58 @@ -610,7 +610,7 @@ msgstr "Date" #: field:report_timesheet.invoice,quantity:0 #: field:report_timesheet.user,quantity:0 msgid "Time" -msgstr "" +msgstr "Temps" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_hr_timesheet_invoice_create_final @@ -664,7 +664,7 @@ msgstr "Montant forfaitaire" #. module: hr_timesheet_invoice #: field:account.analytic.account,to_invoice:0 msgid "Timesheet Invoicing Ratio" -msgstr "" +msgstr "Ratio de facturation des feuilles de temps" #. module: hr_timesheet_invoice #: selection:report.account.analytic.line.to.invoice,month:0 @@ -746,7 +746,7 @@ msgid "Timesheets to invoice" msgstr "Timesheet à facturer" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -797,7 +797,7 @@ msgstr "L'article qui sera utilisé pour facturer le montant restant" #. module: hr_timesheet_invoice #: field:hr.timesheet.invoice.create.final,time:0 msgid "Time Spent" -msgstr "" +msgstr "Temps passé" #. module: hr_timesheet_invoice #: help:account.analytic.account,amount_max:0 @@ -836,7 +836,7 @@ msgstr "Nom" #. module: hr_timesheet_invoice #: view:report.account.analytic.line.to.invoice:0 msgid "Analytic Lines" -msgstr "" +msgstr "Lignes analytiques" #. module: hr_timesheet_invoice #: view:report_timesheet.account.date:0 @@ -863,7 +863,7 @@ msgid "April" msgstr "Avril" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -893,23 +893,23 @@ msgid "Units" msgstr "Unités" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" -msgstr "" +msgstr "Erreur!" #. module: hr_timesheet_invoice #: model:hr_timesheet_invoice.factor,name:hr_timesheet_invoice.timesheet_invoice_factor4 msgid "80%" -msgstr "" +msgstr "80%" #. module: hr_timesheet_invoice #: view:hr.timesheet.analytic.profit:0 #: view:hr.timesheet.invoice.create:0 #: view:hr.timesheet.invoice.create.final:0 msgid "or" -msgstr "" +msgstr "ou" #. module: hr_timesheet_invoice #: field:report_timesheet.invoice,manager_id:0 @@ -939,7 +939,7 @@ msgstr "Année" #. module: hr_timesheet_invoice #: view:hr.timesheet.analytic.profit:0 msgid "Duration" -msgstr "" +msgstr "Durée" #~ msgid "%" #~ msgstr "%" diff --git a/addons/hr_timesheet_invoice/i18n/hr.po b/addons/hr_timesheet_invoice/i18n/hr.po index d0cf1626486..c40d4949d8a 100644 --- a/addons/hr_timesheet_invoice/i18n/hr.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -103,7 +103,7 @@ msgid "Profit" msgstr "Dobit" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "Ne možete mijenjati fakturiranu analitičku liniju!" @@ -167,7 +167,7 @@ msgid "Invoiced Amount" msgstr "Fakturirani iznos" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "Analitički račun nepotpun!" @@ -246,7 +246,7 @@ msgid "Deadline" msgstr "Krajnji rok" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "Greška u konfiguraciji!" @@ -283,7 +283,7 @@ msgid "Costs to invoice" msgstr "Troškovi za fakturiranje" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "Definirajte račun dohotka za proizvod '%s'." @@ -748,7 +748,7 @@ msgid "Timesheets to invoice" msgstr "Kontrolne kartice za fakturiranje" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -866,7 +866,7 @@ msgid "April" msgstr "Travanj" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -898,8 +898,8 @@ msgid "Units" msgstr "Mjerne jedinice" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "Greška!" diff --git a/addons/hr_timesheet_invoice/i18n/hu.po b/addons/hr_timesheet_invoice/i18n/hu.po index 7b914aa1631..caec37a3b0a 100644 --- a/addons/hr_timesheet_invoice/i18n/hu.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -103,7 +103,7 @@ msgid "Profit" msgstr "Nyereség" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "Nem módosíthat egy számlázott elemzési sort!" @@ -179,7 +179,7 @@ msgid "Invoiced Amount" msgstr "Kiszámlázott összeg" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "Analitikai/Elemző számla nem teljes !" @@ -262,7 +262,7 @@ msgid "Deadline" msgstr "Határidő" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "Beállítási hiba!" @@ -299,7 +299,7 @@ msgid "Costs to invoice" msgstr "Kiszámlázandó költségek" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "Kérem határozzon meg bevételi számlát erre a termékre '%s'." @@ -764,7 +764,7 @@ msgid "Timesheets to invoice" msgstr "Kiszámlázandó munkaidő-kimutatások" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -881,7 +881,7 @@ msgid "April" msgstr "Április" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -913,8 +913,8 @@ msgid "Units" msgstr "Egységek" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "Hiba!" diff --git a/addons/hr_timesheet_invoice/i18n/id.po b/addons/hr_timesheet_invoice/i18n/id.po index d466750fc01..65ba24e2cb8 100644 --- a/addons/hr_timesheet_invoice/i18n/id.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -101,7 +101,7 @@ msgid "Profit" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -162,7 +162,7 @@ msgid "Invoiced Amount" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -241,7 +241,7 @@ msgid "Deadline" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -278,7 +278,7 @@ msgid "Costs to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -739,7 +739,7 @@ msgid "Timesheets to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -856,7 +856,7 @@ msgid "April" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -886,8 +886,8 @@ msgid "Units" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/it.po b/addons/hr_timesheet_invoice/i18n/it.po index ef47edee453..51d673b5add 100644 --- a/addons/hr_timesheet_invoice/i18n/it.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -103,7 +103,7 @@ msgid "Profit" msgstr "Profitto" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "Non è possibile modificare una linea analitica fatturata!" @@ -179,7 +179,7 @@ msgid "Invoiced Amount" msgstr "Importo Fatturato" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "Conto Analitico incompleto !" @@ -263,7 +263,7 @@ msgid "Deadline" msgstr "Scadenza" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "Errore di configurazione!" @@ -300,7 +300,7 @@ msgid "Costs to invoice" msgstr "Costi da Fatturare" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "E' necessario definire un conto ricavi per il prodotto '%s'." @@ -765,7 +765,7 @@ msgid "Timesheets to invoice" msgstr "Orari di Lavoro da Fatturare" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -886,7 +886,7 @@ msgid "April" msgstr "Aprile" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -918,8 +918,8 @@ msgid "Units" msgstr "Unità" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "Errore!" diff --git a/addons/hr_timesheet_invoice/i18n/ja.po b/addons/hr_timesheet_invoice/i18n/ja.po index 4a4b1246829..1dc29857f69 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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -102,7 +102,7 @@ msgid "Profit" msgstr "利益" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "請求書を発行済みの分析行を変更することはできません。" @@ -163,7 +163,7 @@ msgid "Invoiced Amount" msgstr "請求額" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -242,7 +242,7 @@ msgid "Deadline" msgstr "期限" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -279,7 +279,7 @@ msgid "Costs to invoice" msgstr "請求書へ計上する経費" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -740,7 +740,7 @@ msgid "Timesheets to invoice" msgstr "請求する勤務表" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -857,7 +857,7 @@ msgid "April" msgstr "4月" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -887,8 +887,8 @@ msgid "Units" msgstr "単位" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/ko.po b/addons/hr_timesheet_invoice/i18n/ko.po index 3c3fe2b9722..7c8b462d4ed 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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -102,7 +102,7 @@ msgid "Profit" msgstr "이익" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -163,7 +163,7 @@ msgid "Invoiced Amount" msgstr "인보이스 금액" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -242,7 +242,7 @@ msgid "Deadline" msgstr "마감시한" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -279,7 +279,7 @@ msgid "Costs to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -740,7 +740,7 @@ msgid "Timesheets to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -857,7 +857,7 @@ msgid "April" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -887,8 +887,8 @@ msgid "Units" msgstr "단위" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/lt.po b/addons/hr_timesheet_invoice/i18n/lt.po index 1411a2876b3..82857b4731b 100644 --- a/addons/hr_timesheet_invoice/i18n/lt.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -101,7 +101,7 @@ msgid "Profit" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -162,7 +162,7 @@ msgid "Invoiced Amount" msgstr "Suma, kuriai išrašyta sąskaita-faktūra" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -241,7 +241,7 @@ msgid "Deadline" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -278,7 +278,7 @@ msgid "Costs to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -739,7 +739,7 @@ msgid "Timesheets to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -856,7 +856,7 @@ msgid "April" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -886,8 +886,8 @@ msgid "Units" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/lv.po b/addons/hr_timesheet_invoice/i18n/lv.po index e96f7194870..16b8b427dc3 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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -102,7 +102,7 @@ msgid "Profit" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -163,7 +163,7 @@ msgid "Invoiced Amount" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -242,7 +242,7 @@ msgid "Deadline" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -279,7 +279,7 @@ msgid "Costs to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -740,7 +740,7 @@ msgid "Timesheets to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -857,7 +857,7 @@ msgid "April" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -887,8 +887,8 @@ msgid "Units" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/mk.po b/addons/hr_timesheet_invoice/i18n/mk.po index 5008f8d4674..942be576ff5 100644 --- a/addons/hr_timesheet_invoice/i18n/mk.po +++ b/addons/hr_timesheet_invoice/i18n/mk.po @@ -14,14 +14,14 @@ msgstr "" "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 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\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 @@ -104,7 +104,7 @@ msgid "Profit" msgstr "Добивка" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "Не може да измените фактурирана аналитичка ставка!" @@ -178,7 +178,7 @@ msgid "Invoiced Amount" msgstr "Фактуриран износ" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "Некомплетна аналитичка сметка !" @@ -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 @@ -262,7 +262,7 @@ msgid "Deadline" msgstr "Краен рок" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "Грешка конфигурација!" @@ -299,7 +299,7 @@ msgid "Costs to invoice" msgstr "Трошоци за фактурирање" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "Дефинирајте приходна сметка за производ '%s'." @@ -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 @@ -764,7 +764,7 @@ msgid "Timesheets to invoice" msgstr "Распореди за фактурирање" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -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 @@ -882,7 +882,7 @@ msgid "April" msgstr "Април" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -912,8 +912,8 @@ msgid "Units" msgstr "Единици" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "Грешка!" diff --git a/addons/hr_timesheet_invoice/i18n/mn.po b/addons/hr_timesheet_invoice/i18n/mn.po index 04b9ee2bfab..4cfd253d6cf 100644 --- a/addons/hr_timesheet_invoice/i18n/mn.po +++ b/addons/hr_timesheet_invoice/i18n/mn.po @@ -23,8 +23,8 @@ msgstr "" "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 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -35,7 +35,7 @@ msgstr "Цаг бүртгэлийг хэрэглэгчээр харах" #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,name:0 msgid "Internal Name" -msgstr "" +msgstr "Дотоод нэр" #. module: hr_timesheet_invoice #: view:hr_timesheet_invoice.factor:0 @@ -111,7 +111,7 @@ msgid "Profit" msgstr "Ашиг" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "Нэхэмжлэгдсэн шинжилгээний мөрийг засах боломжгүй!" @@ -172,7 +172,7 @@ msgid "Invoiced Amount" msgstr "Нэхэмжилсэн дүн" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -200,7 +200,7 @@ msgstr "Хийсэн ажил бүрийн мэдээллийг нэхэмжлэ #. module: hr_timesheet_invoice #: field:account.analytic.account,pricelist_id:0 msgid "Pricelist" -msgstr "" +msgstr "Үнийн хүснэгт" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_hr_timesheet_invoice_create @@ -251,7 +251,7 @@ msgid "Deadline" msgstr "Тогтсон өдөр" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "Тохиргооны алдаа!" @@ -288,7 +288,7 @@ msgid "Costs to invoice" msgstr "Нэхэмжлэх үнийн дүн" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -365,7 +365,7 @@ msgstr "7 сар" #. module: hr_timesheet_invoice #: field:account.analytic.line,to_invoice:0 msgid "Invoiceable" -msgstr "" +msgstr "Нэхэмжилж болох" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:56 @@ -751,7 +751,7 @@ msgid "Timesheets to invoice" msgstr "Нэхэмжлэх цаг бүртгэл" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -868,7 +868,7 @@ msgid "April" msgstr "4 сар" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -898,8 +898,8 @@ msgid "Units" msgstr "Нэгжүүд" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "Алдаа!" diff --git a/addons/hr_timesheet_invoice/i18n/nl.po b/addons/hr_timesheet_invoice/i18n/nl.po index 838a8155371..9d80bbb4dae 100644 --- a/addons/hr_timesheet_invoice/i18n/nl.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -104,7 +104,7 @@ msgid "Profit" msgstr "Winst" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -183,7 +183,7 @@ msgid "Invoiced Amount" msgstr "Gefactureerd bedrag" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "Onvolledige kostenplaats" @@ -267,7 +267,7 @@ msgid "Deadline" msgstr "Deadline" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "Configuratiefout!" @@ -304,7 +304,7 @@ msgid "Costs to invoice" msgstr "Nog te ontvangen facturen" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "Definieer een inkomstenrekening voor product '%s'" @@ -362,7 +362,7 @@ msgstr "Winst urenstaat" #. module: hr_timesheet_invoice #: field:hr.timesheet.invoice.create,product:0 msgid "Force Product" -msgstr "Forceer roduct" +msgstr "Forceer product" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 @@ -562,7 +562,7 @@ msgstr "Urenstaat per kostenplaats" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_account_move_line msgid "Journal Items" -msgstr "Boekingen" +msgstr "Boekingsregels" #. module: hr_timesheet_invoice #: selection:report.account.analytic.line.to.invoice,month:0 @@ -773,7 +773,7 @@ msgid "Timesheets to invoice" msgstr "Urenstaten voor facturatie" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -866,7 +866,7 @@ msgstr "Naam" #. module: hr_timesheet_invoice #: view:report.account.analytic.line.to.invoice:0 msgid "Analytic Lines" -msgstr "Kostenplaats regels" +msgstr "Kostenplaatsregels" #. module: hr_timesheet_invoice #: view:report_timesheet.account.date:0 @@ -893,7 +893,7 @@ msgid "April" msgstr "April" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -925,8 +925,8 @@ msgid "Units" msgstr "Eenheden" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "Fout!" diff --git a/addons/hr_timesheet_invoice/i18n/nl_BE.po b/addons/hr_timesheet_invoice/i18n/nl_BE.po index 671fd18dbcc..4b895ccf706 100644 --- a/addons/hr_timesheet_invoice/i18n/nl_BE.po +++ b/addons/hr_timesheet_invoice/i18n/nl_BE.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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -101,7 +101,7 @@ msgid "Profit" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -162,7 +162,7 @@ msgid "Invoiced Amount" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -241,7 +241,7 @@ msgid "Deadline" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -278,7 +278,7 @@ msgid "Costs to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -739,7 +739,7 @@ msgid "Timesheets to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -856,7 +856,7 @@ msgid "April" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -886,8 +886,8 @@ msgid "Units" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/pl.po b/addons/hr_timesheet_invoice/i18n/pl.po index 6c47e47e60f..588b730a448 100644 --- a/addons/hr_timesheet_invoice/i18n/pl.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -103,7 +103,7 @@ msgid "Profit" msgstr "Zysk" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "Nie możesz modyfikować zafakturowanej pozycji analitycznej !" @@ -166,7 +166,7 @@ msgid "Invoiced Amount" msgstr "Kwota zafakturowana" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "Niekompletne konto analityczne !" @@ -245,7 +245,7 @@ msgid "Deadline" msgstr "Termin" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "Błąd konfiguracji!" @@ -282,7 +282,7 @@ msgid "Costs to invoice" msgstr "Koszty do faktury" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "Zdefiniuj konto przychodów dla produktu '%s'." @@ -747,7 +747,7 @@ msgid "Timesheets to invoice" msgstr "Karta czasu pracy do zafakturowania" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -864,7 +864,7 @@ msgid "April" msgstr "Kwiecień" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -895,8 +895,8 @@ msgid "Units" msgstr "Jednostki" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "Błąd!" diff --git a/addons/hr_timesheet_invoice/i18n/pt.po b/addons/hr_timesheet_invoice/i18n/pt.po index a3cd105236d..8015831c852 100644 --- a/addons/hr_timesheet_invoice/i18n/pt.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -101,7 +101,7 @@ msgid "Profit" msgstr "Lucro" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "Não pode modificar uma linha analítica faturada!" @@ -162,7 +162,7 @@ msgid "Invoiced Amount" msgstr "Montante Faturado" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "Conta analítica incompleta" @@ -241,7 +241,7 @@ msgid "Deadline" msgstr "Prazo Limite" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "Erro de configuração!" @@ -278,7 +278,7 @@ msgid "Costs to invoice" msgstr "Custos a Faturar" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "Por favor, defina uma conta de receita para o produto '%s'." @@ -741,7 +741,7 @@ msgid "Timesheets to invoice" msgstr "Folha de Horas a Faturar" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -860,7 +860,7 @@ msgid "April" msgstr "Abril" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -890,8 +890,8 @@ msgid "Units" msgstr "Unidades" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "Erro!" diff --git a/addons/hr_timesheet_invoice/i18n/pt_BR.po b/addons/hr_timesheet_invoice/i18n/pt_BR.po index 5b1c4e684f2..6a3ab5bdeba 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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -78,7 +78,7 @@ msgstr "Registro de Atividades" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 msgid "Re-open project" -msgstr "Reabrir projeto" +msgstr "Reativar" #. module: hr_timesheet_invoice #: field:report.account.analytic.line.to.invoice,product_uom_id:0 @@ -105,7 +105,7 @@ msgid "Profit" msgstr "Lucro" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "Você não pode modificar uma linha analítica na fatura!" @@ -180,7 +180,7 @@ msgid "Invoiced Amount" msgstr "Valor Faturado" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "Conta Analítica incompleta!" @@ -264,7 +264,7 @@ msgid "Deadline" msgstr "Prazo final" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "Erro de Configuração!" @@ -301,7 +301,7 @@ msgid "Costs to invoice" msgstr "Custos para fatura" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "Por favor defina a conta de receitas para o produto '%s'." @@ -766,7 +766,7 @@ msgid "Timesheets to invoice" msgstr "Planilhas de Horas a faturar" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -886,7 +886,7 @@ msgid "April" msgstr "Abril" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -918,8 +918,8 @@ msgid "Units" msgstr "Unidades" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "Erro!" diff --git a/addons/hr_timesheet_invoice/i18n/ro.po b/addons/hr_timesheet_invoice/i18n/ro.po index c9b6d2f81e5..85e2d2231bb 100644 --- a/addons/hr_timesheet_invoice/i18n/ro.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -103,7 +103,7 @@ msgid "Profit" msgstr "Profit" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "Nu puteti modifica o linie analitica a facturii!" @@ -180,7 +180,7 @@ msgid "Invoiced Amount" msgstr "Suma facturata" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "Cont Analitic incomplet !" @@ -264,7 +264,7 @@ msgid "Deadline" msgstr "Termen limita" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "Eroare de configurare!" @@ -301,7 +301,7 @@ msgid "Costs to invoice" msgstr "Costuri de facturat" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "Va rugam sa definiti contul de venituri pentru produsul '%s'." @@ -766,7 +766,7 @@ msgid "Timesheets to invoice" msgstr "Fise de pontaj de facturat" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -887,7 +887,7 @@ msgid "April" msgstr "Aprilie" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -919,8 +919,8 @@ msgid "Units" msgstr "Unitati" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "Eroare!" diff --git a/addons/hr_timesheet_invoice/i18n/ru.po b/addons/hr_timesheet_invoice/i18n/ru.po index c422ca897f5..9ee441e6271 100644 --- a/addons/hr_timesheet_invoice/i18n/ru.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -25,7 +25,7 @@ msgstr "Табель по пользователям" #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,name:0 msgid "Internal Name" -msgstr "" +msgstr "Внутреннее название" #. module: hr_timesheet_invoice #: view:hr_timesheet_invoice.factor:0 @@ -43,13 +43,13 @@ msgstr "" #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_analytic_profit.py:58 #, python-format msgid "No record(s) found for this report." -msgstr "" +msgstr "Отсутствуют записи для данного отчёта." #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_analytic_profit.py:58 #, python-format msgid "Insufficient Data!" -msgstr "" +msgstr "Недостаточно данных!" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -74,12 +74,12 @@ msgstr "" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 msgid "Re-open project" -msgstr "" +msgstr "Возобновить проект" #. module: hr_timesheet_invoice #: field:report.account.analytic.line.to.invoice,product_uom_id:0 msgid "Unit of Measure" -msgstr "" +msgstr "Единица измерения" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_report_timesheet_user @@ -101,7 +101,7 @@ msgid "Profit" msgstr "Прибыль" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -114,7 +114,7 @@ msgstr "" #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create.final,time:0 msgid "Display time in the history of works" -msgstr "" +msgstr "Показывать время в истории работ" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -162,7 +162,7 @@ msgid "Invoiced Amount" msgstr "Сумма к оплате" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -190,7 +190,7 @@ msgstr "" #. module: hr_timesheet_invoice #: field:account.analytic.account,pricelist_id:0 msgid "Pricelist" -msgstr "" +msgstr "Прайс-лист" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_hr_timesheet_invoice_create @@ -241,10 +241,10 @@ msgid "Deadline" msgstr "Срок" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Ошибка конфигурации!" #. module: hr_timesheet_invoice #: field:report.analytic.account.close,partner_id:0 @@ -259,7 +259,7 @@ msgstr "" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 msgid "Cancel Contract" -msgstr "" +msgstr "Отменить договор" #. module: hr_timesheet_invoice #: field:hr.timesheet.analytic.profit,date_from:0 @@ -269,7 +269,7 @@ msgstr "От" #. module: hr_timesheet_invoice #: report:account.analytic.profit:0 msgid "User or Journal Name" -msgstr "" +msgstr "Пользователь или Название журнала" #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.act_res_users_2_report_timesheet_invoice @@ -278,7 +278,7 @@ msgid "Costs to invoice" msgstr "Расходы для выставления счетов" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -297,7 +297,7 @@ msgstr "Распечатать" #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create.final,date:0 msgid "Display date in the history of works" -msgstr "" +msgstr "Показывать дату в истории работ" #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,price:0 @@ -321,7 +321,7 @@ msgstr "Табель по пользователям" #: view:hr.analytic.timesheet:0 #: model:ir.actions.act_window,name:hr_timesheet_invoice.act_acc_analytic_acc_2_report_acc_analytic_line_to_invoice msgid "To Invoice" -msgstr "В счет" +msgstr "В счёт" #. module: hr_timesheet_invoice #: view:hr.timesheet.analytic.profit:0 @@ -339,7 +339,7 @@ msgstr "" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 msgid "Contract Finished" -msgstr "" +msgstr "Договор завершен" #. module: hr_timesheet_invoice #: selection:report.account.analytic.line.to.invoice,month:0 @@ -359,7 +359,7 @@ msgstr "" #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:56 #, python-format msgid "Warning!" -msgstr "" +msgstr "Предупреждение!" #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_hr_timesheet_invoice_factor_form @@ -375,12 +375,12 @@ msgstr "Теоретическая" #. module: hr_timesheet_invoice #: model:hr_timesheet_invoice.factor,name:hr_timesheet_invoice.timesheet_invoice_factor3 msgid "Free of charge" -msgstr "" +msgstr "Бесплатно" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_report_account_analytic_line_to_invoice msgid "Analytic lines to invoice report" -msgstr "Отчет по позициям аналитики к выставлению счетов" +msgstr "Отчёт по позициям аналитики к выставлению счетов" #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_timesheet_invoice_stat_all @@ -401,12 +401,12 @@ msgstr "Скидка (%)" #. module: hr_timesheet_invoice #: model:hr_timesheet_invoice.factor,name:hr_timesheet_invoice.timesheet_invoice_factor1 msgid "Yes (100%)" -msgstr "" +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 @@ -524,7 +524,7 @@ 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 @@ -603,7 +603,7 @@ msgstr "Дата" #: field:report_timesheet.invoice,quantity:0 #: field:report_timesheet.user,quantity:0 msgid "Time" -msgstr "" +msgstr "Время" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_hr_timesheet_invoice_create_final @@ -673,7 +673,7 @@ msgstr "Сентябрь" #: model:ir.model,name:hr_timesheet_invoice.model_account_invoice #: view:report.timesheet.line:0 msgid "Invoice" -msgstr "Счет" +msgstr "Счёт" #. module: hr_timesheet_invoice #: view:hr.timesheet.analytic.profit:0 @@ -693,7 +693,7 @@ msgstr "Строка табеля" #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create:0 msgid "Billing Data" -msgstr "" +msgstr "Данные биллинга" #. module: hr_timesheet_invoice #: help:hr_timesheet_invoice.factor,customer_name:0 @@ -708,7 +708,7 @@ msgstr "Кому" #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create:0 msgid "Do you want to show details of work in invoice?" -msgstr "" +msgstr "Вы хотите указать подробности работы в счёте?" #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create:0 @@ -716,7 +716,7 @@ msgstr "" #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_hr_timesheet_invoice_create #: model:ir.actions.act_window,name:hr_timesheet_invoice.action_hr_timesheet_invoice_create_final msgid "Create Invoice" -msgstr "" +msgstr "Создать счёт" #. module: hr_timesheet_invoice #: model:ir.actions.act_window,name:hr_timesheet_invoice.act_res_users_2_report_timehsheet_account @@ -739,7 +739,7 @@ msgid "Timesheets to invoice" msgstr "Табели для выставления счетов" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -780,7 +780,7 @@ msgstr "Май" #. module: hr_timesheet_invoice #: field:hr.timesheet.analytic.profit,journal_ids:0 msgid "Journal" -msgstr "Книга" +msgstr "Журнал" #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create.final,product:0 @@ -790,7 +790,7 @@ msgstr "" #. module: hr_timesheet_invoice #: field:hr.timesheet.invoice.create.final,time:0 msgid "Time Spent" -msgstr "" +msgstr "Затрачено времени" #. module: hr_timesheet_invoice #: help:account.analytic.account,amount_max:0 @@ -829,7 +829,7 @@ msgstr "Название" #. module: hr_timesheet_invoice #: view:report.account.analytic.line.to.invoice:0 msgid "Analytic Lines" -msgstr "" +msgstr "Позиции аналитики" #. module: hr_timesheet_invoice #: view:report_timesheet.account.date:0 @@ -853,10 +853,10 @@ msgstr "Табели по дням" #: selection:report_timesheet.account.date,month:0 #: selection:report_timesheet.user,month:0 msgid "April" -msgstr "" +msgstr "Апрель" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -866,7 +866,7 @@ msgstr "" #. module: hr_timesheet_invoice #: help:hr_timesheet_invoice.factor,factor:0 msgid "Discount in percentage" -msgstr "" +msgstr "Скидка в процентах" #. module: hr_timesheet_invoice #: code:addons/hr_timesheet_invoice/wizard/hr_timesheet_invoice_create.py:56 @@ -886,23 +886,23 @@ msgid "Units" msgstr "Единицы" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" -msgstr "" +msgstr "Ошибка!" #. module: hr_timesheet_invoice #: model:hr_timesheet_invoice.factor,name:hr_timesheet_invoice.timesheet_invoice_factor4 msgid "80%" -msgstr "" +msgstr "80%" #. module: hr_timesheet_invoice #: view:hr.timesheet.analytic.profit:0 #: view:hr.timesheet.invoice.create:0 #: view:hr.timesheet.invoice.create.final:0 msgid "or" -msgstr "" +msgstr "или" #. module: hr_timesheet_invoice #: field:report_timesheet.invoice,manager_id:0 @@ -932,7 +932,7 @@ msgstr "Год" #. module: hr_timesheet_invoice #: view:hr.timesheet.analytic.profit:0 msgid "Duration" -msgstr "" +msgstr "Продолжительность" #~ msgid "%" #~ msgstr "%" diff --git a/addons/hr_timesheet_invoice/i18n/sl.po b/addons/hr_timesheet_invoice/i18n/sl.po index 4ac49948693..f0242914cac 100644 --- a/addons/hr_timesheet_invoice/i18n/sl.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -101,7 +101,7 @@ msgid "Profit" msgstr "Dobiček" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -162,7 +162,7 @@ msgid "Invoiced Amount" msgstr "Zaračunani znesek" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -241,7 +241,7 @@ msgid "Deadline" msgstr "Rok" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "Napaka v nastavitvah" @@ -278,7 +278,7 @@ msgid "Costs to invoice" msgstr "Zaračunavanje stroškov" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -739,7 +739,7 @@ msgid "Timesheets to invoice" msgstr "Zaračunavanje po časovnicah" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -856,7 +856,7 @@ msgid "April" msgstr "April" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -886,8 +886,8 @@ msgid "Units" msgstr "Enote" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "Napaka!" diff --git a/addons/hr_timesheet_invoice/i18n/sq.po b/addons/hr_timesheet_invoice/i18n/sq.po index a9a23f20235..dd5ebd3a352 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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -102,7 +102,7 @@ msgid "Profit" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -163,7 +163,7 @@ msgid "Invoiced Amount" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -242,7 +242,7 @@ msgid "Deadline" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -279,7 +279,7 @@ msgid "Costs to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -740,7 +740,7 @@ msgid "Timesheets to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -857,7 +857,7 @@ msgid "April" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -887,8 +887,8 @@ msgid "Units" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/sr@latin.po b/addons/hr_timesheet_invoice/i18n/sr@latin.po index c637ef0c3a9..00deb35bdc1 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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -102,7 +102,7 @@ msgid "Profit" msgstr "Dobit" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -163,7 +163,7 @@ msgid "Invoiced Amount" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -242,7 +242,7 @@ msgid "Deadline" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -279,7 +279,7 @@ msgid "Costs to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -740,7 +740,7 @@ msgid "Timesheets to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -857,7 +857,7 @@ msgid "April" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -887,8 +887,8 @@ msgid "Units" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/sv.po b/addons/hr_timesheet_invoice/i18n/sv.po index 12855a9acdd..fb33a22a7d5 100644 --- a/addons/hr_timesheet_invoice/i18n/sv.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -101,7 +101,7 @@ msgid "Profit" msgstr "Vinst" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -162,7 +162,7 @@ msgid "Invoiced Amount" msgstr "Invoiced Amount" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -241,7 +241,7 @@ msgid "Deadline" msgstr "Tidsfrist" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -278,7 +278,7 @@ msgid "Costs to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -739,7 +739,7 @@ msgid "Timesheets to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -856,7 +856,7 @@ msgid "April" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -886,8 +886,8 @@ msgid "Units" msgstr "Units" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/tlh.po b/addons/hr_timesheet_invoice/i18n/tlh.po index b5d7521f866..9af42272565 100644 --- a/addons/hr_timesheet_invoice/i18n/tlh.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -101,7 +101,7 @@ msgid "Profit" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -162,7 +162,7 @@ msgid "Invoiced Amount" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -241,7 +241,7 @@ msgid "Deadline" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -278,7 +278,7 @@ msgid "Costs to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -739,7 +739,7 @@ msgid "Timesheets to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -856,7 +856,7 @@ msgid "April" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -886,8 +886,8 @@ msgid "Units" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/tr.po b/addons/hr_timesheet_invoice/i18n/tr.po index 0cca80a35d2..863da07ad49 100644 --- a/addons/hr_timesheet_invoice/i18n/tr.po +++ b/addons/hr_timesheet_invoice/i18n/tr.po @@ -13,14 +13,14 @@ msgstr "" "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 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 #: view:report_timesheet.user:0 msgid "Timesheet by user" -msgstr "ZamanÇizegesi kullanıcıya göre" +msgstr "Kullanıcıya göre ZamanÇizegesi" #. module: hr_timesheet_invoice #: field:hr_timesheet_invoice.factor,name:0 @@ -76,7 +76,7 @@ msgstr "Oturum Açma Faaliyeti" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 msgid "Re-open project" -msgstr "Projeyi YenidenAç" +msgstr "Projeyi Yeniden Aç" #. module: hr_timesheet_invoice #: field:report.account.analytic.line.to.invoice,product_uom_id:0 @@ -103,7 +103,7 @@ msgid "Profit" msgstr "Kar" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "Bir fatura analitik satırı değiştiremezsiniz!" @@ -178,7 +178,7 @@ msgid "Invoiced Amount" msgstr "Fatura Tutarı" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "Analitik Hesap eksik!" @@ -231,6 +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 "" +"Genelde zaman çizelgelerinin %100 ünü fatura edersiniz. Ama, sabit fiyat ve " +"zaman çizelgesi faturalamasını karma yapıyorsanız, başka bir oran " +"kullanmalısınız. Örnek olarak, eğer %20 oranında bir ön fatura yapıyorsanız " +"(sabit fiyat, satış siparişlerine göre), geri kalanını zaman çizelgesine " +"göre %80 oranında faturalamalısınız." #. module: hr_timesheet_invoice #: view:hr.timesheet.invoice.create:0 @@ -257,7 +262,7 @@ msgid "Deadline" msgstr "ZamanSınırı" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "Yapılandırma Hatası" @@ -265,7 +270,7 @@ msgstr "Yapılandırma Hatası" #. module: hr_timesheet_invoice #: field:report.analytic.account.close,partner_id:0 msgid "Partner" -msgstr "Partner" +msgstr "İş Ortağı" #. module: hr_timesheet_invoice #: help:hr.timesheet.invoice.create,time:0 @@ -294,7 +299,7 @@ msgid "Costs to invoice" msgstr "Maliyetleri Faturala" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "Ürün için gelir hesabı belirtiniz '%s'." @@ -352,7 +357,7 @@ msgstr "ZamanÇizelge Karı" #. module: hr_timesheet_invoice #: field:hr.timesheet.invoice.create,product:0 msgid "Force Product" -msgstr "Zorla Ürün" +msgstr "Ürüne Zorla" #. module: hr_timesheet_invoice #: view:account.analytic.account:0 @@ -465,7 +470,7 @@ msgstr "ParaBirimi" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 msgid "Non Assigned timesheets to users" -msgstr "ZamanÇizelgelerini Kullanıcı atanmamış" +msgstr "ZamanÇizelgelerine Kullanıcı atanmamış" #. module: hr_timesheet_invoice #: view:account.analytic.line:0 @@ -552,7 +557,7 @@ msgstr "Hesabı tarafından ZamanÇizelgesi" #. module: hr_timesheet_invoice #: model:ir.model,name:hr_timesheet_invoice.model_account_move_line msgid "Journal Items" -msgstr "Yevmiye Öğeleri" +msgstr "Yevmiye Kalemleri" #. module: hr_timesheet_invoice #: selection:report.account.analytic.line.to.invoice,month:0 @@ -759,7 +764,7 @@ msgid "Timesheets to invoice" msgstr "ZamanÇizelgeleri faturala" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -854,7 +859,7 @@ msgstr "Analitik Satırları" #. module: hr_timesheet_invoice #: view:report_timesheet.account.date:0 msgid "Daily timesheet by account" -msgstr "Hesabın Günlük zamançizelgesi" +msgstr "Hesap günlük zamançizelgesi" #. module: hr_timesheet_invoice #: field:report.account.analytic.line.to.invoice,sale_price:0 @@ -876,7 +881,7 @@ msgid "April" msgstr "Nisan" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -908,8 +913,8 @@ msgid "Units" msgstr "Birimler" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "Hata!" diff --git a/addons/hr_timesheet_invoice/i18n/uk.po b/addons/hr_timesheet_invoice/i18n/uk.po index 96a7713e4c6..8a0b484c724 100644 --- a/addons/hr_timesheet_invoice/i18n/uk.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -101,7 +101,7 @@ msgid "Profit" msgstr "Прибуток" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -162,7 +162,7 @@ msgid "Invoiced Amount" msgstr "Заінвойсована сума" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -241,7 +241,7 @@ msgid "Deadline" msgstr "Кінцевий термін" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -278,7 +278,7 @@ msgid "Costs to invoice" msgstr "Кошти для інвойсування" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -739,7 +739,7 @@ msgid "Timesheets to invoice" msgstr "Табель за накладними" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -856,7 +856,7 @@ msgid "April" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -886,8 +886,8 @@ msgid "Units" msgstr "Одиниць" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/vi.po b/addons/hr_timesheet_invoice/i18n/vi.po index 2b7d9fd7d96..6b4bf46a6f5 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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -102,7 +102,7 @@ msgid "Profit" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -163,7 +163,7 @@ msgid "Invoiced Amount" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -242,7 +242,7 @@ msgid "Deadline" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -279,7 +279,7 @@ msgid "Costs to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -740,7 +740,7 @@ msgid "Timesheets to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -857,7 +857,7 @@ msgid "April" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -887,8 +887,8 @@ msgid "Units" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/zh_CN.po b/addons/hr_timesheet_invoice/i18n/zh_CN.po index 4e0178f0b71..0e20ab3146d 100644 --- a/addons/hr_timesheet_invoice/i18n/zh_CN.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -101,7 +101,7 @@ msgid "Profit" msgstr "利润" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "你不能修改发票的成本行" @@ -162,7 +162,7 @@ msgid "Invoiced Amount" msgstr "已开票金额" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -241,7 +241,7 @@ msgid "Deadline" msgstr "截止日期" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -278,7 +278,7 @@ msgid "Costs to invoice" msgstr "成本发票" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -739,7 +739,7 @@ msgid "Timesheets to invoice" msgstr "给计工单开发票" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -856,7 +856,7 @@ msgid "April" msgstr "4月" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -886,8 +886,8 @@ msgid "Units" msgstr "单位" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_invoice/i18n/zh_TW.po b/addons/hr_timesheet_invoice/i18n/zh_TW.po index afcfba8bfb8..57e30b2859a 100644 --- a/addons/hr_timesheet_invoice/i18n/zh_TW.po +++ b/addons/hr_timesheet_invoice/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-16 05:27+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:20+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_invoice #: view:report.timesheet.line:0 @@ -101,7 +101,7 @@ msgid "Profit" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:144 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:141 #, python-format msgid "You cannot modify an invoiced analytic line!" msgstr "" @@ -162,7 +162,7 @@ msgid "Invoiced Amount" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:188 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:185 #, python-format msgid "Analytic Account incomplete !" msgstr "" @@ -241,7 +241,7 @@ msgid "Deadline" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Configuration Error!" msgstr "" @@ -278,7 +278,7 @@ msgid "Costs to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:246 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:243 #, python-format msgid "Please define income account for product '%s'." msgstr "" @@ -739,7 +739,7 @@ msgid "Timesheets to invoice" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:189 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:186 #, python-format msgid "" "Contract incomplete. Please fill in the Customer and Pricelist fields." @@ -856,7 +856,7 @@ msgid "April" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "" "There is no product defined. Please select one or force the product through " @@ -886,8 +886,8 @@ msgid "Units" msgstr "" #. module: hr_timesheet_invoice -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:143 -#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:233 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:140 +#: code:addons/hr_timesheet_invoice/hr_timesheet_invoice.py:230 #, python-format msgid "Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/ar.po b/addons/hr_timesheet_sheet/i18n/ar.po index 826076645b6..ecdf8ec01cf 100644 --- a/addons/hr_timesheet_sheet/i18n/ar.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -141,8 +141,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "لا يمكنك تعديل مدخل في سجل حضور قد تمت الموافقة عليه" @@ -197,8 +197,8 @@ msgid "Please create an employee and associate it with this user." msgstr "الرجاء انشاء موظف واربطه بهذا المستخدم." #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -249,9 +249,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -794,7 +794,7 @@ msgid "Search Account" msgstr "ابحث عن حساب" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "لا يمكنك تعديل سجل حضور قد تمت الموافقة عليها" @@ -1065,8 +1065,8 @@ msgid "Invoice rate" msgstr "معدل الفاتورة" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "خطأ للمستخدم !" diff --git a/addons/hr_timesheet_sheet/i18n/bg.po b/addons/hr_timesheet_sheet/i18n/bg.po index b9496f33cd7..5b2cc41db87 100644 --- a/addons/hr_timesheet_sheet/i18n/bg.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -141,8 +141,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -197,8 +197,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -244,9 +244,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -789,7 +789,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1058,8 +1058,8 @@ msgid "Invoice rate" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/bs.po b/addons/hr_timesheet_sheet/i18n/bs.po index 6c7b0dd8df2..bfe5eb63f4c 100644 --- a/addons/hr_timesheet_sheet/i18n/bs.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -141,8 +141,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -197,8 +197,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -244,9 +244,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -789,7 +789,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1058,8 +1058,8 @@ msgid "Invoice rate" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/ca.po b/addons/hr_timesheet_sheet/i18n/ca.po index 00a6cab1d46..5fc374837d4 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -142,8 +142,8 @@ msgid "Based on the timesheet" msgstr "Basat en el full d'assistència" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -198,8 +198,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -252,9 +252,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -799,7 +799,7 @@ msgid "Search Account" msgstr "Cerca compte" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1072,8 +1072,8 @@ msgid "Invoice rate" msgstr "Taxa factura" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/cs.po b/addons/hr_timesheet_sheet/i18n/cs.po index f6441e22587..ba310db2497 100644 --- a/addons/hr_timesheet_sheet/i18n/cs.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -141,8 +141,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -197,8 +197,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -244,9 +244,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -789,7 +789,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1058,8 +1058,8 @@ msgid "Invoice rate" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/da.po b/addons/hr_timesheet_sheet/i18n/da.po index 31a6fd14312..c63e9b046e4 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -142,8 +142,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -198,8 +198,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -245,9 +245,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -790,7 +790,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1059,8 +1059,8 @@ msgid "Invoice rate" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/de.po b/addons/hr_timesheet_sheet/i18n/de.po index 0be9fbfb245..aad04453e21 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -149,8 +149,8 @@ msgid "Based on the timesheet" msgstr "Basierend auf Zeiterfassung" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -207,8 +207,8 @@ msgstr "" "Bitte legen Sie einen Mitarbeiter an und weisen Sie ihm einen Benutzer zu." #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -270,9 +270,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -852,7 +852,7 @@ msgid "Search Account" msgstr "Suche Konto" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "Sie können keinen Eintrag in einer bestätigten Zeiterfassung ändern" @@ -1140,8 +1140,8 @@ msgid "Invoice rate" msgstr "Quote Abrechnung" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "Benutzerfehler!" diff --git a/addons/hr_timesheet_sheet/i18n/el.po b/addons/hr_timesheet_sheet/i18n/el.po index 12f36a8cae8..33222886cce 100644 --- a/addons/hr_timesheet_sheet/i18n/el.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" @@ -144,8 +144,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -200,8 +200,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -247,9 +247,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -792,7 +792,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1061,8 +1061,8 @@ msgid "Invoice rate" msgstr "Τιμή χρέωσης τιμολογίου" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/es.po b/addons/hr_timesheet_sheet/i18n/es.po index b057723b534..ea19715d7de 100644 --- a/addons/hr_timesheet_sheet/i18n/es.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -146,8 +146,8 @@ msgid "Based on the timesheet" msgstr "Basado en la hoja de asistencia" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "No puede modificar una entrada en un parte de horas confirmado." @@ -202,8 +202,8 @@ msgid "Please create an employee and associate it with this user." msgstr "Por favor, cree un empleado y asócielo con este usuario." #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -264,9 +264,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -837,7 +837,7 @@ msgid "Search Account" msgstr "Buscar Cuenta" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "No puede modificar una entrada en un parte de horas confirmado." @@ -1118,8 +1118,8 @@ msgid "Invoice rate" msgstr "Tasa factura" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "¡Error de usuario!" diff --git a/addons/hr_timesheet_sheet/i18n/es_AR.po b/addons/hr_timesheet_sheet/i18n/es_AR.po index 6750d167ba7..44e7db5ca62 100644 --- a/addons/hr_timesheet_sheet/i18n/es_AR.po +++ b/addons/hr_timesheet_sheet/i18n/es_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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -141,8 +141,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -197,8 +197,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -244,9 +244,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -789,7 +789,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1058,8 +1058,8 @@ msgid "Invoice rate" msgstr "Tarifa de la factura" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/es_CR.po b/addons/hr_timesheet_sheet/i18n/es_CR.po index 4a6665d2e15..99705ccdcfc 100644 --- a/addons/hr_timesheet_sheet/i18n/es_CR.po +++ b/addons/hr_timesheet_sheet/i18n/es_CR.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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: hr_timesheet_sheet @@ -142,8 +142,8 @@ msgid "Based on the timesheet" msgstr "Basado en la hoja de asistencia" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -198,8 +198,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -252,9 +252,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -799,7 +799,7 @@ msgid "Search Account" msgstr "Buscar Cuenta" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1070,8 +1070,8 @@ msgid "Invoice rate" msgstr "Tasa factura" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/es_EC.po b/addons/hr_timesheet_sheet/i18n/es_EC.po index b777f250d51..496dc446dcb 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -142,8 +142,8 @@ msgid "Based on the timesheet" msgstr "Basado en la hoja de servicios" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -198,8 +198,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -252,9 +252,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -797,7 +797,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1066,8 +1066,8 @@ msgid "Invoice rate" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/et.po b/addons/hr_timesheet_sheet/i18n/et.po index 8c3e9d23d89..5d0b6aed8f5 100644 --- a/addons/hr_timesheet_sheet/i18n/et.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -141,8 +141,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -197,8 +197,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -244,9 +244,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -789,7 +789,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1058,8 +1058,8 @@ msgid "Invoice rate" msgstr "Arve määr" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/fi.po b/addons/hr_timesheet_sheet/i18n/fi.po index a1ff9a7b915..b4e327cfa16 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -142,8 +142,8 @@ msgid "Based on the timesheet" msgstr "Perustuu tuntilistaan" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -198,8 +198,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -245,9 +245,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -791,7 +791,7 @@ msgid "Search Account" msgstr "Hae tiliä" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1062,8 +1062,8 @@ msgid "Invoice rate" msgstr "Laskutusmäärä" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/fr.po b/addons/hr_timesheet_sheet/i18n/fr.po index 9501307f894..9186a072002 100644 --- a/addons/hr_timesheet_sheet/i18n/fr.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -33,7 +33,7 @@ msgstr "Service" #: field:hr.timesheet.report,quantity:0 #: field:timesheet.report,quantity:0 msgid "Time" -msgstr "" +msgstr "Temps" #. module: hr_timesheet_sheet #: help:hr.config.settings,timesheet_max_difference:0 @@ -76,6 +76,8 @@ msgid "" "In order to create a timesheet for this employee, you must assign an " "analytic journal to the employee, like 'Timesheet Journal'." msgstr "" +"Pour créer une feuille de temps pour cet employé, vous devez assigner un " +"journal analytique à l'employé, comme 'Journal des feuilles de temps'." #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -92,7 +94,7 @@ msgstr "Coût" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Messages non-lus" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -122,7 +124,7 @@ msgstr "Mettre au brouillon" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "Timesheet Period" -msgstr "" +msgstr "Période des feuilles de temps" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,date_to:0 @@ -133,7 +135,7 @@ msgstr "Date de fin" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "to" -msgstr "" +msgstr "à" #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_invoiceonwork0 @@ -141,11 +143,12 @@ msgid "Based on the timesheet" msgstr "Basé sur la feuille de temps" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" +"Vous ne pouvez pas modifier une entrée dans une feuille de temps confirmée." #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -188,17 +191,17 @@ msgstr "Refuser" #: 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 "Activités de la feuille de temps" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Please create an employee and associate it with this user." -msgstr "" +msgstr "SVP Créez un employé et associez-le à cet utilisateur." #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -208,7 +211,7 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:205 #, python-format msgid "Week " -msgstr "" +msgstr "Semaine " #. module: hr_timesheet_sheet #: model:ir.actions.act_window,help:hr_timesheet_sheet.action_hr_timesheet_current_open @@ -232,7 +235,7 @@ msgstr "" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Messages" #. module: hr_timesheet_sheet #: help:hr_timesheet_sheet.sheet,state:0 @@ -252,13 +255,13 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" -msgstr "" +msgstr "Erreur!" #. module: hr_timesheet_sheet #: field:hr.config.settings,timesheet_max_difference:0 @@ -272,6 +275,8 @@ msgstr "" msgid "" "Please verify that the total difference of the sheet is lower than %.2f." msgstr "" +"Veuillez vérifier que la différence totale de la feuille est de moins de " +"%.2f." #. module: hr_timesheet_sheet #: model:ir.actions.act_window,name:hr_timesheet_sheet.action_timesheet_report_stat_all @@ -292,7 +297,7 @@ msgstr "Validation" #. module: hr_timesheet_sheet #: help:hr_timesheet_sheet.sheet,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Si coché, les nouveaux messages demanderont votre attention." #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:69 @@ -313,7 +318,7 @@ msgstr "Saisie de la feuille de temps de l'employé" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:215 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Action invalide!" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -329,6 +334,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 "" +"Contient le résumé de la discussion (nombre de messages, ...). Ce résumé est " +"au format HTML pour permettre son utilisation dans la vue kanban." #. module: hr_timesheet_sheet #: field:timesheet.report,nbr:0 @@ -376,7 +383,7 @@ msgstr "Lignes des feuilles de temps" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Abonnés" #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_confirmedtimesheet0 @@ -408,7 +415,7 @@ msgstr "Temps total" #: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_form #: model:ir.ui.menu,name:hr_timesheet_sheet.menu_act_hr_timesheet_sheet_form msgid "Timesheets to Validate" -msgstr "" +msgstr "Feuilles de temps à valider" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -436,14 +443,14 @@ msgstr "Juillet" #. module: hr_timesheet_sheet #: field:hr.config.settings,timesheet_range:0 msgid "Validate timesheets every" -msgstr "" +msgstr "Valider les feuilles de temps tou(te)s les" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:73 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:86 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Erreur de configuration!" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,state:0 @@ -570,7 +577,7 @@ msgstr "" #. module: hr_timesheet_sheet #: view:hr.timesheet.current.open:0 msgid "or" -msgstr "" +msgstr "ou" #. module: hr_timesheet_sheet #: model:process.transition,name:hr_timesheet_sheet.process_transition_invoiceontimesheet0 @@ -596,7 +603,7 @@ msgstr "Note" #: code:addons/hr_timesheet_sheet/static/src/xml/timesheet.xml:33 #, python-format msgid "Add" -msgstr "" +msgstr "Ajouter" #. module: hr_timesheet_sheet #: view:timesheet.report:0 @@ -639,7 +646,7 @@ msgstr "" #. module: hr_timesheet_sheet #: model:ir.model,name:hr_timesheet_sheet.model_account_analytic_line msgid "Analytic Line" -msgstr "" +msgstr "Ligne analytique" #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -650,7 +657,7 @@ msgstr "Août" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "Differences" -msgstr "" +msgstr "Différences" #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -678,7 +685,7 @@ msgstr "Feuilles de temps par période" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Est abonné" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -736,6 +743,8 @@ msgid "" "The timesheet cannot be validated as it does not contain an equal number of " "sign ins and sign outs." msgstr "" +"La feuille de temps ne peut pas être validée car elle ne contient pas un " +"nombre égal de pointage d'entrée et de pointage de sortie." #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -764,6 +773,8 @@ msgstr "Résumé" #, python-format msgid "You cannot delete a timesheet which have attendance entries." msgstr "" +"Vous ne pouvez pas supprimer une feuille de temps qui possède des entrée de " +"présence." #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 @@ -777,11 +788,13 @@ msgid "" "You cannot have 2 timesheets that overlap!\n" "You should use the menu 'My Timesheet' to avoid this problem." msgstr "" +"Vous ne pouvez pas avoir 2 feuilles de temps qui se chevauchent!\n" +"Vous devriez utiliser le menu 'Ma feuille de temps' pour éviter ce problème." #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "Submit to Manager" -msgstr "" +msgstr "Soumettre au responsable" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -803,10 +816,11 @@ msgid "Search Account" msgstr "Recherche de comptes" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" +"Vous ne pouvez pas modifier une entrée dans une feuille de temps confirmée." #. module: hr_timesheet_sheet #: help:res.company,timesheet_max_difference:0 @@ -841,6 +855,8 @@ msgid "" "You cannot have 2 timesheets that overlap!\n" "Please use the menu 'My Current Timesheet' to avoid this problem." msgstr "" +"Vous ne pouvez pas avoir 2 feuilles de temps qui se chevauchent!\n" +"SVP utilisez le menu 'Ma feuille de temps actuelle' pour éviter ce problème." #. module: hr_timesheet_sheet #: view:hr.timesheet.current.open:0 @@ -898,6 +914,7 @@ msgstr "Regrouper par année" #, python-format msgid "Click to add projects, contracts or analytic accounts." msgstr "" +"Cliquez pour ajouter des projets, des contrats ou des comptes analytiques." #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_validatedtimesheet0 @@ -907,7 +924,7 @@ msgstr "L'état est à 'Validé'." #. module: hr_timesheet_sheet #: model:ir.model,name:hr_timesheet_sheet.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -929,7 +946,7 @@ msgstr "Feuilles de temps confirmées" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "Details" -msgstr "" +msgstr "Détails" #. module: hr_timesheet_sheet #: model:ir.model,name:hr_timesheet_sheet.model_hr_analytic_timesheet @@ -941,6 +958,7 @@ msgstr "Ligne de feuille de temps" #, python-format msgid "You cannot delete a timesheet which is already confirmed." msgstr "" +"Vous ne pouvez pas supprimer des feuilles de temps qui sont déjà confirmées." #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -999,7 +1017,7 @@ msgstr "Total des présences" #: code:addons/hr_timesheet_sheet/static/src/xml/timesheet.xml:39 #, python-format msgid "Add a Line" -msgstr "" +msgstr "Ajouter une ligne" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,total_difference:0 @@ -1011,7 +1029,7 @@ msgstr "Différence" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:64 #, python-format msgid "You cannot duplicate a timesheet." -msgstr "" +msgstr "Vous ne pouvez pas dupliquer une feuille de temps." #. module: hr_timesheet_sheet #: selection:hr_timesheet_sheet.sheet,state_attendance:0 @@ -1046,6 +1064,8 @@ msgstr "Employés" #: constraint:hr.analytic.timesheet:0 msgid "You cannot modify an entry in a Confirmed/Done timesheet !" msgstr "" +"Vous ne pouvez pas modifier une entrée dans une feuilles de temps " +"confirmée/terminée!" #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_timesheet0 @@ -1067,7 +1087,7 @@ msgstr "Confirmation" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:99 #, python-format msgid "Warning!" -msgstr "" +msgstr "Attention !" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet.account,invoice_rate:0 @@ -1075,11 +1095,11 @@ msgid "Invoice rate" msgstr "Taux de facturation" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" -msgstr "" +msgstr "Erreur utilisateur!" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet.day:0 @@ -1094,7 +1114,7 @@ msgstr "Approuver" #. module: hr_timesheet_sheet #: help:hr_timesheet_sheet.sheet,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Historique des messages et communications" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,account_ids:0 diff --git a/addons/hr_timesheet_sheet/i18n/hr.po b/addons/hr_timesheet_sheet/i18n/hr.po index f35605e2a5a..30af1b08650 100644 --- a/addons/hr_timesheet_sheet/i18n/hr.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -141,8 +141,8 @@ msgid "Based on the timesheet" msgstr "Bazirano na kontrolnoj kartici" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "Ne možete modificirati polje u potvrđenoj kontrolnoj kartici." @@ -197,8 +197,8 @@ msgid "Please create an employee and associate it with this user." msgstr "Kreirajte zaposlenika i pridružite ga sa ovim korisnikom." #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -244,9 +244,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -791,7 +791,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1060,8 +1060,8 @@ msgid "Invoice rate" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "Greška korisnika!" diff --git a/addons/hr_timesheet_sheet/i18n/hu.po b/addons/hr_timesheet_sheet/i18n/hu.po index 611eae69339..fbd52bf4e62 100644 --- a/addons/hr_timesheet_sheet/i18n/hu.po +++ b/addons/hr_timesheet_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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -147,8 +147,8 @@ msgid "Based on the timesheet" msgstr "Munkaidő-kimutatás alapján" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "Nem tud módosítani a visszaigazolt időkimutatáson." @@ -204,8 +204,8 @@ msgstr "" "Kérem hozzon létre egy munkavállalót és társítsa ezzel a felhasználóval." #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -266,9 +266,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -845,7 +845,7 @@ msgid "Search Account" msgstr "Felhasználó keresés" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "Nem módosíthatja a beírásokat egy visszaigazolt időkimutatáson." @@ -1131,8 +1131,8 @@ msgid "Invoice rate" msgstr "Számlázási ráta" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "Felhasználói hiba!" diff --git a/addons/hr_timesheet_sheet/i18n/id.po b/addons/hr_timesheet_sheet/i18n/id.po index 570611e7c9a..a909fa07884 100644 --- a/addons/hr_timesheet_sheet/i18n/id.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -141,8 +141,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -197,8 +197,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -244,9 +244,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -789,7 +789,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1058,8 +1058,8 @@ msgid "Invoice rate" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/it.po b/addons/hr_timesheet_sheet/i18n/it.po index 889f647e084..c2bff4f2eda 100644 --- a/addons/hr_timesheet_sheet/i18n/it.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -42,6 +42,8 @@ msgid "" " computation for one sheet. Set this to 0 if you do not want " "any control." msgstr "" +"Differenza consentita tra le ore di presenza e le ore segnate sul timesheet, " +"in ore per ogni timesheet. Imposta a 0 per disattivare il controllo." #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -76,6 +78,8 @@ msgid "" "In order to create a timesheet for this employee, you must assign an " "analytic journal to the employee, like 'Timesheet Journal'." msgstr "" +"Per creare un timesheet per questo dipendente, bisogna assegnare un " +"Sezionale Analitico al dipendente. Ad esempio, 'Sezionale Timesheet'." #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -92,7 +96,7 @@ msgstr "# Costo" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Messaggi Non Letti" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -112,7 +116,7 @@ msgstr "Azienda" #: model:process.node,name:hr_timesheet_sheet.process_node_timesheet0 #: view:timesheet.report:0 msgid "Timesheet" -msgstr "Orario di Lavoro" +msgstr "Timesheet" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 @@ -133,7 +137,7 @@ msgstr "Fino a" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "to" -msgstr "" +msgstr "a" #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_invoiceonwork0 @@ -141,11 +145,11 @@ msgid "Based on the timesheet" msgstr "Basato su timesheet" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." -msgstr "" +msgstr "Non è possibile modificare le righe di un timesheet confermato." #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -156,7 +160,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 "I Miei Orari di Lavoro attuali" +msgstr "Il mio Timesheet corrente" #. module: hr_timesheet_sheet #: model:process.transition.action,name:hr_timesheet_sheet.process_transition_action_validatetimesheet0 @@ -166,7 +170,7 @@ msgstr "Convalida" #. module: hr_timesheet_sheet #: selection:hr_timesheet_sheet.sheet,state:0 msgid "Approved" -msgstr "" +msgstr "Approvato" #. module: hr_timesheet_sheet #: selection:hr_timesheet_sheet.sheet,state_attendance:0 @@ -194,11 +198,11 @@ msgstr "" #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Please create an employee and associate it with this user." -msgstr "" +msgstr "Crea un dipendente e associalo a questo utente." #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -208,7 +212,7 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:205 #, python-format msgid "Week " -msgstr "" +msgstr "Settimana " #. module: hr_timesheet_sheet #: model:ir.actions.act_window,help:hr_timesheet_sheet.action_hr_timesheet_current_open @@ -224,7 +228,7 @@ msgstr "" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Messaggi" #. module: hr_timesheet_sheet #: help:hr_timesheet_sheet.sheet,state:0 @@ -244,13 +248,13 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" -msgstr "" +msgstr "Errore!" #. module: hr_timesheet_sheet #: field:hr.config.settings,timesheet_max_difference:0 @@ -274,7 +278,7 @@ msgstr "" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet.account,name:0 msgid "Project / Analytic Account" -msgstr "" +msgstr "Progetto / Conto Analitico" #. module: hr_timesheet_sheet #: model:process.transition,name:hr_timesheet_sheet.process_transition_validatetimesheet0 @@ -313,7 +317,7 @@ msgstr "" #: view:timesheet.report:0 #: field:timesheet.report,account_id:0 msgid "Analytic Account" -msgstr "Contabilità Analitica" +msgstr "Conto Analitico" #. module: hr_timesheet_sheet #: help:hr_timesheet_sheet.sheet,message_summary:0 @@ -339,7 +343,7 @@ msgstr "Data Da" #: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_employee_2_hr_timesheet #: view:res.company:0 msgid "Timesheets" -msgstr "Orari di Lavoro" +msgstr "Timesheet" #. module: hr_timesheet_sheet #: model:process.node,name:hr_timesheet_sheet.process_node_confirmedtimesheet0 @@ -363,7 +367,7 @@ msgstr "Conferma" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,timesheet_ids:0 msgid "Timesheet lines" -msgstr "Righe Orari di Lavoro" +msgstr "Righe Timesheet" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_follower_ids:0 @@ -378,7 +382,7 @@ msgstr "Lo stato è \"Confermato\"." #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,employee_id:0 msgid "Employee" -msgstr "Impiegato" +msgstr "Dipendente" #. module: hr_timesheet_sheet #: selection:hr_timesheet_sheet.sheet,state:0 @@ -400,7 +404,7 @@ msgstr "Durata totale" #: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_form #: model:ir.ui.menu,name:hr_timesheet_sheet.menu_act_hr_timesheet_sheet_form msgid "Timesheets to Validate" -msgstr "" +msgstr "Timesheet da validare" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -791,7 +795,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1060,8 +1064,8 @@ msgid "Invoice rate" msgstr "Tasso di fatturazione" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/ja.po b/addons/hr_timesheet_sheet/i18n/ja.po index 0d82bad780c..dec63d8c8a8 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -142,8 +142,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -198,8 +198,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -248,9 +248,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -793,7 +793,7 @@ msgid "Search Account" msgstr "アカウントを検索" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1062,8 +1062,8 @@ msgid "Invoice rate" msgstr "請求率" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/ko.po b/addons/hr_timesheet_sheet/i18n/ko.po index a580b9e7e87..f03e230a2f4 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -28,13 +28,13 @@ msgstr "시트" #. module: hr_timesheet_sheet #: model:process.transition,name:hr_timesheet_sheet.process_transition_timesheetdraft0 msgid "Service" -msgstr "" +msgstr "서비스" #. module: hr_timesheet_sheet #: field:hr.timesheet.report,quantity:0 #: field:timesheet.report,quantity:0 msgid "Time" -msgstr "" +msgstr "시간" #. module: hr_timesheet_sheet #: help:hr.config.settings,timesheet_max_difference:0 @@ -43,6 +43,9 @@ msgid "" " computation for one sheet. Set this to 0 if you do not want " "any control." msgstr "" +"Allowed difference in hours between the sign in/out and the timesheet\n" +" computation for one sheet. Set this to 0 if you do not want " +"any control." #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -62,12 +65,12 @@ msgstr "총 참석" #: view:timesheet.report:0 #: field:timesheet.report,department_id:0 msgid "Department" -msgstr "" +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 @@ -82,7 +85,7 @@ msgstr "" #: selection:hr.timesheet.report,month:0 #: selection:timesheet.report,month:0 msgid "March" -msgstr "" +msgstr "3월" #. module: hr_timesheet_sheet #: view:timesheet.report:0 @@ -93,7 +96,7 @@ msgstr "" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "읽지 않은 메시지" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -102,7 +105,7 @@ msgstr "" #: view:timesheet.report:0 #: field:timesheet.report,company_id:0 msgid "Company" -msgstr "" +msgstr "회사" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -123,7 +126,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 @@ -142,11 +145,11 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." -msgstr "" +msgstr "확정된 타임시트에 있는 엔트리를 수정할 수 없습니다." #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -167,17 +170,17 @@ msgstr "검증" #. module: hr_timesheet_sheet #: selection:hr_timesheet_sheet.sheet,state:0 msgid "Approved" -msgstr "" +msgstr "승인됨" #. module: hr_timesheet_sheet #: selection:hr_timesheet_sheet.sheet,state_attendance:0 msgid "Present" -msgstr "" +msgstr "출근" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 msgid "Total Cost" -msgstr "" +msgstr "총 원가" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 @@ -189,7 +192,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 @@ -198,8 +201,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -225,7 +228,7 @@ msgstr "" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_ids:0 msgid "Messages" -msgstr "" +msgstr "메세지" #. module: hr_timesheet_sheet #: help:hr_timesheet_sheet.sheet,state:0 @@ -245,13 +248,13 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" -msgstr "" +msgstr "오류!" #. module: hr_timesheet_sheet #: field:hr.config.settings,timesheet_max_difference:0 @@ -270,22 +273,22 @@ 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 msgid "Project / Analytic Account" -msgstr "" +msgstr "프로젝트 / 관리회계" #. module: hr_timesheet_sheet #: model:process.transition,name:hr_timesheet_sheet.process_transition_validatetimesheet0 msgid "Validation" -msgstr "" +msgstr "확인" #. module: hr_timesheet_sheet #: help:hr_timesheet_sheet.sheet,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "체크할 경우, 새로운 메시지를 주목할 필요가 있습니다." #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:69 @@ -306,7 +309,7 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:215 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "유효하지 않은 액션!" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -369,17 +372,17 @@ msgstr "일정 라인" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "담당자" #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_confirmedtimesheet0 msgid "State is 'confirmed'." -msgstr "" +msgstr "확정 상태입니다." #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,employee_id:0 msgid "Employee" -msgstr "" +msgstr "직원" #. module: hr_timesheet_sheet #: selection:hr_timesheet_sheet.sheet,state:0 @@ -407,7 +410,7 @@ msgstr "" #: view:hr.timesheet.report:0 #: view:hr_timesheet_sheet.sheet:0 msgid "Hours" -msgstr "" +msgstr "시간" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -418,13 +421,13 @@ msgstr "" #. module: hr_timesheet_sheet #: model:process.transition,note:hr_timesheet_sheet.process_transition_validatetimesheet0 msgid "The project manager validates the timesheets." -msgstr "" +msgstr "프로젝트관리자가 타임시트를 확인합니다." #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 #: selection:timesheet.report,month:0 msgid "July" -msgstr "" +msgstr "7월" #. module: hr_timesheet_sheet #: field:hr.config.settings,timesheet_range:0 @@ -436,7 +439,7 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:86 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "설정 오류!" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,state:0 @@ -453,7 +456,7 @@ msgstr "" #. module: hr_timesheet_sheet #: selection:hr_timesheet_sheet.sheet,state:0 msgid "Waiting Approval" -msgstr "" +msgstr "승인 대기 중" #. module: hr_timesheet_sheet #: view:timesheet.report:0 @@ -494,19 +497,19 @@ msgstr "" msgid "" "In order to create a timesheet for this employee, you must link the employee " "to a product, like 'Consultant'." -msgstr "" +msgstr "이 직원을 위한 타임시트를 생성하기 위해 직원을 제품에 연계(예, 컨설턴트)시켜야 합니다." #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 #: selection:timesheet.report,month:0 msgid "September" -msgstr "" +msgstr "9월" #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 #: selection:timesheet.report,month:0 msgid "December" -msgstr "" +msgstr "12월" #. module: hr_timesheet_sheet #: view:hr.timesheet.current.open:0 @@ -532,7 +535,7 @@ msgstr "" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "In Draft" -msgstr "" +msgstr "초안 상태" #. module: hr_timesheet_sheet #: model:process.transition,name:hr_timesheet_sheet.process_transition_attendancetimesheet0 @@ -790,7 +793,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1059,8 +1062,8 @@ msgid "Invoice rate" msgstr "인보이스 비율" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/lt.po b/addons/hr_timesheet_sheet/i18n/lt.po index 32487e91ddb..a59c8d6d444 100644 --- a/addons/hr_timesheet_sheet/i18n/lt.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -141,8 +141,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -197,8 +197,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -244,9 +244,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -789,7 +789,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1058,8 +1058,8 @@ msgid "Invoice rate" msgstr "Sąskaitos faktūros koeficientas" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/lv.po b/addons/hr_timesheet_sheet/i18n/lv.po index 80fc86cae88..f9521f152e1 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -142,8 +142,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -198,8 +198,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -245,9 +245,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -790,7 +790,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1059,8 +1059,8 @@ msgid "Invoice rate" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/mk.po b/addons/hr_timesheet_sheet/i18n/mk.po index 3242e044e4f..aff392be809 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, 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 @@ -204,14 +204,14 @@ msgid "Please create an employee and associate it with this user." msgstr "Креирајте вработен и поврзете го со овој корисник." #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format 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 @@ -266,9 +267,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -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 @@ -841,10 +844,10 @@ msgid "Search Account" msgstr "Барај сметка" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, 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 @@ -1125,8 +1130,8 @@ msgid "Invoice rate" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "Корисничка грешка!" @@ -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,7 +1219,7 @@ 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 "Временска таблица по ден" #~ msgid "Today" #~ msgstr "Денес" diff --git a/addons/hr_timesheet_sheet/i18n/mn.po b/addons/hr_timesheet_sheet/i18n/mn.po index 1d1d2127970..b1443a3361d 100644 --- a/addons/hr_timesheet_sheet/i18n/mn.po +++ b/addons/hr_timesheet_sheet/i18n/mn.po @@ -27,8 +27,8 @@ msgstr "" "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 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -159,8 +159,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "Та баталгаажсан цагийн хуудсыг орж өөрчлөх боломжгүй." @@ -215,8 +215,8 @@ msgid "Please create an employee and associate it with this user." msgstr "Ажилчинг үүсгэх холбогдох хэрэглэгчтэй холбоно уу." #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -273,9 +273,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -846,7 +846,7 @@ msgid "Search Account" msgstr "Данс Хайх" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "Та батлагдсан цагийн хуудсыг өөрчлөх боломжгүй" @@ -1128,8 +1128,8 @@ msgid "Invoice rate" msgstr "Нэхэмжлэлийн хөнгөлөлтийн харьцаа" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "Хэрэглэгчийн алдаа!" diff --git a/addons/hr_timesheet_sheet/i18n/nl.po b/addons/hr_timesheet_sheet/i18n/nl.po index 0b6f9a88452..d958f12b4d4 100644 --- a/addons/hr_timesheet_sheet/i18n/nl.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -147,8 +147,8 @@ msgid "Based on the timesheet" msgstr "Gebaseerd op de urenstaat" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "U kunt geen wijziging doen in een geaccordeerde tijdsregistratie." @@ -203,8 +203,8 @@ msgid "Please create an employee and associate it with this user." msgstr "Maak een werknemer aan en koppel deze aan de gebruiker." #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -265,9 +265,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -808,7 +808,7 @@ msgstr "" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "Unvalidated Timesheets" -msgstr "Ongevalideerde urenstaten" +msgstr "Niet goedgekeurde urenstaten" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 @@ -846,7 +846,7 @@ msgid "Search Account" msgstr "Rekening zoeken" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1130,8 +1130,8 @@ msgid "Invoice rate" msgstr "Factuur tarief" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "Gebruikersfout!" diff --git a/addons/hr_timesheet_sheet/i18n/nl_BE.po b/addons/hr_timesheet_sheet/i18n/nl_BE.po index 3fb862555e3..7fc76bf5c73 100644 --- a/addons/hr_timesheet_sheet/i18n/nl_BE.po +++ b/addons/hr_timesheet_sheet/i18n/nl_BE.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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -141,8 +141,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -197,8 +197,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -244,9 +244,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -789,7 +789,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1058,8 +1058,8 @@ msgid "Invoice rate" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/pl.po b/addons/hr_timesheet_sheet/i18n/pl.po index 85ea7a9775b..bab434fe07e 100644 --- a/addons/hr_timesheet_sheet/i18n/pl.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -146,8 +146,8 @@ msgid "Based on the timesheet" msgstr "Na podstawie karty" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "Nie możesz modyfikować zapisów w potwierdzonej karcie pracy." @@ -202,8 +202,8 @@ msgid "Please create an employee and associate it with this user." msgstr "Utwórz pracownika i przypisz do tego użytkownika." #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -260,9 +260,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -834,7 +834,7 @@ msgid "Search Account" msgstr "Szukaj konta" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "Nie możesz modyfikować zapisu w potwierdzonej karcie pracy" @@ -1108,8 +1108,8 @@ msgid "Invoice rate" msgstr "Współczynnik fakturowania" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "Błąd użytkownika!" diff --git a/addons/hr_timesheet_sheet/i18n/pt.po b/addons/hr_timesheet_sheet/i18n/pt.po index 7b80a4c20d4..3a365ab64ed 100644 --- a/addons/hr_timesheet_sheet/i18n/pt.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -141,8 +141,8 @@ msgid "Based on the timesheet" msgstr "Baseado na Folha de Horas" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -197,8 +197,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -250,9 +250,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -797,7 +797,7 @@ msgid "Search Account" msgstr "Pesquisar Conta" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -890,7 +890,7 @@ msgstr "Grupo por ano da data" #: code:addons/hr_timesheet_sheet/static/src/xml/timesheet.xml:56 #, python-format msgid "Click to add projects, contracts or analytic accounts." -msgstr "" +msgstr "Clique para adicionar projetos, contactos ou contas analíticas." #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_validatedtimesheet0 @@ -1068,8 +1068,8 @@ msgid "Invoice rate" msgstr "Taxa da Fatura" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "Erro do utilizador!" diff --git a/addons/hr_timesheet_sheet/i18n/pt_BR.po b/addons/hr_timesheet_sheet/i18n/pt_BR.po index 0fe49869df5..c2d8fa05580 100644 --- a/addons/hr_timesheet_sheet/i18n/pt_BR.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -148,8 +148,8 @@ msgid "Based on the timesheet" msgstr "Baseado na planilha de apontamento" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -205,8 +205,8 @@ msgid "Please create an employee and associate it with this user." msgstr "Por favor crie um funcionário e associe com o usuário." #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -266,9 +266,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -843,7 +843,7 @@ msgid "Search Account" msgstr "Buscar Conta" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1129,8 +1129,8 @@ msgid "Invoice rate" msgstr "Taxa da Fatura" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "Erro de Usuário!" diff --git a/addons/hr_timesheet_sheet/i18n/ro.po b/addons/hr_timesheet_sheet/i18n/ro.po index 07392d0bf04..0077676719a 100644 --- a/addons/hr_timesheet_sheet/i18n/ro.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -146,8 +146,8 @@ msgid "Based on the timesheet" msgstr "Bazat pe fisa de pontaj" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "Nu puteti modifica o inregistrare intr-o fisa de pontaj confirmata." @@ -202,8 +202,8 @@ msgid "Please create an employee and associate it with this user." msgstr "Va rugam sa creati un angajat si sa il asociati cu acest utilizator." #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -264,9 +264,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -843,7 +843,7 @@ msgid "Search Account" msgstr "Cautati Cont" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "Nu puteti modifica o inregistrare dintr-o fisa de pontaj confirmata" @@ -1130,8 +1130,8 @@ msgid "Invoice rate" msgstr "Rata factura" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "Eroare utilizator!" diff --git a/addons/hr_timesheet_sheet/i18n/ru.po b/addons/hr_timesheet_sheet/i18n/ru.po index 4f334de329e..331e8401258 100644 --- a/addons/hr_timesheet_sheet/i18n/ru.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -33,7 +33,7 @@ msgstr "Сервис" #: field:hr.timesheet.report,quantity:0 #: field:timesheet.report,quantity:0 msgid "Time" -msgstr "" +msgstr "Время" #. module: hr_timesheet_sheet #: help:hr.config.settings,timesheet_max_difference:0 @@ -141,8 +141,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -195,10 +195,11 @@ msgstr "" #, python-format msgid "Please create an employee and associate it with this user." msgstr "" +"Пожалуйста, создайте сотрудника и свяжите его с данным пользователем." #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -208,7 +209,7 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:205 #, python-format msgid "Week " -msgstr "" +msgstr "Неделя " #. module: hr_timesheet_sheet #: model:ir.actions.act_window,help:hr_timesheet_sheet.action_hr_timesheet_current_open @@ -231,7 +232,7 @@ msgstr "" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Сообщения" #. module: hr_timesheet_sheet #: help:hr_timesheet_sheet.sheet,state:0 @@ -251,13 +252,13 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" -msgstr "" +msgstr "Ошибка!" #. module: hr_timesheet_sheet #: field:hr.config.settings,timesheet_max_difference:0 @@ -291,7 +292,7 @@ msgstr "Проверка" #. module: hr_timesheet_sheet #: help:hr_timesheet_sheet.sheet,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Если отмечено, новые сообщения требуют вашего внимания." #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:69 @@ -312,7 +313,7 @@ msgstr "Запись в расписании сотрудника" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:215 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Неверное действие!" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -419,7 +420,7 @@ msgstr "Часы" #: view:hr.timesheet.report:0 #: view:timesheet.report:0 msgid "Group by month of date" -msgstr "" +msgstr "Группировать по месяцу в дате" #. module: hr_timesheet_sheet #: model:process.transition,note:hr_timesheet_sheet.process_transition_validatetimesheet0 @@ -442,7 +443,7 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:86 #, python-format msgid "Configuration Error!" -msgstr "" +msgstr "Ошибка конфигурации!" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,state:0 @@ -459,7 +460,7 @@ msgstr "Работа над задачей" #. module: hr_timesheet_sheet #: selection:hr_timesheet_sheet.sheet,state:0 msgid "Waiting Approval" -msgstr "" +msgstr "Ожидает утверждения" #. module: hr_timesheet_sheet #: view:timesheet.report:0 @@ -565,12 +566,12 @@ msgstr "" #. module: hr_timesheet_sheet #: view:hr.timesheet.current.open:0 msgid "or" -msgstr "" +msgstr "или" #. module: hr_timesheet_sheet #: model:process.transition,name:hr_timesheet_sheet.process_transition_invoiceontimesheet0 msgid "Billing" -msgstr "" +msgstr "Биллинг" #. module: hr_timesheet_sheet #: model:process.transition,note:hr_timesheet_sheet.process_transition_timesheetdraft0 @@ -591,7 +592,7 @@ msgstr "" #: code:addons/hr_timesheet_sheet/static/src/xml/timesheet.xml:33 #, python-format msgid "Add" -msgstr "" +msgstr "Добавить" #. module: hr_timesheet_sheet #: view:timesheet.report:0 @@ -741,7 +742,7 @@ msgstr "Январь" #. module: hr_timesheet_sheet #: model:process.transition,note:hr_timesheet_sheet.process_transition_attendancetimesheet0 msgid "The employee signs in and signs out." -msgstr "" +msgstr "Вхождения и выходы сотрудника" #. module: hr_timesheet_sheet #: model:ir.model,name:hr_timesheet_sheet.model_res_company @@ -776,7 +777,7 @@ msgstr "" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "Submit to Manager" -msgstr "" +msgstr "Сохранить для менеджера" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -798,7 +799,7 @@ msgid "Search Account" msgstr "Поиск счёта" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -882,7 +883,7 @@ msgstr "Открыть расписание" #: view:hr.timesheet.report:0 #: view:timesheet.report:0 msgid "Group by year of date" -msgstr "" +msgstr "Группировать по году в дате" #. module: hr_timesheet_sheet #. openerp-web @@ -899,7 +900,7 @@ msgstr "В состоянии \"Проверено\"" #. module: hr_timesheet_sheet #: model:ir.model,name:hr_timesheet_sheet.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -921,7 +922,7 @@ msgstr "" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "Details" -msgstr "" +msgstr "Подробная информация" #. module: hr_timesheet_sheet #: model:ir.model,name:hr_timesheet_sheet.model_hr_analytic_timesheet @@ -1042,7 +1043,7 @@ msgstr "" #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_timesheet0 msgid "Information of time spent on a service" -msgstr "" +msgstr "Данные о времени проведённом на службе" #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -1059,7 +1060,7 @@ msgstr "Подтверждение" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:99 #, python-format msgid "Warning!" -msgstr "" +msgstr "Предупреждение!" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet.account,invoice_rate:0 @@ -1067,11 +1068,11 @@ msgid "Invoice rate" msgstr "Ставка счета" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" -msgstr "" +msgstr "Ошибка пользователя!" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet.day:0 @@ -1086,7 +1087,7 @@ msgstr "Подтвердить" #. module: hr_timesheet_sheet #: help:hr_timesheet_sheet.sheet,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Сообщения и история общения" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,account_ids:0 @@ -1132,7 +1133,7 @@ msgstr "Год" #: view:hr.timesheet.current.open:0 #: selection:hr_timesheet_sheet.sheet,state:0 msgid "Open" -msgstr "" +msgstr "Открыть" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 @@ -1151,7 +1152,7 @@ msgstr "Всего" #. module: hr_timesheet_sheet #: field:hr.timesheet.report,journal_id:0 msgid "Journal" -msgstr "" +msgstr "Журнал" #. module: hr_timesheet_sheet #: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_sheet_by_day diff --git a/addons/hr_timesheet_sheet/i18n/sk.po b/addons/hr_timesheet_sheet/i18n/sk.po index 81ef88be2ab..946f2d77f0f 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -142,8 +142,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -198,8 +198,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -245,9 +245,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -790,7 +790,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1059,8 +1059,8 @@ msgid "Invoice rate" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/sl.po b/addons/hr_timesheet_sheet/i18n/sl.po index 72a92dbd6ee..1bff96068ab 100644 --- a/addons/hr_timesheet_sheet/i18n/sl.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -141,8 +141,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -197,8 +197,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -244,9 +244,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -789,7 +789,7 @@ msgid "Search Account" msgstr "Iskanje konta" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1058,8 +1058,8 @@ msgid "Invoice rate" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "Napaka uporabnika!" diff --git a/addons/hr_timesheet_sheet/i18n/sq.po b/addons/hr_timesheet_sheet/i18n/sq.po index a36468efc7f..d26c613b5c5 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -142,8 +142,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -198,8 +198,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -245,9 +245,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -790,7 +790,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1059,8 +1059,8 @@ msgid "Invoice rate" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/sv.po b/addons/hr_timesheet_sheet/i18n/sv.po index 21a68afbcf5..9b4447368fe 100644 --- a/addons/hr_timesheet_sheet/i18n/sv.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -141,8 +141,8 @@ msgid "Based on the timesheet" msgstr "Baserat på tidrapporten" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -197,8 +197,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -250,9 +250,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -797,7 +797,7 @@ msgid "Search Account" msgstr "Sök Konto" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1068,8 +1068,8 @@ msgid "Invoice rate" msgstr "Fakturakostnad" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/th.po b/addons/hr_timesheet_sheet/i18n/th.po index 374870990b1..ee9667a035e 100644 --- a/addons/hr_timesheet_sheet/i18n/th.po +++ b/addons/hr_timesheet_sheet/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-06-18 05:46+0000\n" -"X-Generator: Launchpad (build 16673)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\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 ff095608f0b..7fbb1562cd0 100644 --- a/addons/hr_timesheet_sheet/i18n/tlh.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -141,8 +141,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -197,8 +197,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -244,9 +244,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -789,7 +789,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1058,8 +1058,8 @@ msgid "Invoice rate" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/tr.po b/addons/hr_timesheet_sheet/i18n/tr.po index 85d2709eea7..b13db811670 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -76,6 +76,8 @@ msgid "" "In order to create a timesheet for this employee, you must assign an " "analytic journal to the employee, like 'Timesheet Journal'." msgstr "" +"Bu personel için bir zaman çizelgesi oluşturmak için, 'Zaman Çizelgesi " +"Yevmiye' gibi, personel bir analitik yevmiyesi atamanız gerekir." #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -141,8 +143,8 @@ msgid "Based on the timesheet" msgstr "ZamanÇizelgesi bazında" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "Onaylamış ZamanÇizelgesi bir girişi değiştiremezsiniz." @@ -151,7 +153,7 @@ msgstr "Onaylamış ZamanÇizelgesi bir girişi değiştiremezsiniz." #: view:hr.timesheet.report:0 #: view:timesheet.report:0 msgid "Group by day of date" -msgstr "" +msgstr "Gün tarihine göre gurupla" #. module: hr_timesheet_sheet #: model:ir.ui.menu,name:hr_timesheet_sheet.menu_act_hr_timesheet_sheet_form_my_current @@ -182,7 +184,7 @@ msgstr "Toplam Maliyet" #: view:hr_timesheet_sheet.sheet:0 #: model:process.transition.action,name:hr_timesheet_sheet.process_transition_action_refusetimesheet0 msgid "Refuse" -msgstr "Reddetme" +msgstr "Reddet" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 @@ -197,8 +199,8 @@ msgid "Please create an employee and associate it with this user." msgstr "Lütfen bir çalışan oluşturun ve bu kullanıcı ile ilişkilendirin" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -221,6 +223,12 @@ 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 "" +"Eğer sisteme etkinliklerinizi kitap gibi olabilir ki benim Zaman Çizelgesi " +"zaman çizelgesi açılır. Aynı formu, size katılmcı kayıt (Giriş / Çıkış " +"Kayıt) ve farklı projeler üzerinde yapılan çalışma saatleri " +"tanımlayabilirsiniz.Şirketce belirtilen süre sonunda, bir zaman çizelgesi, " +"kullanıcı tarafından doğrulanır ve yönetici tarafından onaylanır. Gerekirse " +"proje üzerinde tanımlanan, siz zaman çizelgesi göre faturalar oluşturabilir." #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_ids:0 @@ -245,9 +253,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -258,19 +266,20 @@ msgstr "Hata!" msgid "" "Allow a difference of time between timesheets and attendances of (in hours)" msgstr "" +"Zaman çizelgeleri ve katılımcı (saat) arasında bir zaman farkı izin verin" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:99 #, python-format msgid "" "Please verify that the total difference of the sheet is lower than %.2f." -msgstr "" +msgstr "Sayfanın toplam fark %.2f daha düşük olduğunu kontrol edin." #. module: hr_timesheet_sheet #: 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 "ZamanÇizelgesi Formu Analizi" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet.account,name:0 @@ -285,7 +294,7 @@ msgstr "Onaylama" #. module: hr_timesheet_sheet #: help:hr_timesheet_sheet.sheet,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "İşaretliyse yeni mesajlar ilginizi gerektirir." #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:69 @@ -295,11 +304,13 @@ msgid "" "In order to create a timesheet for this employee, you must assign it to a " "user." msgstr "" +"Bu personel için bir zaman çizelgesi oluşturmak için, bir kullanıcıya " +"atamanız gerekir." #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_attendance0 msgid "Employee's timesheet entry" -msgstr "" +msgstr "PersonelZaman çizelgesi girişi" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:213 @@ -322,11 +333,13 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Sohbetçi özetini (mesaj sayısı, ...) barındırır. Bu özet kanban " +"görünümlerine eklenmek üzere doğrudan html biçimindedir." #. module: hr_timesheet_sheet #: field:timesheet.report,nbr:0 msgid "#Nbr" -msgstr "" +msgstr "#Nbr" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,date_from:0 @@ -369,12 +382,12 @@ msgstr "ZamanÇizelge satırıları" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_follower_ids:0 msgid "Followers" -msgstr "Takipçi" +msgstr "İzleyiciler" #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_confirmedtimesheet0 msgid "State is 'confirmed'." -msgstr "" +msgstr "Durumu 'doğruladı' ." #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,employee_id:0 @@ -390,7 +403,7 @@ msgstr "Yeni" #. module: hr_timesheet_sheet #: model:ir.actions.act_window,name:hr_timesheet_sheet.action_week_attendance_graph msgid "My Total Attendances By Week" -msgstr "" +msgstr "Hafta olarak Toplam katılımcılar" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet.account,total:0 @@ -401,7 +414,7 @@ msgstr "Toplam Zaman" #: model:ir.actions.act_window,name:hr_timesheet_sheet.act_hr_timesheet_sheet_form #: model:ir.ui.menu,name:hr_timesheet_sheet.menu_act_hr_timesheet_sheet_form msgid "Timesheets to Validate" -msgstr "" +msgstr "ZamanÇizelgeleri Doğrulama" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -413,12 +426,12 @@ msgstr "Saatler" #: view:hr.timesheet.report:0 #: view:timesheet.report:0 msgid "Group by month of date" -msgstr "" +msgstr "Ayın Günlerini gurupla" #. module: hr_timesheet_sheet #: model:process.transition,note:hr_timesheet_sheet.process_transition_validatetimesheet0 msgid "The project manager validates the timesheets." -msgstr "" +msgstr "Proje yöneticisi zamançizelgeleri doğrular." #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -429,7 +442,7 @@ msgstr "Temmuz" #. module: hr_timesheet_sheet #: field:hr.config.settings,timesheet_range:0 msgid "Validate timesheets every" -msgstr "" +msgstr "ZamanÇizelgeleri her doğrulama" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:73 @@ -448,7 +461,7 @@ msgstr "Durumu" #. module: hr_timesheet_sheet #: model:process.node,name:hr_timesheet_sheet.process_node_workontask0 msgid "Work on Task" -msgstr "" +msgstr "Görev Çalışmaları" #. module: hr_timesheet_sheet #: selection:hr_timesheet_sheet.sheet,state:0 @@ -486,7 +499,7 @@ msgstr "# Toplam ZamanÇizelge" #. module: hr_timesheet_sheet #: model:ir.model,name:hr_timesheet_sheet.model_hr_timesheet_current_open msgid "hr.timesheet.current.open" -msgstr "" +msgstr "hr.timesheet.current.open" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:71 @@ -495,6 +508,8 @@ msgid "" "In order to create a timesheet for this employee, you must link the employee " "to a product, like 'Consultant'." msgstr "" +"Bu personel için bir zaman çizelgesi oluşturmak için, 'Danışman' gibi, bir " +"ürün için personel bağlantı gerekir." #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -511,7 +526,7 @@ msgstr "Aralık" #. module: hr_timesheet_sheet #: view:hr.timesheet.current.open:0 msgid "It will open your current timesheet" -msgstr "" +msgstr "Bu mevcut zamançizelgesi açılacak" #. module: hr_timesheet_sheet #: selection:hr.config.settings,timesheet_range:0 @@ -527,12 +542,12 @@ msgstr "Ay" #: view:timesheet.report:0 #: field:timesheet.report,total_diff:0 msgid "#Total Diff" -msgstr "" +msgstr "#Toplam Diff" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "In Draft" -msgstr "" +msgstr "Taslak" #. module: hr_timesheet_sheet #: model:process.transition,name:hr_timesheet_sheet.process_transition_attendancetimesheet0 @@ -546,6 +561,8 @@ msgid "" "In order to create a timesheet for this employee, you must link the employee " "to a product." msgstr "" +"Bu çalışan için bir zaman çizelgesi oluşturmak için, bir ürün için çalışan " +"bağlantı gerekir." #. module: hr_timesheet_sheet #. openerp-web @@ -564,7 +581,7 @@ msgstr "veya" #. module: hr_timesheet_sheet #: model:process.transition,name:hr_timesheet_sheet.process_transition_invoiceontimesheet0 msgid "Billing" -msgstr "" +msgstr "Faturalama" #. module: hr_timesheet_sheet #: model:process.transition,note:hr_timesheet_sheet.process_transition_timesheetdraft0 @@ -648,7 +665,7 @@ msgstr "Haziran" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,state_attendance:0 msgid "Current Status" -msgstr "Mevcut Durum" +msgstr "Mevcut Durumu" #. module: hr_timesheet_sheet #: selection:hr.config.settings,timesheet_range:0 @@ -660,12 +677,12 @@ msgstr "Hafta" #: 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 "Döneme göre zamançizelgeleri" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçisi mi" +msgstr "Bir İzleyicidir" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -679,7 +696,7 @@ msgstr "Kullanıcı" #. 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 "Hesap göre zamançizelgeleri" #. module: hr_timesheet_sheet #: field:hr.timesheet.report,date:0 @@ -698,17 +715,17 @@ msgstr "Kasım" #: view:hr.timesheet.report:0 #: view:timesheet.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "Genişletilmiş Filtreler ..." #. module: hr_timesheet_sheet #: field:res.company,timesheet_range:0 msgid "Timesheet range" -msgstr "" +msgstr "ZamanÇizelgesi aralığı" #. module: hr_timesheet_sheet #: view:board.board:0 msgid "My Total Attendance By Week" -msgstr "" +msgstr "Hafta olarak Toplam Katılımım" #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -733,7 +750,7 @@ msgstr "Ocak" #. module: hr_timesheet_sheet #: model:process.transition,note:hr_timesheet_sheet.process_transition_attendancetimesheet0 msgid "The employee signs in and signs out." -msgstr "" +msgstr "Personel girişleri ve çıkışları." #. module: hr_timesheet_sheet #: model:ir.model,name:hr_timesheet_sheet.model_res_company @@ -750,12 +767,12 @@ msgstr "Özet" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:215 #, python-format msgid "You cannot delete a timesheet which have attendance entries." -msgstr "" +msgstr "Katılım girişleri var zamançizelgesini silemezsiniz." #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "Unvalidated Timesheets" -msgstr "" +msgstr "Doğrulanmamış ZamanÇizelgeleri" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 @@ -782,7 +799,7 @@ msgstr "Genel Hesap" #: help:hr.config.settings,timesheet_range:0 #: help:res.company,timesheet_range:0 msgid "Periodicity on which you validate your timesheets." -msgstr "" +msgstr "Periyodik olarak sizin zamançizelgeleri doğrulama." #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet.account:0 @@ -790,10 +807,10 @@ msgid "Search Account" msgstr "Hesap Arama" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" -msgstr "" +msgstr "Doğrulanmış bir girdi zamançizelgesinde değiştiremezsiniz" #. module: hr_timesheet_sheet #: help:res.company,timesheet_max_difference:0 @@ -825,13 +842,15 @@ msgid "" "You cannot have 2 timesheets that overlap!\n" "Please use the menu 'My Current Timesheet' to avoid this problem." msgstr "" +"Sen üst üste 2 zamançizelgelesi oluşturamazsın!\n" +"Bu sorunu önlemek için menü'de 'Mevcut ZamanÇizelgem' kullanı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 "Bemim ZamanÇizelgem" #. module: hr_timesheet_sheet #: view:timesheet.report:0 @@ -842,7 +861,7 @@ msgstr "Biten" #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_drafttimesheetsheet0 msgid "State is 'draft'." -msgstr "" +msgstr "Durumu 'taslak'." #. module: hr_timesheet_sheet #: view:hr.timesheet.current.open:0 @@ -862,7 +881,7 @@ msgstr "" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet.account:0 msgid "Timesheet by Accounts" -msgstr "" +msgstr "Hesaplara göre zamançizelgesi" #. module: hr_timesheet_sheet #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:50 @@ -874,41 +893,41 @@ msgstr "ZamanÇizelgesi Aç" #: view:hr.timesheet.report:0 #: view:timesheet.report:0 msgid "Group by year of date" -msgstr "" +msgstr "Tarihi yıl göre Grupla" #. module: hr_timesheet_sheet #. openerp-web #: code:addons/hr_timesheet_sheet/static/src/xml/timesheet.xml:56 #, python-format msgid "Click to add projects, contracts or analytic accounts." -msgstr "" +msgstr "Projelere, sözleşme veya analitik hesaplar eklemek için tıklayın" #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_validatedtimesheet0 msgid "State is 'validated'." -msgstr "" +msgstr "Durumu 'doğrulanmış'" #. module: hr_timesheet_sheet #: model:ir.model,name:hr_timesheet_sheet.model_hr_config_settings msgid "hr.config.settings" -msgstr "" +msgstr "hr.config.settings" #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 #: 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 "ZamanÇizelge Analizi" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "Search Timesheet" -msgstr "" +msgstr "ZamanÇizelgesi Arama" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 msgid "Confirmed Timesheets" -msgstr "" +msgstr "Doğrulanmış ZamanÇizelgeler" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 @@ -918,13 +937,13 @@ msgstr "Detaylar" #. module: hr_timesheet_sheet #: model:ir.model,name:hr_timesheet_sheet.model_hr_analytic_timesheet msgid "Timesheet Line" -msgstr "Mesai Kartı Satırı" +msgstr "Mesai Kart Satırı" #. 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 "Onaylandıktan sonra bir zaman çizelgesini silemezsiniz." #. module: hr_timesheet_sheet #: view:hr.timesheet.report:0 @@ -950,7 +969,7 @@ msgstr "Açıklama" #. module: hr_timesheet_sheet #: model:process.transition,note:hr_timesheet_sheet.process_transition_confirmtimesheet0 msgid "The employee periodically confirms his own timesheets." -msgstr "" +msgstr "Personel periyodik olarak kendi zaman çizelgelerini onaylar." #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -961,7 +980,7 @@ msgstr "Mayıs" #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_workontask0 msgid "Defines the work summary of task" -msgstr "" +msgstr "Görev çalışmalarının özetini tanımlar" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet:0 @@ -971,7 +990,7 @@ msgstr "Çıkış" #. module: hr_timesheet_sheet #: model:process.transition,note:hr_timesheet_sheet.process_transition_tasktimesheet0 msgid "Moves task entry into the timesheet line" -msgstr "" +msgstr "ZamanÇizelgesi satırına görev girişini taşır" #. module: hr_timesheet_sheet #: view:hr_timesheet_sheet.sheet.day:0 @@ -983,7 +1002,7 @@ msgstr "Toplam Katılımcılar" #: code:addons/hr_timesheet_sheet/static/src/xml/timesheet.xml:39 #, python-format msgid "Add a Line" -msgstr "Ekle bir Satıra" +msgstr "Satır Ekle" #. module: hr_timesheet_sheet #: field:hr_timesheet_sheet.sheet,total_difference:0 @@ -995,7 +1014,7 @@ msgstr "Fark" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:64 #, python-format msgid "You cannot duplicate a timesheet." -msgstr "" +msgstr "Bir zamançizelgesi çift olamaz." #. module: hr_timesheet_sheet #: selection:hr_timesheet_sheet.sheet,state_attendance:0 @@ -1029,12 +1048,12 @@ msgstr "Personeller" #. module: hr_timesheet_sheet #: constraint:hr.analytic.timesheet:0 msgid "You cannot modify an entry in a Confirmed/Done timesheet !" -msgstr "" +msgstr "Onaylanan/Biten zamançizelgesi girişi değiştiremezsiniz!" #. module: hr_timesheet_sheet #: model:process.node,note:hr_timesheet_sheet.process_node_timesheet0 msgid "Information of time spent on a service" -msgstr "" +msgstr "Hizmet için harcanan zaman bilgisi" #. module: hr_timesheet_sheet #: selection:hr.timesheet.report,month:0 @@ -1059,8 +1078,8 @@ msgid "Invoice rate" msgstr "Fatura oranı" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "Kullanıcı Hatası!" @@ -1148,7 +1167,7 @@ msgstr "Yevmiye" #. 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 "Günü olarak ZamanÇizelgesi" #~ msgid "Configuration" #~ msgstr "Ayarlar" diff --git a/addons/hr_timesheet_sheet/i18n/uk.po b/addons/hr_timesheet_sheet/i18n/uk.po index f8007ea6528..bd5e9188092 100644 --- a/addons/hr_timesheet_sheet/i18n/uk.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -141,8 +141,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -197,8 +197,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -244,9 +244,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -789,7 +789,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1058,8 +1058,8 @@ msgid "Invoice rate" msgstr "Норма накладних" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/vi.po b/addons/hr_timesheet_sheet/i18n/vi.po index c7f71551c21..66924ce9ae6 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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -142,8 +142,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -198,8 +198,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -245,9 +245,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -790,7 +790,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1059,8 +1059,8 @@ msgid "Invoice rate" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/zh_CN.po b/addons/hr_timesheet_sheet/i18n/zh_CN.po index fc2c135c656..60d2e518784 100644 --- a/addons/hr_timesheet_sheet/i18n/zh_CN.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -141,8 +141,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -197,8 +197,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -246,9 +246,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -791,7 +791,7 @@ msgid "Search Account" msgstr "查找辅助核算项" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1060,8 +1060,8 @@ msgid "Invoice rate" msgstr "发票税率" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/hr_timesheet_sheet/i18n/zh_TW.po b/addons/hr_timesheet_sheet/i18n/zh_TW.po index bdc053d342e..ea2b9b94714 100644 --- a/addons/hr_timesheet_sheet/i18n/zh_TW.po +++ b/addons/hr_timesheet_sheet/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-16 05:28+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:21+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: hr_timesheet_sheet #: field:hr.analytic.timesheet,sheet_id:0 @@ -141,8 +141,8 @@ msgid "Based on the timesheet" 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 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 #, python-format msgid "You cannot modify an entry in a confirmed timesheet." msgstr "" @@ -197,8 +197,8 @@ msgid "Please create an employee and associate it with this user." msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "" "You cannot enter an attendance date outside the current timesheet dates." @@ -244,9 +244,9 @@ msgstr "" #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:80 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:82 #: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:84 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:326 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:397 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:327 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:398 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #: code:addons/hr_timesheet_sheet/wizard/hr_timesheet_current.py:38 #, python-format msgid "Error!" @@ -789,7 +789,7 @@ msgid "Search Account" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:428 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:429 #, python-format msgid "You cannot modify an entry in a confirmed timesheet" msgstr "" @@ -1058,8 +1058,8 @@ msgid "Invoice rate" msgstr "" #. module: hr_timesheet_sheet -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:401 -#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:421 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:402 +#: code:addons/hr_timesheet_sheet/hr_timesheet_sheet.py:422 #, python-format msgid "User Error!" msgstr "" diff --git a/addons/knowledge/i18n/ar.po b/addons/knowledge/i18n/ar.po index d9f0c85fbbf..610b1764593 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/bg.po b/addons/knowledge/i18n/bg.po index 5166e9d4b11..ee76238f025 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/ca.po b/addons/knowledge/i18n/ca.po index 1c5acc8f0d2..15630d28127 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/cs.po b/addons/knowledge/i18n/cs.po index c9a194f8907..8acc6a179a8 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\n" #. module: knowledge diff --git a/addons/knowledge/i18n/da.po b/addons/knowledge/i18n/da.po index 297e8e8fce5..83075c1fffc 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/de.po b/addons/knowledge/i18n/de.po index c90e8d65496..9cb6b079a35 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 26e5125c797..b7fca6fc878 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/es.po b/addons/knowledge/i18n/es.po index 2fb51ebd0c1..e7711e315f2 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 4c9f3731640..43b0db79314 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 b6f646395de..9850c8115a7 100644 --- a/addons/knowledge/i18n/es_CR.po +++ b/addons/knowledge/i18n/es_CR.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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: knowledge diff --git a/addons/knowledge/i18n/et.po b/addons/knowledge/i18n/et.po index c9eb32eb723..12593f86995 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/fi.po b/addons/knowledge/i18n/fi.po index 50529d67069..3e7a217463f 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/fr.po b/addons/knowledge/i18n/fr.po index 907876ee721..259a86e84cb 100644 --- a/addons/knowledge/i18n/fr.po +++ b/addons/knowledge/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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/gl.po b/addons/knowledge/i18n/gl.po index a9003bffb59..ede4ae06ff4 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/hi.po b/addons/knowledge/i18n/hi.po index 1543b438bd1..487ca964dae 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/hr.po b/addons/knowledge/i18n/hr.po index 5c565fef833..f981fa49296 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/hu.po b/addons/knowledge/i18n/hu.po index 43e065898cb..a5775287264 100644 --- a/addons/knowledge/i18n/hu.po +++ b/addons/knowledge/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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/it.po b/addons/knowledge/i18n/it.po index 27c35a3377e..c6602db5215 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/ja.po b/addons/knowledge/i18n/ja.po index d52ea8aad85..f1f2a6e382d 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/lo.po b/addons/knowledge/i18n/lo.po index aa1150fbcd2..c584c834303 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/lv.po b/addons/knowledge/i18n/lv.po index 652590db589..dafbc3414e8 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/mk.po b/addons/knowledge/i18n/mk.po index 597eaa55ebb..9a4975d0f00 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 @@ -106,7 +106,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/knowledge/i18n/mn.po b/addons/knowledge/i18n/mn.po index 6ec1b23e0b0..079f6ca4769 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/nb.po b/addons/knowledge/i18n/nb.po index 2465a232f1c..ea0551ac768 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/nl.po b/addons/knowledge/i18n/nl.po index 4fc9d29acee..e0b10c6472c 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 b5278d3e260..aa20bd25f0e 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/pl.po b/addons/knowledge/i18n/pl.po index 0ec0bb7ec7e..c076b245505 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/pt.po b/addons/knowledge/i18n/pt.po index 58d6f3f1602..56434146692 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 281ebc2f22d..486df66726a 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/ro.po b/addons/knowledge/i18n/ro.po index de738b54c52..e72a232bf26 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 @@ -33,29 +33,29 @@ msgid "" "Access your documents in OpenERP through WebDAV.\n" " This installs the module document_webdav." msgstr "" -"Accesati-va documentele in OpenERP prin WebDAV.\n" -" Acesta instaleaza modulul document_webdav." +"Accesați-va documentele în OpenERP prin WebDAV.\n" +" Acesta instalează modulul document_webdav." #. module: knowledge #: help:knowledge.config.settings,module_document_page:0 msgid "This installs the module document_page." -msgstr "Acesta instaleaza modulul document_page." +msgstr "Acesta instalează modulul document_page." #. module: knowledge #: model:ir.ui.menu,name:knowledge.menu_document2 msgid "Collaborative Content" -msgstr "Continut de Colaborare" +msgstr "Conținut de Colaborare" #. module: knowledge #: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: view:knowledge.config.settings:0 msgid "Configure Knowledge" -msgstr "Configureaza Cunostintele" +msgstr "Configureaza Cunostințele" #. module: knowledge #: view:knowledge.config.settings:0 msgid "Knowledge and Documents Management" -msgstr "Managementul Cunostintelor si a Documentelor" +msgstr "Managementul Cunostințelor și a Documentelor" #. module: knowledge #: help:knowledge.config.settings,module_document:0 @@ -67,19 +67,19 @@ msgid "" msgstr "" "Acesta este un sistem complet de management al documentelor, cu: " "autentificarea utilizatorului,\n" -" cautarea completa a documentelor (dar pptx si docx nu sunt " -"acceptate), si un tablou de bord al documentelor.\n" -" Acesta instaleaza modulul document." +" căutarea completa a documentelor (dar pptx si docx nu sunt " +"acceptate), și un tablou de bord al documentelor.\n" +" Acesta instalează modulul document." #. module: knowledge #: field:knowledge.config.settings,module_document_page:0 msgid "Create static web pages" -msgstr "Creeaza pagini de internet statice" +msgstr "Creează pagini de internet statice" #. module: knowledge #: field:knowledge.config.settings,module_document_ftp:0 msgid "Share repositories (FTP)" -msgstr "Imparte depozitele (FTP)" +msgstr "Împarte depozitele (FTP)" #. module: knowledge #: field:knowledge.config.settings,module_document:0 @@ -89,12 +89,12 @@ msgstr "Gestioneaza documentele" #. module: knowledge #: view:knowledge.config.settings:0 msgid "Cancel" -msgstr "Anuleaza" +msgstr "Anulează" #. module: knowledge #: view:knowledge.config.settings:0 msgid "Apply" -msgstr "Aplica" +msgstr "Aplică" #. module: knowledge #: model:ir.ui.menu,name:knowledge.menu_document_configuration @@ -107,8 +107,8 @@ msgid "" "Access your documents in OpenERP through an FTP interface.\n" " This installs the module document_ftp." msgstr "" -"Accesati-va documentele din OpenERP printr-o interfata FTP.\n" -" Acesta instaleaza modulul document_ftp." +"Accesați-vă documentele din OpenERP printr-o interfață FTP.\n" +" Acesta instalează modulul document_ftp." #. module: knowledge #: view:knowledge.config.settings:0 @@ -118,13 +118,13 @@ msgstr "sau" #. module: knowledge #: field:knowledge.config.settings,module_document_webdav:0 msgid "Share repositories (WebDAV)" -msgstr "Imparte depozitele (WebDAV)" +msgstr "Împarte depozitele (WebDAV)" #. module: knowledge #: model:ir.ui.menu,name:knowledge.menu_document #: model:ir.ui.menu,name:knowledge.menu_knowledge_configuration msgid "Knowledge" -msgstr "Cunostinte" +msgstr "Cunoștințe" #~ msgid "title" #~ msgstr "titlu" diff --git a/addons/knowledge/i18n/ru.po b/addons/knowledge/i18n/ru.po index 08d732a71b6..0a0f2597e68 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sk.po b/addons/knowledge/i18n/sk.po index 54444c7efa2..a4c45780a48 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sl.po b/addons/knowledge/i18n/sl.po index bdd2a1fa1f6..006c1b1d76f 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sr.po b/addons/knowledge/i18n/sr.po index cef31fbb5c7..58db137dda0 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 bc8c9f365fe..eb3f3f11534 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/sv.po b/addons/knowledge/i18n/sv.po index 2f7f19abc49..c14eed8f864 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/th.po b/addons/knowledge/i18n/th.po index 3b5327841d8..17458cd6fbe 100644 --- a/addons/knowledge/i18n/th.po +++ b/addons/knowledge/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-06-22 05:36+0000\n" -"X-Generator: Launchpad (build 16677)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/knowledge/i18n/tr.po b/addons/knowledge/i18n/tr.po index 9812137707f..b10e3f9dbf4 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 @@ -44,13 +44,13 @@ msgstr "Bu document_page modülünü kurar." #. module: knowledge #: model:ir.ui.menu,name:knowledge.menu_document2 msgid "Collaborative Content" -msgstr "İmece İçerik" +msgstr "İşbirliği İçeriği" #. module: knowledge #: model:ir.actions.act_window,name:knowledge.action_knowledge_configuration #: view:knowledge.config.settings:0 msgid "Configure Knowledge" -msgstr "Yapılandırma Bilgisi" +msgstr "Bilgi Birikimini Yapılandır" #. module: knowledge #: view:knowledge.config.settings:0 @@ -65,7 +65,7 @@ msgid "" "and a document dashboard.\n" " This installs the module document." msgstr "" -"Bu kullanıcı kimlik doğrulamalı bir tam belge yönetim sistemidir,\n" +"Bu kullanıcı kimlik doğrulamalı tam bir belge yönetim sistemidir,\n" " tam belge araması (pptx ve docx desteklenmez) ve bir belge " "kontrol paneli içerir.\n" " Bu, module document modülünü kurar." @@ -78,7 +78,7 @@ msgstr "Statik web sayfaları oluştur" #. module: knowledge #: field:knowledge.config.settings,module_document_ftp:0 msgid "Share repositories (FTP)" -msgstr "Havuzların Paylaşı (FTP)" +msgstr "Havuzları Paylaş (FTP)" #. module: knowledge #: field:knowledge.config.settings,module_document:0 diff --git a/addons/knowledge/i18n/zh_CN.po b/addons/knowledge/i18n/zh_CN.po index 6bafd1d4e4e..9e3648042ae 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 483a1b47b0f..bd3192e2e80 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: knowledge #: view:knowledge.config.settings:0 diff --git a/addons/l10n_be_coda/i18n/ar.po b/addons/l10n_be_coda/i18n/ar.po index b33040ca428..30dbfbe1702 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 2b3a2f5996a..1fd375d7465 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 c88de23ecda..8bf83a68787 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 a5c1b698c85..9e964afc9f5 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 ed74bed988b..786bb66d4f1 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 b329a681649..7767e360682 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 d9b96934af4..3fb2bdd57a9 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-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\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 8677bda1fd9..4d63cbde02d 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-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\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 5a1ede1fbfb..92008ee7311 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-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 @@ -272,23 +272,23 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_207 msgid "Non-conformity fee" -msgstr "" +msgstr "Tasa de no conformidad" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_022 msgid "Priority costs" -msgstr "" +msgstr "Costes prioritarios" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:145 #, python-format msgid "Warning!" -msgstr "" +msgstr "¡Advertencia!" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_045 msgid "Handling costs" -msgstr "" +msgstr "Gastos de manipulación" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_47_13 @@ -303,17 +303,17 @@ msgstr "Fecha de importación" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_039 msgid "Telecommunications" -msgstr "" +msgstr "Telecomunicaciones" #. module: l10n_be_coda #: field:coda.bank.statement.line,globalisation_id:0 msgid "Globalisation ID" -msgstr "" +msgstr "ID global" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_000 msgid "Net amount" -msgstr "" +msgstr "Importe neto" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_11 @@ -344,13 +344,13 @@ msgstr "" #. module: l10n_be_coda #: model:ir.model,name:l10n_be_coda.model_account_bank_statement_line_global msgid "Batch Payment Info" -msgstr "" +msgstr "Información del pago por lote" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_33 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_83 msgid "Value correction" -msgstr "" +msgstr "Correción del valor" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_27 diff --git a/addons/l10n_be_coda/i18n/es_CR.po b/addons/l10n_be_coda/i18n/es_CR.po index d2aa663860e..d3452575c0f 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-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: l10n_be_coda diff --git a/addons/l10n_be_coda/i18n/es_EC.po b/addons/l10n_be_coda/i18n/es_EC.po index c4367954196..ad29069fb23 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-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\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 5b8bdced2d4..6bcfe513246 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-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\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 3018ebe4a1c..8aa51ef01aa 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 0c778ebd6fd..76ffc27540b 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 d1ce4e727af..e693c6aecf1 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 13d0ede73ca..4d995b4c9ef 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 @@ -50,7 +50,7 @@ msgstr "Ordre de transfert individuel à l'initiative de la banque" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_21 msgid "Charges for preparing pay packets" -msgstr "" +msgstr "Coût de préparation de la commande" #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_9 @@ -60,12 +60,12 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_426 msgid "Belgian broker's commission" -msgstr "" +msgstr "Commission de courtier belge" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_031 msgid "Charges foreign cheque" -msgstr "" +msgstr "Coût de prise en charge des chèques étrangers" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_002 @@ -83,16 +83,18 @@ msgid "" "cheques debited on account, but debit cancelled afterwards for lack of cover " "(double debit/contra-entry of transaction 01 or 05)" msgstr "" +"Chèque débité sur le compte, mais annulé suite à la non couverture (double " +"debit/contra-entry of transaction 01 or 05)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_05 msgid "Bill claimed back" -msgstr "" +msgstr "réclamation factures" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_016 msgid "BLIW/IBLC dues" -msgstr "" +msgstr "BLIW/IBLC" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:909 @@ -118,7 +120,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_042 msgid "Payment card costs" -msgstr "" +msgstr "Coûts des cartes de paiement" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_212 @@ -212,7 +214,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_39 msgid "Return of an irregular bill of exchange" -msgstr "" +msgstr "Retour d'un effet de change irrégulier" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_011 @@ -229,7 +231,7 @@ msgstr "" #: model:ir.actions.act_window,name:l10n_be_coda.action_account_coda_comm_type_form #: model:ir.ui.menu,name:l10n_be_coda.menu_action_account_coda_comm_type_form msgid "CODA Structured Communication Types" -msgstr "" +msgstr "Types de communication structurées en CODA" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_50 @@ -258,7 +260,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_207 msgid "Non-conformity fee" -msgstr "" +msgstr "Frais de non-conformité" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_022 @@ -274,7 +276,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_045 msgid "Handling costs" -msgstr "" +msgstr "Coûts de traitement" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_47_13 @@ -309,12 +311,12 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_206 msgid "Surety fee/payment under reserve" -msgstr "" +msgstr "Frais de sûreté/Paiement sous réserve" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_53 msgid "Cash deposit at an ATM" -msgstr "" +msgstr "Dépôt d'espèces (en ATM)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_52 @@ -371,7 +373,7 @@ msgstr "Débit direct" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_00 msgid "Undefined transactions" -msgstr "" +msgstr "Transactions non définies" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_62 @@ -483,7 +485,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_052 msgid "Residence state tax" -msgstr "" +msgstr "Taxe de l'état de résidence" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:462 @@ -530,7 +532,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_104 msgid "Equivalent in EUR" -msgstr "" +msgstr "Équivalent en euro" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_50 @@ -548,7 +550,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_03 msgid "Your purchase by payment card" -msgstr "" +msgstr "Votre achat par carte de paiement" #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_1 @@ -633,14 +635,14 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_51 msgid "Transfer in your favour – initiated by the bank" -msgstr "" +msgstr "Transfert en votre faveur - initié par la banque" #. module: l10n_be_coda #: view:account.coda:0 #: field:account.coda,coda_data:0 #: field:account.coda.import,coda_data:0 msgid "CODA File" -msgstr "" +msgstr "Fichier CODA" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_003 @@ -697,7 +699,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_01 msgid "Short-term loan" -msgstr "" +msgstr "Prêt à court terme" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_01 @@ -712,7 +714,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_402 msgid "Certification costs" -msgstr "" +msgstr "Coûts de certification" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_015 @@ -723,14 +725,14 @@ msgstr "" #: model:account.coda.trans.category,description:l10n_be_coda.actrca_415 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_39 msgid "Surety fee" -msgstr "" +msgstr "Frais de sûreté" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_017 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_23 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_41 msgid "Research costs" -msgstr "" +msgstr "Coûts de recherche" #. module: l10n_be_coda #: code:addons/l10n_be_coda/l10n_be_coda.py:304 @@ -744,7 +746,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_07 msgid "Collective transfer" -msgstr "" +msgstr "Transfert collectif" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:910 @@ -770,7 +772,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_52 msgid "Payment in your favour" -msgstr "" +msgstr "Paiement en votre faveur" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_08 @@ -2675,7 +2677,7 @@ msgstr "" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_03_17 msgid "Amount of the cheque; if any, charges receive code 37" -msgstr "" +msgstr "Montant du chèque; si présent, réception du code 37" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_103 @@ -3389,7 +3391,7 @@ msgstr "" #: model:account.coda.trans.category,description:l10n_be_coda.actrca_053 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_43 msgid "Printing of forms" -msgstr "" +msgstr "Impression des formulaires" #. module: l10n_be_coda #: help:coda.bank.account,state:0 diff --git a/addons/l10n_be_coda/i18n/gl.po b/addons/l10n_be_coda/i18n/gl.po index f05b020ab85..eb0e4bbbe5e 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 d149a2c77c2..c4ef090c35a 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-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 7617e31bd6b..e5a6a4b3729 100644 --- a/addons/l10n_be_coda/i18n/hu.po +++ b/addons/l10n_be_coda/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-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 d778d9ae360..18b1032c01a 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 09eb7987c78..f4106bb254f 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 263f16f34a8..4ad28fe36b0 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 b47a0d41828..746b48eae56 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 a5130163b7f..bdf06dedb98 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 7d12cabf790..6b9fd329b35 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 a5b58e191f0..1a1744648c1 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 d159bfb3928..3de5fe65345 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-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\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 ea1b6b472b4..f7e48b44e52 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 ef4c55714fa..efa6b666c6d 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 f6ce4ea3d36..a33ca6fae36 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-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_21 @@ -25,7 +25,7 @@ msgstr "Saque de dinheiro no cartão (PROTON)" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_412 msgid "Advice of expiry charges" -msgstr "" +msgstr "Assessoria de carga de validade" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_11 @@ -50,32 +50,32 @@ msgstr "Ordem de transferência individual iniciada pelo banco" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_21 msgid "Charges for preparing pay packets" -msgstr "" +msgstr "Encargos de pacotes de pagamento pré-pagos" #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_9 msgid "Detail of 7. The records in a separate application keep type 9." -msgstr "" +msgstr "Detalhe da 7. Os registros de uma aplicação separada manter tipo 9." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_426 msgid "Belgian broker's commission" -msgstr "" +msgstr "Comissão do corretor belga" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_031 msgid "Charges foreign cheque" -msgstr "" +msgstr "Encargos de verificação externa" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_002 msgid "Interest paid" -msgstr "" +msgstr "Juros pagos" #. module: l10n_be_coda #: field:account.coda.trans.type,parent_id:0 msgid "Parent" -msgstr "" +msgstr "Parente" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_03_62 @@ -83,47 +83,49 @@ msgid "" "cheques debited on account, but debit cancelled afterwards for lack of cover " "(double debit/contra-entry of transaction 01 or 05)" msgstr "" +"cheques debitados em conta, débito Depois cancelado por falta de cobertura " +"(duplo fluxo / contrapartida da operação 01 ou 05), mas" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_05 msgid "Bill claimed back" -msgstr "" +msgstr "Bill reclamado" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_016 msgid "BLIW/IBLC dues" -msgstr "" +msgstr "Bliw / IBLC devido" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:909 #, python-format msgid "CODA File is Imported :" -msgstr "" +msgstr "CODA arquivo é importado:" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_066 msgid "Fixed loan advance - reimbursement" -msgstr "" +msgstr "Antecedência empréstimo fixo - reembolso" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_05 msgid "Purchase of foreign bank notes" -msgstr "" +msgstr "Compra de notas estrangeiras" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_030 msgid "Account insurance" -msgstr "" +msgstr "Seguro conta" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_042 msgid "Payment card costs" -msgstr "" +msgstr "Custos de cartões de pagamento" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_212 msgid "Warehousing fee" -msgstr "" +msgstr "Taxa Warehousing" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:278 @@ -133,21 +135,23 @@ msgid "" "\n" "The File contains an invalid CODA Transaction Family : %s." msgstr "" +"\n" +"O arquivo contém uma transação inválido CODA Família:% s." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_66 msgid "Financial centralization" -msgstr "" +msgstr "Centralização financeira" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_420 msgid "Retention charges" -msgstr "" +msgstr "Os custos de retenção" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_50 msgid "Transfer in your favour" -msgstr "" +msgstr "Transferência em seu favor" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_87 @@ -163,37 +167,37 @@ msgstr "" #: model:account.coda.trans.code,description:l10n_be_coda.actcc_43_87 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_87 msgid "Reimbursement of costs" -msgstr "" +msgstr "Reembolso das despesas" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_56 msgid "Remittance of supplier's bill with guarantee" -msgstr "" +msgstr "Remessa de conta do fornecedor com garantia" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_002 msgid "Communication of the bank" -msgstr "" +msgstr "A comunicação do banco" #. module: l10n_be_coda #: field:coda.bank.statement.line,amount:0 msgid "Amount" -msgstr "" +msgstr "Quantidade" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_70 msgid "Only with stockbrokers when they deliver the securities to the bank" -msgstr "" +msgstr "Somente com corretores quando entregar os títulos para o banco" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_413 msgid "Acceptance charges" -msgstr "" +msgstr "Acusações de aceitação" #. module: l10n_be_coda #: field:coda.bank.statement.line,counterparty_bic:0 msgid "Counterparty BIC" -msgstr "" +msgstr "BIC contraparte" #. module: l10n_be_coda #: help:coda.bank.account,def_receivable:0 @@ -201,6 +205,8 @@ msgid "" "Set here the receivable account that will be used, by default, if the " "partner is not found." msgstr "" +"Defina aqui a conta a receber que será usado, por padrão, se o parceiro não " +"for encontrado." #. module: l10n_be_coda #: help:coda.bank.account,def_payable:0 @@ -208,33 +214,35 @@ msgid "" "Set here the payable account that will be used, by default, if the partner " "is not found." msgstr "" +"Defina aqui a conta a pagar que será usado, por padrão, se o parceiro não " +"for encontrado." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_39 msgid "Return of an irregular bill of exchange" -msgstr "" +msgstr "Retorno de um projeto de lei irregular de troca" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_011 msgid "VAT" -msgstr "" +msgstr "IVA" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_09 msgid "Debit of the agios to the account of the drawee" -msgstr "" +msgstr "Débito dos ágios na conta do sacado" #. module: l10n_be_coda #: view:account.coda.comm.type:0 #: model:ir.actions.act_window,name:l10n_be_coda.action_account_coda_comm_type_form #: model:ir.ui.menu,name:l10n_be_coda.menu_action_account_coda_comm_type_form msgid "CODA Structured Communication Types" -msgstr "" +msgstr "CODA Tipos de comunicação estruturada" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_50 msgid "Spot sale of foreign exchange" -msgstr "" +msgstr "Venda à vista de divisas" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:321 @@ -244,42 +252,46 @@ msgid "" "CODA parsing error on movement data record 2.2, seq nr %s.\n" "Please report this issue via your OpenERP support channel." msgstr "" +"\n" +"Erro de análise CODA em movimento registro de dados 2.2, seq nr% s. \n" +"favor relate este problema através de seu canal de suporte OpenERP." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_58 msgid "Remittance of supplier's bill without guarantee" -msgstr "" +msgstr "Remessa de conta do fornecedor, sem garantia" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_03 msgid "Payment receipt card" -msgstr "" +msgstr "Cartão de recibo de pagamento" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_207 msgid "Non-conformity fee" -msgstr "" +msgstr "Taxa de não-conformidade" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_022 msgid "Priority costs" -msgstr "" +msgstr "Custos prioritárias" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:145 #, python-format msgid "Warning!" -msgstr "" +msgstr "Atenção!" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_045 msgid "Handling costs" -msgstr "" +msgstr "Custos de manutenção" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_47_13 msgid "Debit customer, payment of agios, interest, exchange commission, etc." msgstr "" +"Cliente de débito, pagamento de juros, juros, câmbio de comissão, etc" #. module: l10n_be_coda #: field:account.coda,date:0 @@ -289,157 +301,160 @@ msgstr "Data de Importação" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_039 msgid "Telecommunications" -msgstr "" +msgstr "Telecomunicações" #. module: l10n_be_coda #: field:coda.bank.statement.line,globalisation_id:0 msgid "Globalisation ID" -msgstr "" +msgstr "Globalização ID" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_000 msgid "Net amount" -msgstr "" +msgstr "Valor líquido" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_11 msgid "Department store cheque" -msgstr "" +msgstr "Loja de departamentos de verificação" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_206 msgid "Surety fee/payment under reserve" -msgstr "" +msgstr "Taxa / pagamento sob reserva de garantia" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_53 msgid "Cash deposit at an ATM" -msgstr "" +msgstr "Depósito em dinheiro em um caixa eletrônico" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_52 msgid "Forward sale of foreign exchange" -msgstr "" +msgstr "Venda a prazo de divisas" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_05 msgid "" "Debit of the subscriber for the complementary payment of partly-paid shares" msgstr "" +"Débito do assinante para o pagamento complementar de ações parcialmente pagos" #. module: l10n_be_coda #: model:ir.model,name:l10n_be_coda.model_account_bank_statement_line_global msgid "Batch Payment Info" -msgstr "" +msgstr "Batch Informação do pagamento" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_33 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_83 msgid "Value correction" -msgstr "" +msgstr "Correção do valor" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_27 msgid "For publications of the financial institution" -msgstr "" +msgstr "Para publicações da instituição financeira" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_01 msgid "Payment of foreign bill" -msgstr "" +msgstr "Pagamento da conta externa" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_024 msgid "Growth premium" -msgstr "" +msgstr "Prémio crescimento" #. module: l10n_be_coda #: selection:account.coda.trans.code,type:0 msgid "Transaction Code" -msgstr "" +msgstr "Código de Transação" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_13 msgid "Discount foreign supplier's bills" -msgstr "" +msgstr "Contas de desconto do fornecedor estrangeiro" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_05 msgid "Direct debit" -msgstr "" +msgstr "O débito direto" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_00 msgid "Undefined transactions" -msgstr "" +msgstr "Transações indefinidos" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_62 msgid "When reimbursed separately to the subscriber" -msgstr "" +msgstr "Quando reembolsados ​​separadamente para o assinante" #. module: l10n_be_coda #: view:account.coda.trans.category:0 msgid "CODA Transaction Category" -msgstr "" +msgstr "CODA Transação Categoria" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_067 msgid "Fixed loan advance - extension" -msgstr "" +msgstr "Antecedência empréstimo fixa - extensão" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_07 msgid "Your repayment instalment credits" -msgstr "" +msgstr "Seu reembolso créditos parcelados" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_09_13 msgid "On the account of the head office" -msgstr "" +msgstr "Por conta da sede" #. module: l10n_be_coda #: constraint:account.bank.statement:0 msgid "The journal and period chosen have to belong to the same company." -msgstr "" +msgstr "O diário eo período escolhido tem que pertencer à mesma empresa." #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_115 msgid "Terminal cash deposit" -msgstr "" +msgstr "Depósito em dinheiro Terminal" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_43_01 msgid "" "Debit of a cheque in foreign currency or in EUR in favour of a foreigner" msgstr "" +"Débito de um cheque em moeda estrangeira ou em euros a favor de um " +"estrangeiro" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_54 msgid "Discount abroad" -msgstr "" +msgstr "Desconto no exterior" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_62 msgid "Remittance of documents abroad - credit after collection" -msgstr "" +msgstr "Remessa de documentos no exterior - o crédito após a coleta" #. module: l10n_be_coda #: field:coda.bank.statement.line,name:0 msgid "Communication" -msgstr "" +msgstr "Comunicação" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_35 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_85 msgid "Correction" -msgstr "" +msgstr "Correção" #. module: l10n_be_coda #: code:addons/l10n_be_coda/l10n_be_coda.py:403 #, python-format msgid "Delete operation not allowed." -msgstr "" +msgstr "Excluir Operação Localidade: Não permitida." #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:269 @@ -448,29 +463,31 @@ msgid "" "\n" "The File contains an invalid CODA Transaction Type : %s." msgstr "" +"\n" +"O arquivo contém um inválido CODA tipo de transação:% s." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_33 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_83 msgid "Value (date) correction" -msgstr "" +msgstr "Valor de Correção (dados)" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_063 msgid "Rounding differences" -msgstr "" +msgstr "Diferenças de Arredondamento" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:296 #: code:addons/l10n_be_coda/wizard/account_coda_import.py:489 #, python-format msgid "Transaction Category unknown, please consult your bank." -msgstr "" +msgstr "Transação categoria Desconhecido, Por favor Consulte o Seu banco." #. module: l10n_be_coda #: view:account.coda.trans.code:0 msgid "CODA Transaction Code" -msgstr "" +msgstr "CODA Código de Transação" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:171 @@ -479,11 +496,13 @@ msgid "" "\n" "Unsupported bank account structure." msgstr "" +"\n" +"Estrutura conta bancária não suportado." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_052 msgid "Residence state tax" -msgstr "" +msgstr "Fiscal do Estado de Residência" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:462 @@ -492,48 +511,51 @@ msgid "" "\n" "The File contains an invalid CODA Transaction Type : %s!" msgstr "" +"\n" +"O arquivo contém um inválido CODA tipo de transação:% s!" #. module: l10n_be_coda #: view:account.coda:0 msgid "Additional Information" -msgstr "" +msgstr "Informações adicionais" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_120 msgid "Correction of a transaction" -msgstr "" +msgstr "Correção de uma transação" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_64 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_64 msgid "Transfer to your account" -msgstr "" +msgstr "Transferir para a sua conta" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_124 msgid "Number of the credit card" -msgstr "" +msgstr "Número do cartão de crédito" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_13 msgid "Renting of safes" -msgstr "" +msgstr "Aluguel de cofres" #. module: l10n_be_coda #: help:coda.bank.account,find_bbacom:0 msgid "" "Partner lookup via the 'BBA' Structured Communication field of the Invoice." msgstr "" +"Parceiro de pesquisa via campo comunicação estruturada a \"BBA\" da fatura." #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_104 msgid "Equivalent in EUR" -msgstr "" +msgstr "Equivalente em EUR" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_50 msgid "Remittance of foreign bill credit after collection" -msgstr "" +msgstr "Remessa de projeto de lei de crédito estrangeiro após a coleta" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:156 @@ -542,11 +564,13 @@ msgid "" "\n" "Foreign bank accounts with BBAN structure are not supported." msgstr "" +"\n" +"Contas bancárias no exterior com estrutura BBAN não são suportados." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_03 msgid "Your purchase by payment card" -msgstr "" +msgstr "Sua compra por cartão de pagamento" #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_1 @@ -557,26 +581,31 @@ msgid "" "matter of principle, this type is also used when no detailed data is " "following (type 5)." msgstr "" +"Saldo totalizados pelo cliente, por exemplo, um arquivo de pagamentos " +"reagrupamento de salários ou pagamentos a fornecedores ou um arquivo de " +"reagrupar as coleções para o qual o cliente é debitado ou creditado com um " +"único valor. Por uma questão de princípio, este tipo também é usado quando " +"há dados detalhados está seguindo (tipo 5)." #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Credit Transactions." -msgstr "" +msgstr "Operações de Crédito." #. module: l10n_be_coda #: field:account.coda.trans.type,type:0 msgid "Transaction Type" -msgstr "" +msgstr "Tipo de Transação" #. module: l10n_be_coda #: model:ir.model,name:l10n_be_coda.model_account_coda msgid "Object to store CODA Data Files" -msgstr "" +msgstr "Objeto para armazenar ficheiros de dados CODA" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_029 msgid "Protest charges" -msgstr "" +msgstr "Acusações de protesto" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:521 @@ -586,11 +615,14 @@ msgid "" "CODA parsing error on information data record 3.3, seq nr %s.\n" "Please report this issue via your OpenERP support channel." msgstr "" +"\n" +"Erro de análise CODA em informações de dados de registro 3.3, seq nr% s. \n" +"favor relate este problema através de seu canal de suporte OpenERP." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_003 msgid "Credit commission" -msgstr "" +msgstr "Crédito comissão" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:632 @@ -600,16 +632,20 @@ msgid "" "Configuration Error!\n" "Please verify the Default Debit and Credit Account settings in journal %s." msgstr "" +"\n" +"Erro de configuração! \n" +"verifique o débito padrão e as configurações da conta de crédito no diário% " +"s." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_43_58 msgid "Remittance of foreign cheque credit after collection" -msgstr "" +msgstr "Remessa de verificação de crédito estrangeiro após a coleta" #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_8 msgid "Detail of 3." -msgstr "" +msgstr "Detalhe da 3." #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_05_58 @@ -617,118 +653,122 @@ msgid "" "(cancellation of an undue debit of the debtor at the initiative of the " "financial institution or the debtor for lack of cover)" msgstr "" +"(Anulação de um fluxo excessivo do devedor por iniciativa da instituição " +"financeira ou o devedor por falta de cobertura)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_11 msgid "Payable coupons/repayable securities" -msgstr "" +msgstr "Cupons de títulos a pagar / reembolsável" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_50 msgid "Sale of securities" -msgstr "" +msgstr "Venda de valores mobiliários" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_51 msgid "Transfer in your favour – initiated by the bank" -msgstr "" +msgstr "Transferir a sua favor - iniciado pelo Banco" #. module: l10n_be_coda #: view:account.coda:0 #: field:account.coda,coda_data:0 #: field:account.coda.import,coda_data:0 msgid "CODA File" -msgstr "" +msgstr "CODA Arquivo" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_003 msgid "RBP data" -msgstr "" +msgstr "Dados RBP" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_06 msgid "Share option plan – exercising an option" -msgstr "" +msgstr "Plano de Opção - exercer uma opção" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_051 msgid "Withholding tax" -msgstr "" +msgstr "Retenção na fonte" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_006 msgid "Information concerning the detail amount" -msgstr "" +msgstr "Informações sobre o montante detalhes" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_43_37 msgid "Costs relating to payment of foreign cheques" -msgstr "" +msgstr "Os custos relativos ao pagamento de cheques estrangeiros" #. module: l10n_be_coda #: field:account.coda.trans.code,parent_id:0 msgid "Family" -msgstr "" +msgstr "Família" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_66 msgid "Retrocession of issue commission" -msgstr "" +msgstr "Retrocessão de emissão comissão" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_68 msgid "Credit after Proton payments" -msgstr "" +msgstr "Pagamentos de protões eficazes de crédito" #. module: l10n_be_coda #: view:coda.bank.statement:0 #: field:coda.bank.statement,period_id:0 msgid "Period" -msgstr "" +msgstr "Period" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_09_01 msgid "" "Withdrawal by counter cheque or receipt; cash remitted by the bank clerk" msgstr "" +"Retirada por cheque contador ou recibo, o dinheiro remetido pelo funcionário " +"do banco" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_01 msgid "Short-term loan" -msgstr "" +msgstr "Empréstimo de curto prazo" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_01 msgid "Domestic or local SEPA credit transfers" -msgstr "" +msgstr "Transferências a crédito SEPA nacionais ou locais" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_03 msgid "Settlement credit cards" -msgstr "" +msgstr "Cartões de crédito de liquidação" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_402 msgid "Certification costs" -msgstr "" +msgstr "Os custos de certificação" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_015 msgid "Correspondent charges" -msgstr "" +msgstr "Combinar cargas" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_415 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_39 msgid "Surety fee" -msgstr "" +msgstr "Fiador taxa" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_017 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_23 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_41 msgid "Research costs" -msgstr "" +msgstr "As despesas de investigação" #. module: l10n_be_coda #: code:addons/l10n_be_coda/l10n_be_coda.py:304 @@ -738,11 +778,14 @@ msgid "" "The associated Bank Statement has already been confirmed.\n" "Please undo this action first." msgstr "" +"CODA extrato bancário não pode excluir '% s' do arquivo de log '% s'. \n" +"associado o extrato bancário já confirmou beens. \n" +"favor desfazer esse trabalho em primeiro lugar." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_07 msgid "Collective transfer" -msgstr "" +msgstr "Transferência coletiva" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:910 @@ -752,33 +795,36 @@ msgid "" "\n" "Number of statements : " msgstr "" +"\n" +"\n" +"Número de declarações: " #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_05 #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_07 msgid "" "The principal will be debited for the total amount of the file entered." -msgstr "" +msgstr "O será debitado principal para o Valor Total do arquivo inserido." #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_111 msgid "POS credit – Globalisation" -msgstr "" +msgstr "Crédito POS - Globalização" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_52 msgid "Payment in your favour" -msgstr "" +msgstr "Pagamento em seu favor" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_08 msgid "Registering compensation for savings accounts" -msgstr "" +msgstr "Compensação se registrar para contas de poupança" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_51 msgid "Company issues paper in return for cash" -msgstr "" +msgstr "Emissões de papel em troca de dinheiro da empresa" #. module: l10n_be_coda #: field:coda.bank.account,journal:0 @@ -790,17 +836,17 @@ msgstr "Diário" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_19 msgid "Settlement of credit cards" -msgstr "" +msgstr "Liquidação de cartões de crédito" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_87 msgid "Reimbursement of cheque-related costs" -msgstr "" +msgstr "Reembolso das despesas de check-relacionados" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_50 msgid "Settlement of instalment credit" -msgstr "" +msgstr "Solução de crédito parcelado" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_08 @@ -808,33 +854,35 @@ msgid "" "Debit of the remitter when the drawee pays in advance directly to the " "remitter (regards bank acceptances)" msgstr "" +"Débito do remetente, quando o sacado paga com antecedência diretamente para " +"o remetente (matéria aceites bancários)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_60 msgid "Remittance of documents abroad - credit under usual reserve" -msgstr "" +msgstr "Remessa de documentos no exterior - o crédito sob reserva habitual" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_52 msgid "Loading GSM cards" -msgstr "" +msgstr "Carregar cartões GSM" #. module: l10n_be_coda #: view:coda.bank.statement:0 #: view:coda.bank.statement.line:0 #: field:coda.bank.statement.line,note:0 msgid "Notes" -msgstr "" +msgstr "Notas" #. module: l10n_be_coda #: field:coda.bank.statement,balance_end_real:0 msgid "Ending Balance" -msgstr "" +msgstr "Saldo final" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_64 msgid "Your issue" -msgstr "" +msgstr "Seu problema" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:871 @@ -850,13 +898,22 @@ msgid "" "Account Holder Name: %s\n" "Date: %s, Starting Balance: %.2f, Ending Balance: %.2f%s" msgstr "" +"\n" +"\n" +"Bank Journal: %s\n" +"CODA Version: %s\n" +"CODA Sequence Number: %s\n" +"Paper Statement Sequence Number: %s\n" +"Bank Account: %s\n" +"Account Holder Name: %s\n" +"Date: %s, Starting Balance: %.2f, Ending Balance: %.2f%s" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:590 #: code:addons/l10n_be_coda/wizard/account_coda_import.py:924 #, python-format msgid "CODA Import failed." -msgstr "" +msgstr "CODA Import falhou." #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_01 @@ -864,148 +921,153 @@ msgid "" "Purchase of domestic or foreign securities, including subscription rights, " "certificates, etc." msgstr "" +"Compra de títulos nacionais ou estrangeiros, incluindo direitos de " +"subscrição, certificados, etc." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_38 msgid "Costs relating to incoming foreign and non-SEPA transfers" -msgstr "" +msgstr "Custos relativos a transferências externas e não-SEPA entrada" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_52 msgid "Whatever the currency of the security" -msgstr "" +msgstr "Qualquer que seja a moeda da segurança" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_069 msgid "Forward arbitrage contracts : sum to be supplied by customer" msgstr "" +"Contratos para a frente arbitragem: Soma a ser fornecido pelo cliente" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_51 msgid "Unloading Proton" -msgstr "" +msgstr "Descarga Proton" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_407 msgid "Costs Article 45" -msgstr "" +msgstr "Artigo 45 º Custos" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_007 msgid "Information concerning the detail cash" -msgstr "" +msgstr "Informações sobre o dinheiro detalhes" #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Bank Transaction" -msgstr "" +msgstr "Transação bancária" #. module: l10n_be_coda #: view:coda.bank.account:0 msgid "CODA Bank Account" -msgstr "" +msgstr "CODA Bank Account" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_35 msgid "Cash advance" -msgstr "" +msgstr "Cash advance" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_47 msgid "Foreign commercial paper" -msgstr "" +msgstr "Foreign commercial paper" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_13_15 msgid "" "Hire-purchase agreement under which the financial institution is the lessor" msgstr "" +"Hire-purchase agreement under which the financial institution is the lessor" #. module: l10n_be_coda #: view:account.coda.import:0 msgid "or" -msgstr "" +msgstr "ou" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_66 msgid "Remittance of cheque by your branch - credit under usual reserve" -msgstr "" +msgstr "Remittance of cheque by your branch - credit under usual reserve" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_50 msgid "Credit of the remitter" -msgstr "" +msgstr "De crédito do remetente" #. module: l10n_be_coda #: field:account.coda.trans.category,category:0 msgid "Transaction Category" -msgstr "" +msgstr "Transaction Category" #. module: l10n_be_coda #: field:account.coda,statement_ids:0 msgid "Generated CODA Bank Statements" -msgstr "" +msgstr "Generated CODA Bank Statements" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_09 msgid "Purchase of petrol coupons" -msgstr "" +msgstr "Aquisição de cupons de gasolina" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_52 msgid "Remittance of foreign bill credit under usual reserve" msgstr "" +"Remessa de projeto de lei de crédito estrangeiro sob reserva habitual" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_061 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_47 msgid "Charging fees for transactions" -msgstr "" +msgstr "Cobrança de taxas para transações" #. module: l10n_be_coda #: model:ir.model,name:l10n_be_coda.model_account_coda_trans_category msgid "CODA transaction category" -msgstr "" +msgstr "CODA categoria de transação" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_21 msgid "Other credit applications" -msgstr "" +msgstr "Outros pedidos de crédito" #. module: l10n_be_coda #: selection:coda.bank.statement.line,type:0 msgid "Supplier" -msgstr "" +msgstr "Suplicar" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_009 msgid "Travelling expenses" -msgstr "" +msgstr "As despesas de viagem" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_30 msgid "Various transactions" -msgstr "" +msgstr "Diversas operações" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_406 msgid "Collection charges" -msgstr "" +msgstr "Despesas de cobrança" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_55 msgid "Fixed advance – interest only" -msgstr "" +msgstr "Avanço fixo - interesse apenas" #. module: l10n_be_coda #: view:coda.bank.statement:0 msgid "Transactions" -msgstr "" +msgstr "Transações" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_50 msgid "Cash payment" -msgstr "" +msgstr "Pagamento à vista" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:636 @@ -1015,47 +1077,52 @@ msgid "" "The CODA Statement %s Starting Balance (%.2f) does not correspond with the " "previous Closing Balance (%.2f) in journal %s." msgstr "" +"\n" +"The CODA Statement %s Starting Balance (%.2f) does not correspond with the " +"previous Closing Balance (%.2f) in journal %s." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_27 msgid "Subscription fee" -msgstr "" +msgstr "Taxa de inscrição" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_036 msgid "Costs relating to a refused cheque" -msgstr "" +msgstr "Custos relativos a um cheque recusado" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_101 msgid "Credit transfer or cash payment with structured format communication" msgstr "" +"Transferência de crédito ou pagamento à vista com comunicação formato " +"estruturado" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_127 msgid "European direct debit (SEPA)" -msgstr "" +msgstr "Débito directo a nível europeu (SEPA)" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_068 msgid "Countervalue of an entry" -msgstr "" +msgstr "Contravalor de uma entrada" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_010 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_31 msgid "Writ service fee" -msgstr "" +msgstr "Taxa de serviço Mandado" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_13 msgid "Your repurchase of issue" -msgstr "" +msgstr "Seu recompra de emissão" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_409 msgid "Safe deposit charges" -msgstr "" +msgstr "Taxas de depósito seguro" #. module: l10n_be_coda #: field:coda.bank.account,def_payable:0 @@ -1065,12 +1132,12 @@ msgstr "Conta de Pagamento padrão" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_055 msgid "Repayment loan or credit capital" -msgstr "" +msgstr "Reembolso do empréstimo ou de capital de crédito" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_05 msgid "Settlement of fixed advance" -msgstr "" +msgstr "Liquidação de avanço fixo" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:333 @@ -1081,6 +1148,9 @@ msgid "" "CODA parsing error on movement data record 2.3, seq nr %s.\n" "Please report this issue via your OpenERP support channel." msgstr "" +"\n" +"Erro de análise CODA em movimento registro de dados 2.3, seq nr% s. \n" +"favor relate este problema através de seu canal de suporte OpenERP." #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_15 @@ -1088,11 +1158,13 @@ msgid "" "Commission collected to the debit of the customer to whom the bank delivers " "a key which gives access to the night safe" msgstr "" +"Comissão recolheu o débito do cliente para que o banco oferece uma chave que " +"dá acesso ao cofre noite" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_059 msgid "Default interest" -msgstr "" +msgstr "Juros de mora" #. module: l10n_be_coda #: help:coda.bank.account,coda_st_naming:0 @@ -1108,13 +1180,22 @@ msgid "" "CODA sequence number: %(coda)s\n" "Paper Statement sequence number: %(paper)s" msgstr "" +". Definir as regras para criar o nome dos extratos bancários gerados pelo " +"processamento do CODA \n" +"% Exemplo (código) s% (y) s /% (papel) s \n" +"Variáveis: \n" +"Jornal Banco Código:% (código) s \n" +"do ano atual com a do século: % (ano) s \n" +"Ano em curso sem Century:% (y) s \n" +"CODA número de seqüência:% (coda) s \n" +"Paper número de seqüência de Declaração:% (papel) s" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_108 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_35_01 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_35_50 msgid "Closing" -msgstr "" +msgstr "Encerramento" #. module: l10n_be_coda #: help:coda.bank.statement.line,globalisation_id:0 @@ -1122,88 +1203,91 @@ msgid "" "Code to identify transactions belonging to the same globalisation level " "within a batch payment" msgstr "" +"Código para identificar as transações que pertencem ao mesmo nível de " +"globalização dentro de um lote de pagamento" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_05 msgid "Commercial paper claimed back" -msgstr "" +msgstr "O papel comercial reclamado" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_411 msgid "Fixed collection charge" -msgstr "" +msgstr "Carga coleção fixa" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_64 msgid "Your winning lottery ticket" -msgstr "" +msgstr "Seu bilhete de loteria premiado" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_009 msgid "" "Identification of the de ultimate ordering customer/debtor (SEPA SCT/SDD)" msgstr "" +"Identificação do final de ordenação cliente / devedor (SEPA SCT / SDD)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_05 msgid "Card charges" -msgstr "" +msgstr "Taxas de cartão" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_03 msgid "Payment card charges" -msgstr "" +msgstr "Encargos do cartão de pagamento" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_54 msgid "Remittance of commercial paper for discount" -msgstr "" +msgstr "Remessa de papel comercial para desconto" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_05_01 msgid "Payment" -msgstr "" +msgstr "Pagamento" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_07 msgid "Purchase of gold/pieces" -msgstr "" +msgstr "Compra de ouro / peças" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_15 msgid "Balance due insurance premium" -msgstr "" +msgstr "Saldo devido prémio de seguro" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_11 msgid "Debit of the issuer by the bank in charge of the financial service" -msgstr "" +msgstr "Débito da emissora pelo banco responsável pelo serviço financeiro" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_58 msgid "Remittance of cheques, vouchers, etc. credit after collection" -msgstr "" +msgstr "Envio de cheques, vales, etc crédito após a coleta" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_19 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_68 msgid "Difference in payment" -msgstr "" +msgstr "Diferença de pagamento" #. module: l10n_be_coda #: field:coda.bank.statement.line,date:0 msgid "Entry Date" -msgstr "" +msgstr "Data entrada" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_58 msgid "Idem without guarantee" -msgstr "" +msgstr "Idem, sem garantia" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_63 msgid "Second credit of unpaid cheque" -msgstr "" +msgstr "Segundo crédito de cheque não pago" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:389 @@ -1216,11 +1300,16 @@ msgid "" "otherwise change the corresponding entry manually in the generated Bank " "Statement." msgstr "" +"\n" +" Extrato bancário '% s' linha '% s':\n" +" Não há nota fiscal correspondente à comunicação estruturada '% s'.\n" +" Verifique e ajuste a fatura e realizar a importação novamente ou " +"alterar a entrada correspondente manualmente no extrato bancário gerado." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_065 msgid "Interest payment advice" -msgstr "" +msgstr "Aviso de pagamento de juros" #. module: l10n_be_coda #: field:account.coda.trans.code,type:0 @@ -1228,22 +1317,22 @@ msgstr "" #: field:coda.bank.statement,type:0 #: field:coda.bank.statement.line,type:0 msgid "Type" -msgstr "" +msgstr "Tipo" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_112 msgid "ATM payment (usually Eurocheque card)" -msgstr "" +msgstr "Pagamento ATM (geralmente cartão Eurocheque)" #. module: l10n_be_coda #: field:coda.bank.account,description1:0 msgid "Primary Account Description" -msgstr "" +msgstr "Primário Descrição da Conta" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_126 msgid "Term investments" -msgstr "" +msgstr "Investimentos de longo prazo" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_100 @@ -1251,116 +1340,119 @@ msgid "" "(SEPA) payment with a structured format communication applying the ISO " "standard 11649: Structured creditor reference to remittan" msgstr "" +"(SEPA) o pagamento de uma comunicação formato estruturado aplicação da norma " +"ISO 11649: referência credor estruturado para remittan" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_100 msgid "Gross amount" -msgstr "" +msgstr "Valor bruto" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_43_62 msgid "Reversal of cheques" -msgstr "" +msgstr "Reversão de cheques" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_64 #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_41_13 #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_41_64 msgid "Intracompany" -msgstr "" +msgstr "Intracompany" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_01 msgid "Spot purchase of foreign exchange" -msgstr "" +msgstr "Local de compra de divisas" #. module: l10n_be_coda #: field:coda.bank.statement.line,val_date:0 msgid "Valuta Date" -msgstr "" +msgstr "Data do Crédito" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_429 msgid "Foreign Stock Exchange tax" -msgstr "" +msgstr "Exterior Bolsa de Valores de Imposto" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_05_05 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_05_54 msgid "Reimbursement" -msgstr "" +msgstr "Reembolso" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:869 #, python-format msgid "None" -msgstr "" +msgstr "Ningún" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_405 msgid "Bill guarantee commission" -msgstr "" +msgstr "Bill comissão de Garantia" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_06 msgid "Extension" -msgstr "" +msgstr "Extensão" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_008 msgid "Identification of the de ultimate beneficiary/creditor (SEPA SCT/SDD)" -msgstr "" +msgstr "Identificação do final de beneficiário / credor (SEPA SCT / SDD)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_49 msgid "Foreign counter transactions" -msgstr "" +msgstr "Operações de balcão no exterior" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_01 msgid "Cash withdrawal" -msgstr "" +msgstr "Retirada de dinheiro" #. module: l10n_be_coda #: field:coda.bank.statement.line,partner_id:0 msgid "Partner" -msgstr "" +msgstr "Parceiro" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_37 msgid "" "Fixed right, either one-off or periodical; for details, see \"categories\"" msgstr "" +"Direito fixo, ou one-off ou periódico, para mais detalhes, ver \"categorias\"" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_05 msgid "Loading Proton" -msgstr "" +msgstr "Carga Proton" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_21 msgid "Pay-packet charges" -msgstr "" +msgstr "Acusações de pacotes de pay-" #. module: l10n_be_coda #: field:coda.bank.account,transfer_account:0 msgid "Default Internal Transfer Account" -msgstr "" +msgstr "Padrão Conta Transferência Interna" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_074 msgid "Mailing costs" -msgstr "" +msgstr "Custos de envio" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_07 msgid "Unpaid foreign bill" -msgstr "" +msgstr "Projeto de lei estrangeira não remunerado" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_07 msgid "Payment by GSM" -msgstr "" +msgstr "Pagamento por GSM" #. module: l10n_be_coda #: view:coda.bank.account:0 @@ -1368,29 +1460,29 @@ msgstr "" #: view:coda.bank.statement:0 #: selection:coda.bank.statement,type:0 msgid "Normal" -msgstr "" +msgstr "Normal" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_05_50 msgid "Credit after collection" -msgstr "" +msgstr "Crédito após a coleta" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_80 msgid "Separately charged costs and provisions" -msgstr "" +msgstr "Custos cobrados separadamente e provisões" #. module: l10n_be_coda #: view:coda.bank.account:0 #: field:coda.bank.account,currency:0 #: field:coda.bank.statement,currency:0 msgid "Currency" -msgstr "" +msgstr "Moeda" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_06 msgid "Extension of maturity date" -msgstr "" +msgstr "Extensão da data de vencimento" #. module: l10n_be_coda #: field:coda.bank.account,def_receivable:0 @@ -1400,17 +1492,17 @@ msgstr "Conta de Recebimento padrão" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_15 msgid "Night safe" -msgstr "" +msgstr "Seguro noite" #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Total Amount" -msgstr "" +msgstr "Valor Total" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_214 msgid "Issue commission (delivery order)" -msgstr "" +msgstr "Comissão de emissão (de entrega)" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_13_07 @@ -1418,37 +1510,39 @@ msgid "" "Often by standing order or direct debit. In case of direct debit, family 13 " "is used." msgstr "" +"Muitas vezes, por ordem ou de débito directo em pé. Em caso de débito " +"directo, a família 13 é usado." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_01 msgid "Loading a GSM card" -msgstr "" +msgstr "Carregar um cartão GSM" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_021 msgid "Costs for drawing up a bank cheque" -msgstr "" +msgstr "Os custos para a elaboração de um cheque bancário" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_026 msgid "Handling commission" -msgstr "" +msgstr "Manipulação de comissão" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_201 msgid "Advice notice commission" -msgstr "" +msgstr "Assessoria de Comunicação da Comissão" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_64 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_64 msgid "Warrant" -msgstr "" +msgstr "Garantia" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_07 msgid "Unpaid commercial paper" -msgstr "" +msgstr "Papel comercial não remunerado" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:121 @@ -1466,22 +1560,22 @@ msgstr "" #: code:addons/l10n_be_coda/wizard/account_coda_import.py:499 #, python-format msgid "Data Error!" -msgstr "" +msgstr "Erro de dados!" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_010 msgid "Information pertaining to sale or purchase of securities" -msgstr "" +msgstr "Informações relativas à venda ou compra de valores mobiliários" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_54 msgid "Your payment ATM" -msgstr "" +msgstr "Seu ATM pagamento" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_123 msgid "Fees and commissions" -msgstr "" +msgstr "Taxas e comissões" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:690 @@ -1490,16 +1584,18 @@ msgid "" "Free Communication:\n" " %s" msgstr "" +"Free Communication:\n" +" %s" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_43_15 msgid "Purchase of an international bank cheque" -msgstr "" +msgstr "Compra de um cheque bancário internacional" #. module: l10n_be_coda #: field:coda.bank.account,coda_st_naming:0 msgid "Bank Statement Naming Policy" -msgstr "" +msgstr "Declaração Bancária Politica Naming" #. module: l10n_be_coda #: field:coda.bank.statement,date:0 @@ -1511,17 +1607,17 @@ msgstr "Data" #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_39 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_89 msgid "Undefined transaction" -msgstr "" +msgstr "Transação Undefined" #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Extended Filters..." -msgstr "" +msgstr "Filtros estendidas ..." #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_06 msgid "Costs chargeable to the remitter" -msgstr "" +msgstr "Os custos a cargo do remetente" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_205 @@ -1529,41 +1625,43 @@ msgid "" "Documentary payment commission | Document commission | Drawdown fee | " "Negotiation fee" msgstr "" +"Taxa de Negociação | pagamento de comissão Documentário | Comitê Documento | " +"taxa de rebaixamento" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_60 msgid "Settlement of mortgage loan" -msgstr "" +msgstr "Liquidação de empréstimo hipotecário" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_01 msgid "Purchase of securities" -msgstr "" +msgstr "Compra de títulos" #. module: l10n_be_coda #: field:account.coda,note:0 msgid "Import Log" -msgstr "" +msgstr "Importar Log" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_07 msgid "Domestic commercial paper" -msgstr "" +msgstr "O papel comercial doméstico" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_034 msgid "Reinvestment fee" -msgstr "" +msgstr "Taxa de reinvestimento" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_12 msgid "Costs for opening a bank guarantee" -msgstr "" +msgstr "Os custos para a abertura de uma garantia bancária" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_414 msgid "Regularisation charges" -msgstr "" +msgstr "Acusações de regularização" #. module: l10n_be_coda #: view:coda.bank.statement:0 @@ -1571,37 +1669,38 @@ msgstr "" #: model:ir.actions.act_window,name:l10n_be_coda.act_account_bank_statement_goto_coda_bank_statement #: model:ir.model,name:l10n_be_coda.model_coda_bank_statement msgid "CODA Bank Statement" -msgstr "" +msgstr "CODA extrato bancário" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_15 msgid "Your repayment hire-purchase and similar claims" msgstr "" +"Seu reembolso de aluguer com opção de compra e reivindicações semelhantes" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_62 msgid "Reversal of cheque" -msgstr "" +msgstr "Reversão de cheque" #. module: l10n_be_coda #: field:account.coda.trans.code,code:0 msgid "Code" -msgstr "" +msgstr "Código" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_032 msgid "Drawing up a circular cheque" -msgstr "" +msgstr "Elaboração de um cheque circular" #. module: l10n_be_coda #: view:coda.bank.statement:0 msgid "Seq" -msgstr "" +msgstr "Seq" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_52 msgid "Payment night safe" -msgstr "" +msgstr "Pagamento seguro noite" #. module: l10n_be_coda #: model:ir.actions.act_window,name:l10n_be_coda.act_coda_bank_statement_goto_account_bank_statement @@ -1612,17 +1711,17 @@ msgstr "Extrato bancário" #. module: l10n_be_coda #: field:coda.bank.statement.line,counterparty_name:0 msgid "Counterparty Name" -msgstr "" +msgstr "Nome contraparte" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_006 msgid "Various fees/commissions" -msgstr "" +msgstr "Várias taxas / comissões" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_209 msgid "Transfer commission" -msgstr "" +msgstr "Transferência de comissão" #. module: l10n_be_coda #: view:account.coda.import:0 @@ -1632,13 +1731,13 @@ msgstr "Cancelar" #. module: l10n_be_coda #: selection:coda.bank.statement.line,type:0 msgid "Information" -msgstr "" +msgstr "Informações" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_39 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_89 msgid "Cancellation of a transaction" -msgstr "" +msgstr "O cancelamento de uma transação" #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_3 @@ -1646,82 +1745,85 @@ msgid "" "Simple amount with detailed data; e.g. in case of charges for cross-border " "credit transfers." msgstr "" +"Montante simples, com dados detalhados, por exemplo, no caso de taxas de " +"transferências bancárias transfronteiras." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_15 msgid "Your purchase of lottery tickets" -msgstr "" +msgstr "A compra de bilhetes de loteria" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_05 msgid "Collective payments of wages" -msgstr "" +msgstr "Pagamentos coletivos de salários" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_17 msgid "Collected for unsealed deposit of securities, and other parcels" msgstr "" +"Recolhidos para depósito de valores mobiliários sem lacre, e outras parcelas" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_004 msgid "Counterparty’s banker" -msgstr "" +msgstr "Banqueiro da contraparte" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_43_01 msgid "Payment of a foreign cheque" -msgstr "" +msgstr "Pagamento de um cheque estrangeiro" #. module: l10n_be_coda #: help:coda.bank.account,journal:0 msgid "Bank Journal for the Bank Statement" -msgstr "" +msgstr "Jornal banco para o extrato bancário" #. module: l10n_be_coda #: selection:coda.bank.statement.line,type:0 msgid "Globalisation" -msgstr "" +msgstr "Globalização" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_54 msgid "Fixed advance – capital and interest" -msgstr "" +msgstr "Antecedência fixa - capital e juros" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_11 msgid "Payment documents abroad" -msgstr "" +msgstr "Documentos de pagamento no exterior" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_09 msgid "" "Postage recouped to the debit of the customer (including forwarding charges)" -msgstr "" +msgstr "Selo recuperado para o débito do cliente (incluindo custos de envio)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_04 msgid "Costs for holding a documentary cash credit" -msgstr "" +msgstr "Os custos para a realização de um crédito em dinheiro documentário" #. module: l10n_be_coda #: field:coda.bank.statement,balance_start:0 msgid "Starting Balance" -msgstr "" +msgstr "Saldo Inicial" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_13 msgid "Settlement of bank acceptances" -msgstr "" +msgstr "A liquidação das aceitações banco" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_200 msgid "Overall documentary credit charges" -msgstr "" +msgstr "Taxas de crédito documentário geral" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_25 msgid "Renting of direct debit box" -msgstr "" +msgstr "Locação de caixa de débito directo" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_52 @@ -1729,6 +1831,8 @@ msgid "" "Payment of coupons from a deposit or settlement of coupons delivered over " "the counter - credit under usual reserve" msgstr "" +"Pagamento de cupons de um depósito ou pagamento de cupons entregues no " +"balcão - o crédito sob reserva habitual" #. module: l10n_be_coda #: help:coda.bank.statement.line,globalisation_level:0 @@ -1737,45 +1841,48 @@ msgid "" "globalisation of which this record is the first.\n" "The same code will be repeated at the end of the globalisation." msgstr "" +"O valor que é mencionado (1 a 9), define o nível de hierarquia do " +"globalização das quais este é o primeiro registo. \n" +"O mesmo código serão repetidos no final da globalização." #. module: l10n_be_coda #: field:coda.bank.account,description2:0 msgid "Secondary Account Description" -msgstr "" +msgstr "Secundária Descrição da Conta" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_211 msgid "Credit arrangement fee | Additional credit arrangement fee" -msgstr "" +msgstr "Taxa de arranjo de Crédito | taxa de arranjo adicional de crédito" #. module: l10n_be_coda #: view:coda.bank.statement:0 #: model:ir.actions.act_window,name:l10n_be_coda.action_coda_bank_statements #: model:ir.ui.menu,name:l10n_be_coda.menu_coda_bank_statements msgid "CODA Bank Statements" -msgstr "" +msgstr "CODA extratos bancários" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_62 msgid "Term loan" -msgstr "" +msgstr "Empréstimo a prazo" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_70 msgid "Sale of traveller’s cheque" -msgstr "" +msgstr "Venda de cheques de viagem" #. module: l10n_be_coda #: field:coda.bank.account,name:0 #: field:coda.bank.statement,name:0 msgid "Name" -msgstr "" +msgstr "Nome" #. module: l10n_be_coda #: view:account.coda:0 #: field:account.coda,coda_creation_date:0 msgid "CODA Creation Date" -msgstr "" +msgstr "CODA Data de criação" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:585 @@ -1785,27 +1892,30 @@ msgid "" "\n" "Unknown Error : " msgstr "" +"\n" +"Erro desconhecido: " #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_035 msgid "Charges foreign documentary bill" -msgstr "" +msgstr "Encargos conta documentário estrangeiro" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_39 msgid "Agios on guarantees given" -msgstr "" +msgstr "Agios de garantias prestadas" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_070 msgid "Forward arbitrage contracts : sum to be supplied by bank" msgstr "" +"Contratos de arbitragem para a frente: soma a ser fornecido pelo banco" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_56 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_56 msgid "Reserve" -msgstr "" +msgstr "Reserva" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_23 @@ -1813,11 +1923,13 @@ msgid "" "Costs charged for all kinds of research (information on past transactions, " "address retrieval, ...)" msgstr "" +"Custos cobrados para todos os tipos de pesquisa (informações sobre " +"transações passadas, recuperação de endereço, ...)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_14 msgid "Handling costs instalment credit" -msgstr "" +msgstr "Os custos de manuseio crédito parcelado" #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_6 @@ -1827,26 +1939,30 @@ msgid "" "the detailed data. In that case, one will speak of a ‘separate application’. " "The records in a separate application keep type 6." msgstr "" +"Detalhe da 2. Montante simples, sem dados detalhados. Normalmente, este tipo " +"de dados vem depois do tipo 2. O cliente pode pedir um arquivo separado " +"contendo os dados detalhados. Nesse caso, ninguém vai falar de um " +"\"aplicativo separado. Os registros em um aplicativo separado manter tipo 6." #. module: l10n_be_coda #: view:account.coda:0 msgid "CODA Files" -msgstr "" +msgstr "Arquivos CODA" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_17 msgid "Financial centralisation" -msgstr "" +msgstr "Centralização financeira" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_404 msgid "Discount commission" -msgstr "" +msgstr "Comissão de desconto" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_45 msgid "Documentary credit charges" -msgstr "" +msgstr "Taxas de crédito documentário" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:911 @@ -1855,63 +1971,65 @@ msgid "" "\n" "Number of errors : " msgstr "" +"\n" +"Número de erros: " #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_22 msgid "Management/custody" -msgstr "" +msgstr "Gestão / custódia" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_51 msgid "Tender" -msgstr "" +msgstr "Tenro" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_56 msgid "Non-presented certified cheques" -msgstr "" +msgstr "Cheques visados ​​não apresentadas" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_408 msgid "Cover commission" -msgstr "" +msgstr "Cubra comissão" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_071 msgid "Fixed loan advance - availability" -msgstr "" +msgstr "Antecedência empréstimo fixo - Disponibilidade" #. module: l10n_be_coda #: field:account.coda,name:0 #: field:account.coda.import,coda_fname:0 msgid "CODA Filename" -msgstr "" +msgstr "CODA Matrícula" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_31 msgid "E.g. for signing invoices" -msgstr "" +msgstr "Por exemplo, para assinar faturas" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_04_37 msgid "Various costs for possessing or using a payment card" -msgstr "" +msgstr "Vários custos para posse ou uso de um cartão de pagamento" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_37 msgid "Costs related to commercial paper" -msgstr "" +msgstr "Os custos relacionados a papel comercial" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_043 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_07 msgid "Insurance costs" -msgstr "" +msgstr "Os custos do seguro" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_431 msgid "Delivery of a copy" -msgstr "" +msgstr "Entrega de uma cópia" #. module: l10n_be_coda #: help:coda.bank.account,transfer_account:0 @@ -1919,6 +2037,9 @@ msgid "" "Set here the default account that will be used for internal transfer between " "own bank accounts (e.g. transfer between current and deposit bank accounts)." msgstr "" +"Defina aqui a conta padrão que será utilizado para a transferência interna " +"entre contas bancárias próprias (por exemplo, transferência entre contas " +"correntes bancárias e depósito)." #. module: l10n_be_coda #: view:account.coda:0 @@ -1941,92 +2062,94 @@ msgid "" "\n" "System Error : " msgstr "" +"\n" +"Erro de sistema: " #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_60 msgid "Non-presented circular cheque" -msgstr "" +msgstr "Não apresentou cheque circular" #. module: l10n_be_coda #: field:coda.bank.statement,line_ids:0 msgid "CODA Bank Statement lines" -msgstr "" +msgstr "CODA linhas extrato bancário" #. module: l10n_be_coda #: sql_constraint:account.coda:0 msgid "This CODA has already been imported !" -msgstr "" +msgstr "Este CODA já foi importado!" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_19 msgid "Documentary import credits" -msgstr "" +msgstr "Créditos documentários de importação" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_001 msgid "Data concerning the counterparty" -msgstr "" +msgstr "Os dados relativos a contraparte" #. module: l10n_be_coda #: view:account.coda.comm.type:0 msgid "CODA Structured Communication Type" -msgstr "" +msgstr "CODA Structured Tipo de Comunicação" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_07 msgid "Contra-entry of a direct credit or of a discount" -msgstr "" +msgstr "Contrapartida de um crédito direto ou de um desconto" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_55 msgid "Interest term investment" -msgstr "" +msgstr "Investimento de longo prazo Juros" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_007 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_37 msgid "Access right to database" -msgstr "" +msgstr "Direito de acesso ao banco de dados" #. module: l10n_be_coda #: model:ir.model,name:l10n_be_coda.model_account_coda_trans_type msgid "CODA transaction type" -msgstr "" +msgstr "CODA tipo de transação" #. module: l10n_be_coda #: field:coda.bank.statement.line,account_id:0 msgid "Account" -msgstr "" +msgstr "Conta" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_17 msgid "Management fee" -msgstr "" +msgstr "Taxa de administração" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_37 msgid "Costs relating to the payment of a foreign bill" -msgstr "" +msgstr "Os custos relativos ao pagamento de uma conta externa" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_13 msgid "Eurocheque written out abroad" -msgstr "" +msgstr "Eurocheque escrito no exterior" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_13_01 msgid "Capital and/or interest (specified by the category)" -msgstr "" +msgstr "Capital e / ou juros (especificado pela categoria)" #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Glob. Am." -msgstr "" +msgstr "Glob. Sou." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_17 msgid "Charge for safe custody" -msgstr "" +msgstr "Responsável pela custódia segura" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_102 @@ -2034,11 +2157,13 @@ msgid "" "Credit transfer or cash payment with reconstituted structured format " "communication" msgstr "" +"Transferência de crédito ou pagamento à vista com comunicação formato " +"estruturado reconstituído" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_86 msgid "Payment after cession" -msgstr "" +msgstr "Pagamento após cessão" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:140 @@ -2048,39 +2173,42 @@ msgid "" "CODA File with Filename '%s' and Creation Date '%s' has already been " "imported." msgstr "" +"\n" +"CODA arquivo com Nome do arquivo '% s' e Data de Criação '% s' já foi " +"importado." #. module: l10n_be_coda #: code:addons/l10n_be_coda/l10n_be_coda.py:303 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Inválido Ação!" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_14 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_14 msgid "Warrant fallen due" -msgstr "" +msgstr "Garante vencidos" #. module: l10n_be_coda #: model:ir.actions.act_window,name:l10n_be_coda.action_imported_coda_files #: model:ir.ui.menu,name:l10n_be_coda.menu_imported_coda_files msgid "Imported CODA Files" -msgstr "" +msgstr "Arquivos CODA importados" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_29 msgid "Charges collected for: - commercial information - sundry information" -msgstr "" +msgstr "Taxas cobradas para: - informações comerciais - Informações diversos" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_15 msgid "In case of subscription before the interest due date" -msgstr "" +msgstr "Em caso de inscrição antes da data de vencimento de juros" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_43 msgid "Foreign cheques" -msgstr "" +msgstr "Cheques estrangeiros" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:126 @@ -2090,56 +2218,60 @@ msgid "" "The CODA creation date doesn't fall within a defined Accounting Period.\n" "Please create the Accounting Period for date %s." msgstr "" +"\n" +"A data de criação CODA não se enquadra no período de contabilização " +"definido. \n" +"crie período contábil para a data% s." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_62 msgid "Sale of gold/pieces under usual reserve" -msgstr "" +msgstr "Venda de ouro / peças sob reserva habitual" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_51 msgid "The bank takes the initiative for crediting the customer’s account." -msgstr "" +msgstr "O banco toma a iniciativa para crédito na conta do cliente." #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_13_05 msgid "Full or partial reimbursement of a fixed advance at maturity date" -msgstr "" +msgstr "Reembolso total ou parcial de um avanço fixo na data de vencimento" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_26 msgid "Travel insurance premium" -msgstr "" +msgstr "Prêmio de seguro de viagem" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_416 msgid "Charges for the deposit of security" -msgstr "" +msgstr "Encargos para o depósito de segurança" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_04_04 msgid "At home as well as abroad" -msgstr "" +msgstr "Em casa e no exterior" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_47_11 msgid "Bills of lading" -msgstr "" +msgstr "Conhecimentos de embarque" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_50 msgid "Remittance of commercial paper - credit after collection" -msgstr "" +msgstr "Remessa de papel comercial - o crédito após a coleta" #. module: l10n_be_coda #: view:coda.bank.statement:0 msgid "Search CODA Bank Statements" -msgstr "" +msgstr "Busca CODA extratos bancários" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_410 msgid "Reclamation charges" -msgstr "" +msgstr "Taxas de recuperação" #. module: l10n_be_coda #: model:ir.actions.act_window,help:l10n_be_coda.action_coda_bank_statements @@ -2149,38 +2281,42 @@ msgid "" "associated with a CODA contain the subset of the CODA Bank Statement data " "that is required for the creation of the Accounting Entries." msgstr "" +"Os extratos bancários CODA conter a informação codificada no seu arquivo de " +"origem CODA em um formato legível. Os extratos bancários associados a um " +"CODA conter o subconjunto dos dados extrato bancário CODA que é necessário " +"para a criação dos lançamentos contábeis." #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_114 msgid "POS credit - individual transaction" -msgstr "" +msgstr "POS crédito - transação individual" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_70 msgid "Settlement of discount bank acceptance" -msgstr "" +msgstr "Liquidação de aceitação banco desconto" #. module: l10n_be_coda #: code:addons/l10n_be_coda/l10n_be_coda.py:114 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (copy)" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_04_02 #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_04_08 msgid "Eurozone = countries which have the euro as their official currency" -msgstr "" +msgstr "Países da zona do euro = que têm o euro como moeda oficial" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_02 msgid "The bank takes the initiative for debiting the customer’s account." -msgstr "" +msgstr "O banco toma a iniciativa de débito na conta do cliente." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_05_58 msgid "Reversal" -msgstr "" +msgstr "Reversão" #. module: l10n_be_coda #: view:coda.bank.account:0 @@ -2188,53 +2324,53 @@ msgstr "" #: view:coda.bank.statement:0 #: selection:coda.bank.statement,type:0 msgid "Info" -msgstr "" +msgstr "Informations" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_02 msgid "Costs relating to electronic output" -msgstr "" +msgstr "Os custos relativos à produção eletrônica" #. module: l10n_be_coda #: sql_constraint:account.coda.comm.type:0 msgid "The Structured Communication Code must be unique !" -msgstr "" +msgstr "O Código de comunicação estruturada deve ser único!" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_418 msgid "Endorsement commission" -msgstr "" +msgstr "Comissão de aval" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_005 msgid "Renting of letterbox" -msgstr "" +msgstr "Locação de caixa de correio" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:58 #, python-format msgid "Wizard in incorrect state. Please hit the Cancel button." -msgstr "" +msgstr "Assistente em estado incorreto. Por favor, clique no botão Cancel." #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_13 msgid "Commission for renting a safe deposit box" -msgstr "" +msgstr "Comissão para alugar um cofre" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_39 msgid "To be used for issued circular cheques given in consignment" -msgstr "" +msgstr "Para ser usado para cheques circulares emitidas dadas em consignação" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_11 msgid "Securities" -msgstr "" +msgstr "Valores mobiliários" #. module: l10n_be_coda #: selection:coda.bank.statement.line,type:0 msgid "Free Communication" -msgstr "" +msgstr "Free Comunicação" #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_2 @@ -2243,11 +2379,15 @@ msgid "" "credit transfers with a structured communication As a matter of principle, " "this type will also be used when no detailed data (type 6 or 7) is following." msgstr "" +"Saldo totalizados pelo banco, por exemplo: a quantidade total de uma série " +"de transferências de crédito com uma comunicação estruturada como uma " +"questão de princípio, este tipo também será usado quando há dados detalhados " +"(tipo 6 ou 7) está seguindo." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_033 msgid "Charges for a foreign bill" -msgstr "" +msgstr "Encargos de uma lei estrangeira" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:302 @@ -2257,11 +2397,13 @@ msgid "" "\n" "The File contains an invalid Structured Communication Type : %s." msgstr "" +"\n" +"O arquivo contém um inválido Structured Tipo de comunicação:% s." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_049 msgid "Fiscal stamps/stamp duty" -msgstr "" +msgstr "Selos fiscais / imposto de selo" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_03_58 @@ -2269,21 +2411,23 @@ msgid "" "Also for vouchers, postal orders, anything but bills of exchange, " "acquittances, promissory notes, etc." msgstr "" +"Também para vouchers, vales postais, qualquer coisa, mas letras de câmbio, " +"acquittances, notas promissórias, etc" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_06 msgid "Damage relating to bills and cheques" -msgstr "" +msgstr "Danos relacionados com títulos e cheques" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_09 msgid "Unpaid voucher" -msgstr "" +msgstr "Vale não remunerado" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_13 msgid "Unissued part (see 64)" -msgstr "" +msgstr "Parte Unissued (ver 64)" #. module: l10n_be_coda #: view:account.coda.import:0 @@ -2292,39 +2436,39 @@ msgstr "" #: model:ir.actions.act_window,name:l10n_be_coda.wizard_account_coda_import_2 #: model:ir.model,name:l10n_be_coda.model_account_coda_import msgid "Import CODA File" -msgstr "" +msgstr "Importar arquivo CODA" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:290 #: code:addons/l10n_be_coda/wizard/account_coda_import.py:483 #, python-format msgid "Transaction Code unknown, please consult your bank." -msgstr "" +msgstr "Transaction desconhecido Código, por favor, consultar o seu banco." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_014 msgid "Collection commission" -msgstr "" +msgstr "Colecção commission" #. module: l10n_be_coda #: view:account.coda.trans.type:0 msgid "CODA Transaction Type" -msgstr "" +msgstr "CODA Tipo de Transação" #. module: l10n_be_coda #: field:coda.bank.statement.line,globalisation_level:0 msgid "Globalisation Level" -msgstr "" +msgstr "Globalização Nível" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_020 msgid "Costs of physical delivery" -msgstr "" +msgstr "Os custos de entrega física" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_60 msgid "Sale of foreign bank notes" -msgstr "" +msgstr "Venda de notas estrangeiras" #. module: l10n_be_coda #: field:account.coda.import,note:0 @@ -2334,12 +2478,12 @@ msgstr "Log" #. module: l10n_be_coda #: view:account.coda:0 msgid "Search CODA Files" -msgstr "" +msgstr "De busca Arquivos de CODA" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_52 msgid "Remittance of commercial paper - credit under usual reserve" -msgstr "" +msgstr "Remessa de papel comercial - Crédito sob reserva habitual" #. module: l10n_be_coda #: help:coda.bank.account,active:0 @@ -2347,16 +2491,18 @@ msgid "" "If the active field is set to False, it will allow you to hide the Bank " "Account without removing it." msgstr "" +"Se o campo ativo é definido como False, ele permitirá que você esconda a " +"conta bancária sem removê-lo." #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_54 msgid "Among other things advances or promissory notes" -msgstr "" +msgstr "Entre outras coisas, os avanços ou notas promissórias" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_10 msgid "Purchase of Smartcard" -msgstr "" +msgstr "Compra de Smartcard" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:665 @@ -2369,27 +2515,33 @@ msgid "" "Structured Communication Type: %s - %s\n" "Communication: %s" msgstr "" +"Tipo de transação:% s -% s \n" +"Família da transação:% s -% s \n" +"código de transação:% s -% s \n" +"categoria de transação:% s -% s \n" +"Structured Tipo de comunicação:% s -% s \n" +"Comunicação:% s" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_208 msgid "Commitment fee deferred payment" -msgstr "" +msgstr "Compromisso taxa de pagamento diferido" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_005 msgid "Data concerning the correspondent" -msgstr "" +msgstr "Os dados relativos ao correspondente" #. module: l10n_be_coda #: model:ir.ui.menu,name:l10n_be_coda.menu_account_coda msgid "CODA Processing" -msgstr "" +msgstr "CODA Processamento" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_19 msgid "" "Collected for securities, gold, pass-books, etc. placed in safe custody" -msgstr "" +msgstr "Coletado por títulos, ouro, passa-books, etc colocado sob custódia" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_09_19 @@ -2397,31 +2549,33 @@ msgid "" "Used in case of payments accepted under reserve of count, result of " "overcrediting" msgstr "" +"Usado em caso de pagamentos aceitos sob reserva de contagem, resultado de " +"overcrediting" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_09 msgid "Agio on supplier's bill" -msgstr "" +msgstr "Agio na conta do fornecedor" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_213 msgid "Financing fee" -msgstr "" +msgstr "Taxa de financiamento" #. module: l10n_be_coda #: field:coda.bank.account,active:0 msgid "Active" -msgstr "" +msgstr "Ativo" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_38 msgid "Provisionally unpaid" -msgstr "" +msgstr "Provisoriamente não remunerado" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_03 msgid "Subscription to securities" -msgstr "" +msgstr "Subscrição de valores mobiliários" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:194 @@ -2432,6 +2586,9 @@ msgid "" "Description' fields of your configuration record match with '%s', '%s' and " "'%s'." msgstr "" +"\n" +"Por favor verifique se o 'Bank Account Number', 'Hoje' e 'descrição da " +"conta' campos de seu jogo registro de configuração com '% s', '% s' e '% s'." #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_7 @@ -2439,23 +2596,25 @@ msgid "" "Detail of 2. Simple account with detailed data The records in a separate " "application keep type 7." msgstr "" +"Detalhe da 2. Conta simples, com dados detalhados os registros em um " +"aplicativo separado manter tipo 7." #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_125 #: model:account.coda.trans.code,description:l10n_be_coda.actcf_13 #: view:coda.bank.statement.line:0 msgid "Credit" -msgstr "" +msgstr "Crédito" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_09 msgid "Counter transactions" -msgstr "" +msgstr "Operações de balcão" #. module: l10n_be_coda #: model:ir.model,name:l10n_be_coda.model_coda_bank_statement_line msgid "CODA Bank Statement Line" -msgstr "" +msgstr "CODA Banco Linha Declaração" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_17 @@ -2464,26 +2623,28 @@ msgid "" "In case of centralisation by the bank, type 2 will be allotted to this " "transaction. This total can be followed by the detailed movement." msgstr "" +"Em caso de centralização pelo banco, do tipo 2 será alocado para essa " +"transação. Este total pode ser seguido pelo movimento detalhado." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_057 msgid "Interest subsidy" -msgstr "" +msgstr "Bonificação de juros" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_41 msgid "International credit transfers - non-SEPA credit transfers" -msgstr "" +msgstr "Transferências internacionais - transferências de créditos não-SEPA" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_03_87 msgid "Overall amount, VAT included" -msgstr "" +msgstr "Montante global, IVA incluído" #. module: l10n_be_coda #: selection:coda.bank.statement.line,type:0 msgid "General" -msgstr "" +msgstr "Geral" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:857 @@ -2492,11 +2653,13 @@ msgid "" "\n" "Incorrect ending Balance in CODA Statement %s for Bank Account %s." msgstr "" +"\n" +"Incorreto saldo final em CODA Declaração% s para Conta Bancária% s." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_04 msgid "Issues" -msgstr "" +msgstr "Questões" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_37 @@ -2504,83 +2667,85 @@ msgid "" "If any, detail in the category (e.g. costs for presentation for acceptance, " "etc.)" msgstr "" +"Se qualquer detalhe, na categoria (por exemplo, os custos para a " +"apresentação ao aceite, etc)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_17 msgid "Purchase of fiscal stamps" -msgstr "" +msgstr "Compra de selos fiscais" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_01 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_50 msgid "Transfer" -msgstr "" +msgstr "Transferir" #. module: l10n_be_coda #: view:account.coda.import:0 msgid "View Bank Statement(s)" -msgstr "" +msgstr "Ver extrato bancário (s)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_20 msgid "Drawing up a certificate" -msgstr "" +msgstr "Elaboração de um certificado" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_013 msgid "Payment commission" -msgstr "" +msgstr "Comissão de pagamento" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_01 msgid "" "Bills of exchange, acquittances, promissory notes; debit of the drawee" -msgstr "" +msgstr "Letras de câmbio, notas promissórias, acquittances; débito do sacado" #. module: l10n_be_coda #: view:account.coda.import:0 msgid "View CODA Bank Statement(s)" -msgstr "" +msgstr "Ver CODA Banco Statement (s)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_15 msgid "Your purchase bank cheque" -msgstr "" +msgstr "Sua compra cheque" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_05 msgid "Payment of voucher" -msgstr "" +msgstr "Pagamento de vale" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_68 msgid "Documentary export credits" -msgstr "" +msgstr "Créditos documentários de exportação" #. module: l10n_be_coda #: field:coda.bank.account,find_bbacom:0 msgid "Lookup Invoice" -msgstr "" +msgstr "Pesquisa fatura" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_03 msgid "Cheques" -msgstr "" +msgstr "Cheques" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_12 msgid "Safe custody" -msgstr "" +msgstr "Custódia" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_05_56 msgid "Unexecutable reimbursement" -msgstr "" +msgstr "Reembolso inexeqüível" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_05_03 msgid "Unpaid debt" -msgstr "" +msgstr "Dívida a pagar" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:193 @@ -2589,6 +2754,8 @@ msgid "" "\n" "No matching CODA Bank Account Configuration record found." msgstr "" +"\n" +"No Banco registro de configuração de conta correspondente CODA encontrado." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_52 @@ -2596,6 +2763,8 @@ msgid "" "First credit of cheques, vouchers, luncheon vouchers, postal orders, credit " "under usual reserve" msgstr "" +"Primeiro crédito de cheques, vales, cheques-refeição, vales postais, crédito " +"sob reserva habitual" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_05 @@ -2603,6 +2772,8 @@ msgid "" "Bill claimed back at the drawer's request (bill claimed back before maturity " "date)" msgstr "" +"Bill reclamado, a pedido da gaveta (projeto de lei reclamado antes da data " +"de vencimento)" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_11 @@ -2610,6 +2781,8 @@ msgid "" "Costs chargeable to clients who ask to have their correspondence kept at " "their disposal at the bank's counter" msgstr "" +"Custos imputáveis ​​aos clientes que pedem para ter sua correspondência " +"mantida a sua disposição no balcão do banco" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_64 @@ -2618,21 +2791,24 @@ msgid "" "underwriting or not); also used for the payment in full of partly-paid " "shares, see transaction 05" msgstr "" +"Valor pago ao emitente pelo banco responsável pela colocação (underwriting " +"firme ou não), também usado para o pagamento integral das ações parcialmente " +"pagos, consulte transação 05" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_03_15 msgid "Cheque drawn by the bank on itself, usually with charges." -msgstr "" +msgstr "Cheque elaborado pelo banco em si, geralmente com acusações." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_072 msgid "Countervalue of commission to third party" -msgstr "" +msgstr "Contravalor de comissão a terceiros" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_01 msgid "Individual transfer order" -msgstr "" +msgstr "Ordem de transferência Individual" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:165 @@ -2641,11 +2817,13 @@ msgid "" "\n" "Foreign bank accounts with IBAN structure are not supported." msgstr "" +"\n" +"Contas bancárias no exterior com estrutura IBAN não são suportados." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_02 msgid "Payment by means of a payment card within the Eurozone" -msgstr "" +msgstr "O pagamento por meio de cartão de pagamento na zona euro" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_01 @@ -2654,58 +2832,61 @@ msgid "" "the execution date of this transfer is in the future. Domestic payments as " "well as euro payments meeting the requirements." msgstr "" +"Transferência de crédito dado pelo cliente em papel ou eletronicamente, " +"mesmo que a data de execução dessa transferência é no futuro. Os pagamentos " +"domésticos, bem como pagamentos em euros atender aos requisitos." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_35 msgid "Closing (periodical settlements for interest, costs,…)" -msgstr "" +msgstr "Fechamento (assentamentos periódicos de juros, custos, ...)" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_019 msgid "Tax on physical delivery" -msgstr "" +msgstr "Imposto sobre a Entrega Física" #. module: l10n_be_coda #: field:coda.bank.statement,statement_id:0 msgid "Associated Bank Statement" -msgstr "" +msgstr "Extrato bancário associado" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_03_17 msgid "Amount of the cheque; if any, charges receive code 37" -msgstr "" +msgstr "Valor do cheque, se for o caso, os encargos receber o código 37" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_103 msgid "number (e.g. of the cheque, of the card, etc.)" -msgstr "" +msgstr "número (por exemplo, do controlo, do cartão, etc)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_24 msgid "Participation in and management of interest refund system" -msgstr "" +msgstr "Participação e gestão do sistema de bonificação de juros" #. module: l10n_be_coda #: view:coda.bank.statement:0 #: view:coda.bank.statement.line:0 msgid "Glob. Amount" -msgstr "" +msgstr "Glob. Quantidade" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_58 msgid "Payment by your branch/agents" -msgstr "" +msgstr "Pagamento por sua filial / agentes" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_25 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_43_70 msgid "Purchase of traveller’s cheque" -msgstr "" +msgstr "Compra de cheques de viagem" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_39 msgid "Your issue circular cheque" -msgstr "" +msgstr "Seu problema circular cheque" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_09 @@ -2713,6 +2894,8 @@ msgid "" "For professionals (stockbrokers) only, whoever the issuer may be (Belgian or " "foreigner)" msgstr "" +"Para profissionais (corretores), apenas, quem o emitente pode ser (belga ou " +"estrangeiro)" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_33 @@ -2721,27 +2904,30 @@ msgid "" "collecting, ordering funds). VAT excluded = type 0 VAT included = type 3 (at " "least 3 articles)" msgstr "" +"Os custos não especificado de outra forma, muitas vezes com uma comunicação " +"manual (por exemplo, para a coleta, ordenação de fundos). Sem IVA = tipo 0 " +"IVA incluído = tipo 3 (pelo menos 3 artigos)" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_023 msgid "Exercising fee" -msgstr "" +msgstr "Exercitando taxa" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_419 msgid "Bank service fee" -msgstr "" +msgstr "Banco taxa de serviço" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:932 #, python-format msgid "Import CODA File result" -msgstr "" +msgstr "Import resultado Arquivo CODA" #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Search Bank Transactions" -msgstr "" +msgstr "Busca transações bancárias" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:579 @@ -2750,6 +2936,8 @@ msgid "" "\n" "Application Error : " msgstr "" +"\n" +"Erro de aplicativo: " #. module: l10n_be_coda #: help:coda.bank.account,description1:0 @@ -2758,69 +2946,73 @@ msgid "" "The Primary or Secondary Account Description should match the corresponding " "Account Description in the CODA file." msgstr "" +"O Primário ou Secundário Descrição da Conta deve coincidir com o " +"correspondente Descrição da Conta no arquivo CODA." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_13 msgid "Cash withdrawal by your branch or agents" -msgstr "" +msgstr "Retirada de dinheiro por seu ramo ou agentes" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_03 msgid "Cash withdrawal by card (ATM)" -msgstr "" +msgstr "Retirada de dinheiro através de cartão (ATM)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_16 msgid "Bank confirmation to revisor or accountant" -msgstr "" +msgstr "Confirmação bancária de revisor ou contador" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcf_04 msgid "Cards" -msgstr "" +msgstr "Cartões" #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Statement" -msgstr "" +msgstr "Afirmação" #. module: l10n_be_coda #: view:account.coda.trans.type:0 #: model:ir.actions.act_window,name:l10n_be_coda.action_account_coda_trans_type_form #: model:ir.ui.menu,name:l10n_be_coda.menu_action_account_coda_trans_type_form msgid "CODA Transaction Types" -msgstr "" +msgstr "Tipos de transação CODA" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_50 msgid "Credit after a payment at a terminal" -msgstr "" +msgstr "Crédito após o pagamento de um terminal" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_02 msgid "Long-term loan" -msgstr "" +msgstr "Empréstimo de longo prazo" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_05 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_54 msgid "Capital and/or interest term investment" -msgstr "" +msgstr "Capital e / ou investimento de longo prazo interesse" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_68 msgid "Credit of a payment via electronic purse" -msgstr "" +msgstr "Crédito de um pagamento via bolsa eletrônica" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_028 msgid "Fidelity premium" -msgstr "" +msgstr "Fidelity prémio" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_39 msgid "Provisionally unpaid due to other reason than manual presentation" msgstr "" +"Provisoriamente não remunerado devido a outra razão que o manual de " +"apresentação" #. module: l10n_be_coda #: constraint:coda.bank.account:0 @@ -2830,6 +3022,10 @@ msgid "" "Configuration Error! \n" "The Bank Account Currency should match the Journal Currency !" msgstr "" +"\n" +"\n" +"Erro de configuração! \n" +"A Moeda de conta bancária deve corresponder ao Jornal Hoje!" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_35 @@ -2837,6 +3033,8 @@ msgid "" "Costs charged for calculating the amount of the tax to be paid (e.g. " "Fiscomat)." msgstr "" +"Custos cobrados para o cálculo do montante do imposto a ser pago (por " +"exemplo Fiscomat)." #. module: l10n_be_coda #: view:account.coda:0 @@ -2850,62 +3048,62 @@ msgstr "Empresa" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_43_52 msgid "Remittance of foreign cheque credit under usual reserve" -msgstr "" +msgstr "Remessa de verificação de crédito estrangeiro sob reserva habitual" #. module: l10n_be_coda #: field:coda.bank.statement.line,counterparty_number:0 msgid "Counterparty Number" -msgstr "" +msgstr "Número de contraparte" #. module: l10n_be_coda #: view:account.coda.import:0 msgid "_Import" -msgstr "" +msgstr "_import" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_04_03 msgid "See annexe III : communication 124" -msgstr "" +msgstr "Ver anexo III: Comunicação 124" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_037 msgid "Commission for handling charges" -msgstr "" +msgstr "Comissão de cargas de manipulação" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_113 msgid "ATM/POS debit" -msgstr "" +msgstr "ATM / POS débito" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_30_03 msgid "Forward purchase of foreign exchange" -msgstr "" +msgstr "Termo de compra de divisas" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_50 msgid "Credit of a payment via terminal" -msgstr "" +msgstr "Crédito de um pagamento via terminal" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_04_52 msgid "Credit provider" -msgstr "" +msgstr "Provedor de crédito" #. module: l10n_be_coda #: selection:account.coda.trans.code,type:0 msgid "Transaction Family" -msgstr "" +msgstr "Família Transação" #. module: l10n_be_coda #: field:coda.bank.statement.line,ref:0 msgid "Reference" -msgstr "" +msgstr "Referência" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_68 msgid "In case coupons attached to a purchased security are missing" -msgstr "" +msgstr "No caso de cupons anexados a um título comprado faltam" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:58 @@ -2916,13 +3114,15 @@ msgstr "" #: code:addons/l10n_be_coda/wizard/account_coda_import.py:526 #, python-format msgid "Error!" -msgstr "" +msgstr "Erro!" #. module: l10n_be_coda #: help:coda.bank.statement,type:0 msgid "" "No Bank Statements are associated with CODA Bank Statements of type 'Info'." msgstr "" +"Não há extratos bancários estão associados com CODA extratos bancários do " +"tipo 'Info'." #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_09_58 @@ -2930,67 +3130,69 @@ msgid "" "Takes priority over transaction 52 (hence a payment made by an agent in a " "night safe = 58 and not 52)" msgstr "" +"Tem prioridade sobre a operação de 52 (portanto, um pagamento feito por um " +"agente em uma noite segura = 58 e não 52)" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_121 msgid "Commercial bills" -msgstr "" +msgstr "Contas comerciais" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_11 msgid "Costs for the safe custody of correspondence" -msgstr "" +msgstr "Os custos para a guarda segura de correspondência" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_041 msgid "Credit card costs" -msgstr "" +msgstr "Custos de cartão de crédito" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_56 msgid "Subsidy" -msgstr "" +msgstr "Subsídio" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_06 msgid "Payment with tank card" -msgstr "" +msgstr "Pagamento com cartão de tanque" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_107 msgid "Direct debit – DOM’80" -msgstr "" +msgstr "Débito directo - DOM'80" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_60 msgid "Reversal of voucher" -msgstr "" +msgstr "Reversão de vale" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_87 msgid "Costs refunded" -msgstr "" +msgstr "Os custos reembolsados" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_17 msgid "Financial centralisation (debit)" -msgstr "" +msgstr "Centralização financeira (débito)" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_02 msgid "Payment to the bank on maturity date" -msgstr "" +msgstr "Pagamento ao banco na data de vencimento" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_025 msgid "Individual entry for exchange charges" -msgstr "" +msgstr "Entrada individual para taxas de acusações" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_004 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_09 msgid "Postage" -msgstr "" +msgstr "Postagem" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_09_50 @@ -2999,6 +3201,10 @@ msgid "" "also for mixed payments (cash + cheques) - not to be communicated to the " "clients; for payments made by a third person: see family 01" msgstr "" +"Por conta própria - o comentário para o cliente é dada na comunicação, " +"também para pagamentos mistos (caixa + cheques) - não devem ser comunicados " +"aos clientes, para os pagamentos feitos por uma terceira pessoa: ver a " +"família 01" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_09_68 @@ -3006,6 +3212,8 @@ msgid "" "In case of payment accepted under reserve of count; result of undercrediting " "- see also transaction 19" msgstr "" +"Em caso de pagamento aceites sob reserva de contagem, resultado de " +"undercrediting - ver também a transação 19" #. module: l10n_be_coda #: help:coda.bank.account,bank_id:0 @@ -3014,11 +3222,14 @@ msgid "" "The CODA import function will find its CODA processing parameters on this " "number." msgstr "" +"Número de Conta Bancária. \n" +"A função de importação CODA vai encontrar seus parâmetros de processamento " +"CODA neste número." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_05 msgid "Payment of wages, etc." -msgstr "" +msgstr "Pagamento de salários, etc" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:428 @@ -3030,48 +3241,53 @@ msgid "" " Please adjust the corresponding entry manually in the generated Bank " "Statement." msgstr "" +"\n" +" Extrato bancário '% s' linha '% s':\n" +" Nenhum registro sócio correspondente encontrado.\n" +" Por favor ajuste a entrada correspondente manualmente no extrato " +"bancário gerado." #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Debit" -msgstr "" +msgstr "Débito" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_10 msgid "Renewal of agreed maturity date" -msgstr "" +msgstr "Renovação da data de vencimento acordado" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_55 msgid "Income from payments by GSM" -msgstr "" +msgstr "Receitas de pagamentos por GSM" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_19 msgid "Regularisation costs" -msgstr "" +msgstr "Custos de regularização" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_13 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_13 msgid "Transfer from your account" -msgstr "" +msgstr "Transferir da sua conta" #. module: l10n_be_coda #: sql_constraint:account.bank.statement.line.global:0 msgid "The code must be unique !" -msgstr "" +msgstr "O código deve ser único!" #. module: l10n_be_coda #: help:coda.bank.account,currency:0 #: help:coda.bank.statement,currency:0 msgid "The currency of the CODA Bank Statement" -msgstr "" +msgstr "A moeda do extrato bancário CODA" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_07 msgid "Collective transfers" -msgstr "" +msgstr "Transferências coletivas" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:117 @@ -3080,16 +3296,18 @@ msgid "" "\n" "CODA V%s statements are not supported, please contact your bank." msgstr "" +"\n" +"Declarações CODA V% s não são suportadas, por favor contacte o seu banco." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_018 msgid "Tental guarantee charges" -msgstr "" +msgstr "Custos de garantia Tental" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_427 msgid "Belgian Stock Exchange tax" -msgstr "" +msgstr "Belga Stock Exchange fiscal" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:438 @@ -3098,6 +3316,8 @@ msgid "" "\n" "Movement data records of type 2.%s are not supported." msgstr "" +"\n" +"Registros de dados de movimento do tipo 2.%s não são suportados." #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:510 @@ -3107,26 +3327,29 @@ msgid "" "CODA parsing error on information data record 3.2, seq nr %s.\n" "Please report this issue via your OpenERP support channel." msgstr "" +"\n" +"Erro de análise CODA em informações de dados de registro 3.2, seq nr% s. \n" +"favor relate este problema através de seu canal de suporte OpenERP." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_001 msgid "Interest received" -msgstr "" +msgstr "Juros recebidos" #. module: l10n_be_coda #: model:ir.ui.menu,name:l10n_be_coda.menu_account_coda_import msgid "Import CODA Files" -msgstr "" +msgstr "Importar arquivos CODA" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_105 msgid "original amount of the transaction" -msgstr "" +msgstr "valor original da transação" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_09 msgid "Your semi-standing order" -msgstr "" +msgstr "Seu pedido semi-standing" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:406 @@ -3140,32 +3363,38 @@ msgid "" "otherwise change the corresponding entry manually in the generated Bank " "Statement." msgstr "" +"\n" +" Extrato bancário '% s' linha '% s':\n" +" Nenhum registro parceiro atribuído: Existem vários parceiros com o " +"mesmo Número de Conta Bancária '% s'.\n" +" Por favor, corrija a configuração e realizar a importação novamente " +"ou alterar a entrada correspondente manualmente no extrato bancário gerado." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_09 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_70 msgid "Settlement of securities" -msgstr "" +msgstr "Liquidação de títulos" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_04_01 msgid "Debit customer who is loading" -msgstr "" +msgstr "Débito cliente que está a carregar" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_047 msgid "Charges extension bill" -msgstr "" +msgstr "Encargos projeto de extensão" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_18 msgid "Trade information" -msgstr "" +msgstr "Informação comercial" #. module: l10n_be_coda #: field:account.coda.trans.code,comment:0 msgid "Comment" -msgstr "" +msgstr "Comentar" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_203 @@ -3173,31 +3402,34 @@ msgid "" "Confirmation fee | Additional confirmation fee | Commitment fee | Flat fee | " "Confirmation reservation commission | Additional reservation commission" msgstr "" +"Taxa de confirmação | Taxa de confirmação adicionais | Taxa de Compromisso | " +"Tarifa plana | comissão de reserva de confirmação | comissão adicional de " +"reserva" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_027 msgid "Charges for unpaid bills" -msgstr "" +msgstr "Encargos de contas a pagar" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_204 msgid "Amendment fee" -msgstr "" +msgstr "Taxa de alteração" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_11 msgid "Your semi-standing order – payment to employees" -msgstr "" +msgstr "Seu pedido semi-standing - O pagamento aos empregados" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_66 msgid "For professionals such as insurances and stockbrokers" -msgstr "" +msgstr "Para os profissionais, tais como seguros e corretores" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_11 msgid "Your repayment mortgage loan" -msgstr "" +msgstr "Seu reembolso do empréstimo hipotecário" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_00_37 @@ -3210,17 +3442,17 @@ msgstr "" #: model:account.coda.trans.code,description:l10n_be_coda.actcc_35_37 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_35 msgid "Costs" -msgstr "" +msgstr "Custos" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_050 msgid "Capital term investment" -msgstr "" +msgstr "Investimento de longo prazo Capital" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_03_05 msgid "Payment of holiday pay, etc." -msgstr "" +msgstr "Pagamento de subsídio de férias, etc" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_25 @@ -3228,12 +3460,14 @@ msgid "" "Commission for the renting of boxes put at the disposal for the " "correspondence" msgstr "" +"Comissão para a locação de caixas colocados à disposição para a " +"correspondência" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_008 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_29 msgid "Information charges" -msgstr "" +msgstr "Encargos de informação" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_03 @@ -3241,6 +3475,8 @@ msgid "" "Credit transfer for which the order has been given once and which is carried " "out again at regular intervals without any change." msgstr "" +"Transferência de crédito para o qual tem sido dada a ordem de uma vez e que " +"é levada a cabo de novo a intervalos regulares, sem qualquer alteração." #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_0 @@ -3248,74 +3484,77 @@ msgid "" "Simple amount without detailed data; e.g. : an individual credit transfer " "(free of charges)." msgstr "" +"Montante simples, sem dados detalhados, por exemplo: uma transferência de " +"crédito individual (livre de taxas)." #. module: l10n_be_coda #: help:coda.bank.account,find_partner:0 msgid "Partner lookup via Bank Account Number." -msgstr "" +msgstr "Parceiro de pesquisa via Número de Conta Bancária." #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_403 msgid "Minimum discount rate" -msgstr "" +msgstr "Taxa de desconto mínima" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_47_56 msgid "Remittance of guaranteed foreign supplier's bill" -msgstr "" +msgstr "Remessa de conta garantida do fornecedor estrangeiro" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_02 msgid "Tenders" -msgstr "" +msgstr "As propostas" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_43_07 msgid "Unpaid foreign cheque" -msgstr "" +msgstr "Unpaid estrangeiro cheque" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_11_03 msgid "" "Bonds, shares, tap issues of CDs, with or without payment of interest, etc." msgstr "" +"Títulos, ações, emissão contínua de CDs, com ou sem pagamento de juros, etc" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_09_66 msgid "Repurchase of petrol coupons" -msgstr "" +msgstr "Recompra de cupons de gasolina" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_058 msgid "Capital premium" -msgstr "" +msgstr "Capital prémio" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_15 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_62 msgid "Interim interest on subscription" -msgstr "" +msgstr "Juros sobre assinatura" #. module: l10n_be_coda #: field:coda.bank.statement.line,counterparty_currency:0 msgid "Counterparty Currency" -msgstr "" +msgstr "Moeda contraparte" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_202 msgid "Advising commission | Additional advising commission" -msgstr "" +msgstr "Assessoria comissão | comissão aconselhando Adicionais" #. module: l10n_be_coda #: field:coda.bank.account,find_partner:0 msgid "Lookup Partner" -msgstr "" +msgstr "Pesquisa Sócio" #. module: l10n_be_coda #: view:coda.bank.statement:0 #: view:coda.bank.statement.line:0 msgid "Glob. Id" -msgstr "" +msgstr "Glob. Id" #. module: l10n_be_coda #: view:coda.bank.statement:0 @@ -3323,12 +3562,12 @@ msgstr "" #: model:ir.actions.act_window,name:l10n_be_coda.action_coda_bank_statement_line #: model:ir.ui.menu,name:l10n_be_coda.coda_bank_statement_line msgid "CODA Statement Lines" -msgstr "" +msgstr "CODA Declaração Lines" #. module: l10n_be_coda #: field:coda.bank.statement.line,globalisation_amount:0 msgid "Globalisation Amount" -msgstr "" +msgstr "Globalização Valor" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_13 @@ -3336,6 +3575,8 @@ msgid "" "Transfer from one account to another account of the same customer at the " "bank's or the customer's initiative (intracompany)." msgstr "" +"Transferir de uma conta para outra conta do mesmo cliente no banco ou " +"iniciativa do cliente (intracompany)." #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:891 @@ -3344,6 +3585,8 @@ msgid "" "\n" "Error ! " msgstr "" +"\n" +"Erro! " #. module: l10n_be_coda #: view:account.coda:0 @@ -3354,40 +3597,40 @@ msgstr "Usuário" #. module: l10n_be_coda #: model:ir.model,name:l10n_be_coda.model_account_coda_trans_code msgid "CODA transaction code" -msgstr "" +msgstr "Código de transação CODA" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_05_52 msgid "Credit under usual reserve" -msgstr "" +msgstr "Crédito com reserva de costume" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_04_50 msgid "Except Proton" -msgstr "" +msgstr "Exceto Proton" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_011 msgid "Information pertaining to coupons" -msgstr "" +msgstr "Informações referentes a cupons" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_122 msgid "Bills - calculation of interest" -msgstr "" +msgstr "Bills - cálculo dos juros" #. module: l10n_be_coda #: view:account.coda.trans.code:0 #: model:ir.actions.act_window,name:l10n_be_coda.action_account_coda_trans_code_form #: model:ir.ui.menu,name:l10n_be_coda.menu_action_account_coda_trans_code_form msgid "CODA Transaction Codes" -msgstr "" +msgstr "CODA Transação Códigos" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_053 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_43 msgid "Printing of forms" -msgstr "" +msgstr "Impressão dos formulários" #. module: l10n_be_coda #: help:coda.bank.account,state:0 @@ -3395,16 +3638,18 @@ msgid "" "No Bank Statements will be generated for CODA Bank Statements from Bank " "Accounts of type 'Info'." msgstr "" +"Não há extratos bancários serão gerados para CODA extratos bancários de " +"contas bancárias do tipo 'Info'." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_49_03 msgid "ATM withdrawal" -msgstr "" +msgstr "Saque em caixa eletrônico" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_012 msgid "Exchange commission" -msgstr "" +msgstr "Exchange Commission" #. module: l10n_be_coda #: view:coda.bank.account:0 @@ -3412,12 +3657,12 @@ msgstr "" #: model:ir.model,name:l10n_be_coda.model_coda_bank_account #: model:ir.ui.menu,name:l10n_be_coda.menu_action_coda_bank_account_form msgid "CODA Bank Account Configuration" -msgstr "" +msgstr "CODA Configuração de Conta Bancária" #. module: l10n_be_coda #: field:account.bank.statement.line.global,coda_statement_line_ids:0 msgid "CODA Bank Statement Lines" -msgstr "" +msgstr "CODA extrato bancário Lines" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:725 @@ -3432,56 +3677,65 @@ msgid "" "Structured Communication Type: %s - %s\n" "Communication: %s" msgstr "" +"Nome do parceiro:% s \n" +"Parceiro Número de Conta:% s \n" +"tipo de transação:% s -% s \n" +"Família da transação:% s -% s \n" +"código de transação:% s -% s \n" +"categoria de transação:% s -% s \n" +"Structured Tipo de comunicação:% s -% s \n" +"Comunicação:% s" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_04 msgid "Cash withdrawal from an ATM" -msgstr "" +msgstr "Retirada de dinheiro de um caixa eletrônico" #. module: l10n_be_coda #: field:coda.bank.statement,balance_end:0 msgid "Balance" -msgstr "" +msgstr "Saldo" #. module: l10n_be_coda #: field:account.bank.statement,coda_statement_id:0 msgid "Associated CODA Bank Statement" -msgstr "" +msgstr "Associated CODA extrato bancário" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_13_37 msgid "Credit-related costs" -msgstr "" +msgstr "Custos relacionados com o crédito" #. module: l10n_be_coda #: model:ir.ui.menu,name:l10n_be_coda.menu_manage_coda msgid "CODA Configuration" -msgstr "" +msgstr "CODA Configuração" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_07_39 msgid "Debit of the drawer after credit under usual reserve or discount" msgstr "" +"Débito da gaveta depois de crédito sob reserva ou desconto de costume" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_66 msgid "Financial centralisation (credit)" -msgstr "" +msgstr "Centralização financeira (crédito)" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_08 msgid "Payment in advance" -msgstr "" +msgstr "Pagamento adiantado" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_37 msgid "Cheque-related costs" -msgstr "" +msgstr "Cheque os custos relacionados" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_19 msgid "Special charge for safe custody" -msgstr "" +msgstr "Encargo especial para custódia" #. module: l10n_be_coda #: sql_constraint:coda.bank.account:0 @@ -3489,16 +3743,18 @@ msgid "" "The combination of Bank Account, Account Description and Currency must be " "unique !" msgstr "" +"A combinação de Conta Bancária, Descrição da Conta e moeda deve ser único!" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_01 msgid "Payment of your cheque" -msgstr "" +msgstr "O pagamento do cheque" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_43_07 msgid "Foreign cheque remitted for collection that returns unpaid" msgstr "" +"Verificação externa remetidos para a coleta que retorna não remunerado" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_80_07 @@ -3506,6 +3762,8 @@ msgid "" "- insurance costs of account holders against fatal accidents - passing-on of " "several insurance costs" msgstr "" +"- Os custos de seguros de correntistas contra acidentes fatais - passando-on " +"de vários custos de seguros" #. module: l10n_be_coda #: help:coda.bank.account,awaiting_account:0 @@ -3513,38 +3771,42 @@ msgid "" "Set here the default account that will be used if the partner cannot be " "unambiguously identified." msgstr "" +"Defina aqui a conta padrão que será utilizada se o parceiro não pode ser " +"inequivocamente identificados." #. module: l10n_be_coda #: code:addons/l10n_be_coda/l10n_be_coda.py:284 #, python-format msgid "No CODA Bank Statement found for this Bank Statement!" -msgstr "" +msgstr "No CODA extrato bancário encontrado para este extrato bancário!" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_07 msgid "Definitely unpaid cheque" -msgstr "" +msgstr "Verificação definitivamente não remunerado" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_04_08 msgid "Payment by means of a payment card outside the Eurozone" -msgstr "" +msgstr "O pagamento por meio de cartão de pagamento fora da zona euro" #. module: l10n_be_coda #: model:account.coda.comm.type,description:l10n_be_coda.acct_106 msgid "" "Method of calculation (VAT, withholding tax on income, commission, etc.)" msgstr "" +"Método de cálculo (IVA, imposto retido na fonte sobre os rendimentos, " +"comissões, etc)" #. module: l10n_be_coda #: model:ir.model,name:l10n_be_coda.model_account_coda_comm_type msgid "CODA structured communication type" -msgstr "" +msgstr "CODA tipo de comunicação estruturado" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_64 msgid "Reversal of settlement of credit card" -msgstr "" +msgstr "Reversão de liquidação de cartão de crédito" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_58 @@ -3552,6 +3814,8 @@ msgid "" "Repayable securities from a deposit or delivered at the counter - credit " "under usual reserve" msgstr "" +"Títulos reembolsáveis ​​provenientes de um depósito ou entregues no balcão - " +"crédito sob reserva habitual" #. module: l10n_be_coda #: model:account.coda.trans.type,description:l10n_be_coda.actt_5 @@ -3560,6 +3824,9 @@ msgid "" "ask for detailed data to be included into his file after the overall record " "(type 1)." msgstr "" +"Detalhe da 1. O procedimento padrão é nenhum detalhamento. No entanto, o " +"cliente pode pedir dados detalhados a serem incluídos em seu arquivo após o " +"registro geral (tipo 1)." #. module: l10n_be_coda #: field:account.coda.comm.type,description:0 @@ -3567,63 +3834,65 @@ msgstr "" #: field:account.coda.trans.code,description:0 #: field:account.coda.trans.type,description:0 msgid "Description" -msgstr "" +msgstr "Descrição" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_07_01 msgid "Payment commercial paper" -msgstr "" +msgstr "Papel comercial de pagamento" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_425 msgid "Foreign broker's commission" -msgstr "" +msgstr "Comissão do corretor estrangeiro" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_37 msgid "Costs relating to outgoing foreign transfers and non-SEPA transfers" msgstr "" +"Os custos relativos a transferências externas de saída e transferências não-" +"SEPA" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_03_17 msgid "Your certified cheque" -msgstr "" +msgstr "Seu cheque" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_400 msgid "Acceptance fee" -msgstr "" +msgstr "Taxa de aceitação" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_01_52 msgid "Payment by a third person" -msgstr "" +msgstr "Pagamento por uma terceira pessoa" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_11_68 msgid "Compensation for missing coupon" -msgstr "" +msgstr "Compensação por falta de cupão" #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Debit Transactions." -msgstr "" +msgstr "As transações de débito." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_33 msgid "Miscellaneous fees and commissions" -msgstr "" +msgstr "Diversos taxas e comissões" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_03 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_41_03 msgid "Standing order" -msgstr "" +msgstr "Ordem permanente" #. module: l10n_be_coda #: selection:coda.bank.statement.line,type:0 msgid "Customer" -msgstr "" +msgstr "Cliente" #. module: l10n_be_coda #: code:addons/l10n_be_coda/wizard/account_coda_import.py:422 @@ -3636,6 +3905,11 @@ msgid "" "otherwise change the corresponding entry manually in the generated Bank " "Statement." msgstr "" +"\n" +" Extrato bancário '% s' linha '% s':\n" +" A conta bancária '% s' não está definido para o parceiro de '% s'.\n" +" Por favor, corrija a configuração e realizar a importação novamente " +"ou alterar a entrada correspondente manualmente no extrato bancário gerado." #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_49 @@ -3667,7 +3941,7 @@ msgstr "" #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_49 #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_99 msgid "Cancellation or correction" -msgstr "" +msgstr "Cancelamento ou correção" #. module: l10n_be_coda #: view:coda.bank.account:0 @@ -3676,54 +3950,54 @@ msgstr "" #: view:coda.bank.statement.line:0 #: field:coda.bank.statement.line,coda_bank_account_id:0 msgid "Bank Account" -msgstr "" +msgstr "Conta bancária" #. module: l10n_be_coda #: model:account.coda.trans.code,comment:l10n_be_coda.actcc_13_56 msgid "Interest or capital subsidy" -msgstr "" +msgstr "Interesse ou subsídio de capital" #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "Fin.Account" -msgstr "" +msgstr "Fin.Account" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_01_62 msgid "Unpaid postal order" -msgstr "" +msgstr "Vale postal não remunerado" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_428 msgid "Interest accrued" -msgstr "" +msgstr "Juros acumulados" #. module: l10n_be_coda #: field:account.coda.comm.type,code:0 msgid "Structured Communication Type" -msgstr "" +msgstr "Estruturado Tipo Comunicação" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_401 msgid "Visa charges" -msgstr "" +msgstr "Encargos Visa" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_210 msgid "Commitment fee" -msgstr "" +msgstr "Taxa de compromisso" #. module: l10n_be_coda #: view:account.coda.trans.category:0 #: model:ir.actions.act_window,name:l10n_be_coda.action_account_coda_trans_category_form #: model:ir.ui.menu,name:l10n_be_coda.menu_action_account_coda_trans_category_form msgid "CODA Transaction Categories" -msgstr "" +msgstr "CODA transação Categorias" #. module: l10n_be_coda #: field:coda.bank.statement.line,sequence:0 msgid "Sequence" -msgstr "" +msgstr "Seqüência" #. module: l10n_be_coda #: view:account.coda.import:0 @@ -3734,24 +4008,24 @@ msgstr "Resultados:" #: field:coda.bank.statement,coda_id:0 #: model:ir.actions.act_window,name:l10n_be_coda.act_coda_bank_statement_goto_account_coda msgid "CODA Data File" -msgstr "" +msgstr "CODA Arquivo de Dados" #. module: l10n_be_coda #: view:coda.bank.statement.line:0 msgid "CODA Statement Line" -msgstr "" +msgstr "CODA Linha Declaração" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_073 msgid "Costs of ATM abroad" -msgstr "" +msgstr "Custos da ATM no exterior" #. module: l10n_be_coda #: model:account.coda.trans.category,description:l10n_be_coda.actrca_430 msgid "Recovery of foreign tax" -msgstr "" +msgstr "Recuperação de imposto estrangeiro" #. module: l10n_be_coda #: model:account.coda.trans.code,description:l10n_be_coda.actcc_80_01 msgid "Guarantee card charges" -msgstr "" +msgstr "Garantir taxas de cartão" diff --git a/addons/l10n_be_coda/i18n/ro.po b/addons/l10n_be_coda/i18n/ro.po index 4d876dbf0cc..5f8eb39f185 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 fea46e82718..5a9aad925b9 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 487deda97c8..aca31f6e167 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-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 8c5549080f7..7601b7619e6 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-03-16 05:38+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:31+0000\n" +"X-Generator: Launchpad (build 16753)\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 04e62e1738d..7c75e59c4a9 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-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:32+0000\n" +"X-Generator: Launchpad (build 16753)\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 18fb2b4dd1c..3b901ab6ae5 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-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\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 27185a0a0ac..886f7a5b240 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-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\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 9bb8f06fbe9..a52292148a3 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-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\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 d7d83d91216..362587d4886 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-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\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 753c899a53e..4aa7e8a0258 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-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\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 2860ed4fb94..f3b5331335b 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-03-16 05:39+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:33+0000\n" +"X-Generator: Launchpad (build 16753)\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 f00e6100639..6b59146608f 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-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 c98bbcff392..adb0c15cbc8 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-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 @@ -148,3 +148,17 @@ msgstr "¡Error! No puede crear una jerarquia recursiva de empleado(s)." #: field:hr.contract,meal_voucher_employee_deduction:0 msgid "Check Value Meal - by worker " msgstr "Cheque de comida - por trabajador " + +#~ msgid "by Worker" +#~ msgstr "por trabajador" + +#~ msgid "Miscellaneous" +#~ msgstr "Miscelánea" + +#~ msgid "Error ! You cannot create recursive Hierarchy of Employees." +#~ msgstr "¡Error! No puede crear una jerarquía recursiva de empleados." + +#~ msgid "Error! contract start-date must be lower then contract end-date." +#~ msgstr "" +#~ "¡Error! La fecha de inicio del contrato debe ser anterior a la fecha de " +#~ "finalización." diff --git a/addons/l10n_be_hr_payroll/i18n/es_CR.po b/addons/l10n_be_hr_payroll/i18n/es_CR.po index 0f80ae9c582..4b0f4324e1e 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-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 b4dbcf5d29f..396458b9f4c 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-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 9dd807d2bc0..95815a355f7 100644 --- a/addons/l10n_be_hr_payroll/i18n/pt_BR.po +++ b/addons/l10n_be_hr_payroll/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 5128ab4ed72..6cde802f816 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-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 2b39f33f0b3..7968ecea712 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-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 c50e3ee54c4..5245fa845c5 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-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: l10n_be_hr_payroll #: help:hr.employee,disabled_spouse_bool:0 diff --git a/addons/l10n_be_hr_payroll/i18n/zh_CN.po b/addons/l10n_be_hr_payroll/i18n/zh_CN.po index e753e1e1bb2..aafd99e856e 100644 --- a/addons/l10n_be_hr_payroll/i18n/zh_CN.po +++ b/addons/l10n_be_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-06-24 04:43+0000\n" -"X-Generator: Launchpad (build 16677)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 2b1e5ae297b..a3beefbcfef 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 3ffb5600311..b81956f4471 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 82126dcc1e9..853590a5944 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 d094628251d..0871cc8bd67 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 9e0d8feaf1c..fb327d5d8b6 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 4ae8df1fbcd..71a7021ac2d 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 cbbfcbd11b4..e63bed76dab 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 e6c90bebc03..2f39dedcd7b 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 96c32db05af..7480a5878d1 100644 --- a/addons/l10n_be_invoice_bba/i18n/pt_BR.po +++ b/addons/l10n_be_invoice_bba/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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 @@ -53,6 +53,7 @@ msgid "" "Select Algorithm to generate the Structured Communication on Outgoing " "Invoices." msgstr "" +"Selecione algoritmo para gerar a comunicação estruturada em faturas enviadas." #. module: l10n_be_invoice_bba #: code:addons/l10n_be_invoice_bba/invoice.py:109 @@ -63,6 +64,9 @@ msgid "" "Structured Communications has been exceeded!\n" "Please create manually a unique BBA Structured Communication." msgstr "" +"O máximo diário de facturas de saída com um gerado automaticamente BBA " +"Structured Communications foi ultrapassado! \n" +"Por favor, crie manualmente uma BBA comunicação estruturada único." #. module: l10n_be_invoice_bba #: code:addons/l10n_be_invoice_bba/invoice.py:150 @@ -78,6 +82,9 @@ msgid "" "BBA Structured Communications!\n" "Please correct the Partner record." msgstr "" +"O parceiro deve ter um dígito 3-7 Número de referência para a geração de BBA " +"estruturados Communications! \n" +"Por favor, corrija o registro de parceiros." #. module: l10n_be_invoice_bba #: constraint:res.partner:0 @@ -113,6 +120,8 @@ msgid "" "The BBA Structured Communication has already been used!\n" "Please create manually a unique BBA Structured Communication." msgstr "" +"O BBA Structured Comunicação já foi usado! \n" +"Por favor, crie manualmente uma BBA comunicação estruturada único." #. module: l10n_be_invoice_bba #: selection:res.partner,out_inv_comm_algorithm:0 @@ -131,6 +140,8 @@ msgid "" "Unsupported Structured Communication Type Algorithm '%s' !\n" "Please contact your OpenERP support channel." msgstr "" +"Suportado Structured Comunicação Tipo Algorithm '% s'! \n" +"Entre em contato com o seu canal de suporte OpenERP." #. module: l10n_be_invoice_bba #: field:res.partner,out_inv_comm_algorithm:0 @@ -144,3 +155,5 @@ msgid "" "Empty BBA Structured Communication!\n" "Please fill in a unique BBA Structured Communication." msgstr "" +"Vazio BBA comunicação estruturada! \n" +"Por favor, preencha a BBA comunicação estruturada único." diff --git a/addons/l10n_be_invoice_bba/i18n/sl.po b/addons/l10n_be_invoice_bba/i18n/sl.po index e41f5bae778..2443d525ab5 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 513790b570e..d07d6ddf67f 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 e50565b6c01..e541a32ff73 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: l10n_be_invoice_bba #: sql_constraint:account.invoice:0 diff --git a/addons/l10n_bo/i18n/en_GB.po b/addons/l10n_bo/i18n/en_GB.po index 615e9846952..bd12d3b95f7 100644 --- a/addons/l10n_bo/i18n/en_GB.po +++ b/addons/l10n_bo/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-08-24 05:03+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_bo/i18n/es.po b/addons/l10n_bo/i18n/es.po index 3fcffeca057..d7e0ce93aff 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-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 ea325d87872..e00a4cafdb6 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-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 f3947dae3cb..a445039165f 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-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 3104a7fd6f0..51986cfaea3 100644 --- a/addons/l10n_bo/i18n/pt_BR.po +++ b/addons/l10n_bo/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-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 9d24d15ced2..f808b8dffeb 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-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\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 99bd4d8f801..5a887cf02db 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-03-16 05:53+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:48+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: l10n_ar #: model:ir.module.module,description:l10n_ar.module_meta_information diff --git a/addons/l10n_fr/i18n/ar.po b/addons/l10n_fr/i18n/ar.po index 21079cd69f2..5bd3e77de7d 100644 --- a/addons/l10n_fr/i18n/ar.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 06b713526e8..3b263c714f5 100644 --- a/addons/l10n_fr/i18n/bg.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 2b11d5caeb0..38eeeafba7f 100644 --- a/addons/l10n_fr/i18n/bs.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 77e60d1f75b..f16bb993620 100644 --- a/addons/l10n_fr/i18n/ca.po +++ b/addons/l10n_fr/i18n/ca.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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 2b11d5caeb0..38eeeafba7f 100644 --- a/addons/l10n_fr/i18n/cs.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 aa13c0f4bce..6aae525856a 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-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 a5e809bf113..ef0bd430d51 100644 --- a/addons/l10n_fr/i18n/de.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 5c19017adc4..b26647e4f67 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-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 0cfa177ad18..1fbebfde0fd 100644 --- a/addons/l10n_fr/i18n/es_AR.po +++ b/addons/l10n_fr/i18n/es_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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 15bf714de35..574f70dd19a 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-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: l10n_fr diff --git a/addons/l10n_fr/i18n/es_PY.po b/addons/l10n_fr/i18n/es_PY.po index ab424814fd6..0de2d6ca8c3 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-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 1fd7ac7bfea..e81e1fdb9c0 100644 --- a/addons/l10n_fr/i18n/et.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 a2c645ca115..9de2737eaad 100644 --- a/addons/l10n_fr/i18n/fr.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 2242eb73a62..483a4e2db7f 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-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 2b11d5caeb0..38eeeafba7f 100644 --- a/addons/l10n_fr/i18n/hr.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 2b11d5caeb0..38eeeafba7f 100644 --- a/addons/l10n_fr/i18n/hu.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 f5bee04f8f6..befc94b10d2 100644 --- a/addons/l10n_fr/i18n/id.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 b2a999c3d0d..1025b88a1f4 100644 --- a/addons/l10n_fr/i18n/it.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 207c04be70b..b3450323c44 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-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 4f655acbd2d..253d1e935d8 100644 --- a/addons/l10n_fr/i18n/lt.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 8137215e383..57cc49a6cb7 100644 --- a/addons/l10n_fr/i18n/nl.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 cdca90765a6..7a8681ffc85 100644 --- a/addons/l10n_fr/i18n/nl_BE.po +++ b/addons/l10n_fr/i18n/nl_BE.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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 f72d564ff73..d25fb38f16e 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-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 3419f8f5cd3..f0cbead807f 100644 --- a/addons/l10n_fr/i18n/pl.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 2df9ffa7af7..bd5e238e962 100644 --- a/addons/l10n_fr/i18n/pt.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 b220f229ffe..bebf69394ae 100644 --- a/addons/l10n_fr/i18n/pt_BR.po +++ b/addons/l10n_fr/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: l10n_fr #: constraint:res.company:0 @@ -45,7 +45,7 @@ msgstr "Account CDR Report" #. module: l10n_fr #: model:account.fiscal.position.template,note:l10n_fr.fiscal_position_template_import_export msgid "French VAT exemption according to articles 262 I of \"CGI\"" -msgstr "" +msgstr "Isenção de IVA francês De acordo com os artigos 262 I \"CGI\"" #. module: l10n_fr #: field:l10n.fr.line,report_id:0 @@ -55,7 +55,7 @@ msgstr "Report" #. module: l10n_fr #: view:account.cdr.report:0 msgid "Compte de resultat" -msgstr "" +msgstr "Demonstração de resultados" #. module: l10n_fr #: model:ir.model,name:l10n_fr.model_l10n_fr_line @@ -89,6 +89,8 @@ msgid "" "French VAT exemption according to articles 262 ter I (for products) and/or " "283-2 (for services) of \"CGI\"" msgstr "" +"Isenção de IVA francês De acordo com os artigos 262 ter I (para produtos) e " +"/ ou 283-2 (para serviços) de \"CGI\"" #. module: l10n_fr #: model:ir.model,name:l10n_fr.model_res_company @@ -114,7 +116,7 @@ msgstr "Report for l10n_fr" #. module: l10n_fr #: field:res.company,siret:0 msgid "SIRET" -msgstr "" +msgstr "SIRET" #. module: l10n_fr #: sql_constraint:l10n.fr.line:0 @@ -152,7 +154,7 @@ msgstr "ou" #. module: l10n_fr #: field:res.company,ape:0 msgid "APE" -msgstr "" +msgstr "EPA" #~ msgid "Asset" #~ msgstr "Ativo" @@ -189,3 +191,39 @@ msgstr "" #~ "This is the module to manage the accounting chart for France in OpenERP.\n" #~ "\n" #~ "Credits: Sistheo Zeekom CrysaLEAD\n" + +#~ msgid "Comptes spéciaux" +#~ msgstr "Contas Especiais" + +#~ msgid "Engagements" +#~ msgstr "Compromissos" + +#~ msgid "Stocks" +#~ msgstr "Estoques" + +#~ msgid "Actif circulant" +#~ msgstr "Ativos" + +#~ msgid "Receivable" +#~ msgstr "Receivable" + +#~ msgid "Cash" +#~ msgstr "Cash" + +#~ msgid "Immobilisations" +#~ msgstr "Imobilizações" + +#~ msgid "Payable" +#~ msgstr "A Pagar" + +#~ msgid "Dettes long terme" +#~ msgstr "Dívida de longo prazo" + +#~ msgid "Provisions" +#~ msgstr "Provisões" + +#~ msgid "Tax" +#~ msgstr "Imposto" + +#~ msgid "Cloture" +#~ msgstr "Encerramento" diff --git a/addons/l10n_fr/i18n/ro.po b/addons/l10n_fr/i18n/ro.po index 2b11d5caeb0..38eeeafba7f 100644 --- a/addons/l10n_fr/i18n/ro.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 6ed616395b5..5dafcc82b16 100644 --- a/addons/l10n_fr/i18n/ru.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 c63d8d18e8c..83803bc01e2 100644 --- a/addons/l10n_fr/i18n/sl.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 27c5630b81d..252b0a65aa7 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-03-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 80f1a667e17..6d27e2db471 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-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 7dfa3d7270f..abcc02083ac 100644 --- a/addons/l10n_fr/i18n/sv.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 52454355d33..8a83e9b9394 100644 --- a/addons/l10n_fr/i18n/tlh.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 5e48ddd5de3..7823817e964 100644 --- a/addons/l10n_fr/i18n/tr.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 12dc5c87003..5af22844ace 100644 --- a/addons/l10n_fr/i18n/uk.po +++ b/addons/l10n_fr/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-16 05:10+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 d28c2a1b249..44fad4395d7 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-03-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 ffdac24058b..3c312451d25 100644 --- a/addons/l10n_fr/i18n/zh_CN.po +++ b/addons/l10n_fr/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 f17932e4768..026de7df224 100644 --- a/addons/l10n_fr/i18n/zh_TW.po +++ b/addons/l10n_fr/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-16 05:11+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:03+0000\n" +"X-Generator: Launchpad (build 16753)\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 2bb5f7eae86..0f877996d30 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 e9ebcecf26f..795c3947b9a 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 9a390365055..7d4aad9e123 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 9f186be4006..864188bb7ae 100644 --- a/addons/l10n_fr_rib/i18n/fr.po +++ b/addons/l10n_fr_rib/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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 596661368a4..0462ece59a4 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 3e16155b73f..b737b2ba30e 100644 --- a/addons/l10n_fr_rib/i18n/pt_BR.po +++ b/addons/l10n_fr_rib/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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 @@ -133,3 +133,7 @@ msgstr "Banco" #: model:res.partner.bank.type.field,name:l10n_fr_rib.rib_acc_number_field msgid "acc_number" msgstr "acc_number" + +#, python-format +#~ msgid "Error" +#~ msgstr "Error" diff --git a/addons/l10n_fr_rib/i18n/sl.po b/addons/l10n_fr_rib/i18n/sl.po index 97991186d52..880fcdbc904 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 8fd7be01f9e..a20646aa732 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: l10n_fr_rib #: constraint:res.partner.bank:0 diff --git a/addons/l10n_in_hr_payroll/i18n/bn.po b/addons/l10n_in_hr_payroll/i18n/bn.po index 6ac6da83fe0..bf16a805302 100644 --- a/addons/l10n_in_hr_payroll/i18n/bn.po +++ b/addons/l10n_in_hr_payroll/i18n/bn.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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 677b03c9e42..eadd0d16e23 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-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 febb1ffc20e..8e803ada9c2 100644 --- a/addons/l10n_in_hr_payroll/i18n/gu.po +++ b/addons/l10n_in_hr_payroll/i18n/gu.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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 e64529ecf71..bfd4abcfa1d 100644 --- a/addons/l10n_in_hr_payroll/i18n/hi.po +++ b/addons/l10n_in_hr_payroll/i18n/hi.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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 20718ca72f3..5e4f0519a37 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-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 023ffa8db08..ee8552fa2f3 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-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 54c982a1558..c5158c25c93 100644 --- a/addons/l10n_in_hr_payroll/i18n/pt_BR.po +++ b/addons/l10n_in_hr_payroll/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 @@ -25,12 +25,12 @@ msgstr "Endereço de E-mail" #. module: l10n_in_hr_payroll #: field:payment.advice.report,employee_bank_no:0 msgid "Employee Bank Account" -msgstr "" +msgstr "Empregado Conta Bancária" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Payment Advices which are in draft state" -msgstr "" +msgstr "Conselhos de pagamento que estão em estado de rascunho" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 @@ -40,17 +40,17 @@ msgstr "Tratamento" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "Payment Advice from" -msgstr "" +msgstr "Aviso de Pagamento de" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_yearly_salary_detail msgid "Hr Salary Employee By Category Report" -msgstr "" +msgstr "Hr salário do empregado por categoria de relatório" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Payslips which are paid" -msgstr "" +msgstr "Holerites que são pagos" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -62,12 +62,12 @@ msgstr "Agrupar por..." #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 msgid "Allowances with Basic:" -msgstr "" +msgstr "Subsídios com base:" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Payslips which are in done state" -msgstr "" +msgstr "Holerites que estão em estado feito" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 @@ -82,19 +82,19 @@ msgstr "Deduções:" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "A/C no." -msgstr "" +msgstr "A / C não." #. module: l10n_in_hr_payroll #: field:hr.contract,driver_salay:0 msgid "Driver Salary" -msgstr "" +msgstr "Salário motorista" #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_yearly_salary_detail #: model:ir.actions.report.xml,name:l10n_in_hr_payroll.yearly_salary #: model:ir.ui.menu,name:l10n_in_hr_payroll.menu_yearly_salary_detail msgid "Yearly Salary by Employee" -msgstr "" +msgstr "Salário anual por funcionário" #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,name:l10n_in_hr_payroll.act_hr_emp_payslip_list @@ -126,7 +126,7 @@ msgstr "O Gerente" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Letter Details" -msgstr "" +msgstr "Detalhes carta" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -146,22 +146,22 @@ msgstr "Total:" #. module: l10n_in_hr_payroll #: field:hr.payslip.run,available_advice:0 msgid "Made Payment Advice?" -msgstr "" +msgstr "Feito Aviso de Pagamento?" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Advices which are paid using NEFT transfer" -msgstr "" +msgstr "Conselhos que são pagos com transferência NEFT" #. module: l10n_in_hr_payroll #: field:payslip.report,nbr:0 msgid "# Payslip lines" -msgstr "" +msgstr "# Payslip linhas" #. module: l10n_in_hr_payroll #: help:hr.contract,tds:0 msgid "Amount for Tax Deduction at Source" -msgstr "" +msgstr "Valor para dedução do imposto na fonte" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_hr_payslip @@ -179,154 +179,154 @@ msgstr "Dia" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Month of Payment Advices" -msgstr "" +msgstr "Mês de Conselhos de pagamento" #. module: l10n_in_hr_payroll #: constraint:hr.payslip:0 msgid "Payslip 'Date From' must be before 'Date To'." -msgstr "" +msgstr "Recibo de Pagamento 'Date From' deve ser antes 'Date To'." #. module: l10n_in_hr_payroll #: field:hr.payroll.advice,batch_id:0 msgid "Batch" -msgstr "" +msgstr "Fornada" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Code" -msgstr "" +msgstr "Código" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Other Information" -msgstr "" +msgstr "Outras Informações" #. module: l10n_in_hr_payroll #: selection:hr.payroll.advice,state:0 #: selection:payment.advice.report,state:0 msgid "Cancelled" -msgstr "" +msgstr "Cancelado" #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,help:l10n_in_hr_payroll.action_payslip_report_all msgid "This report performs analysis on Payslip" -msgstr "" +msgstr "Este relatório faz análise sobre Payslip" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "For" -msgstr "" +msgstr "Para" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Details by Salary Rule Category:" -msgstr "" +msgstr "Detalhes por Salário Categoria regra:" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice,number:0 #: report:paylip.details.in:0 msgid "Reference" -msgstr "" +msgstr "Referência" #. module: l10n_in_hr_payroll #: field:hr.contract,medical_insurance:0 msgid "Medical Insurance" -msgstr "" +msgstr "Seguro Médico" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Identification No" -msgstr "" +msgstr "No de identificação" #. module: l10n_in_hr_payroll #: view:payslip.report:0 #: field:payslip.report,struct_id:0 msgid "Structure" -msgstr "" +msgstr "Estrutura" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "form period" -msgstr "" +msgstr "período de forma" #. module: l10n_in_hr_payroll #: selection:hr.payroll.advice,state:0 #: selection:payment.advice.report,state:0 msgid "Confirmed" -msgstr "" +msgstr "Confirmado" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 #: report:salary.employee.bymonth:0 msgid "From" -msgstr "" +msgstr "De" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice.line,bysal:0 #: field:payment.advice.report,bysal:0 #: report:payroll.advice:0 msgid "By Salary" -msgstr "" +msgstr "Pelo salário" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 #: view:payment.advice.report:0 msgid "Confirm" -msgstr "" +msgstr "Confirmar" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice,chaque_nos:0 #: field:payment.advice.report,cheque_nos:0 msgid "Cheque Numbers" -msgstr "" +msgstr "Números Cheque" #. module: l10n_in_hr_payroll #: constraint:res.company:0 msgid "Error! You can not create recursive companies." -msgstr "" +msgstr "Erro! Você não pode criar empresas recursivas." #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_salary_employee_month #: model:ir.actions.report.xml,name:l10n_in_hr_payroll.hr_salary_employee_bymonth #: model:ir.ui.menu,name:l10n_in_hr_payroll.menu_salary_employee_month msgid "Yearly Salary by Head" -msgstr "" +msgstr "Salário anualmente pelo Chefe" #. module: l10n_in_hr_payroll #: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:134 #, python-format msgid "You can not confirm Payment advice without advice lines." -msgstr "" +msgstr "Você não pode confirmar o aviso de pagamento sem linhas conselhos." #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "Yours Sincerely" -msgstr "" +msgstr "Sinceramente seu" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "# Payslip Lines" -msgstr "" +msgstr "# Payslip Lines" #. module: l10n_in_hr_payroll #: help:hr.contract,medical_insurance:0 msgid "Deduction towards company provided medical insurance" -msgstr "" +msgstr "Dedução para a empresa forneceu seguro médico" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_hr_payroll_advice_line msgid "Bank Advice Lines" -msgstr "" +msgstr "Banco de Opiniões" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Day of Payslip" -msgstr "" +msgstr "Dia do Recibo de Pagamento" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Email" -msgstr "" +msgstr "Email" #. module: l10n_in_hr_payroll #: help:hr.payslip.run,available_advice:0 @@ -334,6 +334,8 @@ msgid "" "If this box is checked which means that Payment Advice exists for current " "batch" msgstr "" +"Se esta caixa estiver marcada, o que significa que o Aviso de Pagamento " +"existe para lote atual" #. module: l10n_in_hr_payroll #: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:108 @@ -342,83 +344,83 @@ msgstr "" #: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:207 #, python-format msgid "Error !" -msgstr "" +msgstr "Erro!" #. module: l10n_in_hr_payroll #: field:payslip.report,paid:0 msgid "Made Payment Order ? " -msgstr "" +msgstr "Feito Ordem de Pagamento? " #. module: l10n_in_hr_payroll #: view:hr.salary.employee.month:0 #: view:yearly.salary.detail:0 msgid "Print" -msgstr "" +msgstr "Imprimir" #. module: l10n_in_hr_payroll #: selection:payslip.report,state:0 msgid "Rejected" -msgstr "" +msgstr "Rejeitado" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Year of Payslip" -msgstr "" +msgstr "Ano de Recibo de Pagamento" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_hr_payslip_run msgid "Payslip Batches" -msgstr "" +msgstr "Lotes holerite" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice.line,debit_credit:0 #: report:payroll.advice:0 msgid "C/D" -msgstr "" +msgstr "C / D" #. module: l10n_in_hr_payroll #: report:salary.employee.bymonth:0 msgid "Yearly Salary Details" -msgstr "" +msgstr "Anualmente Detalhes Salário" #. module: l10n_in_hr_payroll #: model:ir.actions.report.xml,name:l10n_in_hr_payroll.payroll_advice msgid "Print Advice" -msgstr "" +msgstr "Imprimir Advice" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice,line_ids:0 msgid "Employee Salary" -msgstr "" +msgstr "Salário empregado" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "July" -msgstr "" +msgstr "Julho" #. module: l10n_in_hr_payroll #: view:res.company:0 msgid "Configuration" -msgstr "" +msgstr "Configuração" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Payslip Line" -msgstr "" +msgstr "Payslip Linha" #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_view_hr_bank_advice_tree #: model:ir.ui.menu,name:l10n_in_hr_payroll.hr_menu_payment_advice msgid "Payment Advices" -msgstr "" +msgstr "Conselhos de pagamento" #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_payment_advice_report_all #: model:ir.ui.menu,name:l10n_in_hr_payroll.menu_reporting_payment_advice #: view:payment.advice.report:0 msgid "Advices Analysis" -msgstr "" +msgstr "Conselhos Análise" #. module: l10n_in_hr_payroll #: view:hr.salary.employee.month:0 @@ -426,69 +428,72 @@ msgid "" "This wizard will print report which displays employees break-up of Net Head " "for a specified dates." msgstr "" +"Este assistente irá imprimir o relatório que exibe os funcionários break-up " +"de Cabeça líquida por datas especificadas." #. module: l10n_in_hr_payroll #: field:hr.payroll.advice.line,ifsc:0 msgid "IFSC" -msgstr "" +msgstr "IFSC" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 #: field:payslip.report,date_to:0 msgid "Date To" -msgstr "" +msgstr "Dados do Pará" #. module: l10n_in_hr_payroll #: field:hr.contract,tds:0 msgid "TDS" -msgstr "" +msgstr "TDS" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Confirm Advices" -msgstr "" +msgstr "Confirme Conselhos" #. module: l10n_in_hr_payroll #: constraint:hr.contract:0 msgid "Error! Contract start-date must be less than contract end-date." msgstr "" +"Erro! Contrato data de início deve ser inferior a contrato data final." #. module: l10n_in_hr_payroll #: field:res.company,dearness_allowance:0 msgid "Dearness Allowance" -msgstr "" +msgstr "Provisão Dearness" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "August" -msgstr "" +msgstr "Agosto" #. module: l10n_in_hr_payroll #: view:hr.contract:0 msgid "Deduction" -msgstr "" +msgstr "Dedução" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "SI. No." -msgstr "" +msgstr "Nao." #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Payment Advices which are in confirm state" -msgstr "" +msgstr "Conselhos de Pagamento Que estao los Estado de Confirmação" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "December" -msgstr "" +msgstr "DEZEMBRO" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Confirm Sheet" -msgstr "" +msgstr "Confirme Folha" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 @@ -496,30 +501,30 @@ msgstr "" #: view:payslip.report:0 #: field:payslip.report,month:0 msgid "Month" -msgstr "" +msgstr "Mês" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 msgid "Employee Code" -msgstr "" +msgstr "Código Empregado" #. module: l10n_in_hr_payroll #: view:hr.salary.employee.month:0 #: view:yearly.salary.detail:0 msgid "or" -msgstr "" +msgstr "UO" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_hr_salary_employee_month msgid "Hr Salary Employee By Month Report" -msgstr "" +msgstr "Hr Salário fazer Empregado POR Mês de Relatório" #. module: l10n_in_hr_payroll #: field:hr.salary.employee.month,category_id:0 #: view:payslip.report:0 #: field:payslip.report,category_id:0 msgid "Category" -msgstr "" +msgstr "Categoria" #. module: l10n_in_hr_payroll #: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:190 @@ -527,21 +532,23 @@ msgstr "" msgid "" "Payment advice already exists for %s, 'Set to Draft' to create a new advice." msgstr "" +"Aviso de pagamento já existe para% s, 'Configure para Projecto' para criar " +"um novo conselho." #. module: l10n_in_hr_payroll #: view:hr.payslip.run:0 msgid "To Advice" -msgstr "" +msgstr "Pará Advice" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Note" -msgstr "" +msgstr "Nota" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Salary Rule Category" -msgstr "" +msgstr "Salário Categoria Rule" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -551,23 +558,23 @@ msgstr "" #: view:payslip.report:0 #: selection:payslip.report,state:0 msgid "Draft" -msgstr "" +msgstr "Rascunho" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 #: field:payslip.report,date_from:0 msgid "Date From" -msgstr "" +msgstr "Data a partir da" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 msgid "Employee Name" -msgstr "" +msgstr "Nome do Funcionário" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_payment_advice_report msgid "Payment Advice Analysis" -msgstr "" +msgstr "Pagamento Análise Advice" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -577,30 +584,31 @@ msgstr "" #: view:payslip.report:0 #: field:payslip.report,state:0 msgid "Status" -msgstr "" +msgstr "Situação" #. module: l10n_in_hr_payroll #: help:res.company,dearness_allowance:0 msgid "Check this box if your company provide Dearness Allowance to employee" msgstr "" +"Marque esta caixa se sua empresa oferece subsídio para Dearness empregado" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice.line,ifsc_code:0 #: field:payment.advice.report,ifsc_code:0 #: report:payroll.advice:0 msgid "IFSC Code" -msgstr "" +msgstr "IFSC Código" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "June" -msgstr "" +msgstr "Junho" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Paid" -msgstr "" +msgstr "Pago" #. module: l10n_in_hr_payroll #: help:hr.contract,voluntary_provident_fund:0 @@ -609,114 +617,116 @@ msgid "" "12% that has been mandated by the government and VPF computed as " "percentage(%)" msgstr "" +"VPF é uma opção segura onde você pode contribuir mais do que o teto PF de " +"12% que foi mandatado pelo governo e VPF calculado em percentagem (%)" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 #: field:payment.advice.report,nbr:0 msgid "# Payment Lines" -msgstr "" +msgstr "# Linhas de Pagamento" #. module: l10n_in_hr_payroll #: model:ir.actions.report.xml,name:l10n_in_hr_payroll.payslip_details_report msgid "PaySlip Details" -msgstr "" +msgstr "Detalhes holerite" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Payment Lines" -msgstr "" +msgstr "Linhas de pagamento" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice,date:0 #: field:payment.advice.report,date:0 msgid "Date" -msgstr "" +msgstr "Data" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "November" -msgstr "" +msgstr "Novembro" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 #: view:payslip.report:0 msgid "Extended Filters..." -msgstr "" +msgstr "Filtros estendidas ..." #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,help:l10n_in_hr_payroll.action_payment_advice_report_all msgid "This report performs analysis on Payment Advices" -msgstr "" +msgstr "Este relatório faz análise sobre Conselhos de pagamento" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "October" -msgstr "" +msgstr "Outubro" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 #: report:salary.detail.byyear:0 msgid "Designation" -msgstr "" +msgstr "Designação" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Month of Payslip" -msgstr "" +msgstr "Mês de Recibo de Pagamento" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "January" -msgstr "" +msgstr "Janeiro" #. module: l10n_in_hr_payroll #: view:yearly.salary.detail:0 msgid "Pay Head Employee Breakup" -msgstr "" +msgstr "Preste Cabeça Breakup Employee" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_res_company msgid "Companies" -msgstr "" +msgstr "Empresas" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 #: report:payroll.advice:0 msgid "Authorized Signature" -msgstr "" +msgstr "Assinatura Autorizada" #. module: l10n_in_hr_payroll #: model:ir.model,name:l10n_in_hr_payroll.model_hr_contract msgid "Contract" -msgstr "" +msgstr "Contrato" #. module: l10n_in_hr_payroll #: field:hr.contract,supplementary_allowance:0 msgid "Supplementary Allowance" -msgstr "" +msgstr "Provisão Complementar" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice.line:0 msgid "Advice Lines" -msgstr "" +msgstr "Linhas de conselhos" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "To," -msgstr "" +msgstr "Para," #. module: l10n_in_hr_payroll #: help:hr.contract,driver_salay:0 msgid "Check this box if you provide allowance for driver" -msgstr "" +msgstr "Marque esta caixa se você fornecer subsídio para o motorista" #. module: l10n_in_hr_payroll #: view:payslip.report:0 msgid "Payslips which are in draft state" -msgstr "" +msgstr "Holerites que estão em estado de rascunho" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -724,57 +734,59 @@ msgstr "" #: field:hr.payslip,advice_id:0 #: model:ir.model,name:l10n_in_hr_payroll.model_hr_payroll_advice msgid "Bank Advice" -msgstr "" +msgstr "Banco Advice" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 msgid "Other No." -msgstr "" +msgstr "Outros Não." #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Draft Advices" -msgstr "" +msgstr "Projecto Conselhos" #. module: l10n_in_hr_payroll #: help:hr.payroll.advice,neft:0 msgid "Check this box if your company use online transfer for salary" msgstr "" +"Marque esta caixa se a sua empresa utilizar a transferência on-line para o " +"salário" #. module: l10n_in_hr_payroll #: field:payment.advice.report,number:0 #: field:payslip.report,number:0 msgid "Number" -msgstr "" +msgstr "Número" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "September" -msgstr "" +msgstr "Setembro" #. module: l10n_in_hr_payroll #: view:payslip.report:0 #: selection:payslip.report,state:0 msgid "Done" -msgstr "" +msgstr "Feito" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 #: view:hr.salary.employee.month:0 #: view:yearly.salary.detail:0 msgid "Cancel" -msgstr "" +msgstr "Cancelar" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Day of Payment Advices" -msgstr "" +msgstr "Dia dos Conselhos de pagamento" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Search Payment advice" -msgstr "" +msgstr "Pesquisa aviso de Pagamento" #. module: l10n_in_hr_payroll #: view:yearly.salary.detail:0 @@ -782,16 +794,18 @@ msgid "" "This wizard will print report which display a pay head employee breakup for " "a specified dates." msgstr "" +"Este assistente irá imprimir o relatório que exibem um salário cabeça " +"empregado separação por datas especificadas." #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Pay Slip Details" -msgstr "" +msgstr "DETALHES Pagar deslizamento" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Total Salary" -msgstr "" +msgstr "Total de Salário" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice.line,employee_id:0 @@ -800,44 +814,44 @@ msgstr "" #: view:payslip.report:0 #: field:payslip.report,employee_id:0 msgid "Employee" -msgstr "" +msgstr "Empregado" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 msgid "Compute Advice" -msgstr "" +msgstr "Calcule Advice" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "Dear Sir/Madam," -msgstr "" +msgstr "Dear Sir / Madam," #. module: l10n_in_hr_payroll #: field:hr.payroll.advice,note:0 msgid "Description" -msgstr "" +msgstr "Descrição" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "May" -msgstr "" +msgstr "Maio" #. module: l10n_in_hr_payroll #: view:res.company:0 msgid "Payroll" -msgstr "" +msgstr "Folha de pagamentos" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "NEFT" -msgstr "" +msgstr "NEFT" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 #: report:salary.detail.byyear:0 msgid "Address" -msgstr "" +msgstr "Endereço" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -847,24 +861,24 @@ msgstr "" #: report:payroll.advice:0 #: report:salary.detail.byyear:0 msgid "Bank" -msgstr "" +msgstr "Banco" #. module: l10n_in_hr_payroll #: field:hr.salary.employee.month,end_date:0 #: field:yearly.salary.detail,date_to:0 msgid "End Date" -msgstr "" +msgstr "Data final" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "February" -msgstr "" +msgstr "Fevereiro" #. module: l10n_in_hr_payroll #: sql_constraint:res.company:0 msgid "The company name must be unique !" -msgstr "" +msgstr "O nome da empresa deve ser exclusivo!" #. module: l10n_in_hr_payroll #: view:hr.payroll.advice:0 @@ -874,7 +888,7 @@ msgstr "" #: field:payslip.report,name:0 #: report:salary.employee.bymonth:0 msgid "Name" -msgstr "" +msgstr "Nome" #. module: l10n_in_hr_payroll #: view:hr.salary.employee.month:0 @@ -882,12 +896,12 @@ msgstr "" #: view:yearly.salary.detail:0 #: field:yearly.salary.detail,employee_ids:0 msgid "Employees" -msgstr "" +msgstr "Funcionários" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Bank Account" -msgstr "" +msgstr "Conta bancária" #. module: l10n_in_hr_payroll #: model:ir.actions.act_window,name:l10n_in_hr_payroll.action_payslip_report_all @@ -895,87 +909,87 @@ msgstr "" #: model:ir.ui.menu,name:l10n_in_hr_payroll.menu_reporting_payslip #: view:payslip.report:0 msgid "Payslip Analysis" -msgstr "" +msgstr "Recibo de Pagamento Análise" #. module: l10n_in_hr_payroll #: selection:payment.advice.report,month:0 #: selection:payslip.report,month:0 msgid "April" -msgstr "" +msgstr "Abril" #. module: l10n_in_hr_payroll #: report:payroll.advice:0 msgid "Name of the Employe" -msgstr "" +msgstr "Nome do" #. module: l10n_in_hr_payroll #: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:108 #: code:addons/l10n_in_hr_payroll/l10n_in_hr_payroll.py:207 #, python-format msgid "Please define bank account for the %s employee" -msgstr "" +msgstr "Por favor, defina conta bancária para o empregado% s" #. module: l10n_in_hr_payroll #: field:hr.salary.employee.month,start_date:0 #: field:yearly.salary.detail,date_from:0 msgid "Start Date" -msgstr "" +msgstr "Data de Início" #. module: l10n_in_hr_payroll #: view:hr.contract:0 msgid "Allowance" -msgstr "" +msgstr "Abono" #. module: l10n_in_hr_payroll #: field:hr.contract,voluntary_provident_fund:0 msgid "Voluntary Provident Fund (%)" -msgstr "" +msgstr "Fundo Voluntário Provident (%)" #. module: l10n_in_hr_payroll #: field:hr.contract,house_rent_allowance_metro_nonmetro:0 msgid "House Rent Allowance (%)" -msgstr "" +msgstr "Casa Rent Provisão (%)" #. module: l10n_in_hr_payroll #: help:hr.payroll.advice,bank_id:0 msgid "Select the Bank from which the salary is going to be paid" -msgstr "" +msgstr "Selecione o Banco de que o salário vai ser pago" #. module: l10n_in_hr_payroll #: view:hr.salary.employee.month:0 msgid "Employee Pay Head Breakup" -msgstr "" +msgstr "Empregado de Pagamento Cabeça Breakup" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 msgid "Phone No." -msgstr "" +msgstr "Telefone No." #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 msgid "Credit" -msgstr "" +msgstr "Crédito" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice.line,name:0 #: report:payroll.advice:0 msgid "Bank Account No." -msgstr "" +msgstr "Conta Bancária n º" #. module: l10n_in_hr_payroll #: help:hr.payroll.advice,date:0 msgid "Advice Date is used to search Payslips" -msgstr "" +msgstr "Advice Data é usado para procurar Payslips" #. module: l10n_in_hr_payroll #: view:hr.payslip.run:0 msgid "Payslip Batches ready to be Adviced" -msgstr "" +msgstr "Lotes holerite pronto para ser Adviced" #. module: l10n_in_hr_payroll #: view:hr.payslip.run:0 msgid "Create Advice" -msgstr "" +msgstr "Criar Advice" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 @@ -983,13 +997,13 @@ msgstr "" #: view:payslip.report:0 #: field:payslip.report,year:0 msgid "Year" -msgstr "" +msgstr "Ano" #. module: l10n_in_hr_payroll #: field:hr.payroll.advice,neft:0 #: field:payment.advice.report,neft:0 msgid "NEFT Transaction" -msgstr "" +msgstr "NEFT Transação" #. module: l10n_in_hr_payroll #: report:paylip.details.in:0 @@ -997,7 +1011,7 @@ msgstr "" #: report:salary.detail.byyear:0 #: report:salary.employee.bymonth:0 msgid "Total" -msgstr "" +msgstr "Total" #. module: l10n_in_hr_payroll #: help:hr.contract,house_rent_allowance_metro_nonmetro:0 @@ -1006,8 +1020,11 @@ msgid "" "his rental or accommodation expenses for metro city it is 50 % and for non " "metro 40%.HRA computed as percentage(%)" msgstr "" +"HRA é um benefício concedido pelo empregador ao empregado para cuidar de seu " +"aluguel ou despesas de alojamento para a cidade de metro é de 50% e para 40% " +"não metro. HRA calculado em percentagem (%)" #. module: l10n_in_hr_payroll #: view:payment.advice.report:0 msgid "Year of Payment Advices" -msgstr "" +msgstr "Ano de Conselhos de pagamento" diff --git a/addons/l10n_in_hr_payroll/i18n/sl.po b/addons/l10n_in_hr_payroll/i18n/sl.po index 386080f7f8f..e290e62d3d5 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-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 5f51e7a35b0..cfe5aab327d 100644 --- a/addons/l10n_in_hr_payroll/i18n/ta.po +++ b/addons/l10n_in_hr_payroll/i18n/ta.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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 a4d1401b7ba..a6939b1610b 100644 --- a/addons/l10n_in_hr_payroll/i18n/te.po +++ b/addons/l10n_in_hr_payroll/i18n/te.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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 2ed1a97f6e7..bc52cab216c 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-03-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_in_hr_payroll/i18n/zh_CN.po b/addons/l10n_in_hr_payroll/i18n/zh_CN.po index 8ee2c7f2028..ba54dd4f6c4 100644 --- a/addons/l10n_in_hr_payroll/i18n/zh_CN.po +++ b/addons/l10n_in_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-06-25 05:14+0000\n" -"X-Generator: Launchpad (build 16677)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: l10n_in_hr_payroll #: report:salary.detail.byyear:0 diff --git a/addons/l10n_multilang/i18n/ar.po b/addons/l10n_multilang/i18n/ar.po index 4fe7aa47728..16524442b35 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 b477fbfc7ca..58f936d61a8 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 8d5778aa611..c4edd6b5bdb 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 703a53b40db..418385b25b3 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 ae062992f0e..ebb437b81f5 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 8953d1a63ff..619630b68a2 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 c52d77567f3..90f3ef3af49 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template @@ -66,7 +66,7 @@ msgstr "A leírás egyedi kell legyen minden vállalathoz!" #. module: l10n_multilang #: constraint:account.tax.code.template:0 msgid "Error ! You can not create recursive Tax Codes." -msgstr "Hiba! Nem hozhat létre rekurzív adógyűjtőket." +msgstr "Hiba! Nem hozhat létre rekurzív adókódokat." #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_tax_template @@ -149,7 +149,7 @@ msgstr "A napló kódjának egyedinek kell lennie mindegyik vállalathoz!" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position msgid "Fiscal Position" -msgstr "Költségvetési pozíció" +msgstr "ÁFA pozíció" #. module: l10n_multilang #: constraint:account.account:0 diff --git a/addons/l10n_multilang/i18n/mn.po b/addons/l10n_multilang/i18n/mn.po index c6e7ffe0948..95c858c6551 100644 --- a/addons/l10n_multilang/i18n/mn.po +++ b/addons/l10n_multilang/i18n/mn.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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template msgid "Template for Fiscal Position" -msgstr "Санхүүгийн харгалзуулалтын үлгэр" +msgstr "Санхүүгийн харгалзааны үлгэр" #. module: l10n_multilang #: sql_constraint:account.account:0 diff --git a/addons/l10n_multilang/i18n/nl.po b/addons/l10n_multilang/i18n/nl.po index 4589b05bb5e..0c532df404a 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 2bbfd9c6a9b..c7ae6de4d98 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 39ae005dede..6fd30180353 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 4c99cfa5fa3..e5a6c59ee39 100644 --- a/addons/l10n_multilang/i18n/pt_BR.po +++ b/addons/l10n_multilang/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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 a9eba2b7491..fb49520788c 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 89f029f4d9c..11ccf086d36 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 46d8cb94f86..d4fd96d6595 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-03-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/l10n_multilang/i18n/zh_CN.po b/addons/l10n_multilang/i18n/zh_CN.po index bb1f5830977..5136a188e3c 100644 --- a/addons/l10n_multilang/i18n/zh_CN.po +++ b/addons/l10n_multilang/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-07-25 05:13+0000\n" -"X-Generator: Launchpad (build 16700)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: l10n_multilang #: model:ir.model,name:l10n_multilang.model_account_fiscal_position_template diff --git a/addons/lunch/i18n/ar.po b/addons/lunch/i18n/ar.po index 48ba22f1aab..d87d836c38e 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "ملاحظة" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "إضافة" diff --git a/addons/lunch/i18n/bg.po b/addons/lunch/i18n/bg.po index f178f8ab983..7f11cb5b16f 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/ca.po b/addons/lunch/i18n/ca.po index 47180e106e4..09ea7a6c539 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/cs.po b/addons/lunch/i18n/cs.po index 1847a6e423a..96284f982df 100644 --- a/addons/lunch/i18n/cs.po +++ b/addons/lunch/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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\n" #. module: lunch @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/da.po b/addons/lunch/i18n/da.po index b9dc0692c3f..aa6ba4abdaa 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-16 05:47+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/de.po b/addons/lunch/i18n/de.po index a2ff8c9eb25..5c96d2d4653 100644 --- a/addons/lunch/i18n/de.po +++ b/addons/lunch/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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -205,7 +205,7 @@ msgstr "Mitarbeiter Mahlzeiten Bezahlung" #. module: lunch #: view:lunch.alert:0 msgid "alert tree" -msgstr "" +msgstr "Alarm Liste" #. module: lunch #: model:ir.model,name:lunch.model_report_lunch_order_line @@ -289,7 +289,7 @@ msgstr "Gesamtpreis" #. module: lunch #: model:ir.model,name:lunch.model_lunch_validation msgid "lunch validation for order" -msgstr "" +msgstr "Bestätigung des Mittagessen" #. module: lunch #: report:lunch.order.line:0 @@ -504,7 +504,7 @@ msgid "Note" msgstr "Notiz" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Hinzufügen" @@ -976,7 +976,7 @@ msgstr "Abbrechen Auftragszeilen" #. module: lunch #: model:ir.model,name:lunch.model_lunch_product_category msgid "lunch product category" -msgstr "" +msgstr "Mittagessen Produktkategorie" #. module: lunch #: field:lunch.alert,saturday:0 @@ -1011,7 +1011,7 @@ msgstr "Produkt Suche" #: field:lunch.order,total:0 #: view:lunch.order.line:0 msgid "Total" -msgstr "" +msgstr "Bruttobetrag" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_order_tree diff --git a/addons/lunch/i18n/es.po b/addons/lunch/i18n/es.po index 207f71eb580..3b184768729 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -498,7 +498,7 @@ msgid "Note" msgstr "Nota" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Añadir" diff --git a/addons/lunch/i18n/es_CR.po b/addons/lunch/i18n/es_CR.po index 79ebba1905e..9cba5083343 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: lunch @@ -448,7 +448,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/es_PY.po b/addons/lunch/i18n/es_PY.po index f29914419c5..1d5aa3f52d0 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/fi.po b/addons/lunch/i18n/fi.po index 04dff0ff1a5..9815a644871 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/fr.po b/addons/lunch/i18n/fr.po index 7ae624693a4..2bbd42649a1 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -26,17 +26,17 @@ msgstr "Catégorie" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_order_by_supplier_form msgid "Today's Orders by Supplier" -msgstr "" +msgstr "Les commandes d'aujourd'hui par fournisseur" #. module: lunch #: view:lunch.order:0 msgid "My Orders" -msgstr "" +msgstr "Mes commandes" #. module: lunch #: selection:lunch.order,state:0 msgid "Partially Confirmed" -msgstr "" +msgstr "Partiellement confirmée" #. module: lunch #: view:lunch.cashmove:0 @@ -78,7 +78,7 @@ msgstr "" #. module: lunch #: view:lunch.validation:0 msgid "validate order lines" -msgstr "" +msgstr "valider les lignes de commande" #. module: lunch #: view:lunch.order.line:0 @@ -100,7 +100,7 @@ msgstr "" #. module: lunch #: view:lunch.order.line:0 msgid "By Supplier" -msgstr "" +msgstr "Par fournisseur" #. module: lunch #: model:ir.actions.act_window,help:lunch.action_lunch_order_tree @@ -117,22 +117,34 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour créer une commande de repas.\n" +"

\n" +"

\n" +" Une commande de repas est définie par son utilisateur, sa " +"date et les lignes de commande.\n" +" Chaque ligne de commande correspond à un produit, une note " +"supplémentaire et un prix.\n" +" Avant de sélectionner vos lignes de commandes, n'oubliez pas " +"de lire les avertissements indiqués dans la zone rouge.\n" +"

\n" +" " #. module: lunch #: view:lunch.order.line:0 msgid "Not Received" -msgstr "" +msgstr "Non reçue" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_order_by_supplier_form #: model:ir.ui.menu,name:lunch.menu_lunch_control_suppliers msgid "Orders by Supplier" -msgstr "" +msgstr "Commandes par fournisseur" #. module: lunch #: view:lunch.validation:0 msgid "Receive Meals" -msgstr "" +msgstr "Recevoir les repas" #. module: lunch #: view:lunch.cashmove:0 @@ -194,13 +206,14 @@ msgstr "Statistiques des commandes de repas" #. module: lunch #: model:ir.model,name:lunch.model_lunch_alert msgid "Lunch Alert" -msgstr "" +msgstr "Alerte de repas" #. module: lunch #: code:addons/lunch/lunch.py:183 #, python-format msgid "Select a product and put your order comments on the note." msgstr "" +"Sélectionnez un produit et mettez vos commentaires de commande sur la note." #. module: lunch #: selection:lunch.alert,alter_type:0 @@ -220,7 +233,7 @@ msgstr "Confirmée" #. module: lunch #: view:lunch.order:0 msgid "lunch orders" -msgstr "" +msgstr "commandes de repas" #. module: lunch #: view:lunch.order.line:0 @@ -230,12 +243,12 @@ msgstr "Confirmer" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_cashmove_form msgid "Your Account" -msgstr "" +msgstr "Votre compte" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_cashmove_form msgid "Your Lunch Account" -msgstr "" +msgstr "Votre compte de repas" #. module: lunch #: field:lunch.alert,active_from:0 @@ -245,7 +258,7 @@ msgstr "" #. module: lunch #: model:ir.model,name:lunch.model_lunch_order_order msgid "Wizard to order a meal" -msgstr "" +msgstr "Assistant de commande de repas" #. module: lunch #: selection:lunch.order,state:0 @@ -257,7 +270,7 @@ msgstr "Nouveau" #: code:addons/lunch/lunch.py:180 #, python-format msgid "This is the first time you order a meal" -msgstr "" +msgstr "C'est la première fois que vous commandez un repas" #. module: lunch #: field:report.lunch.order.line,price_total:0 @@ -267,7 +280,7 @@ msgstr "Prix total" #. module: lunch #: model:ir.model,name:lunch.model_lunch_validation msgid "lunch validation for order" -msgstr "" +msgstr "validation de repas pour la commande" #. module: lunch #: report:lunch.order.line:0 @@ -301,12 +314,14 @@ msgid "" "Order a meal doesn't mean that we have to pay it.\n" " A meal should be paid when it is received." msgstr "" +"Commander un repas ne signifie pas qu'il faut le payer.\n" +" Un repas devrait être payé une fois qu'il est reçu." #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_control_accounts #: model:ir.ui.menu,name:lunch.menu_lunch_control_accounts msgid "Control Accounts" -msgstr "" +msgstr "Comptes de contrôle" #. module: lunch #: selection:lunch.alert,alter_type:0 @@ -321,12 +336,12 @@ msgstr "Déplacement de trésorerie" #. module: lunch #: model:ir.actions.act_window,name:lunch.order_order_lines msgid "Order meals" -msgstr "" +msgstr "Commandez des repas" #. module: lunch #: view:lunch.alert:0 msgid "Schedule Hour" -msgstr "" +msgstr "Planifiez une heure" #. module: lunch #: selection:report.lunch.order.line,month:0 @@ -362,7 +377,7 @@ msgstr "" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_order_tree msgid "Your Orders" -msgstr "" +msgstr "Vos commandes" #. module: lunch #: field:report.lunch.order.line,month:0 @@ -381,6 +396,14 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour créer un article pour le repas.\n" +"

\n" +"

\n" +" Un article est défini par son nom, sa catégorie, son prix et " +"son fournisseur.\n" +"

\n" +" " #. module: lunch #: view:lunch.alert:0 @@ -391,7 +414,7 @@ msgstr "" #. module: lunch #: view:lunch.order.order:0 msgid "Order Meals" -msgstr "" +msgstr "Commandez des repas" #. module: lunch #: view:lunch.cancel:0 @@ -415,7 +438,7 @@ msgstr "" #. module: lunch #: view:lunch.order.order:0 msgid "Order meal" -msgstr "" +msgstr "Commandez un repas" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_product_categories @@ -447,7 +470,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" @@ -461,7 +484,7 @@ msgstr "" #. module: lunch #: model:ir.actions.act_window,name:lunch.cancel_order_lines msgid "Cancel meals" -msgstr "" +msgstr "Annuler les repas" #. module: lunch #: model:ir.model,name:lunch.model_lunch_cashmove @@ -472,7 +495,7 @@ msgstr "" #. module: lunch #: view:lunch.cancel:0 msgid "Are you sure you want to cancel these meals?" -msgstr "" +msgstr "Êtes-vous certain de vouloir annuler ces repas?" #. module: lunch #: view:lunch.cashmove:0 @@ -497,7 +520,7 @@ msgstr "" #. module: lunch #: model:ir.actions.act_window,name:lunch.validate_order_lines msgid "Receive meals" -msgstr "" +msgstr "Recevoir les repas" #. module: lunch #: selection:report.lunch.order.line,month:0 @@ -521,7 +544,7 @@ msgstr "Déjeuner" #. module: lunch #: model:ir.model,name:lunch.model_lunch_order_line msgid "lunch order line" -msgstr "" +msgstr "ligne de commande de repas" #. module: lunch #: model:ir.model,name:lunch.model_lunch_product @@ -605,7 +628,7 @@ msgstr "" #. module: lunch #: view:lunch.product.category:0 msgid "Product Category: " -msgstr "" +msgstr "Catégorie d'article: " #. module: lunch #: field:lunch.alert,active_to:0 @@ -625,7 +648,7 @@ msgstr "Date de commande" #. module: lunch #: view:lunch.cancel:0 msgid "Cancel Orders" -msgstr "" +msgstr "Annuler les commandes" #. module: lunch #: model:ir.actions.act_window,help:lunch.action_lunch_alert @@ -652,7 +675,7 @@ msgstr "" #. module: lunch #: view:lunch.cancel:0 msgid "A cancelled meal should not be paid by employees." -msgstr "" +msgstr "Un repas annulé ne devrait pas être payé par les employés." #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_cash @@ -662,7 +685,7 @@ msgstr "" #. module: lunch #: model:ir.model,name:lunch.model_lunch_cancel msgid "cancel lunch order" -msgstr "" +msgstr "Annuler la commande de repas" #. module: lunch #: selection:report.lunch.order.line,month:0 @@ -695,6 +718,7 @@ msgstr "" #, python-format msgid "Your favorite meals will be created based on your last orders." msgstr "" +"Vos repas favoris seront créés sur la base de vos dernières commandes." #. module: lunch #: model:ir.module.category,description:lunch.module_lunch_category @@ -728,7 +752,7 @@ msgstr "" #: code:addons/lunch/lunch.py:189 #, python-format msgid "Don't forget the alerts displayed in the reddish area" -msgstr "" +msgstr "N'oubliez pas les alertes affichées dans la zone rouge" #. module: lunch #: field:lunch.alert,thursday:0 @@ -767,7 +791,7 @@ msgstr "Prix" #. module: lunch #: field:lunch.cashmove,state:0 msgid "Is an order or a Payment" -msgstr "" +msgstr "Est une commande ou un paiement" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_order_form @@ -784,11 +808,12 @@ msgstr "" #: view:lunch.cancel:0 msgid "Cancel a meal means that we didn't receive it from the supplier." msgstr "" +"Annuler un repas signifie que nous ne l'avons pas reçu du fournisseur" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_cashmove msgid "Employee Payments" -msgstr "" +msgstr "Paiements des employés" #. module: lunch #: view:lunch.cashmove:0 @@ -814,7 +839,7 @@ msgstr "" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_admin msgid "Administrate Orders" -msgstr "" +msgstr "Gérer les commandes" #. module: lunch #: selection:report.lunch.order.line,month:0 @@ -824,7 +849,7 @@ msgstr "avril" #. module: lunch #: view:lunch.order:0 msgid "Select your order" -msgstr "" +msgstr "Sélectionnez votre commande" #. module: lunch #: field:lunch.cashmove,order_id:0 @@ -845,12 +870,12 @@ msgstr "Commande de repas" #. module: lunch #: view:lunch.order.order:0 msgid "Are you sure you want to order these meals?" -msgstr "" +msgstr "Êtes-vous certain de vouloir commander ces repas?" #. module: lunch #: view:lunch.cancel:0 msgid "cancel order lines" -msgstr "" +msgstr "annuler les lignes de commande" #. module: lunch #: model:ir.model,name:lunch.model_lunch_product_category @@ -870,7 +895,7 @@ msgstr "Responsable" #. module: lunch #: view:lunch.validation:0 msgid "Did your received these meals?" -msgstr "" +msgstr "Avez-vous reçu ces repas?" #. module: lunch #: view:lunch.validation:0 @@ -893,7 +918,7 @@ msgstr "" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_order_tree msgid "Previous Orders" -msgstr "" +msgstr "Commandes précédentes" #~ msgid "Are you sure you want to cancel this order ?" #~ msgstr "Confirmez-vous l'annulation de cette commande ?" diff --git a/addons/lunch/i18n/gl.po b/addons/lunch/i18n/gl.po index dec86e557ac..84eb7f937e3 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/hr.po b/addons/lunch/i18n/hr.po index bff4e928933..9ded453ccb1 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/hu.po b/addons/lunch/i18n/hu.po index bc774629cec..db817900c3e 100644 --- a/addons/lunch/i18n/hu.po +++ b/addons/lunch/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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -446,7 +446,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/it.po b/addons/lunch/i18n/it.po index ce79d481a4b..0804281913f 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "Note" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Aggiungi" diff --git a/addons/lunch/i18n/ja.po b/addons/lunch/i18n/ja.po index d1aee5feeae..215cb3efc7f 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/ko.po b/addons/lunch/i18n/ko.po index e76966ad73b..2bab9e0bfcd 100644 --- a/addons/lunch/i18n/ko.po +++ b/addons/lunch/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-05-12 05:28+0000\n" -"X-Generator: Launchpad (build 16598)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -31,7 +31,7 @@ msgstr "" #. module: lunch #: view:lunch.order:0 msgid "My Orders" -msgstr "" +msgstr "나의 주문" #. module: lunch #: selection:lunch.order,state:0 @@ -189,7 +189,7 @@ msgstr "" #. module: lunch #: model:ir.model,name:lunch.model_report_lunch_order_line msgid "Lunch Orders Statistics" -msgstr "" +msgstr "점심 주문 상태" #. module: lunch #: model:ir.model,name:lunch.model_lunch_alert @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/mk.po b/addons/lunch/i18n/mk.po index ef3bc77a1c1..3c080bf88bc 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "Белешка" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Додади" diff --git a/addons/lunch/i18n/mn.po b/addons/lunch/i18n/mn.po index 58f89d4bad9..4e7bbeeb8da 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -449,7 +449,7 @@ msgid "Note" msgstr "Тэмдэглэл" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Нэмэх" diff --git a/addons/lunch/i18n/nl.po b/addons/lunch/i18n/nl.po index 9d8e1188633..2473dcdcd79 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/pt.po b/addons/lunch/i18n/pt.po index 514c229a54a..4d462ff5ed6 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -83,7 +83,7 @@ msgstr "" #. module: lunch #: view:lunch.order.line:0 msgid "Order lines Tree" -msgstr "" +msgstr "Árvore das linhas dos Pedidos" #. module: lunch #: field:lunch.alert,specific_day:0 @@ -174,7 +174,7 @@ msgstr "Por data" #: view:lunch.order.line:0 #: selection:lunch.order.line,state:0 msgid "Cancelled" -msgstr "" +msgstr "Cancelado" #. module: lunch #: view:lunch.cashmove:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "Nota" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Adicionar" diff --git a/addons/lunch/i18n/pt_BR.po b/addons/lunch/i18n/pt_BR.po index 218f0b1d515..119b584102c 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -501,7 +501,7 @@ msgid "Note" msgstr "Observação" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Adicionar" diff --git a/addons/lunch/i18n/ro.po b/addons/lunch/i18n/ro.po index fba2c0f74d6..8f3dba9dd78 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -499,7 +499,7 @@ msgid "Note" msgstr "Nota" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Adauga" diff --git a/addons/lunch/i18n/ru.po b/addons/lunch/i18n/ru.po index 237cafc838a..f4fc79aa8b8 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" @@ -625,7 +625,7 @@ msgstr "Дата заказа" #. module: lunch #: view:lunch.cancel:0 msgid "Cancel Orders" -msgstr "" +msgstr "Отмена заказов" #. module: lunch #: model:ir.actions.act_window,help:lunch.action_lunch_alert @@ -850,7 +850,7 @@ msgstr "" #. module: lunch #: view:lunch.cancel:0 msgid "cancel order lines" -msgstr "" +msgstr "Отмена позиций заказа" #. module: lunch #: model:ir.model,name:lunch.model_lunch_product_category diff --git a/addons/lunch/i18n/sl.po b/addons/lunch/i18n/sl.po index 5f6c8c9c67f..fbd6ccb8474 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "Zapisek" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Dodaj" diff --git a/addons/lunch/i18n/sr@latin.po b/addons/lunch/i18n/sr@latin.po index 1d1f28f339b..187c84bb67b 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/sv.po b/addons/lunch/i18n/sv.po index 6980664dd54..e321d47ea8a 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/lunch/i18n/tr.po b/addons/lunch/i18n/tr.po index 20b801627ef..bc9da18c47f 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -495,7 +495,7 @@ msgid "Note" msgstr "Not" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "Ekle" diff --git a/addons/lunch/i18n/zh_CN.po b/addons/lunch/i18n/zh_CN.po index b702cb44dc2..f6597d01fe7 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -137,7 +137,7 @@ msgstr "接收食品" #. module: lunch #: view:lunch.cashmove:0 msgid "cashmove form" -msgstr "" +msgstr "现金凭证表单" #. module: lunch #: model:ir.actions.act_window,help:lunch.action_lunch_cashmove_form @@ -179,7 +179,7 @@ msgstr "已取消" #. module: lunch #: view:lunch.cashmove:0 msgid "lunch employee payment" -msgstr "" +msgstr "午餐员工付款" #. module: lunch #: view:lunch.alert:0 @@ -200,7 +200,7 @@ msgstr "午餐提醒" #: code:addons/lunch/lunch.py:183 #, python-format msgid "Select a product and put your order comments on the note." -msgstr "" +msgstr "选择一个产品并且把订单注释写在备注中" #. module: lunch #: selection:lunch.alert,alter_type:0 @@ -220,7 +220,7 @@ msgstr "已确认" #. module: lunch #: view:lunch.order:0 msgid "lunch orders" -msgstr "" +msgstr "午餐订单" #. module: lunch #: view:lunch.order.line:0 @@ -235,7 +235,7 @@ msgstr "您的帐号" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_cashmove_form msgid "Your Lunch Account" -msgstr "" +msgstr "你的午餐账户" #. module: lunch #: field:lunch.alert,active_from:0 @@ -308,7 +308,7 @@ msgstr "" #: model:ir.actions.act_window,name:lunch.action_lunch_control_accounts #: model:ir.ui.menu,name:lunch.menu_lunch_control_accounts msgid "Control Accounts" -msgstr "" +msgstr "控制账户" #. module: lunch #: selection:lunch.alert,alter_type:0 @@ -383,6 +383,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" 单击以创建一个午餐产品。\n" +"

\n" +"

\n" +" 一个产品定义了它的 名称、类别、价格、和供应商。\n" +"

\n" +" " #. module: lunch #: view:lunch.alert:0 @@ -393,7 +400,7 @@ msgstr "消息" #. module: lunch #: view:lunch.order.order:0 msgid "Order Meals" -msgstr "" +msgstr "订购食品" #. module: lunch #: view:lunch.cancel:0 @@ -428,7 +435,7 @@ msgstr "品种分类" #. module: lunch #: model:ir.actions.act_window,name:lunch.action_lunch_control_suppliers msgid "Control Suppliers" -msgstr "" +msgstr "控制供应商" #. module: lunch #: view:lunch.alert:0 @@ -449,7 +456,7 @@ msgid "Note" msgstr "说明" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "新增" @@ -469,7 +476,7 @@ msgstr "取消食品" #: model:ir.model,name:lunch.model_lunch_cashmove #: view:lunch.cashmove:0 msgid "lunch cashmove" -msgstr "" +msgstr "午餐现金凭证" #. module: lunch #: view:lunch.cancel:0 @@ -780,7 +787,7 @@ msgstr "新的订单" #. module: lunch #: view:lunch.cashmove:0 msgid "cashmove tree" -msgstr "" +msgstr "现金凭证树" #. module: lunch #: view:lunch.cancel:0 @@ -790,7 +797,7 @@ msgstr "取消我们不能从供应商出接收的食物。" #. module: lunch #: model:ir.ui.menu,name:lunch.menu_lunch_cashmove msgid "Employee Payments" -msgstr "" +msgstr "员工付款" #. module: lunch #: view:lunch.cashmove:0 diff --git a/addons/lunch/i18n/zh_TW.po b/addons/lunch/i18n/zh_TW.po index 2d5bbf7b197..04052b74bdb 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: lunch #: field:lunch.product,category_id:0 @@ -447,7 +447,7 @@ msgid "Note" msgstr "" #. module: lunch -#: code:addons/lunch/lunch.py:250 +#: code:addons/lunch/lunch.py:257 #, python-format msgid "Add" msgstr "" diff --git a/addons/mail/i18n/ar.po b/addons/mail/i18n/ar.po index ec2e1704a29..3ebab4454f8 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "شريك" @@ -464,7 +464,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1282,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "oh]l الرسائل المرسلة" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "الرسائل" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/bg.po b/addons/mail/i18n/bg.po index 7cf6c62f616..ee95473f7e9 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Контрагент" @@ -464,7 +464,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1282,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "Съобщения" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/bs.po b/addons/mail/i18n/bs.po index b50a043e2a7..ee660b46cbf 100644 --- a/addons/mail/i18n/bs.po +++ b/addons/mail/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-08-07 04:46+0000\n" -"X-Generator: Launchpad (build 16721)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/ca.po b/addons/mail/i18n/ca.po index 8452f97ba37..912efed7e4f 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Empresa" @@ -464,7 +464,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1282,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "Missatges" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/cs.po b/addons/mail/i18n/cs.po index e12668ab3ee..b0e52aa058f 100644 --- a/addons/mail/i18n/cs.po +++ b/addons/mail/i18n/cs.po @@ -14,56 +14,57 @@ msgstr "" "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 04:44+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\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 +#: view:mail.mail: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 #: 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 @@ -71,12 +72,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 #. openerp-web @@ -88,22 +91,22 @@ msgstr "" #. 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.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 @@ -112,37 +115,39 @@ 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:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" -msgstr "" +msgstr "ukázat" #. module: mail #: help:mail.group,group_ids:0 @@ -150,37 +155,39 @@ 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 +#: code:addons/mail/static/src/js/mail.js:1029 #, 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 -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" -msgstr "" +msgstr "Odběratelé" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" -msgstr "" +msgstr "Přístup odepřen" #. module: mail #: help:mail.group,image_medium:0 @@ -189,21 +196,24 @@ 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 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -211,73 +221,77 @@ 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 #: 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 #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:206 #, python-format msgid "No messages." -msgstr "" +msgstr "Žádné zprávy." #. module: mail #: model:ir.model,name:mail.model_mail_group msgid "Discussion group" -msgstr "" +msgstr "Diskuzní skupina" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, 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 @@ -286,6 +300,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 @@ -294,50 +310,53 @@ 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 #: 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 @@ -345,28 +364,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 +#: code:addons/mail/static/src/xml/mail.xml:312 #, 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/mail_mail.py:75 #: 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 @@ -374,12 +393,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 @@ -389,6 +408,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 @@ -397,62 +418,64 @@ 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 #: 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 #: 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 @@ -460,19 +483,19 @@ 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 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, 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 @@ -485,21 +508,21 @@ 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 #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" -msgstr "" +msgstr "Smazat přílohu" #. module: mail #. openerp-web @@ -507,48 +530,48 @@ msgstr "" #: view:mail.mail:0 #, python-format msgid "Reply" -msgstr "" +msgstr "Odpovědět" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, 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 @@ -557,19 +580,22 @@ 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 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" -msgstr "" +msgstr "<<<" #. module: mail #. openerp-web @@ -581,29 +607,29 @@ 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 @@ -611,7 +637,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 #: model:ir.actions.client,help:mail.action_mail_to_me_feeds @@ -623,11 +649,17 @@ 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 #. openerp-web @@ -639,31 +671,31 @@ msgstr "" #. 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 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, 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 @@ -672,37 +704,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 +#: code:addons/mail/static/src/xml/mail.xml:337 #, 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 @@ -710,29 +744,33 @@ 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 +#: code:addons/mail/mail_message.py:926 #, python-format 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 @@ -740,11 +778,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 #: help:mail.compose.message,notified_partner_ids:0 @@ -752,13 +792,15 @@ 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 #: 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 @@ -774,30 +816,43 @@ 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 +#: code:addons/mail/mail_mail.py:75 #, python-format 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 @@ -805,27 +860,29 @@ 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 -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: 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 @@ -833,32 +890,34 @@ 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 #: model:ir.model,name:mail.model_res_users msgid "Users" -msgstr "" +msgstr "Uživatelé" #. module: mail #: model:ir.model,name:mail.model_mail_message @@ -867,25 +926,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 @@ -893,60 +952,64 @@ 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 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" -msgstr "" +msgstr "Doplňte prosím informace o kontaktu" #. module: mail #: view:mail.wizard.invite:0 msgid "Add Followers" -msgstr "" +msgstr "Přidat odběratele" #. 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 @@ -960,29 +1023,39 @@ 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 #: 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 @@ -993,12 +1066,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 @@ -1007,6 +1080,9 @@ 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 #: help:mail.message.subtype,name:0 @@ -1017,50 +1093,54 @@ 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 #. openerp-web @@ -1072,68 +1152,70 @@ msgstr "" #. 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:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, 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 #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" -msgstr "" +msgstr "ukázat více zpráv" #. 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 #: model:ir.model,name:mail.model_mail_wizard_invite msgid "Invite wizard" -msgstr "" +msgstr "Průvodce pozváním" #. 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 #: field:mail.compose.message,subtype_id:0 @@ -1141,45 +1223,46 @@ msgstr "" #: field:mail.message,subtype_id:0 #: view:mail.message.subtype:0 msgid "Subtype" -msgstr "" +msgstr "Poddruh" #. 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 #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" -msgstr "" +msgstr "více zpráv" #. 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 @@ -1189,19 +1272,23 @@ 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 #: 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 @@ -1209,123 +1296,125 @@ 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 #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: 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 #: field:mail.group,name:0 msgid "Name" -msgstr "" +msgstr "Jméno" #. module: mail #: model:mail.group,name:mail.group_all_employees msgid "Whole Company" -msgstr "" +msgstr "Celá firma" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: 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 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" -msgstr "" +msgstr "Napsat zprávu" #. module: mail #: field:mail.group,menu_id:0 msgid "Related Menu" -msgstr "" +msgstr "Související menu" #. 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 #: 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 @@ -1333,11 +1422,13 @@ 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 #: constraint:mail.alias:0 @@ -1345,80 +1436,83 @@ 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 #: 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 +#: code:addons/mail/mail_message.py:930 #, 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 @@ -1428,13 +1522,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 @@ -1444,30 +1542,33 @@ 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 #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" -msgstr "" +msgstr "tento dokument" #. module: mail #: field:mail.compose.message,filter_id:0 msgid "Filters" -msgstr "" +msgstr "Filtry" #. 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 @@ -1475,6 +1576,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 @@ -1484,20 +1587,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 +#: code:addons/mail/static/src/xml/mail.xml:139 #, 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 @@ -1505,12 +1608,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 @@ -1519,23 +1622,25 @@ 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 #: view:mail.message:0 msgid "Unread" -msgstr "" +msgstr "Nepřečtené" #. module: mail #: help:mail.followers,subtype_ids:0 @@ -1543,23 +1648,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 @@ -1567,14 +1674,14 @@ 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 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" -msgstr "" +msgstr "už se mi nelíbí" #. module: mail #: help:mail.compose.message,author_id:0 @@ -1583,27 +1690,29 @@ 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 #: 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 @@ -1618,22 +1727,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 @@ -1643,13 +1761,13 @@ 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 #. openerp-web @@ -1663,25 +1781,25 @@ msgstr "" #: 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/mail/i18n/da.po b/addons/mail/i18n/da.po index dcb518e5e17..3d53254e666 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "" @@ -464,7 +464,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1282,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/de.po b/addons/mail/i18n/de.po index 3a17c1c7294..aacd09c84e2 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -30,6 +30,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Verfasser" @@ -47,7 +48,7 @@ msgstr "Empfänger der Nachricht" #. module: mail #: help:mail.message.subtype,default:0 msgid "Activated by default when subscribing." -msgstr "Standardmässig aktiviert, wenn Sie folgen." +msgstr "Standardmässig aktiviert, wenn Sie bestätigen." #. module: mail #: view:mail.message:0 @@ -144,7 +145,7 @@ msgstr "Ungelesene Nachrichten" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "Anzeigen" @@ -161,7 +162,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Wollen Sie diese Nachricht wirklich löschen?" @@ -179,13 +180,13 @@ msgstr "Gruppen suchen" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "Follower" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Zugriff verweigert" @@ -214,7 +215,7 @@ msgid "Support" msgstr "Unterstützung" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -281,8 +282,8 @@ msgstr "Diskussionsgruppe" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "hochladen" @@ -329,7 +330,7 @@ msgstr "Antwort an" #: code:addons/mail/wizard/invite.py:37 #, python-format msgid "
You have been invited to follow %s.
" -msgstr "
Sie wurden eingeladen %s. zu folgen
" +msgstr "
Sie wurden eingeladen, %s zu folgen.
" #. module: mail #: help:mail.group,message_unread:0 @@ -369,13 +370,13 @@ msgstr "Nicht mehr folgen" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "zeige weitere Nachricht" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -437,7 +438,6 @@ msgstr "System Benachrichtigung" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partner" @@ -490,7 +490,7 @@ msgstr "Senden" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "Keine Followers" @@ -521,8 +521,8 @@ msgstr "Archive" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Diesen Anhang löschen" @@ -537,7 +537,7 @@ msgstr "Antworten" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Ein Follower" @@ -595,7 +595,7 @@ msgstr "Empfänger" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -691,7 +691,7 @@ msgid "Move to Inbox" msgstr "In den Eingang verschieben" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -720,7 +720,7 @@ msgstr "Modell der verfolgten Ressource" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "gefällt mir" @@ -768,7 +768,7 @@ msgid "on" msgstr "am" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -848,7 +848,7 @@ msgid "Send Now" msgstr "Sofort senden" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -872,7 +872,7 @@ msgstr "Bild" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -954,8 +954,8 @@ msgid "" "Description that will be added in the message posted for this subtype. If " "void, the name will be added instead." msgstr "" -"Beschreibung die zur versendeten Nachricht hinzugefügt wird. Im Falle If " -"void, wird anstatt dessen die Bezeichnung genommen." +"Beschreibung, die zur versendeten Nachricht hinzugefügt wird. Falls es hier " +"keinen Eintrag gibt, wird anstatt dessen die Bezeichnung genommen." #. module: mail #: field:mail.compose.message,vote_user_ids:0 @@ -986,7 +986,7 @@ msgstr "Benachrichtigung" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Bitte vervollständingen Sie den Partner Datensatz" @@ -1157,7 +1157,7 @@ msgstr "Erweiterte Filter..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "An:" @@ -1181,7 +1181,7 @@ msgstr "Standard" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "Mehr Nachrichten anzeigen" @@ -1240,7 +1240,7 @@ msgstr "Markiert" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "mehr Nachrichten" @@ -1325,7 +1325,7 @@ msgstr "Markierte Nachricht wird in To-Do Postfach geleitet" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1373,8 +1373,8 @@ msgstr "Gesamtes Unternehmen" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1392,7 +1392,7 @@ msgstr "Monat Erstellung" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Eine neue Nachricht verfassen" @@ -1481,7 +1481,7 @@ msgid "Outgoing mail server" msgstr "Ausgehender Mailserver" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "Partner E-Mail Adressen wurden nicht gefunden" @@ -1558,7 +1558,7 @@ msgstr "Auf zu Erledigen setzen" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "diesem Dokument" @@ -1594,7 +1594,7 @@ msgstr "Nachrichten" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "andere ..." @@ -1681,7 +1681,7 @@ msgstr "zugehöriges Dokumenten-Modell" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "gefällt mir nicht" diff --git a/addons/mail/i18n/es.po b/addons/mail/i18n/es.po index 2eeefed300e..707e3dd50f0 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "Contrato de garantía del publicador" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Autor" @@ -143,7 +144,7 @@ msgstr "Mensajes sin leer" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "mostrar" @@ -160,7 +161,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "¿Realmente desea eliminar este mensaje?" @@ -178,13 +179,13 @@ msgstr "Grupos de busqueda" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "seguidores" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Acceso denegado" @@ -213,7 +214,7 @@ msgid "Support" msgstr "Soporte" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -280,8 +281,8 @@ msgstr "Grupo de discusión" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "subiendo" @@ -368,13 +369,13 @@ msgstr "Dejar de seguir" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "Mostrar un mensaje mas" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -435,7 +436,6 @@ msgstr "Notificación del sistema" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Empresa" @@ -488,7 +488,7 @@ msgstr "Enviar" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "No seguidores" @@ -519,8 +519,8 @@ msgstr "Archivados" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Eliminar este adjunto" @@ -535,7 +535,7 @@ msgstr "Responder" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Un seguidor" @@ -593,7 +593,7 @@ msgstr "Destinatarios" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -688,7 +688,7 @@ msgid "Move to Inbox" msgstr "Mover a la bandeja de entrada" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -717,7 +717,7 @@ msgstr "Modelo del recurso seguido" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "Me gusta" @@ -763,7 +763,7 @@ msgid "on" msgstr "en" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -843,7 +843,7 @@ msgid "Send Now" msgstr "Enviar ahora" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -867,7 +867,7 @@ msgstr "Foto" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -982,7 +982,7 @@ msgstr "Notificación" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Complete por favor la información de la empresa" @@ -1152,7 +1152,7 @@ msgstr "Filtros extendidos..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Para:" @@ -1176,7 +1176,7 @@ msgstr "Por defecto" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "ver más mensajes" @@ -1235,7 +1235,7 @@ msgstr "Destacado" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "más mensajes" @@ -1321,7 +1321,7 @@ msgstr "Mensaje destacado que va al buzón 'Por realizar'" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1369,8 +1369,8 @@ msgstr "Toda la compañia" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1388,7 +1388,7 @@ msgstr "Mes de creación" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Redactar un nuevo mensaje" @@ -1477,7 +1477,7 @@ msgid "Outgoing mail server" msgstr "Servidor de correos salientes" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "Dirección de correo de la empresa no encontrada" @@ -1553,7 +1553,7 @@ msgstr "Restablecer a 'Por realizar'" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "este documento" @@ -1589,7 +1589,7 @@ msgstr "Mensajes" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "otros..." @@ -1673,11 +1673,11 @@ msgstr "Modo de composición" #: field:mail.message,model:0 #: field:mail.wizard.invite,res_model:0 msgid "Related Document Model" -msgstr "Model de documento relacionado" +msgstr "Modelo de documento relacionado" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "Ya no me gusta" diff --git a/addons/mail/i18n/es_CR.po b/addons/mail/i18n/es_CR.po index d77a89d0ad9..9c6da72f669 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: mail @@ -30,6 +30,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -140,7 +141,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -154,7 +155,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -172,13 +173,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -204,7 +205,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -267,8 +268,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -350,13 +351,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -412,7 +413,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Empresa" @@ -465,7 +465,7 @@ msgstr "Enviar" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -496,8 +496,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -512,7 +512,7 @@ msgstr "Responder" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -567,7 +567,7 @@ msgstr "Destinatarios" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -655,7 +655,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -682,7 +682,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -728,7 +728,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -794,7 +794,7 @@ msgid "Send Now" msgstr "Enviar ahora" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -814,7 +814,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -924,7 +924,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1077,7 +1077,7 @@ msgstr "Filtros extendidos..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1101,7 +1101,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1158,7 +1158,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1236,7 +1236,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1284,8 +1284,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1303,7 +1303,7 @@ msgstr "Mes de creación" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1388,7 +1388,7 @@ msgid "Outgoing mail server" msgstr "Servidor de correos salientes" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1456,7 +1456,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1490,7 +1490,7 @@ msgstr "Mensajes" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1575,7 +1575,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/es_MX.po b/addons/mail/i18n/es_MX.po index e02d9189a62..5c54ba7d4b7 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "" @@ -464,7 +464,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -965,7 +965,7 @@ msgstr "" #: view:mail.mail:0 #: field:mail.mail,state:0 msgid "Status" -msgstr "" +msgstr "Estado" #. module: mail #: view:mail.mail:0 @@ -1076,7 +1076,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1189,6 +1189,10 @@ msgid "" "the sender (From) address, or will use the Administrator account if no " "system user is found for that address." msgstr "" +"El propietario de los registros creados al recibir correos electrónicos en " +"este alias. Si el campo no está establecido, el sistema tratará de encontrar " +"el propietario adecuado basado en la dirección del emisor (De), o usará la " +"cuenta de administrador si no se encuentra un usuario para esa dirección." #. module: mail #. openerp-web @@ -1235,7 +1239,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1286,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1305,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1390,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1458,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1492,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1575,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/es_PY.po b/addons/mail/i18n/es_PY.po index b27ab59b721..52603d34c33 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "" @@ -464,7 +464,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1282,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/et.po b/addons/mail/i18n/et.po index c2d984e6afc..9f8e97a47d7 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Autor" @@ -139,7 +140,7 @@ msgstr "Lugemata sõnumid" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "näita" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Juurdepääs keelatud" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "Arutelu grupp" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "Lõpeta jälgimine" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "" @@ -464,7 +464,7 @@ msgstr "Saada" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "Arhiivid" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Üks jälgija" @@ -566,7 +566,7 @@ msgstr "Saajad" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -660,7 +660,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -687,7 +687,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -733,7 +733,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -808,7 +808,7 @@ msgid "Send Now" msgstr "Saada kohe" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -828,7 +828,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -938,7 +938,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1091,7 +1091,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1115,7 +1115,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1172,7 +1172,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1250,7 +1250,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1297,8 +1297,8 @@ msgstr "Terve Ettevõte" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1316,7 +1316,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Koosta uus sõnum" @@ -1401,7 +1401,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1469,7 +1469,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1503,7 +1503,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1586,7 +1586,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/fi.po b/addons/mail/i18n/fi.po index 062474237d8..7ba605f84cf 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Yhteistyökumppani" @@ -464,7 +464,7 @@ msgstr "Lähetä" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "Vastaa" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "Vastaanottajat" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Viite:" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "Lähetä nyt" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "Laajennetut suodattimet..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1283,8 +1283,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1302,7 +1302,7 @@ msgstr "Luontikuukausi" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1387,7 +1387,7 @@ msgid "Outgoing mail server" msgstr "Lähtevän postin palvelin" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1455,7 +1455,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1489,7 +1489,7 @@ msgstr "Viestit" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1572,7 +1572,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/fr.po b/addons/mail/i18n/fr.po index cb2c0f461d0..6e162db48f8 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Auteur" @@ -143,7 +144,7 @@ msgstr "Messages non lus" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "montrer" @@ -159,7 +160,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Êtes-vous sûr de vouloir supprimer ce message ?" @@ -177,13 +178,13 @@ msgstr "Chercher dans les groupes" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "abonnés" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Accès refusé" @@ -212,7 +213,7 @@ msgid "Support" msgstr "Assistance" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -279,8 +280,8 @@ msgstr "Groupe de discussion" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "envoi" @@ -325,7 +326,7 @@ msgstr "Répondre à" #: code:addons/mail/wizard/invite.py:37 #, python-format msgid "
You have been invited to follow %s.
" -msgstr "
Vous avez été invités à suivre %s.<.div>" +msgstr "
Vous avez été invités à suivre %s.
" #. module: mail #: help:mail.group,message_unread:0 @@ -365,13 +366,13 @@ msgstr "Ne plus suivre" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "afficher un message de plus" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -429,7 +430,6 @@ msgstr "Notification Système" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partenaire" @@ -478,11 +478,11 @@ msgstr "base.config.settings" #: view:mail.compose.message:0 #, python-format msgid "Send" -msgstr "Envoyé" +msgstr "Envoyer" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "Aucun abonné" @@ -513,8 +513,8 @@ msgstr "Archives" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Supprimer cette pièce jointe" @@ -529,7 +529,7 @@ msgstr "Répondre" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Un abonné" @@ -575,6 +575,9 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Photo petit format du groupe. Elle est automatiquement redimensionnée au " +"format 64x64px, en respectant le ratio d'aspect. Utilisez ce champ à tout " +"endroit où une petite image est requise." #. module: mail #: view:mail.compose.message:0 @@ -584,7 +587,7 @@ msgstr "Destinataires" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -679,7 +682,7 @@ msgid "Move to Inbox" msgstr "Déplacer dans la boîte de réception" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -708,7 +711,7 @@ msgstr "Modèle de la ressource suivie" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "j'aime" @@ -754,7 +757,7 @@ msgid "on" msgstr "le" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -838,7 +841,7 @@ msgid "Send Now" msgstr "Envoyer maintenant" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -862,7 +865,7 @@ msgstr "Photo" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -882,6 +885,8 @@ msgid "" "The email address associated with this group. New emails received will " "automatically create new topics." msgstr "" +"L'adresse de courriel associée à ce groupe. Les messages nouvellement reçus " +"vont automatiquement créer de nouveaux sujets." #. module: mail #: view:mail.mail:0 @@ -934,7 +939,7 @@ msgstr "Contenu" #: model:ir.actions.act_window,name:mail.action_view_mail_alias #: model:ir.ui.menu,name:mail.mail_alias_menu msgid "Aliases" -msgstr "" +msgstr "Alias" #. module: mail #: help:mail.message.subtype,description:0 @@ -974,7 +979,7 @@ msgstr "Notification" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Veuillez compléter les informations du partenaire" @@ -1011,6 +1016,16 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Pas de messages trouvés et pas encore de messages " +"envoyés.\n" +"

\n" +" Cliquez sur l'icône en haut à droite pour écrire un " +"message.\n" +" Ce message sera envoyé par courriel si c'est un contact " +"interne.\n" +"

\n" +" " #. module: mail #: view:mail.mail:0 @@ -1049,7 +1064,7 @@ msgstr "Notifications" #. module: mail #: view:mail.alias:0 msgid "Search Alias" -msgstr "" +msgstr "Chercher l'alias" #. module: mail #: help:mail.alias,alias_force_thread_id:0 @@ -1082,7 +1097,7 @@ msgstr "" #. module: mail #: selection:mail.group,public:0 msgid "Selected Group Only" -msgstr "" +msgstr "Groupe sélectionné uniquement" #. module: mail #: field:mail.group,message_is_follower:0 @@ -1127,7 +1142,7 @@ msgstr "Filtres étendus..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "À :" @@ -1151,7 +1166,7 @@ msgstr "Par défaut" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "afficher plus de messages" @@ -1166,7 +1181,7 @@ msgstr "Marqué comme 'À faire'" #. module: mail #: help:mail.message.subtype,parent_id:0 msgid "Parent subtype, used for automatic subscription." -msgstr "" +msgstr "Sous-type parent, utilisé pour l'abonnement automatique." #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite @@ -1185,6 +1200,8 @@ msgstr "Résumé" msgid "" "Model the subtype applies to. If False, this subtype applies to all models." msgstr "" +"Modèle auquel le sous-type s'applique. Si False est spécifié, le sous-type " +"s'applique à tous les modèles." #. module: mail #: field:mail.compose.message,subtype_id:0 @@ -1197,7 +1214,7 @@ msgstr "Sous-type" #. module: mail #: view:mail.group:0 msgid "Group Form" -msgstr "" +msgstr "Formulaire de groupe" #. module: mail #: field:mail.compose.message,starred:0 @@ -1208,10 +1225,10 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" -msgstr "" +msgstr "plus de messages" #. module: mail #: code:addons/mail/update.py:93 @@ -1224,13 +1241,15 @@ msgstr "Erreur" #: code:addons/mail/static/src/xml/mail_followers.xml:13 #, python-format msgid "Following" -msgstr "" +msgstr "Abonné(e)" #. module: mail #: sql_constraint:mail.alias:0 msgid "" "Unfortunately this email alias is already used, please choose a unique one" msgstr "" +"Malheureusement, cet alias de courriel est déjà utilisé : veuillez utiliser " +"un alias unique" #. module: mail #: help:mail.alias,alias_user_id:0 @@ -1286,7 +1305,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1324,7 +1343,7 @@ msgstr "Suivre" #. module: mail #: field:mail.group,name:0 msgid "Name" -msgstr "" +msgstr "Nom" #. module: mail #: model:mail.group,name:mail.group_all_employees @@ -1333,8 +1352,8 @@ msgstr "Toute la société" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1352,7 +1371,7 @@ msgstr "Mois de création" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Rédiger un nouveau message" @@ -1384,11 +1403,13 @@ msgid "" "This group is visible by non members. Invisible groups can add " "members through the invite button." msgstr "" +"Ce groupe est visible pour les non-membres. Les groupes invisibles peuvent " +"ajouter des membres grâce au bouton d'invitation." #. module: mail #: model:mail.group,name:mail.group_board msgid "Board meetings" -msgstr "" +msgstr "Réunions" #. module: mail #: constraint:mail.alias:0 @@ -1431,7 +1452,7 @@ msgstr "Retirer cet abonné" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Never" -msgstr "" +msgstr "Jamais" #. module: mail #: field:mail.mail,mail_server_id:0 @@ -1439,10 +1460,10 @@ msgid "Outgoing mail server" msgstr "Serveur courriel sortant" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" -msgstr "" +msgstr "Adresses courriel des partenaires introuvables" #. module: mail #: view:mail.mail:0 @@ -1459,7 +1480,7 @@ msgstr "" #: 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 "L'utilisateur actuel a une notification non-lue liée à ce message." #. module: mail #: help:res.partner,notification_email_send:0 @@ -1483,6 +1504,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Aucun message dans ce groupe.\n" +"

\n" +" " #. module: mail #. openerp-web @@ -1499,6 +1524,10 @@ msgid "" "installed\n" " the portal module." msgstr "" +"Ce groupe est visible par tout le monde,\n" +" y compris vos clients si vous avez " +"installé\n" +" le module \"Portail\"." #. module: mail #. openerp-web @@ -1509,7 +1538,7 @@ msgstr "Remettre dans 'À faire'" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "ce document" @@ -1543,7 +1572,7 @@ msgstr "Messages" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "autres..." @@ -1560,7 +1589,7 @@ msgstr "À faire" #: 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 @@ -1615,7 +1644,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,composition_mode:0 msgid "Composition mode" -msgstr "" +msgstr "Mode de composition" #. module: mail #: field:mail.compose.message,model:0 @@ -1627,7 +1656,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "je n'aime plus" @@ -1639,6 +1668,8 @@ msgid "" "Author of the message. If not set, email_from may hold an email address that " "did not match any partner." msgstr "" +"Auteur du message. S'il n'est pas indiqué, email_from peux contenir une " +"adresse électronique ne correspondant à aucun partenaire." #. module: mail #: help:mail.mail,email_cc:0 @@ -1648,7 +1679,7 @@ msgstr "Destinataires en copie carbone (Cc)" #. module: mail #: field:mail.alias,alias_domain:0 msgid "Alias domain" -msgstr "" +msgstr "Domaine d'alias" #. module: mail #: code:addons/mail/update.py:93 @@ -1675,6 +1706,15 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Rien à faire.\n" +"

\n" +" Quand vous traitez des messages dans votre boîte de " +"réception, vous pouvez en marquer certains\n" +" comme À faire. Depuis ce menu, vous pouvez " +"traitez tous vos messages \"À faire\".\n" +"

\n" +" " #. module: mail #: selection:mail.mail,state:0 @@ -1700,7 +1740,7 @@ msgstr "" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Emails only" -msgstr "" +msgstr "Courriels seulement" #. module: mail #: model:ir.actions.client,name:mail.action_mail_inbox_feeds @@ -1731,12 +1771,12 @@ msgstr "Sous-types" #. module: mail #: model:ir.model,name:mail.model_mail_alias msgid "Email Aliases" -msgstr "" +msgstr "Alias courriel" #. module: mail #: field:mail.group,image_small:0 msgid "Small-sized photo" -msgstr "" +msgstr "Photo petit format" #. module: mail #: help:mail.mail,reply_to:0 diff --git a/addons/mail/i18n/gl.po b/addons/mail/i18n/gl.po index ff0e8eb3d99..ae362ca97d3 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Socio" @@ -464,7 +464,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1282,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "Mensaxes" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/hr.po b/addons/mail/i18n/hr.po index c2afc8e8794..f20f66540ac 100644 --- a/addons/mail/i18n/hr.po +++ b/addons/mail/i18n/hr.po @@ -14,21 +14,22 @@ msgstr "" "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 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 msgid "Followers Form" -msgstr "" +msgstr "Obrazac pratitelja" #. module: mail #: model:ir.model,name:mail.model_publisher_warranty_contract msgid "publisher_warranty.contract" -msgstr "publisher_warranty.contract" +msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Autor" @@ -46,7 +47,7 @@ msgstr "Primatelji poruke" #. module: mail #: help:mail.message.subtype,default:0 msgid "Activated by default when subscribing." -msgstr "" +msgstr "Standardno aktivirano kod pretplate" #. module: mail #: view:mail.message:0 @@ -63,7 +64,7 @@ msgstr "Grupiraj po..." #: help:mail.compose.message,body:0 #: help:mail.message,body:0 msgid "Automatically sanitized HTML contents" -msgstr "" +msgstr "Automatski počišćen HTML sadržaj" #. module: mail #: help:mail.alias,alias_name:0 @@ -71,6 +72,8 @@ msgid "" "The name of the email alias, e.g. 'jobs' if you want to catch emails for " "" msgstr "" +"Ime e-mail aliasa, npr. 'poslovi' ako žele uhvatiti e-poštu za " +"" #. module: mail #: model:ir.actions.act_window,name:mail.action_email_compose_message_wizard @@ -103,7 +106,7 @@ msgstr "Sadržaj" #. module: mail #: view:mail.message:0 msgid "Show messages to read" -msgstr "" +msgstr "Prikaži poruke za čitanje" #. module: mail #: help:mail.compose.message,email_from:0 @@ -112,6 +115,8 @@ msgid "" "Email address of the sender. This field is set when no matching partner is " "found for incoming emails." msgstr "" +"Email adresa pošiljatelja. Ovo se polje postavlja kada nije pronađen partner " +"za dolazni email." #. module: mail #: model:ir.model,name:mail.model_mail_compose_message @@ -123,12 +128,12 @@ msgstr "Čarobnjak za sastavljanje e-pošte" #: code:addons/mail/static/src/xml/mail_followers.xml:23 #, python-format msgid "Add others" -msgstr "" +msgstr "Dodaj ostale" #. module: mail #: field:mail.message.subtype,parent_id:0 msgid "Parent" -msgstr "" +msgstr "Nadređeni" #. module: mail #: field:mail.group,message_unread:0 @@ -139,7 +144,7 @@ msgstr "Nepročitane poruke" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "prikaži" @@ -150,13 +155,15 @@ msgid "" "Members of those groups will automatically added as followers. Note that " "they will be able to manage their subscription manually if necessary." msgstr "" +"Članovi tih grupa će biti automatski dodani kao sljedbenici. Imajte na umu " +"da će oni prema potrebi moći ručno upravljati svojom pretplatom." #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" -msgstr "" +msgstr "Da li zaista želite obrisati ovu poruku?" #. module: mail #: view:mail.message:0 @@ -167,20 +174,20 @@ msgstr "Pročitano" #. module: mail #: view:mail.group:0 msgid "Search Groups" -msgstr "" +msgstr "Traži grupe" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" -msgstr "" +msgstr "Sljedbenici" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" -msgstr "" +msgstr "Pristup odbijen" #. module: mail #: help:mail.group,image_medium:0 @@ -189,21 +196,24 @@ msgid "" "image, with aspect ratio preserved. Use this field in form views or some " "kanban views." msgstr "" +"Slika od grupe srednje veličine. Automatski će se promijeniti veličina na " +"128x128 s očuvanim omjerom. Koristiti ove polje u pregledima obrasca i " +"nekim kanban pogledima." #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:212 #, python-format msgid "Uploading error" -msgstr "" +msgstr "Greška pri preuzimanju" #. module: mail #: model:mail.group,name:mail.group_support msgid "Support" -msgstr "" +msgstr "Podrška" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -211,6 +221,10 @@ msgid "" "\n" "(Document type: %s, Operation: %s)" msgstr "" +"Pokrenuta operacija nemože biti završena iz sigurnosnig razloga. Molimo " +"kontaktirajte administratora.\n" +"\n" +"(Tip dokumenta: %s, operacija : %s)" #. module: mail #: view:mail.mail:0 @@ -228,7 +242,7 @@ msgstr "Nit" #: code:addons/mail/static/src/xml/mail.xml:29 #, python-format msgid "Open the full mail composer" -msgstr "" +msgstr "Otvori puni editor pošte" #. module: mail #. openerp-web @@ -240,12 +254,12 @@ msgstr "" #. module: mail #: field:base.config.settings,alias_domain:0 msgid "Alias Domain" -msgstr "" +msgstr "alias domena" #. module: mail #: field:mail.group,group_ids:0 msgid "Auto Subscription" -msgstr "" +msgstr "auto pretplata" #. module: mail #: field:mail.mail,references:0 @@ -262,22 +276,22 @@ msgstr "Nema poruka." #. module: mail #: model:ir.model,name:mail.model_mail_group msgid "Discussion group" -msgstr "" +msgstr "Grupe za raspravu" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" -msgstr "" +msgstr "učitavanje" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "more." -msgstr "" +msgstr "više." #. module: mail #: help:mail.compose.message,type:0 @@ -286,6 +300,8 @@ msgid "" "Message type: email for email message, notification for system message, " "comment for other messages such as user replies" msgstr "" +"Vrsta poruke: e-mail za e-mail poruke, priopćenja za sistemske poruke, " +"komentari za druge poruke poput korisničkih odgovora" #. module: mail #: help:mail.message.subtype,relation_field:0 @@ -309,14 +325,14 @@ msgstr "Odgovori na" #: code:addons/mail/wizard/invite.py:37 #, python-format msgid "
You have been invited to follow %s.
" -msgstr "" +msgstr "
Pozvani ste da pratite %s.
" #. 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 "Ako je odabrano, nove poruke zahtijevaju Vašu pažnju." #. module: mail #: field:mail.group,image_medium:0 @@ -349,24 +365,24 @@ msgstr "Ne slijedi više" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" -msgstr "" +msgstr "prikaži još jednu poruku" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Neispravna akcija!" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:25 #, python-format msgid "User img" -msgstr "" +msgstr "Slika korisnika" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_mail_mail @@ -379,7 +395,7 @@ msgstr "E-pošta" #. module: mail #: field:mail.followers,partner_id:0 msgid "Related Partner" -msgstr "" +msgstr "Povezani partner" #. module: mail #: help:mail.group,message_summary:0 @@ -389,6 +405,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." #. module: mail #: help:mail.alias,alias_model_id:0 @@ -397,28 +415,30 @@ 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 (OpenERP vrsta dokumenta) na koje ovaj alias odgovara. Svaki dolazni e-" +"mail koji ne odgovara na postojeći zapis uzrokovati će stvaranje novog " +"zapisa ovog modela (npr. projektni zadatak)" #. module: mail #: field:mail.message.subtype,relation_field:0 msgid "Relation field" -msgstr "" +msgstr "Relacijsko polje" #. module: mail #: selection:mail.compose.message,type:0 #: selection:mail.message,type:0 msgid "System notification" -msgstr "" +msgstr "Sistemska obavijest" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partner" #. module: mail #: model:ir.ui.menu,name:mail.mail_my_stuff msgid "Organizer" -msgstr "" +msgstr "Organizator" #. module: mail #: field:mail.compose.message,subject:0 @@ -464,10 +484,10 @@ msgstr "Pošalji" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" -msgstr "" +msgstr "Nema sljedbenika" #. module: mail #: view:mail.mail:0 @@ -495,8 +515,8 @@ msgstr "Arhive" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Obriši privitak" @@ -507,11 +527,11 @@ msgstr "Obriši privitak" #: view:mail.mail:0 #, python-format msgid "Reply" -msgstr "Odgovor" +msgstr "Odgovori" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Jedan pratitelj" @@ -542,13 +562,13 @@ msgstr "Komentari i mailovi" #. module: mail #: field:mail.alias,alias_defaults:0 msgid "Default Values" -msgstr "" +msgstr "Zadane vrijednosti" #. module: mail #: code:addons/mail/res_users.py:89 #, python-format msgid "%s has joined the %s network." -msgstr "" +msgstr "%s se priključio %s mreži." #. module: mail #: help:mail.group,image_small:0 @@ -557,6 +577,8 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Slika grupe malog formata. Automatski će se promijeniti veličina na 64x64, s " +"očuvanim omjerom. Koristite ovo polje gdje je potrebna mala slika." #. module: mail #: view:mail.compose.message:0 @@ -566,10 +588,10 @@ msgstr "Primatelji" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" -msgstr "" +msgstr "<<<" #. module: mail #. openerp-web @@ -581,29 +603,29 @@ msgstr "" #. module: mail #: field:mail.group,group_public_id:0 msgid "Authorized Group" -msgstr "" +msgstr "Ovlaštena grupa" #. module: mail #: view:mail.group:0 msgid "Join Group" -msgstr "" +msgstr "Priključi se grupi" #. module: mail #: help:mail.mail,email_from:0 msgid "Message sender, taken from user preferences." -msgstr "" +msgstr "Pošiljatelj poruke, preuzet iz postavki korisnika" #. module: mail #: code:addons/mail/wizard/invite.py:40 #, python-format msgid "
You have been invited to follow a new document.
" -msgstr "" +msgstr "
Pozvani ste da pratite novi dokument.
" #. module: mail #: field:mail.compose.message,parent_id:0 #: field:mail.message,parent_id:0 msgid "Parent Message" -msgstr "" +msgstr "Nadređena poruka" #. module: mail #: field:mail.compose.message,res_id:0 @@ -627,7 +649,7 @@ msgstr "" #. module: mail #: model:mail.group,name:mail.group_rd msgid "R&D" -msgstr "" +msgstr "Istraživanje i razvoj" #. module: mail #. openerp-web @@ -651,10 +673,10 @@ msgstr "Napredno" #: code:addons/mail/static/src/xml/mail.xml:244 #, python-format msgid "Move to Inbox" -msgstr "" +msgstr "Premjesti u ulaznu poštu" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -663,7 +685,7 @@ msgstr "Re:" #: field:mail.compose.message,to_read:0 #: field:mail.message,to_read:0 msgid "To read" -msgstr "" +msgstr "Za čitanje" #. module: mail #: code:addons/mail/res_users.py:69 @@ -672,16 +694,18 @@ msgid "" "You may not create a user. To create new users, you should use the " "\"Settings > Users\" menu." msgstr "" +"Ne možete izraditi korisnika. Za stvaranje novih korisnika, trebali biste " +"koristiti \"Postavke> Korisnici\" izbornika." #. module: mail #: help:mail.followers,res_model:0 #: help:mail.wizard.invite,res_model:0 msgid "Model of the followed resource" -msgstr "" +msgstr "Model pratećeg resursa" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -690,19 +714,19 @@ msgstr "" #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 msgid "Cancel" -msgstr "" +msgstr "Poništi" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:47 #, python-format msgid "Share with my followers..." -msgstr "" +msgstr "Podijeli sa mojim sljedbenicima..." #. module: mail #: field:mail.notification,partner_id:0 msgid "Contact" -msgstr "" +msgstr "Kontakt" #. module: mail #: view:mail.group:0 @@ -710,6 +734,8 @@ msgid "" "Only the invited followers can read the\n" " discussions on this group." msgstr "" +"Samo pozvani sljedbenici mogu čitati \n" +" raspravu na ovoj grupi." #. module: mail #: model:ir.model,name:mail.model_ir_ui_menu @@ -719,20 +745,22 @@ msgstr "" #. module: mail #: view:mail.message:0 msgid "Has attachments" -msgstr "" +msgstr "Ima prilog" #. module: mail #: view:mail.mail:0 msgid "on" -msgstr "" +msgstr "na" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " "address linked :" msgstr "" +"Sljedeći partneri odabrani kao primatelji e-maila nemaju povezanu e-mail " +"adresu:" #. module: mail #: help:mail.alias,alias_defaults:0 @@ -740,11 +768,13 @@ msgid "" "A Python dictionary that will be evaluated to provide default values when " "creating new records for this alias." msgstr "" +"Python rječnik koji će se provjeravati za zadane postave kada se kreira novi " +"zapis za ovaj alias." #. module: mail #: model:ir.model,name:mail.model_mail_message_subtype msgid "Message subtypes" -msgstr "" +msgstr "Podtipovi poruka" #. module: mail #: help:mail.compose.message,notified_partner_ids:0 @@ -758,7 +788,7 @@ msgstr "" #: view:mail.mail:0 #: selection:mail.message,type:0 msgid "Comment" -msgstr "" +msgstr "Komentar" #. module: mail #: model:ir.actions.client,help:mail.action_mail_inbox_feeds @@ -778,14 +808,14 @@ msgstr "" #. module: mail #: field:mail.mail,notification:0 msgid "Is Notification" -msgstr "" +msgstr "Je obavijest" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:188 #, python-format msgid "Compose a new message" -msgstr "" +msgstr "Sastavi novu poruku" #. module: mail #: view:mail.mail:0 @@ -793,11 +823,13 @@ msgid "Send Now" msgstr "Pošalji odmah" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." msgstr "" +"Nije moguće postali e-mail, molimo podesite pošiljateljevu e-mail adresu ili " +"alias." #. module: mail #: help:res.users,alias_id:0 @@ -805,27 +837,29 @@ msgid "" "Email address internally associated with this user. Incoming emails will " "appear in the user's notifications." msgstr "" +"E-mail adresa interno povezana s ovim korisnikom. Dolazni e-mail će se " +"pojaviti u korisnikovim obavijestima." #. module: mail #: field:mail.group,image:0 msgid "Photo" -msgstr "" +msgstr "Fotografija" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 #, python-format msgid "or" -msgstr "" +msgstr "ili" #. 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 "Korisnici koji su glasali za ovu poruku" #. module: mail #: help:mail.group,alias_id:0 @@ -833,6 +867,8 @@ msgid "" "The email address associated with this group. New emails received will " "automatically create new topics." msgstr "" +"Adresa e-pošte povezana s ovom skupinom. Novoprimljene poruke automatski će " +"stvoriti nove teme." #. module: mail #: view:mail.mail:0 @@ -848,17 +884,17 @@ msgstr "Pretraga e-pošte" #: field:mail.compose.message,child_ids:0 #: field:mail.message,child_ids:0 msgid "Child Messages" -msgstr "" +msgstr "Podređene poruke" #. module: mail #: field:mail.alias,alias_user_id:0 msgid "Owner" -msgstr "" +msgstr "Vlasnik" #. module: mail #: model:ir.model,name:mail.model_res_users msgid "Users" -msgstr "" +msgstr "Korisnici" #. module: mail #: model:ir.model,name:mail.model_mail_message @@ -867,25 +903,25 @@ msgstr "" #: field:mail.notification,message_id:0 #: field:mail.wizard.invite,message:0 msgid "Message" -msgstr "" +msgstr "Poruka" #. module: mail #: help:mail.followers,res_id:0 #: help:mail.wizard.invite,res_id:0 msgid "Id of the followed resource" -msgstr "" +msgstr "Id resursa koji se prati" #. module: mail #: field:mail.compose.message,body:0 #: field:mail.message,body:0 msgid "Contents" -msgstr "" +msgstr "Sadržaj" #. 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 "Aliasi" #. module: mail #: help:mail.message.subtype,description:0 @@ -893,60 +929,62 @@ msgid "" "Description that will be added in the message posted for this subtype. If " "void, the name will be added instead." msgstr "" +"Opis koji će biti dodan u objavljenoj poruci za ovaj podtip. Ako nedostaje, " +"biti će dodan naziv." #. module: mail #: field:mail.compose.message,vote_user_ids:0 #: field:mail.message,vote_user_ids:0 msgid "Votes" -msgstr "" +msgstr "Glasovi" #. module: mail #: view:mail.group:0 msgid "Group" -msgstr "" +msgstr "Grupa" #. 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 "" +msgstr "Trenutni korisnik ima označenu obavijest povezanu sa ovom porukom." #. module: mail #: field:mail.group,public:0 msgid "Privacy" -msgstr "" +msgstr "Privatnost" #. module: mail #: view:mail.mail:0 msgid "Notification" -msgstr "" +msgstr "Obavijest" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" -msgstr "" +msgstr "Molimo popunite informacije o partneru" #. module: mail #: view:mail.wizard.invite:0 msgid "Add Followers" -msgstr "" +msgstr "Dodaj sljedbenike" #. module: mail #: view:mail.compose.message:0 msgid "Followers of selected items and" -msgstr "" +msgstr "Sljedbenici odabranih predmeta i" #. module: mail #: field:mail.alias,alias_force_thread_id:0 msgid "Record Thread ID" -msgstr "" +msgstr "ID niti zapisa" #. module: mail #: model:ir.ui.menu,name:mail.mail_group_root msgid "My Groups" -msgstr "" +msgstr "Moje grupe" #. module: mail #: model:ir.actions.client,help:mail.action_mail_archives_feeds @@ -965,7 +1003,7 @@ msgstr "" #: view:mail.mail:0 #: field:mail.mail,state:0 msgid "Status" -msgstr "" +msgstr "Status" #. module: mail #: view:mail.mail:0 @@ -982,7 +1020,7 @@ msgstr "" #: help:mail.compose.message,record_name:0 #: help:mail.message,record_name:0 msgid "Name get of the related document." -msgstr "" +msgstr "Ime prezueto iz povezanog dokumenta" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_notifications @@ -993,12 +1031,12 @@ msgstr "" #: field:mail.message,notification_ids:0 #: view:mail.notification:0 msgid "Notifications" -msgstr "" +msgstr "Obavijesti" #. module: mail #: view:mail.alias:0 msgid "Search Alias" -msgstr "" +msgstr "Traži alias" #. module: mail #: help:mail.alias,alias_force_thread_id:0 @@ -1007,6 +1045,9 @@ msgid "" "attached, even if they did not reply to it. If set, this will disable the " "creation of new records completely." msgstr "" +"Opcionalni ID zapisa na kojeg će biti povezane sve dolazne poruke, čak i ako " +"oni nisu odgovorili na njega. Ako je postavljeno, to će onemogućiti " +"stvaranje novih zapisa u potpunosti." #. module: mail #: help:mail.message.subtype,name:0 @@ -1017,28 +1058,32 @@ msgid "" "subtypes allow to precisely tune the notifications the user want to receive " "on its wall." msgstr "" +"Podvrste poruka preciznije definiraju poruku, posebno za sistemske " +"obavijesti. Na primjer, to može biti obavijesti vezane uz novi zapis (nova), " +"ili na promjene faze u procesu (promjena faze). Podvrste poruka omogućuju " +"precizno podešavanje obavijesti koje korisnici žele primati na svoj zid." #. 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 "Najbolja praksa u prodaji" #. module: mail #: selection:mail.group,public:0 msgid "Selected Group Only" -msgstr "" +msgstr "Samo odabrane grupe" #. 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 sljedbenik" #. module: mail #: view:mail.alias:0 @@ -1049,12 +1094,12 @@ msgstr "Korisnik" #. module: mail #: view:mail.group:0 msgid "Groups" -msgstr "" +msgstr "Grupe" #. module: mail #: view:mail.message:0 msgid "Messages Search" -msgstr "" +msgstr "Pretraga poruka" #. module: mail #: field:mail.compose.message,date:0 @@ -1076,64 +1121,66 @@ msgstr "Prošireni filteri..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" -msgstr "" +msgstr "Za:" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:193 #, python-format msgid "Write to my followers" -msgstr "" +msgstr "Piši mojim sljedbenicima" #. module: mail #: model:ir.model,name:mail.model_res_groups msgid "Access Groups" -msgstr "" +msgstr "Pristupne grupe" #. module: mail #: field:mail.message.subtype,default:0 msgid "Default" -msgstr "" +msgstr "Zadano" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" -msgstr "" +msgstr "pokaži još poruka" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:246 #, python-format msgid "Mark as Todo" -msgstr "" +msgstr "Označi sa 'Za obaviti'" #. module: mail #: help:mail.message.subtype,parent_id:0 msgid "Parent subtype, used for automatic subscription." -msgstr "" +msgstr "Nadređeni podtip, koristi se za automatsku pretplatu." #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite msgid "Invite wizard" -msgstr "" +msgstr "Čarobnjak za pozivanje" #. module: mail #: field:mail.group,message_summary:0 #: field:mail.thread,message_summary:0 #: field:res.partner,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Sažetak" #. 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 na koji se podtip odnosi. Ako nema, ovaj podtip odnosi se na sve " +"modele." #. module: mail #: field:mail.compose.message,subtype_id:0 @@ -1141,45 +1188,46 @@ msgstr "" #: field:mail.message,subtype_id:0 #: view:mail.message.subtype:0 msgid "Subtype" -msgstr "" +msgstr "Podvrsta" #. module: mail #: view:mail.group:0 msgid "Group Form" -msgstr "" +msgstr "Grupni obrazac" #. module: mail #: field:mail.compose.message,starred:0 #: field:mail.message,starred:0 #: field:mail.notification,starred:0 msgid "Starred" -msgstr "" +msgstr "Sa zvjezdicom" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" -msgstr "" +msgstr "više poruka" #. module: mail #: code:addons/mail/update.py:93 #, python-format msgid "Error" -msgstr "" +msgstr "Greška" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:13 #, python-format msgid "Following" -msgstr "" +msgstr "Slijedi" #. module: mail #: sql_constraint:mail.alias:0 msgid "" "Unfortunately this email alias is already used, please choose a unique one" msgstr "" +"Nažalost ovaj e-mail alias se već koristi, molimo odaberite jedinstveni" #. module: mail #: help:mail.alias,alias_user_id:0 @@ -1189,19 +1237,23 @@ msgid "" "the sender (From) address, or will use the Administrator account if no " "system user is found for that address." msgstr "" +"Vlasnik zapisa kreiranih nakon primitka e-mailova na taj alias. Ako ovo " +"polje nije postavljeno sustav će pokušati pronaći pravog vlasnika na temelju " +"adrese pošiljatelja (od), ili će koristiti administratorski račun ako ne " +"pronađe sistemskog korisnika za tu adresu." #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "And" -msgstr "" +msgstr "i" #. module: mail #: field:mail.compose.message,message_id:0 #: field:mail.message,message_id:0 msgid "Message-Id" -msgstr "" +msgstr "Id-poruke" #. module: mail #: help:mail.group,image:0 @@ -1209,6 +1261,7 @@ msgid "" "This field holds the image used as photo for the group, limited to " "1024x1024px." msgstr "" +"Ovo polje sadrži sliku koja se koristi za grupu, ograničeno na 1014x1024 px." #. module: mail #: field:mail.compose.message,attachment_ids:0 @@ -1221,78 +1274,78 @@ msgstr "Privici" #: field:mail.compose.message,record_name:0 #: field:mail.message,record_name:0 msgid "Message Record Name" -msgstr "" +msgstr "Naziv zapisa poruke" #. module: mail #: field:mail.mail,email_cc:0 msgid "Cc" -msgstr "Cc" +msgstr "Cc (kopija)" #. module: mail #: help:mail.notification,starred:0 msgid "Starred message that goes into the todo mailbox" -msgstr "" +msgstr "Označena poruka koja ide u 'Za obaviti' sandučić" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" -msgstr "" +msgstr "Sljedbenici od" #. module: mail #: help:mail.mail,auto_delete:0 msgid "Permanently delete this email after sending it, to save space" -msgstr "" +msgstr "Trajno obriši ovaj e-mail nakon slanja, radi uštede prostora" #. module: mail #: model:ir.actions.client,name:mail.action_mail_group_feeds msgid "Discussion Group" -msgstr "" +msgstr "Grupa za raspravu" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:242 #, python-format msgid "Done" -msgstr "" +msgstr "Obavljeno" #. module: mail #: model:mail.message.subtype,name:mail.mt_comment msgid "Discussions" -msgstr "" +msgstr "Rasprave" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:11 #, python-format msgid "Follow" -msgstr "" +msgstr "Slijedi" #. module: mail #: field:mail.group,name:0 msgid "Name" -msgstr "" +msgstr "Naziv" #. module: mail #: model:mail.group,name:mail.group_all_employees msgid "Whole Company" -msgstr "" +msgstr "Cijela tvrtka" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" -msgstr "" +msgstr "i" #. module: mail #: help:mail.mail,body_html:0 msgid "Rich-text/HTML message" -msgstr "" +msgstr "RT/HTML poruka" #. module: mail #: view:mail.mail:0 @@ -1301,20 +1354,20 @@ msgstr "Mjesec kreiranja" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" -msgstr "" +msgstr "Sastavi novu poruku" #. module: mail #: field:mail.group,menu_id:0 msgid "Related Menu" -msgstr "" +msgstr "Vezani izbornik" #. module: mail #: view:mail.message:0 msgid "Content" -msgstr "" +msgstr "Sadržaj" #. module: mail #: field:mail.mail,email_to:0 @@ -1325,7 +1378,7 @@ msgstr "Za" #: field:mail.compose.message,notified_partner_ids:0 #: field:mail.message,notified_partner_ids:0 msgid "Notified partners" -msgstr "" +msgstr "Obaviješteni partneri" #. module: mail #: help:mail.group,public:0 @@ -1333,11 +1386,13 @@ msgid "" "This group is visible by non members. Invisible groups can add " "members through the invite button." msgstr "" +"Ova grupa je vidljiva svima. Za nevidljive grupe članovi se dodaju kroz gumb " +"pozivanja." #. module: mail #: model:mail.group,name:mail.group_board msgid "Board meetings" -msgstr "" +msgstr "Sastanci članova uprave" #. module: mail #: constraint:mail.alias:0 @@ -1345,40 +1400,42 @@ msgid "" "Invalid expression, it must be a literal python dictionary definition e.g. " "\"{'field': 'value'}\"" msgstr "" +"Nevažeći izraz, to mora biti doslovna python definicija npr. \"{'field': " +"'Vrijednost'}\"" #. module: mail #: field:mail.alias,alias_model_id:0 msgid "Aliased Model" -msgstr "" +msgstr "Zamjenski model" #. module: mail #: help:mail.compose.message,message_id:0 #: help:mail.message,message_id:0 msgid "Message unique identifier" -msgstr "Jedinstveni identifikator poruke" +msgstr "Jedinstveni indentifikator poruke" #. module: mail #: field:mail.group,description:0 #: field:mail.message.subtype,description:0 msgid "Description" -msgstr "" +msgstr "Opis" #. module: mail #: model:ir.model,name:mail.model_mail_followers msgid "Document Followers" -msgstr "" +msgstr "Sljedbenici dokumenta" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:35 #, python-format msgid "Remove this follower" -msgstr "" +msgstr "Ukloni sljedbenika" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Never" -msgstr "" +msgstr "Nikad" #. module: mail #: field:mail.mail,mail_server_id:0 @@ -1386,10 +1443,10 @@ msgid "Outgoing mail server" msgstr "Izlazni poslužitelj e-pošte" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" -msgstr "" +msgstr "Pertnerove e-mail adrese nisu pronađene" #. module: mail #: view:mail.mail:0 @@ -1407,6 +1464,7 @@ msgstr "Formatirani tekst" #: help:mail.message,to_read:0 msgid "Current user has an unread notification linked to this message" msgstr "" +"Trenutni korisnik nema nepročitane obavijesti povezano s ovom porukom" #. module: mail #: help:res.partner,notification_email_send:0 @@ -1418,7 +1476,7 @@ msgstr "" #: model:ir.actions.act_window,name:mail.action_view_groups #: model:ir.ui.menu,name:mail.mail_allgroups msgid "Join a group" -msgstr "" +msgstr "Priključi se grupi" #. module: mail #: model:ir.actions.client,help:mail.action_mail_group_feeds @@ -1434,7 +1492,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:213 #, python-format msgid "Please, wait while the file is uploading." -msgstr "" +msgstr "Molimo, pričekajte dok se datoteka ne učita" #. module: mail #: view:mail.group:0 @@ -1450,14 +1508,14 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:243 #, python-format msgid "Set back to Todo" -msgstr "" +msgstr "Vrati natrag na 'Za obaviti'" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" -msgstr "" +msgstr "ovaj dokument" #. module: mail #: field:mail.compose.message,filter_id:0 @@ -1488,16 +1546,16 @@ msgstr "Poruke" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." -msgstr "" +msgstr "ostali..." #. 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 "Za učiniti" #. module: mail #: view:mail.alias:0 @@ -1505,12 +1563,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 "Odlazna e-pošta" #. module: mail #: help:mail.compose.message,notification_ids:0 @@ -1519,18 +1577,20 @@ msgid "" "Technical field holding the message notifications. Use notified_partner_ids " "to access notified partners." msgstr "" +"Tehničko polje koje sadrži obavijesti poruke. Koristite notified_partner_ids " +"za pristupanje obaviještenim partnerima." #. module: mail #: model:ir.ui.menu,name:mail.mail_feeds #: model:ir.ui.menu,name:mail.mail_feeds_main msgid "Messaging" -msgstr "" +msgstr "Slanje poruka" #. module: mail #: view:mail.alias:0 #: field:mail.message.subtype,res_model:0 msgid "Model" -msgstr "" +msgstr "Model" #. module: mail #: view:mail.message:0 @@ -1543,13 +1603,15 @@ msgid "" "Message subtypes followed, meaning subtypes that will be pushed onto the " "user's Wall." msgstr "" +"Podtipovi poduka koji se prate, znači podtipovi koji će biti objavljeni na " +"zidu korisnika." #. 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 "Poruke i povijest komunikacije" #. module: mail #: help:mail.mail,references:0 @@ -1559,7 +1621,7 @@ msgstr "Reference poruke, poput identifikatora prethodnih poruka" #. module: mail #: field:mail.compose.message,composition_mode:0 msgid "Composition mode" -msgstr "" +msgstr "Mod sastavljanja" #. module: mail #: field:mail.compose.message,model:0 @@ -1571,10 +1633,10 @@ msgstr "Povezani model dokumenta" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" -msgstr "" +msgstr "suprotno" #. module: mail #: help:mail.compose.message,author_id:0 @@ -1583,6 +1645,8 @@ msgid "" "Author of the message. If not set, email_from may hold an email address that " "did not match any partner." msgstr "" +"Autor poruke. Ako nije postavljen, email_from može sadržavati adresu e-pošte " +"koja nije odgovarala niti jednom partneru." #. module: mail #: help:mail.mail,email_cc:0 @@ -1592,18 +1656,18 @@ msgstr "Primatelji skrivene kopije" #. module: mail #: field:mail.alias,alias_domain:0 msgid "Alias domain" -msgstr "" +msgstr "Alias domena" #. module: mail #: code:addons/mail/update.py:93 #, python-format msgid "Error during communication with the publisher warranty server." -msgstr "" +msgstr "Greška tijekom komunikacije sa serverom nositelja održavanja." #. module: mail #: selection:mail.group,public:0 msgid "Private" -msgstr "" +msgstr "Privatno" #. module: mail #: model:ir.actions.client,help:mail.action_mail_star_feeds @@ -1627,18 +1691,18 @@ msgstr "Isporuka nije uspjela" #. module: mail #: field:mail.compose.message,partner_ids:0 msgid "Additional contacts" -msgstr "" +msgstr "Dodatni kontakti" #. module: mail #: help:mail.compose.message,parent_id:0 #: help:mail.message,parent_id:0 msgid "Initial thread message." -msgstr "" +msgstr "Inicijalna nit poruke" #. module: mail #: model:mail.group,name:mail.group_hr_policies msgid "HR Policies" -msgstr "" +msgstr "Politike ljudskih resursa" #. module: mail #: selection:res.partner,notification_email_send:0 @@ -1649,7 +1713,7 @@ msgstr "" #: model:ir.actions.client,name:mail.action_mail_inbox_feeds #: model:ir.ui.menu,name:mail.mail_inboxfeeds msgid "Inbox" -msgstr "" +msgstr "Moj pretinac" #. module: mail #. openerp-web @@ -1663,23 +1727,23 @@ msgstr "" #: code:addons/mail/static/src/js/many2many_tags_email.js:63 #, python-format msgid "Please complete partner's informations and Email" -msgstr "" +msgstr "Molimo završite unos informacija o partnerima i 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 "Podtipovi" #. module: mail #: model:ir.model,name:mail.model_mail_alias msgid "Email Aliases" -msgstr "" +msgstr "Alias e-maila" #. module: mail #: field:mail.group,image_small:0 msgid "Small-sized photo" -msgstr "" +msgstr "Fotografija malog formata" #. module: mail #: help:mail.mail,reply_to:0 diff --git a/addons/mail/i18n/hu.po b/addons/mail/i18n/hu.po index 645803483bc..464a996c84d 100644 --- a/addons/mail/i18n/hu.po +++ b/addons/mail/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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -28,6 +28,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Szerző" @@ -142,7 +143,7 @@ msgstr "Olvasatlan üzenetek" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "mutat" @@ -159,7 +160,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Valóban törölni kívánja ezt az üzenetet?" @@ -177,13 +178,13 @@ msgstr "Csoportok keresése" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "követők" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Hozzáférés megtagadva" @@ -212,7 +213,7 @@ msgid "Support" msgstr "Támogatás" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -279,8 +280,8 @@ msgstr "Tárgyalási csoport" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "feltöltés" @@ -366,13 +367,13 @@ msgstr "Követés leállítása" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "mutass még egy üzenetet" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -433,7 +434,6 @@ msgstr "Rendszerüzenet" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partner" @@ -486,7 +486,7 @@ msgstr "Küldés" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "Nincs követő" @@ -517,8 +517,8 @@ msgstr "Archívum" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Törli ezt a mellékletet" @@ -533,7 +533,7 @@ msgstr "Válasz" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Egy követő" @@ -591,7 +591,7 @@ msgstr "Címzettek" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -685,7 +685,7 @@ msgid "Move to Inbox" msgstr "Bejövő üzenetekbe mozgatás" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Vissza:" @@ -714,7 +714,7 @@ msgstr "A követett forrás modellje" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "tetszik" @@ -762,7 +762,7 @@ msgid "on" msgstr "ezen:" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -844,7 +844,7 @@ msgid "Send Now" msgstr "Küldés most" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -867,7 +867,7 @@ msgstr "Fénykép" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -983,7 +983,7 @@ msgstr "Értesítés" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Kérem egészítse ki a partner információkat" @@ -1153,7 +1153,7 @@ msgstr "Kiterjesztett szűrők…" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Címzett:" @@ -1177,7 +1177,7 @@ msgstr "Alapértelmezett" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "mutassa a többi üzenetet" @@ -1236,7 +1236,7 @@ msgstr "Kedvenc" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "több üzenet" @@ -1321,7 +1321,7 @@ msgstr "Csillagos üzenet amely a teendők levélládába megy" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1369,8 +1369,8 @@ msgstr "Teljes vállalat" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1388,7 +1388,7 @@ msgstr "Létrehozás hónapja" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Új üzenet létrehozása" @@ -1477,7 +1477,7 @@ msgid "Outgoing mail server" msgstr "Kimenő levelező szerver" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "A partnerek e-mail címei nem találhatóak" @@ -1554,7 +1554,7 @@ msgstr "Visszahelyezés a feladatokhoz" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "ez a dokumentum" @@ -1590,7 +1590,7 @@ msgstr "Üzenetek" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "mások..." @@ -1677,7 +1677,7 @@ msgstr "Ide vonatkozó dokumentum modell" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "nem tetszik" diff --git a/addons/mail/i18n/it.po b/addons/mail/i18n/it.po index d8b563e4e47..5bd50de494d 100644 --- a/addons/mail/i18n/it.po +++ b/addons/mail/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-15 13:57+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Autore" @@ -143,7 +144,7 @@ msgstr "Messaggi Non Letti" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "mostra" @@ -160,7 +161,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Vuoi veramente cancellare questi messaggi?" @@ -178,13 +179,13 @@ msgstr "Cerca Gruppi" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "followers" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Accesso Negato" @@ -212,7 +213,7 @@ msgid "Support" msgstr "Supporto" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -279,8 +280,8 @@ msgstr "Gruppo discussioni" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "Caricamento" @@ -367,13 +368,13 @@ msgstr "Non seguire più" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "Mostra un nuovo messaggio" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -435,7 +436,6 @@ msgstr "Notifica di sistema" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partner" @@ -488,7 +488,7 @@ msgstr "Invia" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "Nessun follower" @@ -519,8 +519,8 @@ msgstr "Archivi" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Elimina questo allegato" @@ -535,7 +535,7 @@ msgstr "Rispondi" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Un follower" @@ -593,7 +593,7 @@ msgstr "Destinatari" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -687,7 +687,7 @@ msgid "Move to Inbox" msgstr "Sposta nella Posta in Arrivo" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -716,7 +716,7 @@ msgstr "Model della risorsa seguita" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "like" @@ -763,7 +763,7 @@ msgid "on" msgstr "in data" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -844,7 +844,7 @@ msgid "Send Now" msgstr "Invia Adesso" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -868,7 +868,7 @@ msgstr "Foto" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -950,6 +950,8 @@ msgid "" "Description that will be added in the message posted for this subtype. If " "void, the name will be added instead." msgstr "" +"Descrizione che verrà aggiunta al messaggio inviato per questo sottotipo. Se " +"è vuota, sarà aggiunto il nome." #. module: mail #: field:mail.compose.message,vote_user_ids:0 @@ -980,7 +982,7 @@ msgstr "Notifica" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Prego completare le informazioni sul Patner" @@ -993,7 +995,7 @@ msgstr "Aggiungi Followers" #. module: mail #: view:mail.compose.message:0 msgid "Followers of selected items and" -msgstr "" +msgstr "Followers degli element selezionati e" #. module: mail #: field:mail.alias,alias_force_thread_id:0 @@ -1151,7 +1153,7 @@ msgstr "Filtri Estesi..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "A:" @@ -1175,7 +1177,7 @@ msgstr "Predefinito" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "Mostra ulteriori messaggi" @@ -1190,7 +1192,7 @@ msgstr "Segna da fare" #. module: mail #: help:mail.message.subtype,parent_id:0 msgid "Parent subtype, used for automatic subscription." -msgstr "" +msgstr "Sottotipo principale, usato per iscrizioni automatiche" #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite @@ -1209,6 +1211,8 @@ msgstr "Riepilogo" msgid "" "Model the subtype applies to. If False, this subtype applies to all models." msgstr "" +"Modello a cui applicare il sottotipo. Se False, questo sottotipo è applicato " +"a tutti i modelli." #. module: mail #: field:mail.compose.message,subtype_id:0 @@ -1228,11 +1232,11 @@ msgstr "Form Gruppo" #: field:mail.message,starred:0 #: field:mail.notification,starred:0 msgid "Starred" -msgstr "" +msgstr "Votato" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "altri messaggi" @@ -1276,7 +1280,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "And" -msgstr "" +msgstr "E" #. module: mail #: field:mail.compose.message,message_id:0 @@ -1318,7 +1322,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1358,7 +1362,7 @@ msgstr "Segui" #. module: mail #: field:mail.group,name:0 msgid "Name" -msgstr "" +msgstr "Nome" #. module: mail #: model:mail.group,name:mail.group_all_employees @@ -1367,8 +1371,8 @@ msgstr "Tutta l'azienda" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1386,7 +1390,7 @@ msgstr "Mese di Creazione" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Componi nuovo Messaggio" @@ -1467,7 +1471,7 @@ msgstr "Rimuovi questo follower" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Never" -msgstr "Più recente" +msgstr "Mai" #. module: mail #: field:mail.mail,mail_server_id:0 @@ -1475,7 +1479,7 @@ msgid "Outgoing mail server" msgstr "Mail server in Uscita" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "Indirizzi email Partner non trovati" @@ -1552,7 +1556,7 @@ msgstr "Ripristina a Da Fare" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "questo documento" @@ -1588,7 +1592,7 @@ msgstr "Messaggi" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "altri..." @@ -1675,7 +1679,7 @@ msgstr "Model documento relativo" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "unlike" diff --git a/addons/mail/i18n/ja.po b/addons/mail/i18n/ja.po index d135c31a420..219488c83c7 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -327,7 +328,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 "" +msgstr "自分宛" #. module: mail #: field:mail.message.subtype,name:0 @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "パートナ" @@ -464,7 +464,7 @@ msgstr "送信" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -491,12 +491,12 @@ msgstr "" #: model:ir.actions.client,name:mail.action_mail_archives_feeds #: model:ir.ui.menu,name:mail.mail_archivesfeeds msgid "Archives" -msgstr "" +msgstr "アーカイブ" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "返信" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "宛先" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "今すぐ送信" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -946,7 +946,7 @@ msgstr "" #. module: mail #: model:ir.ui.menu,name:mail.mail_group_root msgid "My Groups" -msgstr "" +msgstr "マイグループ" #. module: mail #: model:ir.actions.client,help:mail.action_mail_archives_feeds @@ -1076,7 +1076,7 @@ msgstr "拡張フィルタ…" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1278,12 +1278,12 @@ msgstr "" #. module: mail #: model:mail.group,name:mail.group_all_employees msgid "Whole Company" -msgstr "" +msgstr "全社" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "作成月" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "送信メールサーバ" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1418,7 +1418,7 @@ msgstr "" #: model:ir.actions.act_window,name:mail.action_view_groups #: model:ir.ui.menu,name:mail.mail_allgroups msgid "Join a group" -msgstr "" +msgstr "グループに参加" #. module: mail #: model:ir.actions.client,help:mail.action_mail_group_feeds @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "メッセージ" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "関連する文書モデル" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" @@ -1649,7 +1649,7 @@ msgstr "" #: model:ir.actions.client,name:mail.action_mail_inbox_feeds #: model:ir.ui.menu,name:mail.mail_inboxfeeds msgid "Inbox" -msgstr "" +msgstr "受信箱" #. module: mail #. openerp-web diff --git a/addons/mail/i18n/ko.po b/addons/mail/i18n/ko.po index 6315792f4fc..634203b49ac 100644 --- a/addons/mail/i18n/ko.po +++ b/addons/mail/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-05-13 05:17+0000\n" -"X-Generator: Launchpad (build 16614)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "작성자" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "" @@ -464,7 +464,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1282,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/lt.po b/addons/mail/i18n/lt.po index e6607b28764..fcab79c4eb8 100644 --- a/addons/mail/i18n/lt.po +++ b/addons/mail/i18n/lt.po @@ -9,18 +9,18 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2011-01-16 11:31+0000\n" -"Last-Translator: Paulius Sladkevičius \n" +"Last-Translator: Paulius Sladkevičius @ hbee \n" "Language-Team: Lithuanian \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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 msgid "Followers Form" -msgstr "" +msgstr "Sekėjų forma" #. module: mail #: model:ir.model,name:mail.model_publisher_warranty_contract @@ -29,9 +29,10 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" -msgstr "" +msgstr "Autorius" #. module: mail #: view:mail.mail:0 @@ -41,7 +42,7 @@ msgstr "Žinutės detalės" #. module: mail #: help:mail.mail,email_to:0 msgid "Message recipients" -msgstr "" +msgstr "Žinutės gavėjai" #. module: mail #: help:mail.message.subtype,default:0 @@ -51,7 +52,7 @@ msgstr "" #. module: mail #: view:mail.message:0 msgid "Comments" -msgstr "" +msgstr "Komentarai" #. module: mail #: view:mail.alias:0 @@ -63,7 +64,7 @@ msgstr "Grupuoti pagal..." #: help:mail.compose.message,body:0 #: help:mail.message,body:0 msgid "Automatically sanitized HTML contents" -msgstr "" +msgstr "Automatiškai apribojamas HTML turinys" #. module: mail #: help:mail.alias,alias_name:0 @@ -76,7 +77,7 @@ msgstr "" #: model:ir.actions.act_window,name:mail.action_email_compose_message_wizard #: view:mail.compose.message:0 msgid "Compose Email" -msgstr "" +msgstr "Rašyti el. laišką" #. module: mail #. openerp-web @@ -88,22 +89,22 @@ msgstr "" #. module: mail #: view:mail.group:0 msgid "Group Name" -msgstr "" +msgstr "Grupės pavadinimas" #. module: mail #: selection:mail.group,public:0 msgid "Public" -msgstr "" +msgstr "Viešas" #. module: mail #: view:mail.mail:0 msgid "Body" -msgstr "" +msgstr "Tekstas" #. module: mail #: view:mail.message:0 msgid "Show messages to read" -msgstr "" +msgstr "Žinučių rodymas" #. module: mail #: help:mail.compose.message,email_from:0 @@ -123,23 +124,23 @@ msgstr "" #: code:addons/mail/static/src/xml/mail_followers.xml:23 #, python-format msgid "Add others" -msgstr "" +msgstr "Pridėti kitus" #. module: mail #: field:mail.message.subtype,parent_id:0 msgid "Parent" -msgstr "" +msgstr "Tėvinis" #. 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 "Neperžiūrėtos žinutės" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -150,19 +151,21 @@ msgid "" "Members of those groups will automatically added as followers. Note that " "they will be able to manage their subscription manually if necessary." msgstr "" +"Šių grupių nariai automatiškai taps prenumeratoriais. Tačiau jie galės " +"valdyti savo prenumeratą savarankišai." #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" -msgstr "" +msgstr "Ar tikrai norite ištrinti šią žinutę?" #. module: mail #: view:mail.message:0 #: field:mail.notification,read:0 msgid "Read" -msgstr "" +msgstr "Skaityta" #. module: mail #: view:mail.group:0 @@ -171,13 +174,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" -msgstr "" +msgstr "prenumeratoriai" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -189,6 +192,9 @@ msgid "" "image, with aspect ratio preserved. Use this field in form views or some " "kanban views." msgstr "" +"Vidutinio dydžio grupės nuotrauka. Nuotraukos dydis automatiškai " +"sumažinamas, išlaikant kraštinių santykį, į 128x128px, kai nuotrauka viršija " +"minėtą dydį. Naudokite šį lauką paprastose arba Kanban formose." #. module: mail #. openerp-web @@ -203,7 +209,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -216,7 +222,7 @@ msgstr "" #: view:mail.mail:0 #: selection:mail.mail,state:0 msgid "Received" -msgstr "" +msgstr "Gauta" #. module: mail #: view:mail.mail:0 @@ -228,7 +234,7 @@ msgstr "Gija" #: code:addons/mail/static/src/xml/mail.xml:29 #, python-format msgid "Open the full mail composer" -msgstr "" +msgstr "Atverti žinučių redaktorių" #. module: mail #. openerp-web @@ -245,12 +251,12 @@ msgstr "" #. module: mail #: field:mail.group,group_ids:0 msgid "Auto Subscription" -msgstr "" +msgstr "Automatiškai užprenumeruoti" #. module: mail #: field:mail.mail,references:0 msgid "References" -msgstr "Nuorodos" +msgstr "Susiejimai" #. module: mail #. openerp-web @@ -262,12 +268,12 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_mail_group msgid "Discussion group" -msgstr "" +msgstr "Diskusijų grupė" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -298,36 +304,36 @@ msgstr "" #. module: mail #: selection:mail.mail,state:0 msgid "Cancelled" -msgstr "" +msgstr "Atšauktas" #. module: mail #: field:mail.mail,reply_to:0 msgid "Reply-To" -msgstr "" +msgstr "Atsakyti (kam)" #. module: mail #: code:addons/mail/wizard/invite.py:37 #, python-format msgid "
You have been invited to follow %s.
" -msgstr "" +msgstr "
Jūs buvote pakviesta užsiprenumeruoti %s.
" #. 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 "Jeigu pažymėta, naujos žinutės reikalaus jūsų dėmesio." #. module: mail #: field:mail.group,image_medium:0 msgid "Medium-sized photo" -msgstr "" +msgstr "Vidutinio dydžio nuotrauka" #. 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 "Skirti man" #. module: mail #: field:mail.message.subtype,name:0 @@ -345,21 +351,21 @@ msgstr "" #: view:mail.group:0 #, python-format msgid "Unfollow" -msgstr "" +msgstr "Atsisakyti" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Klaidingas veiksmas!" #. module: mail #. openerp-web @@ -389,6 +395,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 "" +"Saugo pokalbių suvestinę (žinučių skaičius, ...). Ši apžvalga saugoma html " +"formatu, kad būtų galima įterpti į kanban rodinius." #. module: mail #: help:mail.alias,alias_model_id:0 @@ -411,14 +419,13 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partneris" #. module: mail #: model:ir.ui.menu,name:mail.mail_my_stuff msgid "Organizer" -msgstr "" +msgstr "Organizatorius" #. module: mail #: field:mail.compose.message,subject:0 @@ -429,12 +436,12 @@ msgstr "Tema" #. module: mail #: field:mail.wizard.invite,partner_ids:0 msgid "Partners" -msgstr "" +msgstr "Partneriai" #. module: mail #: view:mail.mail:0 msgid "Retry" -msgstr "" +msgstr "Kartoti" #. module: mail #: field:mail.compose.message,email_from:0 @@ -460,19 +467,19 @@ msgstr "" #: view:mail.compose.message:0 #, python-format msgid "Send" -msgstr "" +msgstr "Siųsti" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" -msgstr "" +msgstr "Nėra prenumeratorių" #. module: mail #: view:mail.mail:0 msgid "Failed" -msgstr "" +msgstr "Nepavyko" #. module: mail #. openerp-web @@ -485,21 +492,21 @@ msgstr "" #: field:res.partner,message_follower_ids:0 #, python-format msgid "Followers" -msgstr "" +msgstr "Prenumeratoriai" #. module: mail #: model:ir.actions.client,name:mail.action_mail_archives_feeds #: model:ir.ui.menu,name:mail.mail_archivesfeeds msgid "Archives" -msgstr "" +msgstr "Archyvas" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" -msgstr "" +msgstr "Pašalinti šį priedą" #. module: mail #. openerp-web @@ -507,27 +514,27 @@ msgstr "" #: view:mail.mail:0 #, python-format msgid "Reply" -msgstr "" +msgstr "Atsakyti" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" -msgstr "" +msgstr "Vienas prenumeratorius" #. module: mail #: field:mail.compose.message,type:0 #: field:mail.message,type:0 msgid "Type" -msgstr "" +msgstr "Tipas" #. module: mail #: selection:mail.compose.message,type:0 #: view:mail.mail:0 #: selection:mail.message,type:0 msgid "Email" -msgstr "" +msgstr "El. paštas" #. module: mail #: field:ir.ui.menu,mail_group_id:0 @@ -542,7 +549,7 @@ msgstr "" #. module: mail #: field:mail.alias,alias_defaults:0 msgid "Default Values" -msgstr "" +msgstr "Numatytosios reikšmės" #. module: mail #: code:addons/mail/res_users.py:89 @@ -562,11 +569,11 @@ msgstr "" #: view:mail.compose.message:0 #: field:mail.message,partner_ids:0 msgid "Recipients" -msgstr "" +msgstr "Gavėjai" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -581,12 +588,12 @@ msgstr "" #. module: mail #: field:mail.group,group_public_id:0 msgid "Authorized Group" -msgstr "" +msgstr "Leistina grupė" #. module: mail #: view:mail.group:0 msgid "Join Group" -msgstr "" +msgstr "Prenumeruoti" #. module: mail #: help:mail.mail,email_from:0 @@ -611,7 +618,7 @@ msgstr "" #: field:mail.message,res_id:0 #: field:mail.wizard.invite,res_id:0 msgid "Related Document ID" -msgstr "" +msgstr "Susijęs dokumento ID" #. module: mail #: model:ir.actions.client,help:mail.action_mail_to_me_feeds @@ -623,6 +630,12 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Neturite privačių žinučių.\n" +"

\n" +" Šiame sąraše rodomos žinutės siųstos jums.\n" +"

\n" +" " #. module: mail #: model:mail.group,name:mail.group_rd @@ -644,17 +657,17 @@ msgstr "" #. module: mail #: view:mail.mail:0 msgid "Advanced" -msgstr "" +msgstr "Išsamūs" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:244 #, python-format msgid "Move to Inbox" -msgstr "" +msgstr "Perkelti į gautus" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -663,7 +676,7 @@ msgstr "" #: field:mail.compose.message,to_read:0 #: field:mail.message,to_read:0 msgid "To read" -msgstr "" +msgstr "Neskaityta" #. module: mail #: code:addons/mail/res_users.py:69 @@ -681,28 +694,28 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" -msgstr "" +msgstr "patinka" #. module: mail #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 msgid "Cancel" -msgstr "" +msgstr "Atšaukti" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:47 #, python-format msgid "Share with my followers..." -msgstr "" +msgstr "Dalintis su savo prenumeratoriais..." #. module: mail #: field:mail.notification,partner_id:0 msgid "Contact" -msgstr "" +msgstr "Kontaktas" #. module: mail #: view:mail.group:0 @@ -710,6 +723,8 @@ msgid "" "Only the invited followers can read the\n" " discussions on this group." msgstr "" +"Tik prenumeratoriai gali skaityti\n" +" diskusijas šioje grupėje." #. module: mail #: model:ir.model,name:mail.model_ir_ui_menu @@ -719,7 +734,7 @@ msgstr "" #. module: mail #: view:mail.message:0 msgid "Has attachments" -msgstr "" +msgstr "Turi priedų" #. module: mail #: view:mail.mail:0 @@ -727,7 +742,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -758,7 +773,7 @@ msgstr "" #: view:mail.mail:0 #: selection:mail.message,type:0 msgid "Comment" -msgstr "" +msgstr "Komentaras" #. module: mail #: model:ir.actions.client,help:mail.action_mail_inbox_feeds @@ -774,6 +789,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Šauniai padirbėta! Jūs neturite gautų žinučių.\n" +"

\n" +" Šiame lange rodomos privačios žinutės, el. laiškai siųsti " +"jums bei informacija susijusi su prenumeruojamais dokumentais ar žmonėmis.\n" +"

\n" +" " #. module: mail #: field:mail.mail,notification:0 @@ -785,7 +807,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:188 #, python-format msgid "Compose a new message" -msgstr "" +msgstr "Rašyti žinutę" #. module: mail #: view:mail.mail:0 @@ -793,7 +815,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -809,17 +831,17 @@ msgstr "" #. module: mail #: field:mail.group,image:0 msgid "Photo" -msgstr "" +msgstr "Nuotrauka" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 #, python-format msgid "or" -msgstr "" +msgstr "arba" #. module: mail #: help:mail.compose.message,vote_user_ids:0 @@ -853,12 +875,12 @@ msgstr "" #. module: mail #: field:mail.alias,alias_user_id:0 msgid "Owner" -msgstr "" +msgstr "Savininkas" #. module: mail #: model:ir.model,name:mail.model_res_users msgid "Users" -msgstr "" +msgstr "Naudotojai" #. module: mail #: model:ir.model,name:mail.model_mail_message @@ -867,7 +889,7 @@ msgstr "" #: field:mail.notification,message_id:0 #: field:mail.wizard.invite,message:0 msgid "Message" -msgstr "" +msgstr "Pranešimas" #. module: mail #: help:mail.followers,res_id:0 @@ -879,7 +901,7 @@ msgstr "" #: field:mail.compose.message,body:0 #: field:mail.message,body:0 msgid "Contents" -msgstr "" +msgstr "Turinys" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_mail_alias @@ -903,7 +925,7 @@ msgstr "" #. module: mail #: view:mail.group:0 msgid "Group" -msgstr "" +msgstr "Grupė" #. module: mail #: help:mail.compose.message,starred:0 @@ -914,7 +936,7 @@ msgstr "" #. module: mail #: field:mail.group,public:0 msgid "Privacy" -msgstr "" +msgstr "Slaptumas" #. module: mail #: view:mail.mail:0 @@ -923,20 +945,20 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" -msgstr "" +msgstr "Prašome užpildyti partnerio duomenis" #. module: mail #: view:mail.wizard.invite:0 msgid "Add Followers" -msgstr "" +msgstr "Pridėti prenumeratorius" #. module: mail #: view:mail.compose.message:0 msgid "Followers of selected items and" -msgstr "" +msgstr "Pasirinktų objektų prenumeratoriams ir" #. module: mail #: field:mail.alias,alias_force_thread_id:0 @@ -946,7 +968,7 @@ msgstr "" #. module: mail #: model:ir.ui.menu,name:mail.mail_group_root msgid "My Groups" -msgstr "" +msgstr "Mano grupės" #. module: mail #: model:ir.actions.client,help:mail.action_mail_archives_feeds @@ -960,18 +982,26 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Dar nėra gauta nei išsiųsta nė viena žinutė.\n" +"

\n" +" Paspauskite ant piktogramos lango viršuje, kairėje " +"pusėje, kad parašytumėt žinutę. Žinutė bus išsiųsta el. paštu, jeigu tai " +"vidinis kontaktas.\n" +"

\n" +" " #. module: mail #: view:mail.mail:0 #: field:mail.mail,state:0 msgid "Status" -msgstr "" +msgstr "Būsena" #. module: mail #: view:mail.mail:0 #: selection:mail.mail,state:0 msgid "Outgoing" -msgstr "" +msgstr "Išvykstančios prekės" #. module: mail #: selection:res.partner,notification_email_send:0 @@ -993,7 +1023,7 @@ msgstr "" #: field:mail.message,notification_ids:0 #: view:mail.notification:0 msgid "Notifications" -msgstr "" +msgstr "Pranešimai" #. module: mail #: view:mail.alias:0 @@ -1031,25 +1061,25 @@ msgstr "" #. module: mail #: selection:mail.group,public:0 msgid "Selected Group Only" -msgstr "" +msgstr "Tik nurodyta grupė" #. 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 "Ar prenumeratorius" #. module: mail #: view:mail.alias:0 #: view:mail.mail:0 msgid "User" -msgstr "" +msgstr "Naudotojas" #. module: mail #: view:mail.group:0 msgid "Groups" -msgstr "" +msgstr "Grupės" #. module: mail #: view:mail.message:0 @@ -1072,21 +1102,21 @@ msgstr "" #. module: mail #: view:mail.mail:0 msgid "Extended Filters..." -msgstr "" +msgstr "Išplėstiniai filtrai..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" -msgstr "" +msgstr "Kam:" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:193 #, python-format msgid "Write to my followers" -msgstr "" +msgstr "Rašyti savo prenumeratoriams" #. module: mail #: model:ir.model,name:mail.model_res_groups @@ -1096,11 +1126,11 @@ msgstr "" #. module: mail #: field:mail.message.subtype,default:0 msgid "Default" -msgstr "" +msgstr "Numatytasis" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1110,7 +1140,7 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:246 #, python-format msgid "Mark as Todo" -msgstr "" +msgstr "Žymėti kaip svarbią" #. module: mail #: help:mail.message.subtype,parent_id:0 @@ -1127,7 +1157,7 @@ msgstr "" #: field:mail.thread,message_summary:0 #: field:res.partner,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Santrauka" #. module: mail #: help:mail.message.subtype,res_model:0 @@ -1157,7 +1187,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1166,14 +1196,14 @@ msgstr "" #: code:addons/mail/update.py:93 #, python-format msgid "Error" -msgstr "" +msgstr "Klaida" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:13 #, python-format msgid "Following" -msgstr "" +msgstr "Užprenumeruota" #. module: mail #: sql_constraint:mail.alias:0 @@ -1209,6 +1239,8 @@ msgid "" "This field holds the image used as photo for the group, limited to " "1024x1024px." msgstr "" +"Šiame lauke saugomas grupės paveikslėlis. Maksimalus paveikslėlio dydis " +"1024x1024px." #. module: mail #: field:mail.compose.message,attachment_ids:0 @@ -1235,11 +1267,11 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" -msgstr "" +msgstr "Prenumeratoriai" #. module: mail #: help:mail.mail,auto_delete:0 @@ -1249,45 +1281,45 @@ msgstr "" #. module: mail #: model:ir.actions.client,name:mail.action_mail_group_feeds msgid "Discussion Group" -msgstr "" +msgstr "Diskusijų grupė" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:242 #, python-format msgid "Done" -msgstr "" +msgstr "Atlikta" #. module: mail #: model:mail.message.subtype,name:mail.mt_comment msgid "Discussions" -msgstr "" +msgstr "Diskusija" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:11 #, python-format msgid "Follow" -msgstr "" +msgstr "Prenumeruoti" #. module: mail #: field:mail.group,name:0 msgid "Name" -msgstr "" +msgstr "Pavadinimas" #. module: mail #: model:mail.group,name:mail.group_all_employees msgid "Whole Company" -msgstr "" +msgstr "Visa įmonė" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" -msgstr "" +msgstr "ir" #. module: mail #: help:mail.mail,body_html:0 @@ -1297,14 +1329,14 @@ msgstr "" #. module: mail #: view:mail.mail:0 msgid "Creation Month" -msgstr "" +msgstr "Sukūrimo mėnuo" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" -msgstr "" +msgstr "Rašyti žinutę" #. module: mail #: field:mail.group,menu_id:0 @@ -1314,12 +1346,12 @@ msgstr "" #. module: mail #: view:mail.message:0 msgid "Content" -msgstr "" +msgstr "Turinys" #. module: mail #: field:mail.mail,email_to:0 msgid "To" -msgstr "Kam" +msgstr "Iki" #. module: mail #: field:mail.compose.message,notified_partner_ids:0 @@ -1333,6 +1365,7 @@ msgid "" "This group is visible by non members. Invisible groups can add " "members through the invite button." msgstr "" +"Ši grupė yra matoma ne nariams. Į nematomas grupes galima pakviesti narius." #. module: mail #: model:mail.group,name:mail.group_board @@ -1361,24 +1394,24 @@ msgstr "" #: field:mail.group,description:0 #: field:mail.message.subtype,description:0 msgid "Description" -msgstr "" +msgstr "Aprašymas" #. module: mail #: model:ir.model,name:mail.model_mail_followers msgid "Document Followers" -msgstr "" +msgstr "Dokumento prenumeratoriai" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:35 #, python-format msgid "Remove this follower" -msgstr "" +msgstr "Ištrinti šį prenumeratorių" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Never" -msgstr "" +msgstr "Niekada" #. module: mail #: field:mail.mail,mail_server_id:0 @@ -1386,7 +1419,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1395,7 +1428,7 @@ msgstr "" #: view:mail.mail:0 #: selection:mail.mail,state:0 msgid "Sent" -msgstr "" +msgstr "Išsiųsta" #. module: mail #: field:mail.mail,body_html:0 @@ -1418,7 +1451,7 @@ msgstr "" #: model:ir.actions.act_window,name:mail.action_view_groups #: model:ir.ui.menu,name:mail.mail_allgroups msgid "Join a group" -msgstr "" +msgstr "Grupių prenumerata" #. module: mail #: model:ir.actions.client,help:mail.action_mail_group_feeds @@ -1428,6 +1461,10 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Nėra žinučių šioje grupėje.\n" +"

\n" +" " #. module: mail #. openerp-web @@ -1454,15 +1491,15 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" -msgstr "" +msgstr "šio dokumento" #. module: mail #: field:mail.compose.message,filter_id:0 msgid "Filters" -msgstr "" +msgstr "Filtrai" #. module: mail #: field:res.partner,notification_email_send:0 @@ -1484,11 +1521,11 @@ msgstr "" #: field:mail.thread,message_ids:0 #: field:res.partner,message_ids:0 msgid "Messages" -msgstr "Žinutė" +msgstr "Pranešimai" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1497,7 +1534,7 @@ msgstr "" #: model:ir.actions.client,name:mail.action_mail_star_feeds #: model:ir.ui.menu,name:mail.mail_starfeeds msgid "To-do" -msgstr "" +msgstr "Reikia atlikti" #. module: mail #: view:mail.alias:0 @@ -1524,13 +1561,13 @@ msgstr "" #: model:ir.ui.menu,name:mail.mail_feeds #: model:ir.ui.menu,name:mail.mail_feeds_main msgid "Messaging" -msgstr "" +msgstr "Žinutės" #. module: mail #: view:mail.alias:0 #: field:mail.message.subtype,res_model:0 msgid "Model" -msgstr "" +msgstr "Modelis" #. module: mail #: view:mail.message:0 @@ -1549,7 +1586,7 @@ msgstr "" #: help:mail.thread,message_ids:0 #: help:res.partner,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Žinučių ir pranešimų istorija" #. module: mail #: help:mail.mail,references:0 @@ -1571,10 +1608,10 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" -msgstr "" +msgstr "nepatinka" #. module: mail #: help:mail.compose.message,author_id:0 @@ -1603,7 +1640,7 @@ msgstr "" #. module: mail #: selection:mail.group,public:0 msgid "Private" -msgstr "" +msgstr "Privatus" #. module: mail #: model:ir.actions.client,help:mail.action_mail_star_feeds @@ -1618,6 +1655,13 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Neturite svarbių žinučių.\n" +"

\n" +" Gautas žinutes galima pažymėti kaip reikia " +"atlikti. Šiame lange galite peržvelgti šias žinutes.\n" +"

\n" +" " #. module: mail #: selection:mail.mail,state:0 @@ -1627,7 +1671,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,partner_ids:0 msgid "Additional contacts" -msgstr "" +msgstr "Papildomi kontaktai" #. module: mail #: help:mail.compose.message,parent_id:0 @@ -1649,7 +1693,7 @@ msgstr "" #: model:ir.actions.client,name:mail.action_mail_inbox_feeds #: model:ir.ui.menu,name:mail.mail_inboxfeeds msgid "Inbox" -msgstr "" +msgstr "Gauta" #. module: mail #. openerp-web @@ -1663,7 +1707,7 @@ msgstr "" #: code:addons/mail/static/src/js/many2many_tags_email.js:63 #, python-format msgid "Please complete partner's informations and Email" -msgstr "" +msgstr "Prašome užpildyti partnerio duomenis bei el. pašto adresą" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_message_subtype diff --git a/addons/mail/i18n/lv.po b/addons/mail/i18n/lv.po index b04c87111e6..f1249f881dc 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partneris" @@ -464,7 +464,7 @@ msgstr "Sūtīt" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "Atbildēt" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "Adresāti" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Atb.:" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "Sūtīt Tagad" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "Paplašinātie Filtri..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1282,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "Izejošais vēstuļu serveris" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "Ziņojumi" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/mk.po b/addons/mail/i18n/mk.po index 3aeeaa1392e..c11c6dfa462 100644 --- a/addons/mail/i18n/mk.po +++ b/addons/mail/i18n/mk.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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 msgid "Followers Form" -msgstr "Форма за следбеници" +msgstr "Формулар за паратители" #. module: mail #: model:ir.model,name:mail.model_publisher_warranty_contract @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Автор" @@ -120,7 +121,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 @@ -143,7 +144,7 @@ msgstr "Непрочитани Пораки" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "прикажи" @@ -154,13 +155,13 @@ msgid "" "Members of those groups will automatically added as followers. Note that " "they will be able to manage their subscription manually if necessary." msgstr "" -"Членовите на тие групи автоматски се додаваат како следбеници. Имајте во " +"Членовите на овие групи автоматски се додаваат како пратители. Имајте во " "предвид дека тие ќе можат сами да управуваат со претплатата рачно доколку е " "потребно." #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Навистина ли сакате да ја избришете пораката?" @@ -178,13 +179,13 @@ msgstr "Барај групи" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" -msgstr "следбеници" +msgstr "пратители" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Пристапот е одбиен" @@ -213,7 +214,7 @@ msgid "Support" msgstr "Поддршка" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -221,7 +222,7 @@ msgid "" "\n" "(Document type: %s, Operation: %s)" msgstr "" -"Бараната операција неможе да се изврши поради безбедносни причини. " +"Бараната операција не може да се изврши поради безбедносни причини. " "Контактирајте го администраторот.\n" "\n" "(Тип на документ: %s, Операција: %s)" @@ -280,8 +281,8 @@ msgstr "Група за дискусија" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "качување" @@ -346,7 +347,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 @@ -368,13 +369,13 @@ msgstr "Прекини со следење" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "прикажи уште една порака" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -409,7 +410,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 @@ -419,7 +420,7 @@ msgid "" "creation of a new record of this model (e.g. a Project Task)" msgstr "" "Моделот (OpenERP Document Kind) на кој алијасот одговара. Секој влезен e-" -"mailкој што не одговара на постоечки запис, ќе предизвика креирање на нов " +"mail кој што не одговара на постоечки запис, ќе предизвика креирање на нов " "запис на тој модел (пр. Проектна задача)" #. module: mail @@ -435,7 +436,6 @@ msgstr "Системско известување" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Партнер" @@ -488,10 +488,10 @@ msgstr "Испрати" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" -msgstr "Нема следбеници" +msgstr "Нема пратители" #. module: mail #: view:mail.mail:0 @@ -509,7 +509,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 @@ -519,8 +519,8 @@ msgstr "Архиви" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Избриши го оваа прикачување" @@ -535,10 +535,10 @@ msgstr "Одговори" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" -msgstr "Еден следбеник" +msgstr "Еден пратител" #. module: mail #: field:mail.compose.message,type:0 @@ -551,12 +551,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 @@ -572,7 +572,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 @@ -593,7 +593,7 @@ msgstr "Примачи" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -672,7 +672,7 @@ msgstr "/web/binary/upload_attachment" #. module: mail #: model:ir.model,name:mail.model_mail_thread msgid "Email Thread" -msgstr "Е-mail тема" +msgstr "Е-mail нишка" #. module: mail #: view:mail.mail:0 @@ -684,10 +684,10 @@ 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 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Одговор:" @@ -705,18 +705,18 @@ 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 -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "како" @@ -732,7 +732,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 @@ -745,7 +745,7 @@ msgid "" "Only the invited followers can read the\n" " discussions on this group." msgstr "" -"Само поканети следбеници можат да ги читат\n" +"Само поканети пратители можат да ги читат\n" " дискусиите на оваа група." #. module: mail @@ -756,7 +756,7 @@ msgstr "ir.ui.menu" #. module: mail #: view:mail.message:0 msgid "Has attachments" -msgstr "Има прикачени додатоци" +msgstr "Има прикачувања" #. module: mail #: view:mail.mail:0 @@ -764,13 +764,14 @@ msgid "on" msgstr "на" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format 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 @@ -845,12 +846,12 @@ msgid "Send Now" msgstr "Испрати сега" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." msgstr "" -"Пораката неможе да се испрати, ве молиме конфигурирајте ја e-mail адресата " +"Пораката не може да се испрати, ве молиме конфигурирајте ја e-mail адресата " "на испраќачот или алијас." #. module: mail @@ -869,7 +870,7 @@ msgstr "Фотографија" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -983,7 +984,7 @@ msgstr "Известување" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Ве молилме комплетирајте ги информациите за партнерите" @@ -991,17 +992,17 @@ msgstr "Ве молилме комплетирајте ги информации #. module: mail #: view:mail.wizard.invite:0 msgid "Add Followers" -msgstr "Додади следбеници" +msgstr "Додади пратители" #. 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 @@ -1075,8 +1076,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 @@ -1114,7 +1115,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 @@ -1152,7 +1153,7 @@ msgstr "Проширени филтри..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "До:" @@ -1162,7 +1163,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 @@ -1176,7 +1177,7 @@ msgstr "Стандардно" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "прикажи уште пораки" @@ -1210,7 +1211,7 @@ msgstr "Резиме" msgid "" "Model the subtype applies to. If False, this subtype applies to all models." msgstr "" -"На кој модел препаѓа овој подтип. Доколку е неточно, тој подтип припаѓа на " +"Модел на кој припаѓа овој подтип. Доколку е неточно, тој подтип припаѓа на " "сите модели." #. module: mail @@ -1235,7 +1236,7 @@ msgstr "Набљудувани" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "уште пораки" @@ -1268,7 +1269,7 @@ msgid "" "the sender (From) address, or will use the Administrator account if no " "system user is found for that address." msgstr "" -"Сопственикот на записите креирани по примањето на пораките на овој алијас. " +"Сопственик на записите креирани по примањето на пораките на овој алијас. " "Доколку ова поле не е конфигурирано, системот ќе се обиде да го пронајде " "вистинскиот сопственик врз база на адресата на испраќачот или ќе ја користи " "администраторската сметка доколку не се пронајде системски корисник за таа " @@ -1321,17 +1322,17 @@ msgstr "Набљудувана порака што се префрлува во #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: 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 @@ -1369,8 +1370,8 @@ msgstr "Цела компанија" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1388,7 +1389,7 @@ msgstr "Месец на креирање" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Состави нова порака" @@ -1421,7 +1422,7 @@ msgid "" "members through the invite button." msgstr "" "Оваа група е видлива и за тие што не се членови. Невидливите групи можат да " -"додадат членови со Покани копчето." +"додадат членови со копчето Покани." #. module: mail #: model:mail.group,name:mail.group_board @@ -1457,14 +1458,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 @@ -1477,7 +1478,7 @@ msgid "Outgoing mail server" msgstr "Сервер за излезна пошта" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "E-mail адресите на партнерите не се пронајдени" @@ -1555,7 +1556,7 @@ msgstr "Врати на ДаСеНаправи" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "овој документ" @@ -1591,7 +1592,7 @@ msgstr "Пораки" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "останати..." @@ -1678,7 +1679,7 @@ msgstr "Поврзан модел на документ" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "за разлика од" @@ -1782,7 +1783,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/mail/i18n/mn.po b/addons/mail/i18n/mn.po index 84ea4b5f700..494b96ba99f 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Зохиогч" @@ -143,7 +144,7 @@ msgstr "Уншаагүй зурвасууд" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "үзүүлэх" @@ -159,7 +160,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Эдгээр зурвасыг та үнэхээр устгамаар байна уу?" @@ -177,13 +178,13 @@ msgstr "Бүлгэмийг Хайх" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "дагагчид" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Хандалтыг татгалзав" @@ -212,7 +213,7 @@ msgid "Support" msgstr "Дэмжлэг" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -279,8 +280,8 @@ msgstr "Хөөрөлдөөний бүлгэм" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "хуулах" @@ -367,13 +368,13 @@ msgstr "Дагахаа болих" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "нэг юм уу хэд хэдэн зурвас харуулах" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -434,7 +435,6 @@ msgstr "Системийн мэдэгдэл" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Харилцагч" @@ -487,7 +487,7 @@ msgstr "Илгээх" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "Дагагч байхгүй" @@ -518,8 +518,8 @@ msgstr "Архив" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Энэ хавсралтыг устгах" @@ -534,7 +534,7 @@ msgstr "Хариулах" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Нэг дагагч" @@ -591,7 +591,7 @@ msgstr "Хүлээн авагчид" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -685,7 +685,7 @@ msgid "Move to Inbox" msgstr "Inbox-руу зөөх" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Хариу:" @@ -714,7 +714,7 @@ msgstr "Дагасан нөөцийн модель" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "таалагдлаа" @@ -760,7 +760,7 @@ msgid "on" msgstr "дээр" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -838,7 +838,7 @@ msgid "Send Now" msgstr "Одоо илгээх" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -862,7 +862,7 @@ msgstr "Фото" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -978,7 +978,7 @@ msgstr "Мэдэгдэл" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Харилцагчийн мэдээллийг гүйцээнэ үү" @@ -1145,7 +1145,7 @@ msgstr "Өргөтгөсөн хайлт..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Хэнд:" @@ -1169,7 +1169,7 @@ msgstr "Өгөгдмөл" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "илүү олон зурвас харуулах" @@ -1228,7 +1228,7 @@ msgstr "Одоор тэмдэглэсэн" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "илүү зурвасууд" @@ -1314,7 +1314,7 @@ msgstr "Одоор тэмдэглэсэн зурвас нь хийх ажил р #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1362,8 +1362,8 @@ msgstr "Компани бүхэлдээ" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1381,7 +1381,7 @@ msgstr "Үүсгэсэн сар" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Шинэ зурвас үүсгэх" @@ -1470,7 +1470,7 @@ msgid "Outgoing mail server" msgstr "Мэйл серверийн гаралт" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "Харилцагчийн имэйл хаяг олдсонгүй" @@ -1546,7 +1546,7 @@ msgstr "Буцааж хийхээр тохируулах" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "энэ баримт" @@ -1582,7 +1582,7 @@ msgstr "Зурвас" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "бусад..." @@ -1668,7 +1668,7 @@ msgstr "Холбогдох Баримтын Модель" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "таалагдсангүй" diff --git a/addons/mail/i18n/nl.po b/addons/mail/i18n/nl.po index 05c2574990f..1bbc7e96409 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Auteur" @@ -143,7 +144,7 @@ msgstr "Ongelezen berichten" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "toon" @@ -159,7 +160,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Weet u zeker dat u dit bericht wilt verwijderen?" @@ -177,13 +178,13 @@ msgstr "Zoek groepen" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "volgers" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Toegang geweigerd" @@ -212,7 +213,7 @@ msgid "Support" msgstr "Ondersteuning" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -279,8 +280,8 @@ msgstr "Discussie groep" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "uploaden" @@ -364,13 +365,13 @@ msgstr "Niet volgen" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "geef meer berichten weer" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -429,14 +430,13 @@ msgstr "Systeem melding" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Relatie" #. module: mail #: model:ir.ui.menu,name:mail.mail_my_stuff msgid "Organizer" -msgstr "Organizer" +msgstr "Agenda" #. module: mail #: field:mail.compose.message,subject:0 @@ -482,7 +482,7 @@ msgstr "Verzend" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "Geen volgers" @@ -513,8 +513,8 @@ msgstr "Archieven" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Verwijder deze bijlage" @@ -529,7 +529,7 @@ msgstr "Beantwoorden" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Één volger" @@ -587,7 +587,7 @@ msgstr "Ontvangers" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -682,7 +682,7 @@ msgid "Move to Inbox" msgstr "Verplaats naar postvak in" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Antw:" @@ -711,7 +711,7 @@ msgstr "Model van de gevolgde bron" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "like" @@ -759,7 +759,7 @@ msgid "on" msgstr "op" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -774,6 +774,8 @@ msgid "" "A Python dictionary that will be evaluated to provide default values when " "creating new records for this alias." msgstr "" +"Een Python bibliotheek dat zal worden gebruikt om standaardwaarden te bieden " +"bij het maken van nieuwe records voor deze alias." #. module: mail #: model:ir.model,name:mail.model_mail_message_subtype @@ -838,7 +840,7 @@ msgid "Send Now" msgstr "Nu verzenden" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -862,7 +864,7 @@ msgstr "Foto" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -977,7 +979,7 @@ msgstr "Melding" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Vul de volledige relatie informatie in" @@ -1071,6 +1073,9 @@ msgid "" "attached, even if they did not reply to it. If set, this will disable the " "creation of new records completely." msgstr "" +"Optionele ID van een thread (record) waaraan alle inkomende berichten worden " +"gekoppeld, zelfs als hierop niet geantwoord hebben. Indien ingesteld, zal " +"dit het aanmaken van nieuwe records uitzetten." #. module: mail #: help:mail.message.subtype,name:0 @@ -1140,7 +1145,7 @@ msgstr "Uitgebreide filters..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Naar:" @@ -1164,7 +1169,7 @@ msgstr "Standaard" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "geef meer berichten weer" @@ -1179,7 +1184,7 @@ msgstr "Markeer als taak" #. module: mail #: help:mail.message.subtype,parent_id:0 msgid "Parent subtype, used for automatic subscription." -msgstr "" +msgstr "Bovenliggende subtype, wordt gebruikt voor automatische aanmelding." #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite @@ -1223,7 +1228,7 @@ msgstr "Met ster" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "meer berichten" @@ -1303,7 +1308,7 @@ msgstr "Berichten met ster welke gaan naar het taken postvak" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1351,8 +1356,8 @@ msgstr "Gehele bedrijf" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1370,7 +1375,7 @@ msgstr "Aanmaak maand" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Maak een nieuw bericht" @@ -1459,7 +1464,7 @@ msgid "Outgoing mail server" msgstr "Uitgaande mailserver" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "E-mail adres van de relatie niet gevonden" @@ -1539,7 +1544,7 @@ msgstr "Zet terug naar taken" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "dit document" @@ -1575,7 +1580,7 @@ msgstr "Berichten" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "anderen..." @@ -1660,7 +1665,7 @@ msgstr "Gerelateerde document model" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "unlike" diff --git a/addons/mail/i18n/pl.po b/addons/mail/i18n/pl.po index 6d53aabca12..6cfbf67d543 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Autor" @@ -143,7 +144,7 @@ msgstr "Nieprzeczytane wiadomości" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "pokaż" @@ -159,7 +160,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Chcesz usunąć tę wiadomość?" @@ -177,13 +178,13 @@ msgstr "Szukaj grup" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "obserwatorzy" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Brak dostępu" @@ -212,7 +213,7 @@ msgid "Support" msgstr "Wsparcie" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -279,8 +280,8 @@ msgstr "Grupa dyskusyjna" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "wysyłanie" @@ -364,13 +365,13 @@ msgstr "Przestań obserwować" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "pokaż jeszcze jedną wiadomość" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -432,7 +433,6 @@ msgstr "Powiadomienie systemowe" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partner" @@ -485,7 +485,7 @@ msgstr "Wyślij" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "Brak obserwatorów" @@ -516,8 +516,8 @@ msgstr "Archiwum" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Usuń ten załącznik" @@ -532,7 +532,7 @@ msgstr "Odpowiedz" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Jeden obserwator" @@ -590,7 +590,7 @@ msgstr "Odbiorcy" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -684,7 +684,7 @@ msgid "Move to Inbox" msgstr "Przejdź do przychodzącej" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Odp:" @@ -713,7 +713,7 @@ msgstr "Model następnego zasobu" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "lubię" @@ -761,7 +761,7 @@ msgid "on" msgstr "na" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -838,7 +838,7 @@ msgid "Send Now" msgstr "Wyślij teraz" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -860,7 +860,7 @@ msgstr "Zdjęcie" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -971,7 +971,7 @@ msgstr "Powiadomienie" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Uzupełnij informacje o partnerze" @@ -1138,7 +1138,7 @@ msgstr "Rozszerzone filtry..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Do:" @@ -1162,7 +1162,7 @@ msgstr "Domyślne" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "pokaż więcej wiadomości" @@ -1219,7 +1219,7 @@ msgstr "Oznaczone gwiazdką" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "więcej wiadomości" @@ -1301,7 +1301,7 @@ msgstr "Wiadomość oznaczona gwiazdką, która wejdzie do skrzynki Do zrobienia #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1348,8 +1348,8 @@ msgstr "Cała firma" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1367,7 +1367,7 @@ msgstr "Miesiąc tworzenia" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Utwórz nową wiadomość" @@ -1456,7 +1456,7 @@ msgid "Outgoing mail server" msgstr "Serwer poczty wychodzącej" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "Nie znaleziono adresów partnerów" @@ -1532,7 +1532,7 @@ msgstr "Ustaw z powrotem na Do zrobienia" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "tego dokumentu" @@ -1568,7 +1568,7 @@ msgstr "Wiadomości" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "inni..." @@ -1654,7 +1654,7 @@ msgstr "Powiązany model dokumentu" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "nie lubię" diff --git a/addons/mail/i18n/pt.po b/addons/mail/i18n/pt.po index b36061318f0..47d521383c2 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Autor" @@ -128,7 +129,7 @@ msgstr "" #. module: mail #: field:mail.message.subtype,parent_id:0 msgid "Parent" -msgstr "" +msgstr "Ascendente" #. module: mail #: field:mail.group,message_unread:0 @@ -139,7 +140,7 @@ msgstr "Mensagens por ler" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "mostrar" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Deseja mesmo apagar esta mensagem?" @@ -162,7 +163,7 @@ msgstr "Deseja mesmo apagar esta mensagem?" #: view:mail.message:0 #: field:mail.notification,read:0 msgid "Read" -msgstr "" +msgstr "Ler" #. module: mail #: view:mail.group:0 @@ -171,13 +172,13 @@ msgstr "Pesquisar grupos" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Acesso negado" @@ -203,7 +204,7 @@ msgid "Support" msgstr "Suporte" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "Grupo de discussão" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "a enviar" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "mostrar mais uma mensagem" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "Notificação do sistema" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Parceiro" @@ -429,7 +429,7 @@ msgstr "Assunto" #. module: mail #: field:mail.wizard.invite,partner_ids:0 msgid "Partners" -msgstr "" +msgstr "Parceiros" #. module: mail #: view:mail.mail:0 @@ -464,10 +464,10 @@ msgstr "Enviar" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" -msgstr "" +msgstr "Sem seguidores" #. module: mail #: view:mail.mail:0 @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Apagar este anexo" @@ -511,7 +511,7 @@ msgstr "Responder" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Um seguidor" @@ -566,7 +566,7 @@ msgstr "Destinatários" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -586,7 +586,7 @@ msgstr "Grupo autorizado" #. module: mail #: view:mail.group:0 msgid "Join Group" -msgstr "" +msgstr "Juntar-se ao grupo" #. module: mail #: help:mail.mail,email_from:0 @@ -597,7 +597,7 @@ msgstr "" #: code:addons/mail/wizard/invite.py:40 #, python-format msgid "
You have been invited to follow a new document.
" -msgstr "" +msgstr "
Foi convidado para seguir um novo documento.
" #. module: mail #: field:mail.compose.message,parent_id:0 @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "Enviar Agora" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -853,7 +853,7 @@ msgstr "" #. module: mail #: field:mail.alias,alias_user_id:0 msgid "Owner" -msgstr "" +msgstr "Proprietário" #. module: mail #: model:ir.model,name:mail.model_res_users @@ -923,7 +923,7 @@ msgstr "Notificação" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "Filtros Avançados..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Para:" @@ -1100,7 +1100,7 @@ msgstr "Predefinido" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "mais mensagens" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1283,8 +1283,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1302,7 +1302,7 @@ msgstr "Mês de Criação" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1387,7 +1387,7 @@ msgid "Outgoing mail server" msgstr "Servidor de Outgoing mail" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1455,7 +1455,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "este documento" @@ -1489,7 +1489,7 @@ msgstr "Mensagens" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "outros..." @@ -1561,7 +1561,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,composition_mode:0 msgid "Composition mode" -msgstr "" +msgstr "Modo de composição" #. module: mail #: field:mail.compose.message,model:0 @@ -1573,7 +1573,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/pt_BR.po b/addons/mail/i18n/pt_BR.po index 5645d15e121..bd3872ce529 100644 --- a/addons/mail/i18n/pt_BR.po +++ b/addons/mail/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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -30,6 +30,7 @@ msgstr "Contrato de Serviço" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Autor" @@ -144,7 +145,7 @@ msgstr "Mensagens não lidas" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "mostrar" @@ -160,7 +161,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Deseja realmente excluir esta mensagem?" @@ -178,13 +179,13 @@ msgstr "Procurar grupos" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "seguidores" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Acesso Negado" @@ -213,7 +214,7 @@ msgid "Support" msgstr "Suporte" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -280,8 +281,8 @@ msgstr "Grupo de discussão" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "enviando" @@ -369,13 +370,13 @@ msgstr "Não Participar" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "mostrar mais uma mensagem" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -437,7 +438,6 @@ msgstr "Notificação do sistema" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Parceiro" @@ -490,7 +490,7 @@ msgstr "Enviar" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "Sem seguidores" @@ -521,8 +521,8 @@ msgstr "Arquivos" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Excluir este anexo" @@ -537,7 +537,7 @@ msgstr "Responder" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "Um seguidor" @@ -595,7 +595,7 @@ msgstr "Destinatários" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -689,7 +689,7 @@ msgid "Move to Inbox" msgstr "Mover para Caixa de Entrada" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -718,7 +718,7 @@ msgstr "Modelo do recurso seguido" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "curtir" @@ -766,7 +766,7 @@ msgid "on" msgstr "em" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -846,7 +846,7 @@ msgid "Send Now" msgstr "Enviar Agora" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -870,7 +870,7 @@ msgstr "Foto" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -984,7 +984,7 @@ msgstr "Notificação" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Por favor complete as informações do parceiro" @@ -1154,7 +1154,7 @@ msgstr "Filtros Extendidos..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Para:" @@ -1178,7 +1178,7 @@ msgstr "Padrão" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "mostrar mais mensagens" @@ -1237,7 +1237,7 @@ msgstr "Favoritos" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "mais mensagens" @@ -1324,7 +1324,7 @@ msgstr "Mensagem marcada que irá para a caixa de A Fazer" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1372,8 +1372,8 @@ msgstr "Toda a Empresa" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1391,7 +1391,7 @@ msgstr "Mês de Criação" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Escrever nova Mensagem" @@ -1480,7 +1480,7 @@ msgid "Outgoing mail server" msgstr "Servidor de envio" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "Endereço de e-mail do parceiro não encontrado" @@ -1557,7 +1557,7 @@ msgstr "Devolver a A Fazer" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "este documento" @@ -1593,7 +1593,7 @@ msgstr "Mensagens" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "outros..." @@ -1681,10 +1681,10 @@ msgstr "Modelo de Documento Relacionado" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" -msgstr "curtir (desfazer)" +msgstr "curtiu" #. module: mail #: help:mail.compose.message,author_id:0 diff --git a/addons/mail/i18n/ro.po b/addons/mail/i18n/ro.po index 6a9911a6efa..86f06242a64 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract (contract. garantie_editor)" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Autor" @@ -57,13 +58,13 @@ msgstr "Comentarii" #: view:mail.alias:0 #: view:mail.mail:0 msgid "Group By..." -msgstr "Grupeaza dupa..." +msgstr "Grupează după..." #. module: mail #: help:mail.compose.message,body:0 #: help:mail.message,body:0 msgid "Automatically sanitized HTML contents" -msgstr "Continuturi HTML cenzurate automat" +msgstr "Conținuturi HTML cenzurate automat" #. module: mail #: help:mail.alias,alias_name:0 @@ -71,7 +72,7 @@ msgid "" "The name of the email alias, e.g. 'jobs' if you want to catch emails for " "" msgstr "" -"Numele email-ului alias, de exemplu 'locuri de munca' daca doriti sa primiti " +"Numele email-ului alias, de exemplu 'locuri de muncă' dacă doriți să primiți " "email-uri pentru " #. module: mail @@ -100,12 +101,12 @@ msgstr "Public" #. module: mail #: view:mail.mail:0 msgid "Body" -msgstr "Corp" +msgstr "Conținut" #. module: mail #: view:mail.message:0 msgid "Show messages to read" -msgstr "Afiseaza mesajele de citit" +msgstr "Afișează mesajele de citit" #. module: mail #: help:mail.compose.message,email_from:0 @@ -114,8 +115,8 @@ msgid "" "Email address of the sender. This field is set when no matching partner is " "found for incoming emails." msgstr "" -"Adresa de email a expeditorului. Acest camp este setat atunci cand nu este " -"gasit nici un partener care sa se potriveasca email-urilor primite." +"Adresa de email a expeditorului. Acest câmp este setat atunci când nu este " +"găsit nici un partener care sa se potrivească email-urilor primite." #. module: mail #: model:ir.model,name:mail.model_mail_compose_message @@ -127,7 +128,7 @@ msgstr "Wizardul de compunere email-uri" #: code:addons/mail/static/src/xml/mail_followers.xml:23 #, python-format msgid "Add others" -msgstr "Adauga altele" +msgstr "Adaugă altele" #. module: mail #: field:mail.message.subtype,parent_id:0 @@ -139,14 +140,14 @@ msgstr "Principal" #: field:mail.thread,message_unread:0 #: field:res.partner,message_unread:0 msgid "Unread Messages" -msgstr "Mesaje Necitite" +msgstr "Mesaje necitite" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" -msgstr "afiseaza" +msgstr "afișează" #. module: mail #: help:mail.group,group_ids:0 @@ -154,16 +155,16 @@ msgid "" "Members of those groups will automatically added as followers. Note that " "they will be able to manage their subscription manually if necessary." msgstr "" -"Membrii acelor grupuri vor fi adaugati automat ca persoane interesate. " -"Observati ca ei vor putea sa isi gestioneze manual abonamentul daca este " +"Membrii acelor grupuri vor fi adaugați automat ca persoane interesate. " +"Observați că ei vor putea să își gestioneze manual abonamentul dacă este " "nevoie." #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" -msgstr "Doriti intr-adevar sa stergeti acest mesaj?" +msgstr "Doriți într-adevăr să ștergeți acest mesaj?" #. module: mail #: view:mail.message:0 @@ -174,20 +175,20 @@ msgstr "Citire" #. module: mail #: view:mail.group:0 msgid "Search Groups" -msgstr "Cauta Grupuri" +msgstr "Caută grupuri" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "persoane interesate" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" -msgstr "Acces Interzis" +msgstr "Acces interzis" #. module: mail #: help:mail.group,image_medium:0 @@ -196,24 +197,24 @@ msgid "" "image, with aspect ratio preserved. Use this field in form views or some " "kanban views." msgstr "" -"Fotografie de dimensiune medie a grupului. Este redimensionata automat ca o " -"imagine de 128x128px, cu formatul imaginii pastrat. Utilizati acest camp in " -"vizualizarile formularului sau in unele vizualizari kanban." +"Fotografie de dimensiune medie a grupului. Este redimensionată automat ca o " +"imagine de 128x128px, cu formatul imaginii păstrat. Utilizați acest câmp în " +"vizualizările formularului sau în unele vizualizări kanban." #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:212 #, python-format msgid "Uploading error" -msgstr "Eroare incarcare" +msgstr "Eroare încărcare" #. module: mail #: model:mail.group,name:mail.group_support msgid "Support" -msgstr "Asistenta" +msgstr "Asistență" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -221,10 +222,10 @@ msgid "" "\n" "(Document type: %s, Operation: %s)" msgstr "" -"Operatiunea solicitata nu poate fi finalizata din cauza restrictiilor de " -"securitate. Va rugam sa contactati administratorul de sistem.\n" +"Operațiunea solicitată nu poate fi finalizată din cauza restricțiilor de " +"securitate. Vă rugăm să contactați administratorul de sistem.\n" "\n" -"(Tip de document: %s, Operatiune: %s)" +"(Tip de document: %s, Operațiune: %s)" #. module: mail #: view:mail.mail:0 @@ -259,12 +260,12 @@ msgstr "Domeniu Alias" #. module: mail #: field:mail.group,group_ids:0 msgid "Auto Subscription" -msgstr "Abonare Automata" +msgstr "Abonare automată" #. module: mail #: field:mail.mail,references:0 msgid "References" -msgstr "Referinte" +msgstr "Referințe" #. module: mail #. openerp-web @@ -276,15 +277,15 @@ msgstr "Nici un mesaj." #. module: mail #: model:ir.model,name:mail.model_mail_group msgid "Discussion group" -msgstr "Grup de discutii" +msgstr "Grup de discuții" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" -msgstr "se incarca" +msgstr "se încarcă" #. module: mail #. openerp-web @@ -301,7 +302,7 @@ msgid "" "comment for other messages such as user replies" msgstr "" "Tipul de mesaj: email pentru mesaj email, notificare pentru mesajul sistem, " -"comentariu pentru alte mesaje, cum ar fi raspunsurile utilizatorului" +"comentariu pentru alte mesaje, cum ar fi răspunsurile utilizatorului" #. module: mail #: help:mail.message.subtype,relation_field:0 @@ -310,32 +311,32 @@ msgid "" "automatic subscription on a related document. The field is used to compute " "getattr(related_document.relation_field)." msgstr "" -"Camp utilizat pentru a lega modelul asociat de modelul subtip atunci cand se " -"foloseste abonarea automata pe un document corelat. Acest camp este utilizat " -"pentru a calcula getattr (document_corelat.camp_relatie)." +"Câmp utilizat pentru a lega modelul asociat de modelul subtip atunci când se " +"folosește abonarea automată pe un document corelat. Acest câmp este utilizat " +"pentru a calcula getattr(related_document.relation_field)." #. module: mail #: selection:mail.mail,state:0 msgid "Cancelled" -msgstr "Anulat(a)" +msgstr "Anulat(ă)" #. module: mail #: field:mail.mail,reply_to:0 msgid "Reply-To" -msgstr "Raspunde" +msgstr "Răspunde" #. module: mail #: code:addons/mail/wizard/invite.py:37 #, python-format msgid "
You have been invited to follow %s.
" -msgstr "
Ati fost invitat sa urmati %s.
" +msgstr "
Ați fost invitat să urmăți %s.
" #. 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 "Daca este selectat, mesajele noi necesita atentia dumneavoastra." +msgstr "Dacă este selectat, mesajele noi necesită atenția dumneavoastră." #. module: mail #: field:mail.group,image_medium:0 @@ -346,17 +347,17 @@ msgstr "Fotografie de dimensiune medie" #: model:ir.actions.client,name:mail.action_mail_to_me_feeds #: model:ir.ui.menu,name:mail.mail_tomefeeds msgid "To: me" -msgstr "Pentru:mine" +msgstr "Pentru: mine" #. module: mail #: field:mail.message.subtype,name:0 msgid "Message Type" -msgstr "Tipul Mesajului" +msgstr "Tipul mesajului" #. module: mail #: field:mail.mail,auto_delete:0 msgid "Auto Delete" -msgstr "Sterge Automat" +msgstr "Șterge automat" #. module: mail #. openerp-web @@ -364,21 +365,21 @@ msgstr "Sterge Automat" #: view:mail.group:0 #, python-format msgid "Unfollow" -msgstr "Nu urmati" +msgstr "Nu urmați" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" -msgstr "afiseaza inca un mesaj" +msgstr "afișează încă un mesaj" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" -msgstr "Actiune Nevalida!" +msgstr "Acțiune nevalidă!" #. module: mail #. openerp-web @@ -398,7 +399,7 @@ msgstr "Email-uri" #. module: mail #: field:mail.followers,partner_id:0 msgid "Related Partner" -msgstr "Partener Asociat" +msgstr "Partener asociat" #. module: mail #: help:mail.group,message_summary:0 @@ -426,17 +427,16 @@ msgstr "" #. module: mail #: field:mail.message.subtype,relation_field:0 msgid "Relation field" -msgstr "Camp relatie" +msgstr "Câmp relație" #. module: mail #: selection:mail.compose.message,type:0 #: selection:mail.message,type:0 msgid "System notification" -msgstr "Sistem de instiintare" +msgstr "Sistem de înștiințare" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partener" @@ -459,7 +459,7 @@ msgstr "Parteneri" #. module: mail #: view:mail.mail:0 msgid "Retry" -msgstr "Incearca din nou" +msgstr "Reîncearcă" #. module: mail #: field:mail.compose.message,email_from:0 @@ -489,15 +489,15 @@ msgstr "Trimite" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" -msgstr "Nici o persoana interesata" +msgstr "Nici o persoană interesată" #. module: mail #: view:mail.mail:0 msgid "Failed" -msgstr "Esuat" +msgstr "Eșuat" #. module: mail #. openerp-web @@ -520,11 +520,11 @@ msgstr "Arhive" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" -msgstr "Sterge acest atasament" +msgstr "Șterge acest atașament" #. module: mail #. openerp-web @@ -532,14 +532,14 @@ msgstr "Sterge acest atasament" #: view:mail.mail:0 #, python-format msgid "Reply" -msgstr "Raspunde" +msgstr "Răspunde" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" -msgstr "O persoana interesata" +msgstr "O persoană interesată" #. module: mail #: field:mail.compose.message,type:0 @@ -573,7 +573,7 @@ msgstr "Valori Implicite" #: code:addons/mail/res_users.py:89 #, python-format msgid "%s has joined the %s network." -msgstr "%s s-a alaturat retelei %s." +msgstr "%s s-a alăturat rețelei %s." #. module: mail #: help:mail.group,image_small:0 @@ -594,7 +594,7 @@ msgstr "Destinatari" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -614,24 +614,24 @@ msgstr "Grup Autorizat" #. module: mail #: view:mail.group:0 msgid "Join Group" -msgstr "Alaturati-va Grupului" +msgstr "Alaturați-vă grupului" #. module: mail #: help:mail.mail,email_from:0 msgid "Message sender, taken from user preferences." -msgstr "Expeditorul mesajului, luat din preferintele utilizatorului." +msgstr "Expeditorul mesajului, luat din preferințele utilizatorului." #. module: mail #: code:addons/mail/wizard/invite.py:40 #, python-format msgid "
You have been invited to follow a new document.
" -msgstr "
Ati fost invitat sa urmariti un document nou.
" +msgstr "
Ați fost invitat să urmăriți un document nou.
" #. module: mail #: field:mail.compose.message,parent_id:0 #: field:mail.message,parent_id:0 msgid "Parent Message" -msgstr "Mesaj Principal" +msgstr "Mesaj principal" #. module: mail #: field:mail.compose.message,res_id:0 @@ -685,10 +685,10 @@ msgstr "Avansat" #: code:addons/mail/static/src/xml/mail.xml:244 #, python-format msgid "Move to Inbox" -msgstr "Muta in Inbox" +msgstr "Mută în Inbox" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -717,23 +717,23 @@ msgstr "Modelul resursei urmate" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" -msgstr "ca si" +msgstr "ca și" #. module: mail #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 msgid "Cancel" -msgstr "Anuleaza" +msgstr "Anulează" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:47 #, python-format msgid "Share with my followers..." -msgstr "Imparte cu persoanele interesate..." +msgstr "Împarte cu persoanele interesate..." #. module: mail #: field:mail.notification,partner_id:0 @@ -747,7 +747,7 @@ msgid "" " discussions on this group." msgstr "" "Numai persoanele invitate pot citi\n" -" discutiile din acest grup." +" discuțiile din acest grup." #. module: mail #: model:ir.model,name:mail.model_ir_ui_menu @@ -757,7 +757,7 @@ msgstr "ir.ui.meniu" #. module: mail #: view:mail.message:0 msgid "Has attachments" -msgstr "Are atasamente" +msgstr "Are atașamente" #. module: mail #: view:mail.mail:0 @@ -765,14 +765,14 @@ msgid "on" msgstr "activat" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " "address linked :" msgstr "" -"Urmatorii parteneri alesi ca destinatari ai email-ului nu au nici o adresa " -"de email asociata :" +"Următorii parteneri aleși ca destinatari ai email-ului nu au nici o adresă " +"de email asociată :" #. module: mail #: help:mail.alias,alias_defaults:0 @@ -817,28 +817,27 @@ msgid "" " " msgstr "" "

\n" -" Treaba buna! Casuta dumneavoastra postala este " -"goala.\n" +" Bună Treabă! Căsuța dumneavoastră postala este " +"goală.\n" "

\n" -" Casuta dumneavoastra postala contine mesaje sau email-" -"uri personale care v-au fost trimise dumneavoastra,\n" -" precum si informatii legate de documentele sau " -"persoanele pe care\n" -" le urmariti.\n" +" Căsuța dumneavoastră poștala conține mesaje sau email-" +"uri personale care v-au fost trimise dumneavoastră,\n" +" precum și informații legate de documentele sau " +"persoanele pe care le urmăriți.\n" "

\n" " " #. module: mail #: field:mail.mail,notification:0 msgid "Is Notification" -msgstr "Este o Instiintare" +msgstr "Este o înștiințare" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:188 #, python-format msgid "Compose a new message" -msgstr "Compuneti un mesaj nou" +msgstr "Compuneți un mesaj nou" #. module: mail #: view:mail.mail:0 @@ -846,12 +845,12 @@ msgid "Send Now" msgstr "Trimite acum" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." msgstr "" -"Email-ul nu a putut fi trimis, configurati adresa de email a expeditorului " +"Email-ul nu a putut fi trimis, configurați adresa de email a expeditorului " "sau alias." #. module: mail @@ -860,8 +859,8 @@ msgid "" "Email address internally associated with this user. Incoming emails will " "appear in the user's notifications." msgstr "" -"Adresa de email asociata intern cu acest utilizator. Email-urile primite vor " -"apare in instiintarile utilizatorului." +"Adresa de email asociată intern cu acest utilizator. Email-urile primite vor " +"apare în înștiințările utilizatorului." #. module: mail #: field:mail.group,image:0 @@ -870,7 +869,7 @@ msgstr "Fotografie" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -890,7 +889,7 @@ msgid "" "The email address associated with this group. New emails received will " "automatically create new topics." msgstr "" -"Adresa de email asociata cu acest grup. Email-urile noi primite vor crea " +"Adresa de email asociată cu acest grup. Email-urile noi primite vor crea " "automat subiecte noi." #. module: mail @@ -901,7 +900,7 @@ msgstr "Luna" #. module: mail #: view:mail.mail:0 msgid "Email Search" -msgstr "Cautare e-mail" +msgstr "Căutare e-mail" #. module: mail #: field:mail.compose.message,child_ids:0 @@ -932,7 +931,7 @@ msgstr "Mesaj" #: help:mail.followers,res_id:0 #: help:mail.wizard.invite,res_id:0 msgid "Id of the followed resource" -msgstr "Id-ul resursei urmarite" +msgstr "Id-ul resursei urmărite" #. module: mail #: field:mail.compose.message,body:0 @@ -952,8 +951,8 @@ msgid "" "Description that will be added in the message posted for this subtype. If " "void, the name will be added instead." msgstr "" -"Descriere care va fi adaugata in mesajul postat pentru acest subtip. Daca " -"este necompletat, va fi adaugat numele." +"Descriere care va fi adăugată în mesajul postat pentru acest subtip. Dacă " +"este necompletat, va fi adăugat numele." #. module: mail #: field:mail.compose.message,vote_user_ids:0 @@ -971,7 +970,7 @@ msgstr "Grup" #: help:mail.message,starred:0 msgid "Current user has a starred notification linked to this message" msgstr "" -"Utilizatorul actual are o notificare marcata cu asterisc atasata acestui " +"Utilizatorul actual are o notificare marcată cu asterisc atașată acestui " "mesaj" #. module: mail @@ -986,25 +985,25 @@ msgstr "Notificare" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" -msgstr "Va rugam sa completati informatiile partenerului" +msgstr "Vă rugăm să completați informațiile partenerului" #. module: mail #: view:mail.wizard.invite:0 msgid "Add Followers" -msgstr "Adauga Urmariri" +msgstr "Adaugă urmăriri" #. module: mail #: view:mail.compose.message:0 msgid "Followers of selected items and" -msgstr "Urmariri ale elementelor selectate si" +msgstr "Urmăriri ale elementelor selectate și" #. module: mail #: field:mail.alias,alias_force_thread_id:0 msgid "Record Thread ID" -msgstr "ID Inregistrare Fir" +msgstr "ID Înregistrare Fir" #. module: mail #: model:ir.ui.menu,name:mail.mail_group_root @@ -1024,11 +1023,11 @@ msgid "" " " msgstr "" "

\n" -" Nici un mesaj gasit si nici un mesaj trimis inca.\n" +" Nici un mesaj găsit și nici un mesaj trimis încă.\n" "

\n" " Clic pe pictograma din partea dreapta sus pentru a " "compune un mesaj. Acest\n" -" mesaj va fi trimis prin email daca este un contact " +" mesaj va fi trimis prin email dacă este un contact " "intern.\n" "

\n" " " @@ -1043,18 +1042,18 @@ msgstr "Status" #: view:mail.mail:0 #: selection:mail.mail,state:0 msgid "Outgoing" -msgstr "Iesire" +msgstr "Ieșire" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "All feeds" -msgstr "Toate stirile" +msgstr "Toate știrile" #. module: mail #: help:mail.compose.message,record_name:0 #: help:mail.message,record_name:0 msgid "Name get of the related document." -msgstr "Obtine numele documentului asociat" +msgstr "Obține numele documentului asociat" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_notifications @@ -1065,12 +1064,12 @@ msgstr "Obtine numele documentului asociat" #: field:mail.message,notification_ids:0 #: view:mail.notification:0 msgid "Notifications" -msgstr "Notificari" +msgstr "Notificări" #. module: mail #: view:mail.alias:0 msgid "Search Alias" -msgstr "Cauta Alias" +msgstr "Caută Alias" #. module: mail #: help:mail.alias,alias_force_thread_id:0 @@ -1079,9 +1078,9 @@ msgid "" "attached, even if they did not reply to it. If set, this will disable the " "creation of new records completely." msgstr "" -"Id-ul optional al unei inregistrari la care vor fi atasate toate mesajele " -"primite, chiar daca nu i-au raspuns. Daca este setat, acesta va dezactiva " -"complet crearea de inregistrari noi." +"Id-ul optional al unei înregistrări la care vor fi atașate toate mesajele " +"primite, chiar dacă nu i-au răspuns. Dacă este setat, acesta va dezactiva " +"complet crearea de înregistrări noi." #. module: mail #: help:mail.message.subtype,name:0 @@ -1092,21 +1091,21 @@ msgid "" "subtypes allow to precisely tune the notifications the user want to receive " "on its wall." msgstr "" -"Subtipul de mesaj ofera un tip mai exact al mesajului, mai ales pentru " -"instiintarile de sistem. De exemplu, poate fi o instiintare asociata unei " -"inregistrari noi (Nou), sau unei modificari a etapelor intr-un proces " -"(Modificare Etapa). Subtipurile de mesaje permit reglarea instiintarilor pe " -"care utilizatorul doreste sa le primeasca." +"Subtipul de mesaj oferă un tip mai exact al mesajului, mai ales pentru " +"înștiințările de sistem. De exemplu, poate fi o înștiințare asociată unei " +"înregistrări noi (Nou), sau unei modificări a etapelor într-un proces " +"(Modificare Etapă). Subtipurile de mesaje permit reglarea înștiințărilor pe " +"care utilizatorul dorește să le primească." #. module: mail #: view:mail.mail:0 msgid "by" -msgstr "de catre" +msgstr "de câtre" #. module: mail #: model:mail.group,name:mail.group_best_sales_practices msgid "Best Sales Practices" -msgstr "Cele mai Bune Practici de Vanzari" +msgstr "Cele mai Bune Practici de Vânzări" #. module: mail #: selection:mail.group,public:0 @@ -1118,7 +1117,7 @@ msgstr "Numai Grupul Selectat" #: field:mail.thread,message_is_follower:0 #: field:res.partner,message_is_follower:0 msgid "Is a Follower" -msgstr "Este o persoana interesata" +msgstr "Este o persoană interesată" #. module: mail #: view:mail.alias:0 @@ -1134,7 +1133,7 @@ msgstr "Grupuri" #. module: mail #: view:mail.message:0 msgid "Messages Search" -msgstr "Cautare Mesaje" +msgstr "Căutare Mesaje" #. module: mail #: field:mail.compose.message,date:0 @@ -1156,10 +1155,10 @@ msgstr "Filtre Extinse..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" -msgstr "Catre:" +msgstr "Către:" #. module: mail #. openerp-web @@ -1180,42 +1179,42 @@ msgstr "Implicit" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" -msgstr "arata mai multe mesaje" +msgstr "arată mai multe mesaje" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail.xml:246 #, python-format msgid "Mark as Todo" -msgstr "Marcheaza De efectuat" +msgstr "Marchează De efectuat" #. module: mail #: help:mail.message.subtype,parent_id:0 msgid "Parent subtype, used for automatic subscription." -msgstr "Subtip principal, utilizat pentru abonarea automata." +msgstr "Subtip principal, utilizat pentru abonarea automată." #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite msgid "Invite wizard" -msgstr "Wizard Invitatie" +msgstr "Wizard invitație" #. module: mail #: field:mail.group,message_summary:0 #: field:mail.thread,message_summary:0 #: field:res.partner,message_summary:0 msgid "Summary" -msgstr "Continut" +msgstr "Rezumat" #. module: mail #: help:mail.message.subtype,res_model:0 msgid "" "Model the subtype applies to. If False, this subtype applies to all models." msgstr "" -"Modelul caruia i se aplica subtipul. Daca este setat pe Fals, acest subtip " -"se aplica tuturor modelelor." +"Modelul căruia i se aplică subtipul. Dacă este setat pe Fals, acest subtip " +"se aplică tuturor modelelor." #. module: mail #: field:mail.compose.message,subtype_id:0 @@ -1239,7 +1238,7 @@ msgstr "Marcat cu asterisc" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "mai multe mesaje" @@ -1255,14 +1254,14 @@ msgstr "Eroare" #: code:addons/mail/static/src/xml/mail_followers.xml:13 #, python-format msgid "Following" -msgstr "urmarind" +msgstr "Urmărind" #. module: mail #: sql_constraint:mail.alias:0 msgid "" "Unfortunately this email alias is already used, please choose a unique one" msgstr "" -"Din nefericire, acest alias de email este deja folosit, alegeti unul unic" +"Din nefericire, acest alias de email este deja folosit, alegeți unul unic" #. module: mail #: help:mail.alias,alias_user_id:0 @@ -1272,18 +1271,18 @@ msgid "" "the sender (From) address, or will use the Administrator account if no " "system user is found for that address." msgstr "" -"Detinatorul inregistrarilor create la primirea de email-uri in acest alias. " -"Daca acest camp nu este setat, sistemul va incerca sa gaseasca proprietarul " +"Deținătorul înregistrărilor create la primirea de email-uri în acest alias. " +"Dacă acest câmp nu este setat, sistemul va încerca să găsească proprietarul " "potrivit pe baza adresei expeditorului (De la), sau va folosi Contul " -"Administrator daca nu este gasit un utilizator al sistemului pentru acea " -"adresa." +"Administrator dacă nu este găsit un utilizator al sistemului pentru acea " +"adresă." #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:52 #, python-format msgid "And" -msgstr "Si" +msgstr "Și" #. module: mail #: field:mail.compose.message,message_id:0 @@ -1297,7 +1296,7 @@ msgid "" "This field holds the image used as photo for the group, limited to " "1024x1024px." msgstr "" -"Acest camp contine imaginea utilizata ca fotografie a grupului, limitata la " +"Acest câmp conține imaginea utilizată ca fotografie a grupului, limitata la " "1024x1024 pixeli." #. module: mail @@ -1305,13 +1304,13 @@ msgstr "" #: view:mail.mail:0 #: field:mail.message,attachment_ids:0 msgid "Attachments" -msgstr "Atasamente" +msgstr "Atașamente" #. module: mail #: field:mail.compose.message,record_name:0 #: field:mail.message,record_name:0 msgid "Message Record Name" -msgstr "Numele Inregistrarii Mesajului" +msgstr "Numele Înregistrării Mesajului" #. module: mail #: field:mail.mail,email_cc:0 @@ -1321,26 +1320,26 @@ msgstr "Cc (copie carbon)" #. module: mail #: help:mail.notification,starred:0 msgid "Starred message that goes into the todo mailbox" -msgstr "Mesaj marcat cu asterisc care ajunge in cutia postala de efectuat" +msgstr "Mesaj marcat cu asterisc care ajunge în cutia poștala de efectuat" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" -msgstr "Adepti ai" +msgstr "Adepți ai" #. module: mail #: help:mail.mail,auto_delete:0 msgid "Permanently delete this email after sending it, to save space" msgstr "" -"Sterge definitiv acest mesaj dupa ce il trimite, pentru a economisi spatiu" +"Șterge definitiv acest mesaj după ce il trimite, pentru a economisi spațiu" #. module: mail #: model:ir.actions.client,name:mail.action_mail_group_feeds msgid "Discussion Group" -msgstr "Grup de Discutii" +msgstr "Grup de Discuții" #. module: mail #. openerp-web @@ -1352,14 +1351,14 @@ msgstr "Efectuat" #. module: mail #: model:mail.message.subtype,name:mail.mt_comment msgid "Discussions" -msgstr "Discutii" +msgstr "Discuții" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:11 #, python-format msgid "Follow" -msgstr "Urmarire" +msgstr "Urmărire" #. module: mail #: field:mail.group,name:0 @@ -1369,16 +1368,16 @@ msgstr "Nume" #. module: mail #: model:mail.group,name:mail.group_all_employees msgid "Whole Company" -msgstr "Intreaga Companie" +msgstr "Întreaga Companie" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" -msgstr "si" +msgstr "și" #. module: mail #: help:mail.mail,body_html:0 @@ -1392,7 +1391,7 @@ msgstr "Creare Luna" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Compune un Mesaj nou" @@ -1405,18 +1404,18 @@ msgstr "Meniu Asociat" #. module: mail #: view:mail.message:0 msgid "Content" -msgstr "Cuprins" +msgstr "Conținut" #. module: mail #: field:mail.mail,email_to:0 msgid "To" -msgstr "Catre" +msgstr "Către" #. module: mail #: field:mail.compose.message,notified_partner_ids:0 #: field:mail.message,notified_partner_ids:0 msgid "Notified partners" -msgstr "Parteneri instiintati" +msgstr "Parteneri înștiințați" #. module: mail #: help:mail.group,public:0 @@ -1424,13 +1423,13 @@ msgid "" "This group is visible by non members. Invisible groups can add " "members through the invite button." msgstr "" -"Acest grup este vizibil pentru non membri. Grupurile invizibile pot adauga " +"Acest grup este vizibil pentru non membri. Grupurile invizibile pot adăuga " "membri prin butonul de invitare." #. module: mail #: model:mail.group,name:mail.group_board msgid "Board meetings" -msgstr "Sedintele consiliului" +msgstr "Sedințele consiliului" #. module: mail #: constraint:mail.alias:0 @@ -1438,8 +1437,8 @@ msgid "" "Invalid expression, it must be a literal python dictionary definition e.g. " "\"{'field': 'value'}\"" msgstr "" -"Expresie nevalida, trebuie sa fie o definitie literala din dictionarul " -"python, de exemplu \"{'field': 'value'}\" ( \"{'camp': 'valoare'}\"" +"Expresie nevalidă, trebuie să fie o definiție literală din dicționarul " +"python, de exemplu \"{'camp': 'valoare'}\"" #. module: mail #: field:mail.alias,alias_model_id:0 @@ -1461,19 +1460,19 @@ msgstr "Descriere" #. module: mail #: model:ir.model,name:mail.model_mail_followers msgid "Document Followers" -msgstr "Urmariri Document" +msgstr "Urmăriri Document" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:35 #, python-format msgid "Remove this follower" -msgstr "Sterge aceasta urmarire" +msgstr "Șterge această urmărire" #. module: mail #: selection:res.partner,notification_email_send:0 msgid "Never" -msgstr "Niciodata" +msgstr "Niciodată" #. module: mail #: field:mail.mail,mail_server_id:0 @@ -1481,10 +1480,10 @@ msgid "Outgoing mail server" msgstr "Server trimitere e-mail-uri" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" -msgstr "Nu au fost gasite adresele de emai ale partenerilor" +msgstr "Nu au fost găsite adresele de email ale partenerilor" #. module: mail #: view:mail.mail:0 @@ -1495,7 +1494,7 @@ msgstr "Trimis" #. module: mail #: field:mail.mail,body_html:0 msgid "Rich-text Contents" -msgstr "Cuprins Rich-text" +msgstr "Conținut Rich-text" #. module: mail #: help:mail.compose.message,to_read:0 @@ -1515,7 +1514,7 @@ msgstr "" #: model:ir.actions.act_window,name:mail.action_view_groups #: model:ir.ui.menu,name:mail.mail_allgroups msgid "Join a group" -msgstr "Alaturati-va unui grup" +msgstr "Alaturați-vă unui grup" #. module: mail #: model:ir.actions.client,help:mail.action_mail_group_feeds @@ -1555,11 +1554,11 @@ msgstr "" #: code:addons/mail/static/src/xml/mail.xml:243 #, python-format msgid "Set back to Todo" -msgstr "Setati inapoi pe De efectuat" +msgstr "Setați înapoi pe De efectuat" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "documentul acesta" @@ -1572,7 +1571,7 @@ msgstr "Filtre" #. module: mail #: field:res.partner,notification_email_send:0 msgid "Receive Feeds by Email" -msgstr "Primiti Stiri prin Email" +msgstr "Primiți Știri prin Email" #. module: mail #: help:base.config.settings,alias_domain:0 @@ -1595,7 +1594,7 @@ msgstr "Mesaje" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "altele..." @@ -1604,7 +1603,7 @@ msgstr "altele..." #: model:ir.actions.client,name:mail.action_mail_star_feeds #: model:ir.ui.menu,name:mail.mail_starfeeds msgid "To-do" -msgstr "De facut" +msgstr "De făcut" #. module: mail #: view:mail.alias:0 @@ -1612,7 +1611,7 @@ msgstr "De facut" #: field:mail.group,alias_id:0 #: field:res.users,alias_id:0 msgid "Alias" -msgstr "Alias" +msgstr "" #. module: mail #: model:ir.model,name:mail.model_mail_mail @@ -1652,7 +1651,7 @@ msgid "" "Message subtypes followed, meaning subtypes that will be pushed onto the " "user's Wall." msgstr "" -"Au urmat subtipurile de mesaje, ceea ce inseamna subtipuri trimise " +"Au urmat subtipurile de mesaje, ceea ce înseamnă subtipuri trimise " "utilizatorului." #. module: mail @@ -1660,12 +1659,12 @@ msgstr "" #: help:mail.thread,message_ids:0 #: help:res.partner,message_ids:0 msgid "Messages and communication history" -msgstr "Istoric mesaje si conversatii" +msgstr "Istoric mesaje și conversații" #. module: mail #: help:mail.mail,references:0 msgid "Message references, such as identifiers of previous messages" -msgstr "Referinte mesaj, cum ar fi identificatorii mesajelor precedente" +msgstr "Referințe mesaj, cum ar fi identificatorii mesajelor precedente" #. module: mail #: field:mail.compose.message,composition_mode:0 @@ -1682,7 +1681,7 @@ msgstr "Modelul Documentului Asociat" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "spre deosebire de" @@ -1694,8 +1693,8 @@ msgid "" "Author of the message. If not set, email_from may hold an email address that " "did not match any partner." msgstr "" -"Autorul mesajului. Daca nu este selectat, email_from (expeditor_email) poate " -"sa contina o adresa de email care nu s-a potrivit cu nici un partener." +"Autorul mesajului. Dacă nu este selectat, email_from (expeditor_email) poate " +"să conțină o adresa de email care nu s-a potrivit cu nici un partener." #. module: mail #: help:mail.mail,email_cc:0 @@ -1711,7 +1710,7 @@ msgstr "Doemniu alias" #: code:addons/mail/update.py:93 #, python-format msgid "Error during communication with the publisher warranty server." -msgstr "Eroare in timpul comunicarii cu serverul garantiei editorului." +msgstr "Eroare în timpul comunicării cu serverul garanției editorului." #. module: mail #: selection:mail.group,public:0 @@ -1734,9 +1733,9 @@ msgstr "" "

\n" " Nimic de efectuat.\n" "

\n" -" Atunci cand preocesati mesajele din inbox, puteti marca " +" Atunci când procesați mesajele intrate, puteți marca " "unele\n" -" drept de efectuat. Din acest meniu, puteti " +" drept de efectuat. Din acest meniu, puteți " "procesa toate lucrurile de efectuat.\n" "

\n" " " @@ -1744,7 +1743,7 @@ msgstr "" #. module: mail #: selection:mail.mail,state:0 msgid "Delivery Failed" -msgstr "Livrarea a esuat" +msgstr "Livrarea a eșuat" #. module: mail #: field:mail.compose.message,partner_ids:0 @@ -1755,7 +1754,7 @@ msgstr "Contacte suplimentare" #: help:mail.compose.message,parent_id:0 #: help:mail.message,parent_id:0 msgid "Initial thread message." -msgstr "Continutul mesajului initial." +msgstr "Conținutul mesajului inițial." #. module: mail #: model:mail.group,name:mail.group_hr_policies @@ -1771,7 +1770,7 @@ msgstr "Doar email-uri" #: model:ir.actions.client,name:mail.action_mail_inbox_feeds #: model:ir.ui.menu,name:mail.mail_inboxfeeds msgid "Inbox" -msgstr "Casuta postala" +msgstr "Casuța poștală" #. module: mail #. openerp-web @@ -1785,7 +1784,7 @@ msgstr "Fisier" #: code:addons/mail/static/src/js/many2many_tags_email.js:63 #, python-format msgid "Please complete partner's informations and Email" -msgstr "Va rugam sa completati informatiile despre partener si Email-ul sau" +msgstr "Vă rugăm să completați informațiile despre partener și Email-ul sau" #. module: mail #: model:ir.actions.act_window,name:mail.action_view_message_subtype @@ -1806,7 +1805,7 @@ msgstr "Fotografie de dimensiuni mici" #. module: mail #: help:mail.mail,reply_to:0 msgid "Preferred response address for the message" -msgstr "Adresa de raspuns preferata pentru mesaj" +msgstr "Adresa de răspuns preferată pentru mesaj" #~ msgid "Details" #~ msgstr "Detalii" diff --git a/addons/mail/i18n/ru.po b/addons/mail/i18n/ru.po index c0ae186a5bd..62fa55d98a7 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Автор" @@ -127,7 +128,7 @@ msgstr "Мастер составления эл. почты" #: code:addons/mail/static/src/xml/mail_followers.xml:23 #, python-format msgid "Add others" -msgstr "Добавить других" +msgstr "Пригласить" #. module: mail #: field:mail.message.subtype,parent_id:0 @@ -143,7 +144,7 @@ msgstr "Непрочитанные сообщения" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "показать" @@ -160,7 +161,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Вы действительно хотите удалить это сообщение?" @@ -178,13 +179,13 @@ msgstr "Поиск групп" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" -msgstr "подписчики" +msgstr "подписано" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Доступ запрещен" @@ -213,7 +214,7 @@ msgid "Support" msgstr "Поддержка" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -280,8 +281,8 @@ msgstr "Дискуссионная группа" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "отправка данных" @@ -311,6 +312,9 @@ msgid "" "automatic subscription on a related document. The field is used to compute " "getattr(related_document.relation_field)." msgstr "" +"Поле, используемое для привязки модели к подтипу модели, когда используется " +"автоматическая подписка на документ. Поле используется для вычисления " +"getattr(related_document.relation_field)." #. module: mail #: selection:mail.mail,state:0 @@ -326,7 +330,7 @@ msgstr "Адрес ответа" #: code:addons/mail/wizard/invite.py:37 #, python-format msgid "
You have been invited to follow %s.
" -msgstr "
Вам было предложено отслеживать %s.
" +msgstr "
Вы были подписаны на %s.
" #. module: mail #: help:mail.group,message_unread:0 @@ -366,13 +370,13 @@ msgstr "Отписаться" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "показать еще одно сообщение" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -416,6 +420,9 @@ 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 "" +"Модель (вид документа), которой соответствует псевдоним. Любое входящее " +"письмо, не соответствующее имеющимся записям, приведет к созданию новой " +"записи в этой модели." #. module: mail #: field:mail.message.subtype,relation_field:0 @@ -430,7 +437,6 @@ msgstr "Системное уведомление" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Партнёр" @@ -483,7 +489,7 @@ msgstr "Отправить" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "Нет подписчиков" @@ -514,8 +520,8 @@ msgstr "Архивы" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Удалить вложение" @@ -530,10 +536,10 @@ msgstr "Ответить" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" -msgstr "Один подписчик" +msgstr "1 подписчик" #. module: mail #: field:mail.compose.message,type:0 @@ -588,7 +594,7 @@ msgstr "Получатели" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -619,7 +625,7 @@ msgstr "Отправитель сообщения, взятый из настр #: code:addons/mail/wizard/invite.py:40 #, python-format msgid "
You have been invited to follow a new document.
" -msgstr "
Вы были приглашены для слежения за новым документом.
" +msgstr "
Вы были подписаны на новый документ.
" #. module: mail #: field:mail.compose.message,parent_id:0 @@ -682,7 +688,7 @@ msgid "Move to Inbox" msgstr "Переместить во входящие" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Ответ:" @@ -711,7 +717,7 @@ msgstr "Модель обсуждаемого ресурса" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "нравится" @@ -759,7 +765,7 @@ msgid "on" msgstr "на" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -774,6 +780,8 @@ msgid "" "A Python dictionary that will be evaluated to provide default values when " "creating new records for this alias." msgstr "" +"Словарь Python, который будет вычислен для получения значений по умолчанию " +"при создании записей для этого псевдонима." #. module: mail #: model:ir.model,name:mail.model_mail_message_subtype @@ -836,7 +844,7 @@ msgid "Send Now" msgstr "Отправить сейчас" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -860,7 +868,7 @@ msgstr "Фото" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -942,6 +950,8 @@ msgid "" "Description that will be added in the message posted for this subtype. If " "void, the name will be added instead." msgstr "" +"Описание, которое будет добавлено в сообщение для этого подтипа. Если не " +"заполнено, вместо него будет использоваться название." #. module: mail #: field:mail.compose.message,vote_user_ids:0 @@ -974,7 +984,7 @@ msgstr "Уведомление" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "Пожалуйста дополните информацию о партнере" @@ -992,7 +1002,7 @@ msgstr "Подписчики выбранных пунктов и" #. module: mail #: field:mail.alias,alias_force_thread_id:0 msgid "Record Thread ID" -msgstr "" +msgstr "ID цепочки записей" #. module: mail #: model:ir.ui.menu,name:mail.mail_group_root @@ -1145,7 +1155,7 @@ msgstr "Расширенные фильтры..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Кому:" @@ -1169,7 +1179,7 @@ msgstr "По умолчанию" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "показать больше сообщений" @@ -1184,7 +1194,7 @@ msgstr "Добавить в список задач" #. module: mail #: help:mail.message.subtype,parent_id:0 msgid "Parent subtype, used for automatic subscription." -msgstr "" +msgstr "Вышестоящий подтип, используемый для автоподписки" #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite @@ -1203,6 +1213,8 @@ msgstr "Описание" msgid "" "Model the subtype applies to. If False, this subtype applies to all models." msgstr "" +"Модель, к которой применяется подтип. Если не выбрано, то применяется ко " +"всем моделям." #. module: mail #: field:mail.compose.message,subtype_id:0 @@ -1226,7 +1238,7 @@ msgstr "Отмеченные" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "больше сообщений" @@ -1260,6 +1272,9 @@ msgid "" "the sender (From) address, or will use the Administrator account if no " "system user is found for that address." msgstr "" +"Владелец записей, созданных по письмам с этим псевдонимом. Если это поле не " +"задано, система попытается найти подходящего владельца на основе отправителя " +"или сделает владельцем администратора." #. module: mail #. openerp-web @@ -1294,7 +1309,7 @@ msgstr "Вложения" #: field:mail.compose.message,record_name:0 #: field:mail.message,record_name:0 msgid "Message Record Name" -msgstr "" +msgstr "Название записи сообщения" #. module: mail #: field:mail.mail,email_cc:0 @@ -1308,7 +1323,7 @@ msgstr "Отмеченное сообщение, которое попадает #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1355,8 +1370,8 @@ msgstr "Вся компания" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1374,7 +1389,7 @@ msgstr "Месяц создания" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Написать новое сообщение" @@ -1406,11 +1421,13 @@ msgid "" "This group is visible by non members. Invisible groups can add " "members through the invite button." msgstr "" +"Эта группа видна для всех. Скрытые группы могут добавлятьчленов через кнопку " +"приглашения." #. module: mail #: model:mail.group,name:mail.group_board msgid "Board meetings" -msgstr "" +msgstr "Совещания" #. module: mail #: constraint:mail.alias:0 @@ -1461,7 +1478,7 @@ msgid "Outgoing mail server" msgstr "Сервер исходящей почты" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "Эл. почта партнера не найдена" @@ -1489,7 +1506,7 @@ msgstr "" #: help:res.partner,notification_email_send:0 msgid "" "Choose in which case you want to receive an email when you receive new feeds." -msgstr "" +msgstr "Выберите в каких случаях Вы хотите получать письма по подписке." #. module: mail #: model:ir.actions.act_window,name:mail.action_view_groups @@ -1538,7 +1555,7 @@ msgstr "Вернуть в список задач" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "этого документа" @@ -1559,6 +1576,8 @@ msgid "" "If you have setup a catch-all email domain redirected to the OpenERP server, " "enter the domain name here." msgstr "" +"Если Вы настроили почтовый домен для перенаправления в OpenERP, введите его " +"имя." #. module: mail #: model:ir.actions.act_window,name:mail.action_view_mail_message @@ -1572,7 +1591,7 @@ msgstr "Сообщения" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "остальные..." @@ -1603,6 +1622,8 @@ msgid "" "Technical field holding the message notifications. Use notified_partner_ids " "to access notified partners." msgstr "" +"Техническое поле, содержащее уведомления. Используйте notified_partner_ids " +"для доступа к оповещаемым партнерам." #. module: mail #: model:ir.ui.menu,name:mail.mail_feeds @@ -1626,7 +1647,7 @@ msgstr "Непрочитанное" msgid "" "Message subtypes followed, meaning subtypes that will be pushed onto the " "user's Wall." -msgstr "" +msgstr "Подтипы сообщений, на которые имеется подписка." #. module: mail #: help:mail.group,message_ids:0 @@ -1655,7 +1676,7 @@ msgstr "Модель связанного документа" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "не нравится" diff --git a/addons/mail/i18n/sl.po b/addons/mail/i18n/sl.po index 8dca991a1e2..2667f22f0ca 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Avtor" @@ -139,7 +140,7 @@ msgstr "Neprebrana sporočila" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "prikaži" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Res želite brisati to sporočilo ?" @@ -171,13 +172,13 @@ msgstr "Iskanje skupin" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "sledilci" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Dostop zavrnjen" @@ -203,7 +204,7 @@ msgid "Support" msgstr "Podpora" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -269,8 +270,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "nalaganje" @@ -352,13 +353,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -414,7 +415,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Stranka" @@ -467,7 +467,7 @@ msgstr "Pošlji" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -498,8 +498,8 @@ msgstr "Arhivi" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Brisanje priponke" @@ -514,7 +514,7 @@ msgstr "Odgovori" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -569,7 +569,7 @@ msgstr "Prejemniki" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -657,7 +657,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -684,7 +684,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "kot" @@ -730,7 +730,7 @@ msgid "on" msgstr "vklopljeno" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -796,7 +796,7 @@ msgid "Send Now" msgstr "Pošlji zdaj" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -816,7 +816,7 @@ msgstr "Fotografija" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -926,7 +926,7 @@ msgstr "Obvestilo" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1079,7 +1079,7 @@ msgstr "Razširjeni filtri..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Za:" @@ -1103,7 +1103,7 @@ msgstr "Privzeto" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1160,7 +1160,7 @@ msgstr "Začeto" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1238,7 +1238,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1285,8 +1285,8 @@ msgstr "Celotno podjetje" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1304,7 +1304,7 @@ msgstr "Mesec kreiranja" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Novo sporočilo" @@ -1389,7 +1389,7 @@ msgid "Outgoing mail server" msgstr "Odhodni SMTP strežnik" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1457,7 +1457,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "ta dokument" @@ -1491,7 +1491,7 @@ msgstr "Sporočila" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "drugi..." @@ -1574,7 +1574,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/sr@latin.po b/addons/mail/i18n/sr@latin.po index 26dac34eda1..d8602da2265 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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "" @@ -464,7 +464,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1282,8 +1282,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1301,7 +1301,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1386,7 +1386,7 @@ msgid "Outgoing mail server" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1454,7 +1454,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1488,7 +1488,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1571,7 +1571,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/sv.po b/addons/mail/i18n/sv.po index 6007819e45d..2ead17b0f09 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "" @@ -139,7 +140,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "" @@ -153,7 +154,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "" @@ -171,13 +172,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "" @@ -203,7 +204,7 @@ msgid "Support" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -266,8 +267,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "" @@ -349,13 +350,13 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -411,7 +412,6 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "Partner" @@ -464,7 +464,7 @@ msgstr "Skicka" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "" @@ -495,8 +495,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "" @@ -511,7 +511,7 @@ msgstr "Besvara" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "" @@ -566,7 +566,7 @@ msgstr "Mottagare" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "" @@ -654,7 +654,7 @@ msgid "Move to Inbox" msgstr "" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -681,7 +681,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "" @@ -727,7 +727,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -793,7 +793,7 @@ msgid "Send Now" msgstr "Skicka nu" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -813,7 +813,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -923,7 +923,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "" @@ -1076,7 +1076,7 @@ msgstr "Utökade filter..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "" @@ -1100,7 +1100,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "" @@ -1157,7 +1157,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "" @@ -1235,7 +1235,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1283,8 +1283,8 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1302,7 +1302,7 @@ msgstr "Månad skapad" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "" @@ -1387,7 +1387,7 @@ msgid "Outgoing mail server" msgstr "Utgående mailserver" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "" @@ -1455,7 +1455,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "" @@ -1489,7 +1489,7 @@ msgstr "Meddelanden" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "" @@ -1572,7 +1572,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/mail/i18n/th.po b/addons/mail/i18n/th.po index a80d1aad14f..5b4d8faedb5 100644 --- a/addons/mail/i18n/th.po +++ b/addons/mail/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-06-30 05:56+0000\n" -"X-Generator: Launchpad (build 16692)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/tr.po b/addons/mail/i18n/tr.po index 23dbab8d404..54bd4e55723 100644 --- a/addons/mail/i18n/tr.po +++ b/addons/mail/i18n/tr.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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 msgid "Followers Form" -msgstr "Takipçi Formu" +msgstr "İzleyici Kartı" #. module: mail #: model:ir.model,name:mail.model_publisher_warranty_contract @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "Yazan" @@ -132,7 +133,7 @@ msgstr "Diğerlerini ekle" #. module: mail #: field:mail.message.subtype,parent_id:0 msgid "Parent" -msgstr "Ana" +msgstr "Üst" #. module: mail #: field:mail.group,message_unread:0 @@ -143,7 +144,7 @@ msgstr "Okunmamış Mesajlar" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "göster" @@ -159,7 +160,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "Bu mesajı gerçekten silmek istediğinizden emin misiniz?" @@ -177,13 +178,13 @@ msgstr "Grupları Ara" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" -msgstr "takipçiler" +msgstr "izleyiciler" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "Erişim Rededildi" @@ -212,7 +213,7 @@ msgid "Support" msgstr "Destek" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -279,8 +280,8 @@ msgstr "Tartışma grubu" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "yükleniyor" @@ -345,7 +346,7 @@ msgstr "Orta boyutlu fotoğraf" #: model:ir.actions.client,name:mail.action_mail_to_me_feeds #: model:ir.ui.menu,name:mail.mail_tomefeeds msgid "To: me" -msgstr "Kime:" +msgstr "Kime: bana" #. module: mail #: field:mail.message.subtype,name:0 @@ -363,17 +364,17 @@ msgstr "Otomatik Sil" #: view:mail.group:0 #, python-format msgid "Unfollow" -msgstr "Takip etme" +msgstr "İzleme" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "bir ya da çok mesaj göster" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -407,8 +408,8 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" -"Sohbetçi özeti (mesaj sayısı, ...) barındırır. Bu özetdoğrudan html " -"formatında sipariş kanban görünümlerinde eklenecek." +"Sohbetçi özetini (mesaj sayısı, ...) barındırır. Bu özet kanban " +"görünümlerine eklenmek üzere doğrudan html biçimindedir." #. module: mail #: help:mail.alias,alias_model_id:0 @@ -434,7 +435,6 @@ msgstr "Sistem bildirimi" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "İş Ortağı" @@ -457,7 +457,7 @@ msgstr "İş Ortakları" #. module: mail #: view:mail.mail:0 msgid "Retry" -msgstr "Tekrar dene" +msgstr "Tekrar Dene" #. module: mail #: field:mail.compose.message,email_from:0 @@ -487,10 +487,10 @@ msgstr "Gönder" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" -msgstr "Takipçi Yok" +msgstr "İzleyici Yok" #. module: mail #: view:mail.mail:0 @@ -508,7 +508,7 @@ msgstr "Başarısız" #: field:res.partner,message_follower_ids:0 #, python-format msgid "Followers" -msgstr "Takipçiler" +msgstr "İzleyiciler" #. module: mail #: model:ir.actions.client,name:mail.action_mail_archives_feeds @@ -518,8 +518,8 @@ msgstr "Arşiv" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "Bu eki sil" @@ -534,10 +534,10 @@ msgstr "Cevapla" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" -msgstr "Bir takipçi" +msgstr "Bir izleyici" #. module: mail #: field:mail.compose.message,type:0 @@ -591,7 +591,7 @@ msgstr "Alıcılar" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -616,19 +616,19 @@ msgstr "Gruba Katıl" #. module: mail #: help:mail.mail,email_from:0 msgid "Message sender, taken from user preferences." -msgstr "Kullanıcı tercihlerine göre ​​alınan mesaj gönderen,." +msgstr "Mesaj gönderen, kullanıcı önceliklerinden ​​alınan." #. module: mail #: code:addons/mail/wizard/invite.py:40 #, python-format msgid "
You have been invited to follow a new document.
" -msgstr "
Sen yeni bir belge takip etmeye davet edildin.
" +msgstr "
Yeni bir belge izlemeye davet edildiniz.
" #. module: mail #: field:mail.compose.message,parent_id:0 #: field:mail.message,parent_id:0 msgid "Parent Message" -msgstr "Ana Mesaj" +msgstr "Üst Mesaj" #. module: mail #: field:mail.compose.message,res_id:0 @@ -682,10 +682,10 @@ msgstr "Gelişmiş" #: code:addons/mail/static/src/xml/mail.xml:244 #, python-format msgid "Move to Inbox" -msgstr "Geleni Taşı" +msgstr "Gelen Kutusuna Taşı" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Yanıt:" @@ -704,17 +704,17 @@ msgid "" "\"Settings > Users\" menu." msgstr "" "Bir kullanıcı oluşturamazsınız. Yeni kullanıcılar oluşturmak için " -"kullanmanız gereken \"Ayarlar > Kullanıcılar\" menü." +"kullanmanız gereken \"Ayarlar > Kullanıcılar\" menüsü." #. module: mail #: help:mail.followers,res_model:0 #: help:mail.wizard.invite,res_model:0 msgid "Model of the followed resource" -msgstr "Takip kaynağın Modeli" +msgstr "İzlenen kaynağın modeli" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "gibi" @@ -730,7 +730,7 @@ msgstr "Vazgeç" #: code:addons/mail/static/src/xml/mail.xml:47 #, python-format msgid "Share with my followers..." -msgstr "Benim takipçilerim ile paylaş ..." +msgstr "İzleyicilerim ile paylaş ..." #. module: mail #: field:mail.notification,partner_id:0 @@ -759,10 +759,10 @@ msgstr "Ekleri var" #. module: mail #: view:mail.mail:0 msgid "on" -msgstr "on" +msgstr "bunda" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -783,14 +783,14 @@ msgstr "" #. module: mail #: model:ir.model,name:mail.model_mail_message_subtype msgid "Message subtypes" -msgstr "Mesaj alt tipleri" +msgstr "Mesaj alt-tipleri" #. module: mail #: help:mail.compose.message,notified_partner_ids:0 #: help:mail.message,notified_partner_ids:0 msgid "" "Partners that have a notification pushing this message in their mailboxes" -msgstr "Bu mesajı posta kutularına itekleme bildirimi olan iş ortakları" +msgstr "Bu mesajı iş ortakları posta kutularına iterek bildirim gönderir" #. module: mail #: selection:mail.compose.message,type:0 @@ -814,12 +814,13 @@ msgid "" " " msgstr "" "

\n" -" Hayırlı İşler! Gelen kutunuz boş.\n" +" İyi İşler! Gelen kutusu boş.\n" "

\n" -" Gelen kutunuz gönderilen özel mesajları veya e-postalar " -"içerir sen\n" -" ayrıca belge veya kontaklarla ilgili bilgilerinide \n" -" takip edersin.\n" +" Gelen kutusu size gönderilen özel mesajları veya e-" +"postaları\n" +" içerir,aynı zamanda izlediğiniz belge ya da kişilerle " +"ilgili \n" +" bilgileri de içerir.\n" "

\n" " " @@ -841,7 +842,7 @@ msgid "Send Now" msgstr "Şimdi Gönder" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -865,7 +866,7 @@ msgstr "Resim" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -927,7 +928,7 @@ msgstr "Mesaj" #: help:mail.followers,res_id:0 #: help:mail.wizard.invite,res_id:0 msgid "Id of the followed resource" -msgstr "Takipçini kayanak ıd si" +msgstr "İzlenen kaynağın Id i" #. module: mail #: field:mail.compose.message,body:0 @@ -979,10 +980,10 @@ msgstr "Bildirimler" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" -msgstr "Komple partnerin bilgisi lütfen" +msgstr "Lütfen iş ortağının bilgilerini tamamlayın" #. module: mail #: view:mail.wizard.invite:0 @@ -992,7 +993,7 @@ msgstr "İzleyici Ekle" #. module: mail #: view:mail.compose.message:0 msgid "Followers of selected items and" -msgstr "Seçilen öğelerin takipçileri ve" +msgstr "Seçilen öğelerin izleyicileri ve" #. module: mail #: field:mail.alias,alias_force_thread_id:0 @@ -1109,7 +1110,7 @@ msgstr "Sadece Grup Seçilmiş" #: field:mail.thread,message_is_follower:0 #: field:res.partner,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçisi mi" +msgstr "Bir İzleyicidir" #. module: mail #: view:mail.alias:0 @@ -1147,7 +1148,7 @@ msgstr "Gelişmiş Filtreler..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "Kime:" @@ -1157,7 +1158,7 @@ msgstr "Kime:" #: code:addons/mail/static/src/xml/mail.xml:193 #, python-format msgid "Write to my followers" -msgstr "Takipçilerin için yaz" +msgstr "İzleyicilerime yaz" #. module: mail #: model:ir.model,name:mail.model_res_groups @@ -1171,7 +1172,7 @@ msgstr "Öntanımlı" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "daha fazla mesaj göster" @@ -1186,7 +1187,7 @@ msgstr "Yapılacak olarak işaretle" #. module: mail #: help:mail.message.subtype,parent_id:0 msgid "Parent subtype, used for automatic subscription." -msgstr "Ana alt tip, otomatik abonelik için kullanılır." +msgstr "Üst alt-tipi, otomatik abonelik için kullanılır." #. module: mail #: model:ir.model,name:mail.model_mail_wizard_invite @@ -1214,7 +1215,7 @@ msgstr "" #: field:mail.message,subtype_id:0 #: view:mail.message.subtype:0 msgid "Subtype" -msgstr "Alttür" +msgstr "Alt-Tür" #. module: mail #: view:mail.group:0 @@ -1230,7 +1231,7 @@ msgstr "Yıldızlı" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "daha fazla mesaj" @@ -1246,7 +1247,7 @@ msgstr "Hata" #: code:addons/mail/static/src/xml/mail_followers.xml:13 #, python-format msgid "Following" -msgstr "Takip" +msgstr "İzleniyor" #. module: mail #: sql_constraint:mail.alias:0 @@ -1314,11 +1315,11 @@ msgstr "Yapılacaklar posta kutusuna giden yıldızlı mesaj" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" -msgstr "Takipçileri" +msgstr "Bunu izleyiciler" #. module: mail #: help:mail.mail,auto_delete:0 @@ -1347,7 +1348,7 @@ msgstr "Tartışmalar" #: code:addons/mail/static/src/xml/mail_followers.xml:11 #, python-format msgid "Follow" -msgstr "takip etme" +msgstr "İzle" #. module: mail #: field:mail.group,name:0 @@ -1357,12 +1358,12 @@ msgstr "Adı" #. module: mail #: model:mail.group,name:mail.group_all_employees msgid "Whole Company" -msgstr "Tüm Firma" +msgstr "Tüm Şirket" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1380,7 +1381,7 @@ msgstr "Oluşturma Ayı" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "Yeni Mesaj Yaz" @@ -1418,7 +1419,7 @@ msgstr "" #. module: mail #: model:mail.group,name:mail.group_board msgid "Board meetings" -msgstr "Yönetim Kurulu toplantıları" +msgstr "Yönetim Kurulu Toplantıları" #. module: mail #: constraint:mail.alias:0 @@ -1449,14 +1450,14 @@ msgstr "Açıklama" #. module: mail #: model:ir.model,name:mail.model_mail_followers msgid "Document Followers" -msgstr "Belge Takipçileri" +msgstr "Belge İzleyicileri" #. module: mail #. openerp-web #: code:addons/mail/static/src/xml/mail_followers.xml:35 #, python-format msgid "Remove this follower" -msgstr "Bu takipçisi kaldır" +msgstr "Bu izleyiciyi kaldır" #. module: mail #: selection:res.partner,notification_email_send:0 @@ -1469,7 +1470,7 @@ msgid "Outgoing mail server" msgstr "Giden mail sunucusu" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "Partnerler e-posta bulunamadı adresleri" @@ -1503,7 +1504,7 @@ msgstr "" #: model:ir.actions.act_window,name:mail.action_view_groups #: model:ir.ui.menu,name:mail.mail_allgroups msgid "Join a group" -msgstr "Bir gruba katılın" +msgstr "Bir Gruba Katılın" #. module: mail #: model:ir.actions.client,help:mail.action_mail_group_feeds @@ -1547,7 +1548,7 @@ msgstr "Yapılacak geri ayarlayın" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "bu belgede" @@ -1583,7 +1584,7 @@ msgstr "Mesajlar" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "digerleri..." @@ -1640,7 +1641,7 @@ msgid "" "Message subtypes followed, meaning subtypes that will be pushed onto the " "user's Wall." msgstr "" -"Mesaj alt tipleri izledi, kullanıcının Duvarına iteklenecek al tipler " +"Mesaj alt tipleri izlendi, kullanıcının Duvarına iteklenecek al tipler " "anlamına gelir." #. module: mail @@ -1670,7 +1671,7 @@ msgstr "İlgili Döküman Modeli" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "farklı" @@ -1722,7 +1723,7 @@ msgstr "" "

\n" " Yapılacak bir şey yok.\n" "

\n" -" Geln kutunuzdaki mesajları işlerken, bazılarını " +" Gelen kutusundaki mesajları işlerken, bazılarını " "yapılacaklar\n" " olarak işaretleyebilirsiniz. Bu menüden, bütün " "yapılacaklarınızı işleyebilirsiniz.\n" @@ -1759,7 +1760,7 @@ msgstr "Sadece E-postalar" #: model:ir.actions.client,name:mail.action_mail_inbox_feeds #: model:ir.ui.menu,name:mail.mail_inboxfeeds msgid "Inbox" -msgstr "Gelenler" +msgstr "Gelen Kutusu" #. module: mail #. openerp-web @@ -1773,13 +1774,13 @@ msgstr "Dosya" #: code:addons/mail/static/src/js/many2many_tags_email.js:63 #, python-format msgid "Please complete partner's informations and Email" -msgstr "Komple partnerin bilgi ve e-posta lütfen" +msgstr "Lütfen iş ortağının bilgilerini ve epostasını tamamlayın" #. 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 "Alttürleri" +msgstr "Alt-Türler" #. module: mail #: model:ir.model,name:mail.model_mail_alias diff --git a/addons/mail/i18n/vi.po b/addons/mail/i18n/vi.po index 9f7569bddf7..052ea4c060f 100644 --- a/addons/mail/i18n/vi.po +++ b/addons/mail/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 diff --git a/addons/mail/i18n/zh_CN.po b/addons/mail/i18n/zh_CN.po index ba839ebc5bd..40395b7f468 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "publisher_warranty.contract" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "作者" @@ -139,7 +140,7 @@ msgstr "未读信息" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "显示" @@ -153,7 +154,7 @@ msgstr "这些群组的成员将自动添加为关注者。注意, 如果有必 #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "你确信要删除这些消息吗?" @@ -171,13 +172,13 @@ msgstr "搜索群组" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "关注者" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "访问被拒绝" @@ -203,7 +204,7 @@ msgid "Support" msgstr "支持" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -269,8 +270,8 @@ msgstr "讨论群组" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "上传中" @@ -352,13 +353,13 @@ msgstr "取消关注" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "显示一个或多个消息" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -414,7 +415,6 @@ msgstr "系统通知" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "业务伙伴" @@ -467,7 +467,7 @@ msgstr "发送" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "没有关注者" @@ -498,8 +498,8 @@ msgstr "存档" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "删除这个附件" @@ -514,7 +514,7 @@ msgstr "回复" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "一个关注者" @@ -569,7 +569,7 @@ msgstr "收件人" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "<<<" @@ -664,7 +664,7 @@ msgid "Move to Inbox" msgstr "移动到收件箱" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "回复:" @@ -691,7 +691,7 @@ msgstr "关注资源的模型" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "+1" @@ -737,7 +737,7 @@ msgid "on" msgstr "在" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -809,7 +809,7 @@ msgid "Send Now" msgstr "现在发送" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -829,7 +829,7 @@ msgstr "照片" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -939,7 +939,7 @@ msgstr "通知" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "请完成上级的信息" @@ -1100,7 +1100,7 @@ msgstr "扩展过滤器..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "到:" @@ -1124,7 +1124,7 @@ msgstr "默认" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "显示更多消息" @@ -1181,7 +1181,7 @@ msgstr "加星的邮件" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "更多消息" @@ -1261,7 +1261,7 @@ msgstr "加星号的消息进入到 待办事项 邮箱" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1308,8 +1308,8 @@ msgstr "整个公司" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1327,7 +1327,7 @@ msgstr "创建月份" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "写新消息" @@ -1412,7 +1412,7 @@ msgid "Outgoing mail server" msgstr "邮件发送服务器" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "合作伙伴邮件地址没找到" @@ -1486,7 +1486,7 @@ msgstr "设置回待办事项" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "这个文档" @@ -1520,7 +1520,7 @@ msgstr "消息" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "其它..." @@ -1603,7 +1603,7 @@ msgstr "相关单据模型" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "-1" diff --git a/addons/mail/i18n/zh_TW.po b/addons/mail/i18n/zh_TW.po index f7b38e9c36c..42add110a6a 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:43+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mail #: view:mail.followers:0 @@ -29,6 +29,7 @@ msgstr "" #. module: mail #: field:mail.compose.message,author_id:0 +#: view:mail.mail:0 #: field:mail.message,author_id:0 msgid "Author" msgstr "作者" @@ -139,7 +140,7 @@ msgstr "未讀郵件" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "show" msgstr "顯示" @@ -153,7 +154,7 @@ msgstr "群組成員將自動成為信件追隨者。需注意的是,必要時 #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:1019 +#: code:addons/mail/static/src/js/mail.js:1029 #, python-format msgid "Do you really want to delete this message?" msgstr "請確認是否刪除此訊息" @@ -171,13 +172,13 @@ msgstr "搜尋群組" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:159 +#: code:addons/mail/static/src/js/mail_followers.js:157 #, python-format msgid "followers" msgstr "關注者" #. module: mail -#: code:addons/mail/mail_message.py:726 +#: code:addons/mail/mail_message.py:737 #, python-format msgid "Access Denied" msgstr "拒絕存取" @@ -203,7 +204,7 @@ msgid "Support" msgstr "支援" #. module: mail -#: code:addons/mail/mail_message.py:727 +#: code:addons/mail/mail_message.py:738 #, python-format msgid "" "The requested operation cannot be completed due to security restrictions. " @@ -268,8 +269,8 @@ msgstr "討論群組" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:98 -#: code:addons/mail/static/src/xml/mail.xml:110 +#: code:addons/mail/static/src/xml/mail.xml:96 +#: code:addons/mail/static/src/xml/mail.xml:108 #, python-format msgid "uploading" msgstr "上傳" @@ -351,13 +352,13 @@ msgstr "取消跟隨" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:295 +#: code:addons/mail/static/src/xml/mail.xml:312 #, python-format msgid "show one more message" msgstr "再顯示一則訊息" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #: code:addons/mail/res_users.py:69 #, python-format msgid "Invalid Action!" @@ -413,7 +414,6 @@ msgstr "系統通知" #. module: mail #: model:ir.model,name:mail.model_res_partner -#: view:mail.mail:0 msgid "Partner" msgstr "夥伴" @@ -466,7 +466,7 @@ msgstr "傳送" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:155 +#: code:addons/mail/static/src/js/mail_followers.js:153 #, python-format msgid "No followers" msgstr "無關注者" @@ -497,8 +497,8 @@ msgstr "封存" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:97 -#: code:addons/mail/static/src/xml/mail.xml:109 +#: code:addons/mail/static/src/xml/mail.xml:95 +#: code:addons/mail/static/src/xml/mail.xml:107 #, python-format msgid "Delete this attachment" msgstr "刪除附加檔" @@ -513,7 +513,7 @@ msgstr "回覆" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail_followers.js:157 +#: code:addons/mail/static/src/js/mail_followers.js:155 #, python-format msgid "One follower" msgstr "一位關注者" @@ -568,7 +568,7 @@ msgstr "收件者" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:142 +#: code:addons/mail/static/src/xml/mail.xml:140 #, python-format msgid "<<<" msgstr "上一步" @@ -662,7 +662,7 @@ msgid "Move to Inbox" msgstr "移至收件匣" #. module: mail -#: code:addons/mail/wizard/mail_compose_message.py:165 +#: code:addons/mail/wizard/mail_compose_message.py:193 #, python-format msgid "Re:" msgstr "Re:" @@ -689,7 +689,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:320 +#: code:addons/mail/static/src/xml/mail.xml:337 #, python-format msgid "like" msgstr "類似" @@ -737,7 +737,7 @@ msgid "on" msgstr "" #. module: mail -#: code:addons/mail/mail_message.py:915 +#: code:addons/mail/mail_message.py:926 #, python-format msgid "" "The following partners chosen as recipients for the email have no email " @@ -803,7 +803,7 @@ msgid "Send Now" msgstr "立即傳送" #. module: mail -#: code:addons/mail/mail_mail.py:74 +#: code:addons/mail/mail_mail.py:75 #, python-format msgid "" "Unable to send email, please configure the sender's email address or alias." @@ -823,7 +823,7 @@ msgstr "照片" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:56 +#: code:addons/mail/static/src/xml/mail.xml:54 #: code:addons/mail/static/src/xml/mail.xml:191 #: view:mail.compose.message:0 #: view:mail.wizard.invite:0 @@ -933,7 +933,7 @@ msgstr "通知" #. module: mail #. openerp-web -#: code:addons/mail/static/src/js/mail.js:650 +#: code:addons/mail/static/src/js/mail.js:654 #, python-format msgid "Please complete partner's informations" msgstr "請完成夥伴的資訊" @@ -1086,7 +1086,7 @@ msgstr "增加篩選條件..." #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:122 +#: code:addons/mail/static/src/xml/mail.xml:120 #, python-format msgid "To:" msgstr "至:" @@ -1110,7 +1110,7 @@ msgstr "預設值" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:294 +#: code:addons/mail/static/src/xml/mail.xml:311 #, python-format msgid "show more message" msgstr "顯示更多訊息" @@ -1167,7 +1167,7 @@ msgstr "已加星號" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:296 +#: code:addons/mail/static/src/xml/mail.xml:313 #, python-format msgid "more messages" msgstr "更多訊息" @@ -1245,7 +1245,7 @@ msgstr "" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:125 +#: code:addons/mail/static/src/xml/mail.xml:123 #: view:mail.compose.message:0 #, python-format msgid "Followers of" @@ -1292,8 +1292,8 @@ msgstr "全公司" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:131 -#: code:addons/mail/static/src/xml/mail.xml:278 +#: code:addons/mail/static/src/xml/mail.xml:129 +#: code:addons/mail/static/src/xml/mail.xml:292 #: view:mail.compose.message:0 #, python-format msgid "and" @@ -1311,7 +1311,7 @@ msgstr "建立月份" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:306 +#: code:addons/mail/static/src/xml/mail.xml:323 #, python-format msgid "Compose new Message" msgstr "撰寫新訊息" @@ -1396,7 +1396,7 @@ msgid "Outgoing mail server" msgstr "外送郵件伺服器" #. module: mail -#: code:addons/mail/mail_message.py:919 +#: code:addons/mail/mail_message.py:930 #, python-format msgid "Partners email addresses not found" msgstr "找不到夥伴郵件地址" @@ -1471,7 +1471,7 @@ msgstr "重新設回代辦事項" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:128 +#: code:addons/mail/static/src/xml/mail.xml:126 #, python-format msgid "this document" msgstr "本文件" @@ -1505,7 +1505,7 @@ msgstr "訊息" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:141 +#: code:addons/mail/static/src/xml/mail.xml:139 #, python-format msgid "others..." msgstr "其他..." @@ -1588,7 +1588,7 @@ msgstr "相關文件模型" #. module: mail #. openerp-web -#: code:addons/mail/static/src/xml/mail.xml:321 +#: code:addons/mail/static/src/xml/mail.xml:338 #, python-format msgid "unlike" msgstr "" diff --git a/addons/marketing/i18n/ar.po b/addons/marketing/i18n/ar.po index 8bd33426113..180b0e34465 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 dcdfc76e36d..7361d9a144d 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 3954d991f57..cabec77c11a 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 29d7e90fb5f..823427bcdab 100644 --- a/addons/marketing/i18n/cs.po +++ b/addons/marketing/i18n/cs.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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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/i18n/da.po b/addons/marketing/i18n/da.po index dd52aa11456..79b160e03be 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 586705bb6df..343233384a7 100644 --- a/addons/marketing/i18n/de.po +++ b/addons/marketing/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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 554acc850b8..4a512f9f370 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 c70ccbe6fd6..565386a86e0 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 e9a80cee7eb..3bac051b6a2 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: marketing diff --git a/addons/marketing/i18n/fi.po b/addons/marketing/i18n/fi.po index e1bae95fe19..8d520ac63ed 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 353be4ac198..f0c25653a35 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings @@ -29,12 +29,15 @@ msgid "" "Campaigns.\n" " This installs the module marketing_campaign_crm_demo." msgstr "" +"Installe les données de démonstration telles que les pistes, les campagnes " +"et les segments pour les campagnes de marketing. \n" +" Ceci installe le module 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 "Configurer Marketing" #. module: marketing #: view:crm.lead:0 @@ -50,7 +53,7 @@ msgstr "Campagnes marketing" #. module: marketing #: view:marketing.config.settings:0 msgid "or" -msgstr "" +msgstr "ou" #. module: marketing #: view:marketing.config.settings:0 @@ -75,17 +78,17 @@ msgstr "Paramètres des campagnes" #. module: marketing #: field:marketing.config.settings,module_crm_profiling:0 msgid "Track customer profile to focus your campaigns" -msgstr "" +msgstr "Suivez le profil des clients pour cibler vos campagnes" #. module: marketing #: view:marketing.config.settings:0 msgid "Cancel" -msgstr "" +msgstr "Annuler" #. module: marketing #: view:marketing.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Appliquer" #. module: marketing #: help:marketing.config.settings,module_marketing_campaign:0 @@ -95,6 +98,10 @@ msgid "" "CRM leads.\n" " This installs the module marketing_campaign." msgstr "" +"Permet l'automatisation des pistes grâce aux campagnes de marketing. \n" +" Les campagnes peuvent en fait être définies sur n'importe " +"quelle ressource, pas seulement les pistes de CRM.\n" +" Ceci installe le module marketing_campaign." #. module: marketing #: help:marketing.config.settings,module_crm_profiling:0 @@ -102,6 +109,9 @@ msgid "" "Allows users to perform segmentation within partners.\n" " This installs the module crm_profiling." msgstr "" +"Permet aux utilisateurs de faire de la segmentation au sein des " +"partenaires.\n" +" Ceci installe le module crm_profiling." #. module: marketing #: field:marketing.config.settings,module_marketing_campaign_crm_demo:0 diff --git a/addons/marketing/i18n/gl.po b/addons/marketing/i18n/gl.po index 2dba67f7a22..e54f8ce4c01 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 18f0aca1715..bacfe436777 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 c1a89e42686..342be8f12c1 100644 --- a/addons/marketing/i18n/hu.po +++ b/addons/marketing/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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 f40376deb11..a242deb53d0 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 0cdbe08c847..47892b52489 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 c2b9210ee69..4d52d78c597 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 eee8fe0ffe6..b811c695497 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 822e6d74078..c229f337862 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 f38e5b6890e..f7fd625bdcd 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 a787bcb4bbe..653d0fa99d3 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 834040fb6e3..2d1233848d5 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 50a07e3fef7..b87f5ff960f 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 34772222d02..76924e67837 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 e86847a14a4..1481ae8de7d 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 73d7b313dbf..8ad2f253d08 100644 --- a/addons/marketing/i18n/pt_BR.po +++ b/addons/marketing/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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 828258d9ac9..3384ce9a76d 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 cda5753a333..a4fcf8e3951 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 dcd029301e4..510ff7b19f2 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 015a4fa0208..deaabad65bf 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 767405cde85..e3cf0d444aa 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 6f5d3eb64b7..7f36779801a 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 b9c962f6a8e..43594eefde9 100644 --- a/addons/marketing/i18n/sv.po +++ b/addons/marketing/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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 74fa8778800..f1af5ab5faf 100644 --- a/addons/marketing/i18n/th.po +++ b/addons/marketing/i18n/th.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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 @@ -50,27 +50,27 @@ msgstr "" #. module: marketing #: view:marketing.config.settings:0 msgid "or" -msgstr "" +msgstr "หรือ" #. module: marketing #: view:marketing.config.settings:0 msgid "Campaigns" -msgstr "" +msgstr "แคมเปญ" #. module: marketing #: model:res.groups,name:marketing.group_marketing_manager msgid "Manager" -msgstr "" +msgstr "ผู้จัดการ" #. module: marketing #: model:res.groups,name:marketing.group_marketing_user msgid "User" -msgstr "" +msgstr "ผู้ใช้งาน" #. module: marketing #: view:marketing.config.settings:0 msgid "Campaigns Settings" -msgstr "" +msgstr "ตั้งค่าแคมเปญ" #. module: marketing #: field:marketing.config.settings,module_crm_profiling:0 @@ -80,12 +80,12 @@ msgstr "" #. module: marketing #: view:marketing.config.settings:0 msgid "Cancel" -msgstr "" +msgstr "ยกเลิก" #. module: marketing #: view:marketing.config.settings:0 msgid "Apply" -msgstr "" +msgstr "ใช้งาน" #. module: marketing #: help:marketing.config.settings,module_marketing_campaign:0 diff --git a/addons/marketing/i18n/tr.po b/addons/marketing/i18n/tr.po index af0f9a1e9aa..a9fc7611cb7 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: marketing #: model:ir.model,name:marketing.model_marketing_config_settings diff --git a/addons/marketing/i18n/zh_CN.po b/addons/marketing/i18n/zh_CN.po index ca07ef74c63..05e67bea6a6 100644 --- a/addons/marketing/i18n/zh_CN.po +++ b/addons/marketing/i18n/zh_CN.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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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,12 +29,14 @@ msgid "" "Campaigns.\n" " This installs the module marketing_campaign_crm_demo." msgstr "" +"为 市场营销活动添加演示数据,包括线索,营销活动和分段活动。\n" +"这需要安装模块 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 "配置营销" #. module: marketing #: view:crm.lead:0 @@ -45,17 +47,17 @@ msgstr "市场营销管理" #. module: marketing #: field:marketing.config.settings,module_marketing_campaign:0 msgid "Marketing campaigns" -msgstr "" +msgstr "市场营销活动" #. module: marketing #: view:marketing.config.settings:0 msgid "or" -msgstr "" +msgstr "或" #. module: marketing #: view:marketing.config.settings:0 msgid "Campaigns" -msgstr "" +msgstr "营销活动" #. module: marketing #: model:res.groups,name:marketing.group_marketing_manager @@ -70,22 +72,22 @@ msgstr "用户" #. module: marketing #: view:marketing.config.settings:0 msgid "Campaigns Settings" -msgstr "" +msgstr "营销活动设置" #. module: marketing #: field:marketing.config.settings,module_crm_profiling:0 msgid "Track customer profile to focus your campaigns" -msgstr "" +msgstr "跟踪客户资料以针对你的营销活动" #. module: marketing #: view:marketing.config.settings:0 msgid "Cancel" -msgstr "" +msgstr "取消" #. module: marketing #: view:marketing.config.settings:0 msgid "Apply" -msgstr "" +msgstr "应用" #. module: marketing #: help:marketing.config.settings,module_marketing_campaign:0 @@ -95,6 +97,10 @@ msgid "" "CRM leads.\n" " This installs the module marketing_campaign." msgstr "" +"自动通过市场营销活动提供线索。\n" +"营销活动事实上可以定义在任意资源中,不仅仅是 CRM 线索。\n" +"\n" +"这需要安装模块 marketing_campaign。" #. module: marketing #: help:marketing.config.settings,module_crm_profiling:0 @@ -102,11 +108,13 @@ msgid "" "Allows users to perform segmentation within partners.\n" " This installs the module crm_profiling." msgstr "" +"允许用户在合作伙伴中进行分片操作。\n" +"这许奥安装模块crm_profiling。" #. module: marketing #: field:marketing.config.settings,module_marketing_campaign_crm_demo:0 msgid "Demo data for marketing campaigns" -msgstr "" +msgstr "市场营销活动的演示数据" #~ msgid "Image" #~ msgstr "图片" diff --git a/addons/marketing/i18n/zh_TW.po b/addons/marketing/i18n/zh_TW.po index 31448f64705..abefc24f7da 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:37+0000\n" +"X-Generator: Launchpad (build 16753)\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 39a3cb55534..ad4975d1fd7 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 26fa94ff500..c7af42f3204 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 ccdb778d6a6..57dc0354f2b 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 eb593ad6300..ea1424b6ef0 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 80771b1a604..0081dffa1f8 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 302addb854c..1025fd8c9b6 100644 --- a/addons/marketing_campaign/i18n/de.po +++ b/addons/marketing_campaign/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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 541177d106b..32c135ae0f2 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 8be1cca7d4f..eee53f4d7cd 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 ffedb04bf93..4c529104384 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: marketing_campaign diff --git a/addons/marketing_campaign/i18n/fi.po b/addons/marketing_campaign/i18n/fi.po index e24e278f511..77f1ccad6d6 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 9e9ec0ef3b1..680883fcdee 100644 --- a/addons/marketing_campaign/i18n/fr.po +++ b/addons/marketing_campaign/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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: marketing_campaign #: view:marketing.campaign:0 @@ -164,11 +164,14 @@ msgid "" "The campaign cannot be started. It does not have any starting activity. " "Modify campaign's activities to mark one as the starting point." msgstr "" +"La campagne ne peut être démarrée. Elle n'a aucune activité de démarrage. " +"Modifiez les activités de la campagne pour en marquer une comme point de " +"départ." #. module: marketing_campaign #: help:marketing.campaign.activity,email_template_id:0 msgid "The email to send when this activity is activated" -msgstr "" +msgstr "Le courriel à envoyer lorsque cette activité est activée" #. module: marketing_campaign #: view:marketing.campaign.segment:0 @@ -200,7 +203,7 @@ msgstr "Choisir la ressource sur laquelle lancer cette campagne" #. module: marketing_campaign #: model:ir.actions.client,name:marketing_campaign.action_client_marketing_menu msgid "Open Marketing Menu" -msgstr "" +msgstr "Ouvrir le menu de marketing" #. module: marketing_campaign #: field:marketing.campaign.segment,sync_last_date:0 @@ -296,7 +299,7 @@ msgstr "Segment" #: code:addons/marketing_campaign/marketing_campaign.py:214 #, python-format msgid "You cannot duplicate a campaign, Not supported yet." -msgstr "" +msgstr "Vous ne pouvez pas dupliquer une campagne (pas encore supporté)." #. module: marketing_campaign #: help:marketing.campaign.activity,type:0 @@ -362,7 +365,7 @@ msgstr "L'intervalle doit être positif ou égal à zéro" #. module: marketing_campaign #: selection:marketing.campaign.activity,type:0 msgid "Email" -msgstr "" +msgstr "Courriel" #. module: marketing_campaign #: field:marketing.campaign,name:0 @@ -523,6 +526,25 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour créer une campagne de marketing.\n" +"

\n" +" La campagne de marketing d'OpenERP vous permet d'automatiser la " +"communications avec\n" +" vos prospects. Vous pouvez définir un segment (ensemble de " +"conditions) sur\n" +" vos pistes et partenaires pour atteindre les objectifs de la " +"campagne.\n" +"

\n" +" Une campagne peut avoir de nombreuses activités telles qu'envoyer " +"un courriel, imprimer\n" +" une lettre, assigner à une équipe, etc. Ces activités sont " +"déclenchées \n" +" par des situations spécifiques; formulaire de contact, 10 jours " +"après le premier contact, si\n" +" une piste n'est pas encore fermée, etc.\n" +"

\n" +" " #. module: marketing_campaign #: field:marketing.campaign.transition,interval_nbr:0 @@ -657,7 +679,7 @@ msgstr "Brouillon" #. module: marketing_campaign #: view:marketing.campaign.workitem:0 msgid "Marketing Campaign Activity" -msgstr "" +msgstr "Activité de campagne de marketing" #. module: marketing_campaign #: view:marketing.campaign.workitem:0 @@ -900,7 +922,7 @@ msgstr "Transition de la campagne" #. module: marketing_campaign #: view:marketing.campaign.segment:0 msgid "Marketing Campaign Segment" -msgstr "" +msgstr "Segment de campagne de marketing" #. module: marketing_campaign #: model:ir.actions.act_window,name:marketing_campaign.act_marketing_campaing_segment_opened @@ -1088,7 +1110,7 @@ msgstr "" #: code:addons/marketing_campaign/marketing_campaign.py:136 #, python-format msgid "The campaign cannot be started. There are no activities in it." -msgstr "" +msgstr "La campagne ne peut être démarrée. Elle ne contient pas d'activités." #. module: marketing_campaign #: field:marketing.campaign.segment,date_next_sync:0 diff --git a/addons/marketing_campaign/i18n/hi.po b/addons/marketing_campaign/i18n/hi.po index a4ddfe87584..6350ef44cc3 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 cc5f10d8751..db4445d7a55 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 c4bd8af2418..f77a55c543e 100644 --- a/addons/marketing_campaign/i18n/hu.po +++ b/addons/marketing_campaign/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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 6fb20522862..583cae43b29 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 1715c407d5b..1d93a657218 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 7b50b36395a..353bb73ffc9 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 794287dc7fd..e25c8b84a31 100644 --- a/addons/marketing_campaign/i18n/mk.po +++ b/addons/marketing_campaign/i18n/mk.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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 +32,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 +78,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 @@ -581,7 +582,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/mn.po b/addons/marketing_campaign/i18n/mn.po index 6c3d6db8fcb..a39f12e7295 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: marketing_campaign #: view:marketing.campaign:0 @@ -75,7 +75,7 @@ msgstr "" #. module: marketing_campaign #: view:marketing.campaign:0 msgid "Follow-Up" -msgstr "Мөрөөр хийх ажил" +msgstr "Мөшгөлт" #. module: marketing_campaign #: field:campaign.analysis,count:0 @@ -551,7 +551,7 @@ msgstr "Дараагийн үйл ажиллагаа" #: model:ir.actions.act_window,name:marketing_campaign.action_marketing_campaign_workitem #: model:ir.ui.menu,name:marketing_campaign.menu_action_marketing_campaign_workitem msgid "Campaign Follow-up" -msgstr "" +msgstr "Компанит ажлын мөшгөлт" #. module: marketing_campaign #: view:marketing.campaign:0 diff --git a/addons/marketing_campaign/i18n/nl.po b/addons/marketing_campaign/i18n/nl.po index 40298205db4..89c68bf57fc 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-16 05:45+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: marketing_campaign #: view:marketing.campaign:0 @@ -102,6 +102,8 @@ msgid "" "Hi, we are delighted to let you know that you have entered the select circle " "of our Gold Partners" msgstr "" +"Hallo, we zijn verheugt om je te kunnen melden dat je bent toegetreden tot " +"de selectie groep van Gold partners." #. module: marketing_campaign #: selection:campaign.analysis,month:0 @@ -144,7 +146,7 @@ msgstr "" #: view:marketing.campaign:0 #: view:marketing.campaign.segment:0 msgid "Set to Draft" -msgstr "Naar Concept" +msgstr "Zet op concept" #. module: marketing_campaign #: view:marketing.campaign.activity:0 @@ -159,11 +161,13 @@ msgid "" "The campaign cannot be started. It does not have any starting activity. " "Modify campaign's activities to mark one as the starting point." msgstr "" +"De campagne kan niet worden gestart. Het heeft geen enkele start activiteit. " +"Pas de campagne activiteiten aan om er een als start punt aan te merken." #. module: marketing_campaign #: help:marketing.campaign.activity,email_template_id:0 msgid "The email to send when this activity is activated" -msgstr "" +msgstr "De te versturen e-mail wanneer deze activiteit wordt geactiveerd." #. module: marketing_campaign #: view:marketing.campaign.segment:0 @@ -276,7 +280,7 @@ msgstr "Campagne" #. module: marketing_campaign #: model:email.template,body_html:marketing_campaign.email_template_1 msgid "Hello, you will receive your welcome pack via email shortly." -msgstr "" +msgstr "Hallo, uw ontvangt binnenkort een welkomgeschenk per e-mail" #. module: marketing_campaign #: view:campaign.analysis:0 @@ -292,6 +296,7 @@ msgstr "Segment" #, python-format msgid "You cannot duplicate a campaign, Not supported yet." msgstr "" +"Het is niet mogelijk een campagne te dupliceren, dit wordt niet ondersteund." #. module: marketing_campaign #: help:marketing.campaign.activity,type:0 @@ -374,7 +379,7 @@ msgstr "Naam bron" #. module: marketing_campaign #: field:marketing.campaign.segment,sync_mode:0 msgid "Synchronization mode" -msgstr "Synchronizatie stand" +msgstr "Synchronisatie mode" #. module: marketing_campaign #: view:marketing.campaign:0 @@ -517,6 +522,22 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Click to create a marketing campaign.\n" +"

\n" +" OpenERP's marketing campagne geeft u de mogelijkheid om de " +"communicatie met uw\n" +" prospects te automatiseren. U kunt een segment (een set van " +"condities) definiëren bij uw\n" +" leads en relaties om de campagne te volbrengen.\n" +"

\n" +" Een campagne kan meerdere activiteiten hebben, zoals het " +"versturen van een e-mail,\n" +" het afdrukken van een brief of het toewijzen aan een team. Deze " +"activiteiten worden geactiveerd\n" +" op basis van specifieke situaties.\n" +"

\n" +" " #. module: marketing_campaign #: field:marketing.campaign.transition,interval_nbr:0 @@ -649,7 +670,7 @@ msgstr "Concept" #. module: marketing_campaign #: view:marketing.campaign.workitem:0 msgid "Marketing Campaign Activity" -msgstr "" +msgstr "Marketing campagne activiteiten" #. module: marketing_campaign #: view:marketing.campaign.workitem:0 @@ -904,7 +925,7 @@ msgstr "Segmenten" #. module: marketing_campaign #: field:marketing.campaign.activity,keep_if_condition_not_met:0 msgid "Don't Delete Workitems" -msgstr "" +msgstr "Verwijder geen werk items" #. module: marketing_campaign #: view:marketing.campaign.activity:0 @@ -941,7 +962,7 @@ msgstr "Soort" #. module: marketing_campaign #: model:email.template,subject:marketing_campaign.email_template_3 msgid "Congratulations! You are now one of our Gold Partners!" -msgstr "" +msgstr "Gefeliciteerd! U bent nu een van onze Gold Partners!" #. module: marketing_campaign #: help:marketing.campaign,unique_field_id:0 @@ -1078,6 +1099,7 @@ msgstr "" #, python-format msgid "The campaign cannot be started. There are no activities in it." msgstr "" +"De campagne kan niet worden gestart. De campagne bevat geen activiteiten." #. module: marketing_campaign #: field:marketing.campaign.segment,date_next_sync:0 @@ -1089,6 +1111,8 @@ msgstr "Volgende synchronisatie" msgid "" "Hi, we are delighted to welcome you among our Silver Partners as of today!" msgstr "" +"Hallo, we zijn verheugt om je te kunnen melden dat je bent toegetreden tot " +"de groep van Silver partners." #. module: marketing_campaign #: field:marketing.campaign.segment,ir_filter_id:0 @@ -1113,7 +1137,7 @@ msgstr "Variabele kosten" #. module: marketing_campaign #: model:email.template,subject:marketing_campaign.email_template_1 msgid "Welcome to the OpenERP Partner Channel!" -msgstr "" +msgstr "Welkom bij het OpenERP partner kanaal" #. module: marketing_campaign #: view:campaign.analysis:0 diff --git a/addons/marketing_campaign/i18n/pl.po b/addons/marketing_campaign/i18n/pl.po index f0bba91b506..e88477837d2 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 e8e89e9036e..ea90a225f2e 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 cb17ae9095c..80f7836ca12 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 5882e04ef2b..59e203b0554 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 98a19180ac4..ec01f788c87 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 610f1a7a7aa..a051119531d 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 2658ed32cb3..0c728b9f435 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 b6648eb474c..bc6ca903901 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 a5ff2a8d3d1..ab84e3f67a8 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: marketing_campaign #: view:marketing.campaign:0 @@ -72,7 +72,7 @@ msgstr "Tetik" #. module: marketing_campaign #: view:marketing.campaign:0 msgid "Follow-Up" -msgstr "" +msgstr "İzleme" #. module: marketing_campaign #: field:campaign.analysis,count:0 @@ -525,7 +525,7 @@ msgstr "Sonraki Etkinlik" #: model:ir.actions.act_window,name:marketing_campaign.action_marketing_campaign_workitem #: model:ir.ui.menu,name:marketing_campaign.menu_action_marketing_campaign_workitem msgid "Campaign Follow-up" -msgstr "" +msgstr "Kampanya İzleme" #. 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 d505d53aa1d..a8d190b7e05 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-16 05:46+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:40+0000\n" +"X-Generator: Launchpad (build 16753)\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 e087b069b0a..dd1bc25051d 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 130b58ec38a..1063fd360da 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-16 05:43+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 dcd4a52bc3b..9e7f210764f 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 8a9e985e5b5..390d38ffe03 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 ed1fbf941c3..5eed4b6a998 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 @@ -29,6 +29,14 @@ msgid "" "reply to this message.

\n" "

Regards,OpenERP Team,

" msgstr "" +"

Hallo,

\n" +"

Vielen Dank für Ihr Interesse an einem Technischen " +"Training.

\n" +" Bei weiteren Fragen, kontaktieren Sie uns gerne. Wir freuen uns " +"auf die Zusammenarbeit mit Ihnen.

\n" +"

Sollten Sie weitere Infos benötigen, können Sie uns ebenfalls " +"gerne anschreiben.

\n" +"

Viele Grüsse von Ihrem OpenERP Team

" #. module: marketing_campaign_crm_demo #: model:ir.actions.report.xml,name:marketing_campaign_crm_demo.mc_crm_lead_demo_report @@ -50,6 +58,12 @@ msgid "" "reply to this message.

\n" "

Regards,OpenERP Team,

" msgstr "" +"

Hallo,

\n" +"

Vielen Dank für Ihre Anfrage zur Teilnahme am OpenERP " +"Discovery Day.

\n" +"

Sollten Sie weitere Infos benötigen, können Sie uns gerne " +"kontaktieren.

\n" +"

Viele Grüsse von Ihrem OpenERP Team

" #. module: marketing_campaign_crm_demo #: report:crm.lead.demo:0 @@ -72,6 +86,13 @@ msgid "" "reply to this message.

\n" "

Regards,OpenERP Team,

" msgstr "" +"

Hallo,

\n" +"

wir haben ein interessantes Angebot für Silberpartner.

\n" +" Wir laden Sie zu einem kostenfreien technischen Training " +"ein.

\n" +"

Sollten Sie weitere Infos benötigen, können Sie uns ebenfalls " +"gerne anschreiben.

\n" +"

Viele Grüsse von Ihrem OpenERP Team

" #. module: marketing_campaign_crm_demo #: model:email.template,subject:marketing_campaign_crm_demo.email_template_1 @@ -99,6 +120,13 @@ msgid "" "reply to this message.

\n" "

Regards,OpenERP Team,

" msgstr "" +"

Hallo,

\n" +"

wir haben ein neues interessantes Angebot.

\n" +" Wir bieten Ihnen eine kostenfreie Anmeldung zu den Discovery " +"Days an.

\n" +"

Sollten Sie weitere Infos benötigen, können Sie uns ebenfalls " +"gerne anschreiben.

\n" +"

Viele Grüsse von Ihrem OpenERP Team

" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_5 @@ -111,6 +139,13 @@ msgid "" "reply to this message.

\n" "

Regards,OpenERP Team,

" msgstr "" +"

Hallo,

\n" +"

wir haben ein exklusives Angebot für Goldpartner.

\n" +" Wir laden Sie zu einem kostenfreien technischen Training für " +"Fortgeschrittene ein.

\n" +"

Sollten Sie weitere Infos benötigen, können Sie uns ebenfalls " +"gerne anschreiben.

\n" +"

Viele Grüsse von Ihrem OpenERP Team

" #. module: marketing_campaign_crm_demo #: model:email.template,subject:marketing_campaign_crm_demo.email_template_2 @@ -141,6 +176,11 @@ msgid "" " If any further information required kindly revert back.\n" "

Regards,OpenERP Team,

" msgstr "" +"

Hallo,

\n" +"

vielen Dank für den Kauf des OpenERP Buchs.

\n" +"

Sollten Sie weitere Infos benötigen, können Sie uns ebenfalls " +"gerne anschreiben.

\n" +"

Viele Grüsse von Ihrem OpenERP Team

" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_7 @@ -152,6 +192,12 @@ msgid "" "reply to this message.

\n" "

Regards,OpenERP Team,

" msgstr "" +"

Hallo,

\n" +"

wir haben ein exklusives Angebot für Silberpartner.

\n" +" Sie können zu Vorzugskonditionen Goldpartner werden.

\n" +"

Sollten Sie weitere Infos benötigen, können Sie uns ebenfalls " +"gerne anschreiben.

\n" +"

Viele Grüsse von Ihrem OpenERP Team

" #. module: marketing_campaign_crm_demo #: model:email.template,subject:marketing_campaign_crm_demo.email_template_5 @@ -168,6 +214,11 @@ msgid "" "reply to this message.

\n" "

Regards,OpenERP Team,

" msgstr "" +"

Hallo,

\n" +"

vielen Dank für Ihr Interesse an OpenERP Lösungen.

\n" +"

Sollten Sie weitere Infos benötigen, können Sie uns ebenfalls " +"gerne anschreiben.

\n" +"

Viele Grüsse von Ihrem OpenERP Team

" #~ msgid "Demo data for the module marketing_campaign." #~ msgstr "Demodaten für das Modul marketing_campaign" diff --git a/addons/marketing_campaign_crm_demo/i18n/es.po b/addons/marketing_campaign_crm_demo/i18n/es.po index 06fc923f968..e0ddce2edc7 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 3504aeb5f38..bf31dbc1b49 100644 --- a/addons/marketing_campaign_crm_demo/i18n/es_CR.po +++ b/addons/marketing_campaign_crm_demo/i18n/es_CR.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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: marketing_campaign_crm_demo diff --git a/addons/marketing_campaign_crm_demo/i18n/fr.po b/addons/marketing_campaign_crm_demo/i18n/fr.po index f31aaa23efb..e851801f2d5 100644 --- a/addons/marketing_campaign_crm_demo/i18n/fr.po +++ b/addons/marketing_campaign_crm_demo/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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 addc471ec77..0dc7c5cb683 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 2a087351d94..6d3f4975c00 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 9edd01cff77..344fd2cfab2 100644 --- a/addons/marketing_campaign_crm_demo/i18n/hu.po +++ b/addons/marketing_campaign_crm_demo/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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 ca19317603a..0e9eef603b3 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 0215ed087e9..4d31255cfd7 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 e8d8f2a7dc3..aa9834d403a 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: marketing_campaign_crm_demo #: model:email.template,body_html:marketing_campaign_crm_demo.email_template_8 @@ -29,6 +29,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/marketing_campaign_crm_demo/i18n/nb.po b/addons/marketing_campaign_crm_demo/i18n/nb.po index 0d37fef14e7..5ad5c84b478 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 372dd771109..6f7308e97b5 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 5a81c35e264..abe5fc1e191 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 ff697d74a2b..58716a2e789 100644 --- a/addons/marketing_campaign_crm_demo/i18n/pt_BR.po +++ b/addons/marketing_campaign_crm_demo/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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 998d7d7aa48..d6816c4bd7a 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 741cd9ca8e6..1e23d8a19bb 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 d4dea1f1658..d230f23b3ff 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 c02c28efe62..029f24f4393 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 724cc4c0d9d..6e7fae1ce67 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 71080dd10a1..b78e562de99 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 db05f824aed..ec6edd96950 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-16 05:44+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:38+0000\n" +"X-Generator: Launchpad (build 16753)\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 902acfb24c0..d4c8cde1920 100644 --- a/addons/membership/i18n/ar.po +++ b/addons/membership/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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 19dd70d6355..230e9c322d6 100644 --- a/addons/membership/i18n/bg.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 0a382ae10b8..f7b4560b5e7 100644 --- a/addons/membership/i18n/bs.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 f964dc92453..af19e786f1f 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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 a60025da26c..ad070e890ce 100644 --- a/addons/membership/i18n/cs.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\n" #. module: membership diff --git a/addons/membership/i18n/da.po b/addons/membership/i18n/da.po index 2428bf64e51..da6468113c7 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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 dbe9dabd8ad..8c0f245244b 100644 --- a/addons/membership/i18n/de.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 d54b7caed42..d95aeb81b4c 100644 --- a/addons/membership/i18n/es.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 4bcab832c8b..4c8947de2dd 100644 --- a/addons/membership/i18n/es_AR.po +++ b/addons/membership/i18n/es_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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 c93a38acb8f..bcdf0c307bb 100644 --- a/addons/membership/i18n/es_CR.po +++ b/addons/membership/i18n/es_CR.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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: membership diff --git a/addons/membership/i18n/et.po b/addons/membership/i18n/et.po index 41f90adca74..c1fa817169a 100644 --- a/addons/membership/i18n/et.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 766e772a17d..04e26aeb9ab 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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 52178e7bb08..6d887c1a136 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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 a40dc5feec0..d988b1f3983 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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 040d678df3a..6372c4b19f7 100644 --- a/addons/membership/i18n/hr.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 29414704aba..2c47c178091 100644 --- a/addons/membership/i18n/hu.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 acacb63dd14..697d6afe6e4 100644 --- a/addons/membership/i18n/id.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 89ee0e9124b..b805edc1625 100644 --- a/addons/membership/i18n/it.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 28fda9300ab..9074315868b 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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 f6139cc918b..d35fe1f5d78 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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 6070dcfc04e..1aefd1cee5a 100644 --- a/addons/membership/i18n/lt.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 893328ee14e..c4558247257 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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 12a623667df..17e1f00c7fd 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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 02f02c03023..c45661153f9 100644 --- a/addons/membership/i18n/nl.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 cf4ab429cc6..1dea3155fc0 100644 --- a/addons/membership/i18n/nl_BE.po +++ b/addons/membership/i18n/nl_BE.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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 163ac785c64..0b9538fa356 100644 --- a/addons/membership/i18n/pl.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 7476c14494c..7be4691ac52 100644 --- a/addons/membership/i18n/pt.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 f2a2ce6f0a0..d886096d961 100644 --- a/addons/membership/i18n/pt_BR.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 d3687d1e765..bd462284598 100644 --- a/addons/membership/i18n/ro.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 a44a4f5c249..6dff4f0f244 100644 --- a/addons/membership/i18n/ru.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 fa365c12bcb..642f9188092 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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 e5ab9c48fa3..a5b65c1e5dd 100644 --- a/addons/membership/i18n/sl.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 02f965449ec..06544668de0 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-16 05:04+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 f44ed441b1e..b9b279b962d 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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:57+0000\n" +"X-Generator: Launchpad (build 16753)\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 b663c38cc19..0f73eb34945 100644 --- a/addons/membership/i18n/sv.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 95705bcc4be..278c751aa8a 100644 --- a/addons/membership/i18n/tlh.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 c2154f948a7..a7458fc46e5 100644 --- a/addons/membership/i18n/tr.po +++ b/addons/membership/i18n/tr.po @@ -13,13 +13,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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetoassociate0 msgid "invoice to associate" -msgstr "" +msgstr "Ödemeli Üye" #. module: membership #: model:process.process,name:membership.process_process_membershipprocess0 @@ -31,55 +31,55 @@ msgstr "Üyelik Prosesi (Süreci)" #: selection:report.membership,membership_state:0 #: selection:res.partner,membership_state:0 msgid "Paid Member" -msgstr "" +msgstr "Ücretli Üye" #. module: membership #: view:report.membership:0 msgid "This will display waiting, invoiced and total pending columns" -msgstr "" +msgstr "Bu, bekleyen fatura ve toplam bekleyen sütunları görüntüler" #. module: membership #: view:report.membership:0 #: view:res.partner:0 msgid "Group By..." -msgstr "" +msgstr "Grupla İle..." #. module: membership #: field:report.membership,num_paid:0 msgid "# Paid" -msgstr "" +msgstr "# Ödenen" #. module: membership #: field:report.membership,tot_earned:0 msgid "Earned Amount" -msgstr "" +msgstr "Kazanılan Tutar" #. module: membership #: model:ir.model,name:membership.model_report_membership msgid "Membership Analysis" -msgstr "" +msgstr "Üyelik Analizi" #. module: membership #: selection:report.membership,month:0 msgid "March" -msgstr "" +msgstr "Mart" #. module: membership #: model:process.node,note:membership.process_node_setassociation0 msgid "Set an associate member of partner." -msgstr "" +msgstr "Partner ortak üyesi ayarlayın." #. module: membership #: model:process.transition,note:membership.process_transition_invoicetopaid0 msgid "Invoice is be paid." -msgstr "" +msgstr "Fatura ödenmeştir" #. module: membership #: field:membership.membership_line,company_id:0 #: view:report.membership:0 #: field:report.membership,company_id:0 msgid "Company" -msgstr "" +msgstr "Firma" #. module: membership #: selection:membership.membership_line,state:0 @@ -87,30 +87,30 @@ msgstr "" #: field:res.partner,free_member:0 #: selection:res.partner,membership_state:0 msgid "Free Member" -msgstr "Free Üye" +msgstr "Ücretsiz Üye" #. module: membership #: view:res.partner:0 msgid "Ending Date Of Membership" -msgstr "" +msgstr "Üyelik Bitiş Tarihi" #. module: membership #: help:report.membership,date_to:0 msgid "End membership date" -msgstr "" +msgstr "Son üyelik tarihi" #. module: membership #: field:product.product,membership_date_to:0 #: field:res.partner,membership_stop:0 msgid "Membership End Date" -msgstr "" +msgstr "Üyelik Bitiş Tarihi" #. module: membership #: view:report.membership:0 #: field:report.membership,user_id:0 #: view:res.partner:0 msgid "Salesperson" -msgstr "" +msgstr "Satış Temsilcisi" #. module: membership #: model:process.transition,name:membership.process_transition_waitingtoinvoice0 @@ -125,41 +125,41 @@ msgstr "" #. module: membership #: view:res.partner:0 msgid "Suppliers" -msgstr "" +msgstr "Tedarikçiler" #. module: membership #: selection:membership.membership_line,state:0 #: selection:report.membership,membership_state:0 #: selection:res.partner,membership_state:0 msgid "Non Member" -msgstr "" +msgstr "Üyedeğil" #. module: membership #: view:product.product:0 msgid "Taxes" -msgstr "" +msgstr "Vergiler" #. module: membership #: view:res.partner:0 msgid "All Members" -msgstr "" +msgstr "Tüm Üyeler" #. module: membership #: code:addons/membership/membership.py:410 #: code:addons/membership/membership.py:413 #, python-format msgid "Error!" -msgstr "" +msgstr "Hata!" #. module: membership #: model:process.transition,name:membership.process_transition_producttomember0 msgid "Product to member" -msgstr "" +msgstr "Ürün Üyesine" #. module: membership #: model:product.template,name:membership.membership_1_product_template msgid "Silver Membership" -msgstr "" +msgstr "Gümüş Üyelik" #. module: membership #: model:process.node,note:membership.process_node_associatedmember0 @@ -169,55 +169,55 @@ msgstr "" #. module: membership #: field:report.membership,tot_pending:0 msgid "Pending Amount" -msgstr "" +msgstr "Bekleyen Tutar" #. module: membership #: model:process.transition,note:membership.process_transition_associationpartner0 msgid "Associated partner." -msgstr "" +msgstr "Partner ilişkili." #. module: membership #: view:res.partner:0 msgid "Supplier Partners" -msgstr "" +msgstr "Tedarikçi Partnerler" #. module: membership #: field:report.membership,num_invoiced:0 msgid "# Invoiced" -msgstr "" +msgstr "# Faturalanmış" #. module: membership #: model:ir.actions.act_window,name:membership.action_report_membership_tree #: model:ir.ui.menu,name:membership.menu_report_membership msgid "Members Analysis" -msgstr "" +msgstr "Üye Analiz" #. module: membership #: view:res.partner:0 msgid "End Membership Date" -msgstr "" +msgstr "Son Üyelik Tarihi" #. module: membership #: code:addons/membership/membership.py:414 #, python-format msgid "Partner doesn't have an address to make the invoice." -msgstr "" +msgstr "İş Ortağı fatura oluşturma için bir adresi yok." #. module: membership #: model:ir.model,name:membership.model_res_partner #: field:membership.membership_line,partner:0 msgid "Partner" -msgstr "Ortak" +msgstr "İş Ortağı" #. module: membership #: model:process.transition,name:membership.process_transition_invoicetopaid0 msgid "Invoice to paid" -msgstr "" +msgstr "Ödenmiş Fatura" #. module: membership #: view:res.partner:0 msgid "Customer Partners" -msgstr "" +msgstr "Müşteri İş Ortakları" #. module: membership #: field:membership.membership_line,date_from:0 @@ -227,7 +227,7 @@ msgstr "Başlangıç" #. module: membership #: constraint:membership.membership_line:0 msgid "Error, this membership product is out of date" -msgstr "" +msgstr "Hata, bu üyelik ürünün kullanım süresi dolmuştur" #. module: membership #: model:process.transition.action,name:membership.process_transition_action_create0 @@ -237,27 +237,27 @@ msgstr "Oluştur" #. module: membership #: model:ir.model,name:membership.model_membership_membership_line msgid "Member line" -msgstr "" +msgstr "Üye satırı" #. module: membership #: help:report.membership,date_from:0 msgid "Start membership date" -msgstr "Üyelik Tarih Başlangıcı" +msgstr "Üyelik Başlangıc Tarihi" #. module: membership #: field:res.partner,membership_cancel:0 msgid "Cancel Membership Date" -msgstr "" +msgstr "Üyelik Tarihi İptal" #. module: membership #: model:process.node,name:membership.process_node_paidmember0 msgid "Paid member" -msgstr "" +msgstr "Ücretli Üye" #. module: membership #: field:report.membership,num_waiting:0 msgid "# Waiting" -msgstr "" +msgstr "# Bekleyen" #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_members @@ -270,7 +270,7 @@ msgstr "Üyeler" #. module: membership #: view:res.partner:0 msgid "Invoiced/Paid/Free" -msgstr "" +msgstr "Fatura /Ödemeli/Ücretsiz" #. module: membership #: model:process.node,note:membership.process_node_invoicedmember0 @@ -280,12 +280,12 @@ msgstr "Fatura Aç" #. module: membership #: selection:report.membership,month:0 msgid "July" -msgstr "" +msgstr "Temmuz" #. module: membership #: model:product.template,name:membership.membership_0_product_template msgid "Golden Membership" -msgstr "" +msgstr "Altın Üyelik" #. module: membership #: help:res.partner,associate_member:0 @@ -299,12 +299,12 @@ msgstr "" #: view:report.membership:0 #: field:report.membership,membership_id:0 msgid "Membership Product" -msgstr "" +msgstr "Ürün Üyeliği" #. module: membership #: model:process.transition,note:membership.process_transition_producttomember0 msgid "Define product for membership." -msgstr "" +msgstr "Üyelik için ürün tanımlayın." #. module: membership #: model:process.transition,note:membership.process_transition_invoicetoassociate0 @@ -325,12 +325,12 @@ msgstr "Ürün Üyeliği" #. module: membership #: field:res.partner,membership_state:0 msgid "Current Membership Status" -msgstr "" +msgstr "Mevcut Üyelik Durum" #. module: membership #: field:membership.membership_line,date:0 msgid "Join Date" -msgstr "" +msgstr "Üyelik Tarihi" #. module: membership #: model:process.node,name:membership.process_node_setassociation0 @@ -340,12 +340,12 @@ msgstr "" #. module: membership #: view:res.partner:0 msgid " Membership State" -msgstr "" +msgstr " Üyelik Durumu" #. module: membership #: view:res.partner:0 msgid "Memberships" -msgstr "" +msgstr "Üyelikleri" #. module: membership #: model:process.node,note:membership.process_node_paidmember0 @@ -355,39 +355,39 @@ msgstr "Faturası Ödenen Üyelik" #. module: membership #: selection:report.membership,month:0 msgid "September" -msgstr "" +msgstr "Eylül" #. module: membership #: selection:report.membership,month:0 msgid "December" -msgstr "" +msgstr "Aralık" #. module: membership #: model:ir.model,name:membership.model_account_invoice_line msgid "Invoice Line" -msgstr "" +msgstr "Fatura Satırı" #. module: membership #: view:report.membership:0 #: field:report.membership,month:0 msgid "Month" -msgstr "" +msgstr "Ay" #. module: membership #: view:product.product:0 msgid "Group by..." -msgstr "" +msgstr "Grupla İle" #. module: membership #: code:addons/membership/membership.py:411 #, python-format msgid "Partner is a free Member." -msgstr "" +msgstr "İş Ortağı ücretsiz bir üyesidir." #. module: membership #: view:res.partner:0 msgid "Buy Membership" -msgstr "" +msgstr "Üyelik Satın" #. module: membership #: field:report.membership,associate_member_id:0 @@ -411,37 +411,37 @@ msgstr "" #: model:ir.model,name:membership.model_membership_invoice #: view:membership.invoice:0 msgid "Membership Invoice" -msgstr "" +msgstr "Üyelik Faturası" #. module: membership #: model:process.node,note:membership.process_node_membershipproduct0 msgid "Define membership product." -msgstr "" +msgstr "Üyelik ürüni tanımlayın." #. module: membership #: view:product.product:0 msgid "Category" -msgstr "" +msgstr "Kategori" #. module: membership #: view:res.partner:0 msgid "Contacts" -msgstr "" +msgstr "Kişiler" #. module: membership #: view:report.membership:0 msgid "Forecast" -msgstr "" +msgstr "Tahmin" #. module: membership #: field:report.membership,partner_id:0 msgid "Member" -msgstr "" +msgstr "Üye" #. module: membership #: view:product.product:0 msgid "Date From" -msgstr "" +msgstr "Tarihi Itibaren" #. module: membership #: model:process.node,name:membership.process_node_associatedmember0 @@ -456,22 +456,22 @@ msgstr "" #. module: membership #: field:membership.membership_line,state:0 msgid "Membership Status" -msgstr "" +msgstr "Üyelik Durum" #. module: membership #: view:res.partner:0 msgid "Customers" -msgstr "" +msgstr "Müşteriler" #. module: membership #: view:membership.invoice:0 msgid "or" -msgstr "" +msgstr "veya" #. module: membership #: selection:report.membership,month:0 msgid "August" -msgstr "" +msgstr "Ağustos" #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_products @@ -483,24 +483,24 @@ msgstr "Ürün Üyeliği" #. module: membership #: sql_constraint:product.product:0 msgid "Error ! Ending Date cannot be set before Beginning Date." -msgstr "" +msgstr "Hata! Bitiş Tarihi Başlangıç ​​Tarihi önce ayarlanamaz." #. module: membership #: selection:report.membership,month:0 msgid "June" -msgstr "" +msgstr "Haziran" #. module: membership #: help:product.product,membership:0 msgid "Check if the product is eligible for membership." -msgstr "" +msgstr "Ürünün üyelik için uygun olup olmadığını kontrol edin." #. module: membership #: selection:membership.membership_line,state:0 #: selection:report.membership,membership_state:0 #: selection:res.partner,membership_state:0 msgid "Invoiced Member" -msgstr "" +msgstr "Faturalanmış Üye" #. module: membership #: field:membership.invoice,product_id:0 @@ -518,7 +518,7 @@ msgstr "Üyelik" #: selection:report.membership,membership_state:0 #: selection:res.partner,membership_state:0 msgid "Waiting Member" -msgstr "" +msgstr "Üye Bekleyen" #. module: membership #: model:process.transition,name:membership.process_transition_associationpartner0 @@ -529,17 +529,17 @@ msgstr "Şirket Carisi" #: field:report.membership,date_from:0 #: view:res.partner:0 msgid "Start Date" -msgstr "" +msgstr "Başlangıç ​​Tarihi" #. module: membership #: selection:report.membership,month:0 msgid "November" -msgstr "" +msgstr "Kasım" #. module: membership #: selection:report.membership,month:0 msgid "October" -msgstr "" +msgstr "Ekim" #. module: membership #: help:res.partner,membership_state:0 @@ -561,40 +561,40 @@ msgstr "" #. module: membership #: selection:report.membership,month:0 msgid "January" -msgstr "" +msgstr "Ocak" #. module: membership #: view:res.partner:0 msgid "Membership Partners" -msgstr "" +msgstr "Üyelik İş Ortakları" #. module: membership #: field:membership.membership_line,member_price:0 #: view:product.product:0 msgid "Membership Fee" -msgstr "" +msgstr "Üyelik Ücreti" #. module: membership #: help:res.partner,membership_amount:0 msgid "The price negotiated by the partner" -msgstr "" +msgstr "İş Ortağı tarafından müzakere fiyatı" #. module: membership #: model:product.template,name:membership.membership_2_product_template msgid "Basic Membership" -msgstr "" +msgstr "Basit Üyelik" #. module: membership #: view:res.partner:0 msgid "None/Canceled/Old/Waiting" -msgstr "" +msgstr "Yok/İptal/Eski/Bekleyen" #. module: membership #: selection:membership.membership_line,state:0 #: selection:report.membership,membership_state:0 #: selection:res.partner,membership_state:0 msgid "Old Member" -msgstr "" +msgstr "Eski Üye" #. module: membership #: field:membership.membership_line,date_to:0 @@ -605,7 +605,7 @@ msgstr "Bitiş" #: view:report.membership:0 #: field:report.membership,membership_state:0 msgid "Current Membership State" -msgstr "" +msgstr "Mevcut Üyelik Durumu" #. module: membership #: help:membership.membership_line,state:0 @@ -633,13 +633,13 @@ msgstr "Taslak Faturayı Şimdi Aç." #. module: membership #: view:product.product:0 msgid "Inactive" -msgstr "" +msgstr "Pasif" #. module: membership #: model:ir.model,name:membership.model_account_invoice #: field:membership.membership_line,account_invoice_id:0 msgid "Invoice" -msgstr "" +msgstr "Fatura" #. module: membership #: view:membership.invoice:0 @@ -649,12 +649,12 @@ msgstr "İptal" #. module: membership #: view:res.partner:0 msgid "All non Members" -msgstr "" +msgstr "Üye Olmayan Tümü" #. module: membership #: field:membership.membership_line,account_invoice_line:0 msgid "Account Invoice line" -msgstr "" +msgstr "Hesap fatura satırı" #. module: membership #: model:process.node,note:membership.process_node_waitingmember0 @@ -669,64 +669,64 @@ msgstr "Üye Fiyatı" #. module: membership #: view:product.product:0 msgid "Membership Duration" -msgstr "" +msgstr "Üyelik Süresi" #. module: membership #: model:ir.model,name:membership.model_product_product msgid "Product" -msgstr "" +msgstr "Ürün" #. module: membership #: selection:report.membership,month:0 msgid "May" -msgstr "" +msgstr "Mayıs" #. module: membership #: field:product.product,membership_date_from:0 #: field:res.partner,membership_start:0 msgid "Membership Start Date" -msgstr "" +msgstr "Üyelik Başlangıç ​​Tarihi" #. module: membership #: help:res.partner,free_member:0 msgid "Select if you want to give free membership." -msgstr "" +msgstr "Eğer ücretsiz üyelik vermek istiyorsanız seçin." #. module: membership #: field:res.partner,membership_amount:0 msgid "Membership Amount" -msgstr "" +msgstr "Üyelik Tutarı" #. module: membership #: field:report.membership,date_to:0 #: view:res.partner:0 msgid "End Date" -msgstr "" +msgstr "Bitiş Tarihi" #. module: membership #: selection:report.membership,month:0 msgid "February" -msgstr "" +msgstr "Şubat" #. module: membership #: model:process.node,name:membership.process_node_invoicedmember0 msgid "Invoiced member" -msgstr "" +msgstr "Faturalanmış üyes" #. module: membership #: selection:report.membership,month:0 msgid "April" -msgstr "" +msgstr "Nisan" #. module: membership #: view:res.partner:0 msgid "Starting Date Of Membership" -msgstr "" +msgstr "Üyelik Başlangıç ​​Tarihi" #. module: membership #: help:res.partner,membership_cancel:0 msgid "Date on which membership has been cancelled" -msgstr "" +msgstr "Üyelik iptal edildiği tarihi" #. module: membership #: field:membership.membership_line,date_cancel:0 @@ -736,7 +736,7 @@ msgstr "İptal Tarihi" #. module: membership #: model:process.node,name:membership.process_node_waitingmember0 msgid "Waiting member" -msgstr "" +msgstr "Bekleyen üye" #. module: membership #: model:ir.actions.act_window,name:membership.action_membership_invoice_view @@ -752,30 +752,30 @@ msgstr "Ürün Üyeliği" #. module: membership #: help:membership.membership_line,member_price:0 msgid "Amount for the membership" -msgstr "" +msgstr "Üyelik Tutarı" #. module: membership #: constraint:res.partner:0 msgid "Error ! You cannot create recursive associated members." -msgstr "" +msgstr "Hata! Bu özyinelemeli ilgili üye oluşturamazsınız." #. module: membership #: selection:membership.membership_line,state:0 #: selection:report.membership,membership_state:0 #: selection:res.partner,membership_state:0 msgid "Cancelled Member" -msgstr "" +msgstr "İptalEdilen Üye" #. module: membership #: view:report.membership:0 #: field:report.membership,year:0 msgid "Year" -msgstr "" +msgstr "Yıl" #. module: membership #: view:product.product:0 msgid "Accounting" -msgstr "" +msgstr "Muhasebe" #. module: membership #: view:report.membership:0 diff --git a/addons/membership/i18n/uk.po b/addons/membership/i18n/uk.po index 7c743d9f934..ad8fdbd955a 100644 --- a/addons/membership/i18n/uk.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 809c8f9b8f8..0bf35b3468d 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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 85ff41ed376..70ddcc44f5c 100644 --- a/addons/membership/i18n/zh_CN.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 6f2c634a700..57c16bb5ed0 100644 --- a/addons/membership/i18n/zh_TW.po +++ b/addons/membership/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:56+0000\n" +"X-Generator: Launchpad (build 16753)\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 526f9c55a19..92f3733a769 100644 --- a/addons/mrp/i18n/ar.po +++ b/addons/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -476,7 +476,7 @@ msgid "Scheduled Date" msgstr "تاريخ مجدول" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -660,7 +660,7 @@ msgid "Work Center Load" msgstr "تحميل مركز العمل" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "لا يوجد فاتورة للمواد محددة لهذا المنتج !" @@ -942,7 +942,7 @@ msgid "BoM Type" msgstr "علامة فاتورة القياس" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/bg.po b/addons/mrp/i18n/bg.po index ac5c9250b96..6a4f94f5723 100644 --- a/addons/mrp/i18n/bg.po +++ b/addons/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -480,7 +480,7 @@ msgid "Scheduled Date" msgstr "Планирана дата" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -666,7 +666,7 @@ msgid "Work Center Load" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "" @@ -943,7 +943,7 @@ msgid "BoM Type" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/bs.po b/addons/mrp/i18n/bs.po index 34494637fff..356b04c72e3 100644 --- a/addons/mrp/i18n/bs.po +++ b/addons/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -470,7 +470,7 @@ msgid "Scheduled Date" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -650,7 +650,7 @@ msgid "Work Center Load" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "" @@ -927,7 +927,7 @@ msgid "BoM Type" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/ca.po b/addons/mrp/i18n/ca.po index 27e8771a760..f2e89118a16 100644 --- a/addons/mrp/i18n/ca.po +++ b/addons/mrp/i18n/ca.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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -484,7 +484,7 @@ msgid "Scheduled Date" msgstr "Data prevista" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -671,7 +671,7 @@ msgid "Work Center Load" msgstr "Carga centre de producción" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "No s'ha definit LdM per aquest producte!" @@ -957,7 +957,7 @@ msgid "BoM Type" msgstr "Tipus de llista de materials" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/cs.po b/addons/mrp/i18n/cs.po index 1dbe3f9e41c..bc1ddeaf934 100644 --- a/addons/mrp/i18n/cs.po +++ b/addons/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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\n" #. module: mrp @@ -538,10 +538,10 @@ msgstr "" #: field:mrp.production,date_planned:0 #: report:mrp.production.order:0 msgid "Scheduled Date" -msgstr "Srpen" +msgstr "Plánované datum" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "Výrobní příkaz %s vytvořen." @@ -738,7 +738,7 @@ msgid "Work Center Load" msgstr "Vytížení pracovního střediska" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Tento výrobek nemá definován kusovník!" @@ -1067,7 +1067,7 @@ msgid "BoM Type" msgstr "Druh kusovníku" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" @@ -2393,7 +2393,7 @@ msgstr "Výroby" #: model:ir.model,name:mrp.model_stock_move_split #: view:mrp.production:0 msgid "Split in Serial Numbers" -msgstr "" +msgstr "Rozdělit podle seriových čísel" #. module: mrp #: help:mrp.bom,product_uos:0 diff --git a/addons/mrp/i18n/da.po b/addons/mrp/i18n/da.po index f6d38569ae9..adce8a7571e 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -471,7 +471,7 @@ msgid "Scheduled Date" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -651,7 +651,7 @@ msgid "Work Center Load" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "" @@ -928,7 +928,7 @@ msgid "BoM Type" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/de.po b/addons/mrp/i18n/de.po index 0bda1dae09d..5f7415c7914 100644 --- a/addons/mrp/i18n/de.po +++ b/addons/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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -553,7 +553,7 @@ msgid "Scheduled Date" msgstr "Geplantes Datum" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "Fertigungsauftrag %s wurde erstellt." @@ -750,7 +750,7 @@ msgid "Work Center Load" msgstr "Arbeitsplatz Auslastung" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Keine Stückliste für dieses Produkt definiert." @@ -1089,7 +1089,7 @@ msgid "BoM Type" msgstr "Stücklisten Typ" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/el.po b/addons/mrp/i18n/el.po index 9a160422830..161c6887fca 100644 --- a/addons/mrp/i18n/el.po +++ b/addons/mrp/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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" @@ -473,7 +473,7 @@ msgid "Scheduled Date" msgstr "Προγραμματισμένη Ημερομηνία" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -657,7 +657,7 @@ msgid "Work Center Load" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Δεν έχει οριστεί Κ.Υ. για το Προϊόν!" @@ -934,7 +934,7 @@ msgid "BoM Type" msgstr "Τύπος Κ.Υ." #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/es.po b/addons/mrp/i18n/es.po index ef24085d30d..0dbd9b4dc96 100644 --- a/addons/mrp/i18n/es.po +++ b/addons/mrp/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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -188,7 +188,7 @@ msgid "" "In case the Supply method of the product is Produce, the system creates a " "production order." msgstr "" -"En caso de que el método de suministro del producto es 'Fabricar', el " +"En caso de que el método de suministro del producto sea 'Fabricar', el " "sistema crea una orden de producción." #. module: mrp @@ -539,7 +539,7 @@ msgid "Scheduled Date" msgstr "Fecha programada" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "La orden de producción %s ha sido creada." @@ -736,7 +736,7 @@ msgid "Work Center Load" msgstr "Carga centro de producción" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "¡No se ha definido LdM para este producto!" @@ -1067,7 +1067,7 @@ msgid "BoM Type" msgstr "Tipo de lista de materiales" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" @@ -1182,7 +1182,7 @@ msgstr "Retrasado" #. module: mrp #: model:process.node,name:mrp.process_node_servicemts0 msgid "Make to stock" -msgstr "Obtener para stock" +msgstr "Obtener desde stock" #. module: mrp #: report:bom.structure:0 @@ -1501,7 +1501,7 @@ msgstr "Días de seguridad para cada operación de fabricación." #: model:process.transition,name:mrp.process_transition_servicemts0 #: model:process.transition,name:mrp.process_transition_stockmts0 msgid "Make to Stock" -msgstr "Obtener para stock" +msgstr "Obtener desde stock" #. module: mrp #: constraint:mrp.production:0 @@ -1805,7 +1805,7 @@ msgstr "Fabricar" #: model:process.transition,name:mrp.process_transition_servicemto0 #: model:process.transition,name:mrp.process_transition_stockproduct0 msgid "Make to Order" -msgstr "Obtener bajo pedido" +msgstr "Obtener desde pedido" #. module: mrp #: help:mrp.workcenter,note:0 diff --git a/addons/mrp/i18n/es_AR.po b/addons/mrp/i18n/es_AR.po index 575b5ac684e..36d9c58f998 100644 --- a/addons/mrp/i18n/es_AR.po +++ b/addons/mrp/i18n/es_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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -482,7 +482,7 @@ msgid "Scheduled Date" msgstr "Fecha programada" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -666,7 +666,7 @@ msgid "Work Center Load" msgstr "Carga del centro de producción" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "¡No se ha definido LdM para este producto!" @@ -948,7 +948,7 @@ msgid "BoM Type" msgstr "Tipo de lista de materiales" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/es_CL.po b/addons/mrp/i18n/es_CL.po index 9f57be67a7d..f6301f55aa8 100644 --- a/addons/mrp/i18n/es_CL.po +++ b/addons/mrp/i18n/es_CL.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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -484,7 +484,7 @@ msgid "Scheduled Date" msgstr "Fecha programada" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -673,7 +673,7 @@ msgid "Work Center Load" msgstr "Carga centro de producción" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "¡No se ha definido LdM para este producto!" @@ -962,7 +962,7 @@ msgid "BoM Type" msgstr "Tipo de lista de materiales" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/es_CR.po b/addons/mrp/i18n/es_CR.po index f673088673c..99bf5e2fcac 100644 --- a/addons/mrp/i18n/es_CR.po +++ b/addons/mrp/i18n/es_CR.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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: mrp @@ -485,7 +485,7 @@ msgid "Scheduled Date" msgstr "Fecha programada" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -674,7 +674,7 @@ msgid "Work Center Load" msgstr "Carga centro de producción" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "¡No se ha definido LdM para este producto!" @@ -962,7 +962,7 @@ msgid "BoM Type" msgstr "Tipo de lista de materiales" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/es_EC.po b/addons/mrp/i18n/es_EC.po index 5d0cc19bb70..6ccba7893a3 100644 --- a/addons/mrp/i18n/es_EC.po +++ b/addons/mrp/i18n/es_EC.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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -482,7 +482,7 @@ msgid "Scheduled Date" msgstr "Fecha programada" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -669,7 +669,7 @@ msgid "Work Center Load" msgstr "Carga centro de producción" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "¡No se ha definido LdM para este producto!" @@ -956,7 +956,7 @@ msgid "BoM Type" msgstr "Tipo de lista de materiales" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/es_MX.po b/addons/mrp/i18n/es_MX.po index f9fb2d53cb7..dbb640d827b 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 04:45+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -471,7 +471,7 @@ msgid "Scheduled Date" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -651,7 +651,7 @@ msgid "Work Center Load" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "" @@ -928,7 +928,7 @@ msgid "BoM Type" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/et.po b/addons/mrp/i18n/et.po index e9ff0f49499..ef12deefe06 100644 --- a/addons/mrp/i18n/et.po +++ b/addons/mrp/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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -470,7 +470,7 @@ msgid "Scheduled Date" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -650,7 +650,7 @@ msgid "Work Center Load" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "" @@ -927,7 +927,7 @@ msgid "BoM Type" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/fi.po b/addons/mrp/i18n/fi.po index 33b8b6fcad7..49a950b9f5a 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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -482,7 +482,7 @@ msgid "Scheduled Date" msgstr "Suunniteltu päivämäärä" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -667,7 +667,7 @@ msgid "Work Center Load" msgstr "Työpisteen kuormitus" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Tuotteelle ei ole määritetty osalistaa!" @@ -944,7 +944,7 @@ msgid "BoM Type" msgstr "Osalistan tyyppi" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/fr.po b/addons/mrp/i18n/fr.po index b72f6806aa2..e1fa8d8442d 100644 --- a/addons/mrp/i18n/fr.po +++ b/addons/mrp/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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: field:mrp.bom,product_uos:0 @@ -99,7 +99,7 @@ msgstr "Mettre au rebut" #. module: mrp #: view:mrp.workcenter:0 msgid "Mrp Workcenter" -msgstr "" +msgstr "Poste de charge MRP" #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_routing_action @@ -163,6 +163,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 "" +"Contient le résumé de la discussion (nombre de messages, ...). Ce résumé est " +"au format HTML pour permettre son utilisation dans la vue kanban." #. module: mrp #: model:process.transition,name:mrp.process_transition_servicerfq0 @@ -219,7 +221,7 @@ msgstr "Pour un produit acheté" #. module: mrp #: model:ir.ui.menu,name:mrp.menu_mrp_production_order_action msgid "Order Planning" -msgstr "" +msgstr "Planification des ordres" #. module: mrp #: field:mrp.config.settings,module_mrp_operations:0 @@ -310,6 +312,8 @@ msgid "" "The selection of the right Bill of Material to use will depend on the " "properties specified on the sales order and the Bill of Material." msgstr "" +"La sélection de la nomenclature appropriée dépendra des propriétés " +"spécifiées sur la commande d'achat et la nomenclature." #. module: mrp #: view:mrp.bom:0 @@ -318,6 +322,8 @@ msgid "" " will contain the raw materials, instead of " "the finished product." msgstr "" +"Lors du traitement de la commande de ce produit, le bon de livraison\n" +"contiendra les matières premières au lieu du produit fini." #. module: mrp #: report:mrp.production.order:0 @@ -532,6 +538,17 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour créer une nouvelle propriété.\n" +"

\n" +" Dans OpenERP, les propriétés permettent de sélectionner la " +"nomenclature appropriée lorsqu'il existe plusieurs méthodes " +"pour fabriquer le même produit. Vous pouvez assigner plusieurs propriétés à " +"chaque nomenclature. Lorsqu'un vendeur crée un bon de commande, il peut le " +"relier à plusieurs propriétés et OpenERP sélectionnera automatiquement la " +"nomenclature correspondant aux besoins.\n" +"

\n" +" " #. module: mrp #: view:mrp.production:0 @@ -541,7 +558,7 @@ msgid "Scheduled Date" msgstr "Date planifiée" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "Ordre de fabrication %s créé." @@ -550,7 +567,7 @@ msgstr "Ordre de fabrication %s créé." #: view:mrp.bom:0 #: report:mrp.production.order:0 msgid "Bill Of Material" -msgstr "Nomemclature" +msgstr "Nomenclature" #. module: mrp #: help:mrp.routing,location_id:0 @@ -647,7 +664,7 @@ msgstr "Valeur du stock" #. module: mrp #: model:ir.actions.act_window,name:mrp.action_product_bom_structure msgid "Product BoM Structure" -msgstr "Structure de la nomemclature" +msgstr "Structure de la nomenclature" #. module: mrp #: view:mrp.production:0 @@ -739,7 +756,7 @@ msgid "Work Center Load" msgstr "Occupation du poste de charge" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Pas de nomenclature définie pour cet article !" @@ -1075,7 +1092,7 @@ msgid "BoM Type" msgstr "Type de nomenclature" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" @@ -1191,7 +1208,7 @@ msgstr "En retard" #. module: mrp #: model:process.node,name:mrp.process_node_servicemts0 msgid "Make to stock" -msgstr "Production sur stock" +msgstr "Approvisionnement sur stock" #. module: mrp #: report:bom.structure:0 @@ -1210,7 +1227,7 @@ msgstr "Ordres de fabrication" #. module: mrp #: selection:mrp.production,state:0 msgid "Awaiting Raw Materials" -msgstr "" +msgstr "Attente de matières premières" #. module: mrp #: field:mrp.bom,position:0 @@ -1511,7 +1528,7 @@ msgstr "Jours de sécurité pour chaque opération de production." #: model:process.transition,name:mrp.process_transition_servicemts0 #: model:process.transition,name:mrp.process_transition_stockmts0 msgid "Make to Stock" -msgstr "Production sur stock" +msgstr "Approvisionnement sur stock" #. module: mrp #: constraint:mrp.production:0 @@ -1525,7 +1542,7 @@ msgid "" "purchase order." msgstr "" "Dans le cas où la méthode de fourniture de l'article est \"Acheter\", le " -"système va créer un ordre d'achat." +"système va créer une commande d'achat." #. module: mrp #: model:ir.model,name:mrp.model_procurement_order @@ -1562,7 +1579,7 @@ msgstr "Rechercher un poste de charge MRP" #. module: mrp #: view:mrp.bom:0 msgid "BoM Structure" -msgstr "Structure de la nomemclature" +msgstr "Structure de la nomenclature" #. module: mrp #: field:mrp.production,date_start:0 @@ -1746,6 +1763,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour créer un groupe de propriétés.\n" +"

\n" +" Définissez des groupes de propriétés spécifiques qui peuvent " +"être assignées à votre nomenclature et bon de commande. Les propriétés " +"permettent à OpenERP de sélectionner automatiquement la nomenclature " +"appropriée en fonction des propriétés sélectionnées sur le bon de commande.\n" +"

\n" +" Par exemple, on retrouve deux propriétés dans le groupe de " +"propriétés \"Garantie\" : 1 an de garantie, 3 ans de garantie. En fonction " +"des propriétés sélectionnées sur le bon de commande, OpenERP va planifier un " +"ordre de fabrication en utilisant la nomenclature appropriée.\n" +"

\n" +" " #. module: mrp #: field:mrp.workcenter,capacity_per_cycle:0 @@ -1796,7 +1827,7 @@ msgstr "Fabriquer" #: model:process.transition,name:mrp.process_transition_servicemto0 #: model:process.transition,name:mrp.process_transition_stockproduct0 msgid "Make to Order" -msgstr "Production à la demande" +msgstr "Approvisionnement à la demande" #. module: mrp #: help:mrp.workcenter,note:0 @@ -2329,7 +2360,7 @@ msgstr "Le type d'article est stockable ou consommable." #. module: mrp #: selection:mrp.production,state:0 msgid "Production Started" -msgstr "La production a démarré." +msgstr "La production a démarré" #. module: mrp #: model:process.node,name:mrp.process_node_procureproducts0 @@ -2364,11 +2395,14 @@ msgid "" " The delivery order will be ready once the production " "is done." msgstr "" +"en utilisant la nomenclature associée à ce produit.\n" +"Le bon de livraison sera prêt à l'issue de la production." #. module: mrp #: field:mrp.config.settings,module_stock_no_autopicking:0 msgid "Manage manual picking to fulfill manufacturing orders " msgstr "" +"Gérer les préparations manuellement pour réaliser les ordres de fabrication " #. module: mrp #: view:mrp.routing.workcenter:0 diff --git a/addons/mrp/i18n/gl.po b/addons/mrp/i18n/gl.po index 0446325e37d..9d5cc9b4995 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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -484,7 +484,7 @@ msgid "Scheduled Date" msgstr "Data planificada" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -669,7 +669,7 @@ msgid "Work Center Load" msgstr "Carga centro de produción" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Non se definiu LdM para este produto!" @@ -954,7 +954,7 @@ msgid "BoM Type" msgstr "Tipo de lista de materiais" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/hi.po b/addons/mrp/i18n/hi.po index 855ecde2926..851e78aaf64 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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -471,7 +471,7 @@ msgid "Scheduled Date" msgstr "अनुसूचित तिथि" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -651,7 +651,7 @@ msgid "Work Center Load" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "" @@ -928,7 +928,7 @@ msgid "BoM Type" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/hr.po b/addons/mrp/i18n/hr.po index 8e007896498..29f52ff9525 100644 --- a/addons/mrp/i18n/hr.po +++ b/addons/mrp/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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -482,7 +482,7 @@ msgid "Scheduled Date" msgstr "Planirani datum" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -669,7 +669,7 @@ msgid "Work Center Load" msgstr "Opterećenje radnog centra" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Proizvod nema sastavnicu!" @@ -953,7 +953,7 @@ msgid "BoM Type" msgstr "BoM Type" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/hu.po b/addons/mrp/i18n/hu.po index 0d3c8d3b1a6..8c9bc78422a 100644 --- a/addons/mrp/i18n/hu.po +++ b/addons/mrp/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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -555,7 +555,7 @@ msgid "Scheduled Date" msgstr "Tervezett dátum" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "Gyártási rendelés %s létrehozva." @@ -753,7 +753,7 @@ msgid "Work Center Load" msgstr "Munkaállomás terheltsége" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Az adott termékhez nincsen anyagjegyzék megadva!" @@ -1087,7 +1087,7 @@ msgid "BoM Type" msgstr "Anyagjegyzék tipusa" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/id.po b/addons/mrp/i18n/id.po index 90a7d9bb03f..cba3e61721d 100644 --- a/addons/mrp/i18n/id.po +++ b/addons/mrp/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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -470,7 +470,7 @@ msgid "Scheduled Date" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -650,7 +650,7 @@ msgid "Work Center Load" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "" @@ -927,7 +927,7 @@ msgid "BoM Type" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/it.po b/addons/mrp/i18n/it.po index da8fdd4501f..0926265456a 100644 --- a/addons/mrp/i18n/it.po +++ b/addons/mrp/i18n/it.po @@ -8,13 +8,13 @@ msgstr "" "Report-Msgid-Bugs-To: support@openerp.com\n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-15 09:57+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -535,7 +535,7 @@ msgid "Scheduled Date" msgstr "Data prevista" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "Ordine di Produzione %s creato." @@ -731,7 +731,7 @@ msgid "Work Center Load" msgstr "Carico Centro di Lavoro" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Non è stata definita la distinta base per questo prodotto!" @@ -1069,7 +1069,7 @@ msgid "BoM Type" msgstr "Tipo di Distinta base" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/ja.po b/addons/mrp/i18n/ja.po index 4a2b6b3e70c..7d1da7ddb84 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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -471,7 +471,7 @@ msgid "Scheduled Date" msgstr "予定日" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -653,7 +653,7 @@ msgid "Work Center Load" msgstr "作業センタの負荷" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "この製品のための部品表が定義されていません。" @@ -934,7 +934,7 @@ msgid "BoM Type" msgstr "部品表タイプ" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/ko.po b/addons/mrp/i18n/ko.po index 04647c128e4..c533656d3fd 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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -471,7 +471,7 @@ msgid "Scheduled Date" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -653,7 +653,7 @@ msgid "Work Center Load" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "이 상품에 정의된 BoM이 없습니다 !" @@ -930,7 +930,7 @@ msgid "BoM Type" msgstr "BoM 유형" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/lt.po b/addons/mrp/i18n/lt.po index d531a9fde53..b18ea39592b 100644 --- a/addons/mrp/i18n/lt.po +++ b/addons/mrp/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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: lt\n" #. module: mrp @@ -38,12 +38,12 @@ msgstr "Ciklų skaičius" #. module: mrp #: help:mrp.production,location_src_id:0 msgid "Location where the system will look for components." -msgstr "" +msgstr "Atsargų vieta, iš kurios bus imamos žaliavos." #. module: mrp #: field:mrp.production,workcenter_lines:0 msgid "Work Centers Utilisation" -msgstr "" +msgstr "Darbo centrų panaudojimas" #. module: mrp #: view:mrp.routing.workcenter:0 @@ -55,7 +55,7 @@ msgstr "" #: field:mrp.routing.workcenter,cycle_nbr:0 #: field:report.workcenter.load,cycle:0 msgid "Number of Cycles" -msgstr "" +msgstr "Ciklų skaičius" #. module: mrp #: model:process.transition,note:mrp.process_transition_minimumstockprocure0 @@ -68,17 +68,17 @@ msgstr "" #: code:addons/mrp/report/price.py:130 #, python-format msgid "Hourly Cost" -msgstr "" +msgstr "Valandinė kaina" #. module: mrp #: view:mrp.production:0 msgid "Scrap Products" -msgstr "" +msgstr "Nurašyti produktus" #. module: mrp #: view:mrp.workcenter:0 msgid "Mrp Workcenter" -msgstr "" +msgstr "Mrp darbo centras" #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_routing_action @@ -101,7 +101,7 @@ msgstr "" #: help:mrp.production,message_unread:0 #: help:mrp.production.workcenter.line,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Jeigu pažymėta, naujos žinutės reikalaus jūsų dėmesio." #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 @@ -109,18 +109,20 @@ msgid "" "Number of iterations this work center has to do in the specified operation " "of the routing." msgstr "" +"Pakartojimų skaičius, kurį darbo centras atliks vykdant šią technologinės " +"kortelės operaciją." #. module: mrp #: view:product.product:0 msgid "False" -msgstr "" +msgstr "Ne" #. module: mrp #: view:mrp.bom:0 #: field:mrp.bom,code:0 #: field:mrp.production,name:0 msgid "Reference" -msgstr "Nuoroda" +msgstr "Numeris" #. module: mrp #: view:mrp.production:0 @@ -130,7 +132,7 @@ msgstr "Pabaigti produktai" #. module: mrp #: view:mrp.production:0 msgid "Manufacturing Orders which are currently in production." -msgstr "" +msgstr "Šiuo metu vykdomi gamybos užsakymai." #. module: mrp #: help:mrp.bom,message_summary:0 @@ -140,12 +142,14 @@ msgid "" "Holds the Chatter summary (number of messages, ...). This summary is " "directly in html format in order to be inserted in kanban views." msgstr "" +"Saugo pokalbių suvestinę (žinučių skaičius, ...). Ši apžvalga saugoma html " +"formatu, kad būtų galima įterpti į kanban rodinius." #. module: mrp #: model:process.transition,name:mrp.process_transition_servicerfq0 #: model:process.transition,name:mrp.process_transition_stockrfq0 msgid "To Buy" -msgstr "" +msgstr "Pirkti" #. module: mrp #: model:process.transition,note:mrp.process_transition_purchaseprocure0 @@ -155,7 +159,7 @@ msgstr "" #. module: mrp #: view:mrp.production:0 msgid "Products to Finish" -msgstr "" +msgstr "Produktai Baigti" #. module: mrp #: selection:mrp.bom,method:0 @@ -165,7 +169,7 @@ msgstr "Nustatyti / Pakuoti" #. module: mrp #: field:mrp.workcenter,costs_hour:0 msgid "Cost per hour" -msgstr "Savikaina per valandą" +msgstr "Kaštai per valandą" #. module: mrp #: model:process.transition,note:mrp.process_transition_stockproduction0 @@ -187,34 +191,34 @@ msgstr "Matavimo vienetas" #. module: mrp #: model:process.node,note:mrp.process_node_purchaseprocure0 msgid "For purchased material" -msgstr "" +msgstr "Įsigytoms medžiagos" #. module: mrp #: model:ir.ui.menu,name:mrp.menu_mrp_production_order_action msgid "Order Planning" -msgstr "" +msgstr "Užsakymų planavimas" #. module: mrp #: field:mrp.config.settings,module_mrp_operations:0 msgid "Allow detailed planning of work order" -msgstr "" +msgstr "Leisti darbų užsakymų išsamius planus" #. module: mrp #: code:addons/mrp/mrp.py:633 #, python-format msgid "Cannot cancel manufacturing order!" -msgstr "" +msgstr "Negalite atšaukti gamybos užsakymo!" #. module: mrp #: field:mrp.workcenter,costs_cycle_account_id:0 msgid "Cycle Account" -msgstr "Ciklo sąskaita" +msgstr "Ciklinių kaštų sąskaita" #. module: mrp #: code:addons/mrp/report/price.py:130 #, python-format msgid "Work Cost" -msgstr "" +msgstr "Darbų išlaidos" #. module: mrp #: model:process.transition,name:mrp.process_transition_procureserviceproduct0 @@ -229,7 +233,7 @@ msgstr "Užimtumo informacija" #. module: mrp #: field:mrp.routing,workcenter_lines:0 msgid "Work Centers" -msgstr "" +msgstr "Darbo centrai" #. module: mrp #: model:ir.actions.act_window,help:mrp.mrp_routing_action @@ -245,12 +249,22 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte technologinę kortelę.\n" +"

\n" +" Technologinės kortelės leidžia aprašyti gamybos operacijas, " +"kurias\n" +" turi atlikti darbo centrai, kad pagamintų gaminį.\n" +" Kortelės yra susiejamos su komplektavimo specifikacija,\n" +" kuri apibrėžia žaliavų sąrašą naudojamą gaminio gamyboje.\n" +"

\n" +" " #. module: mrp #: view:mrp.production:0 #: field:mrp.production,move_created_ids2:0 msgid "Produced Products" -msgstr "" +msgstr "Pagaminti produktai" #. module: mrp #: report:mrp.production.order:0 @@ -260,12 +274,12 @@ msgstr "Tikslo vieta" #. module: mrp #: view:mrp.config.settings:0 msgid "Master Data" -msgstr "" +msgstr "Produktų duomenys" #. module: mrp #: field:mrp.config.settings,module_mrp_byproduct:0 msgid "Produce several products from one manufacturing order" -msgstr "" +msgstr "Gaminti keletą produktų iš vieno gamybos užsakymo" #. module: mrp #: help:mrp.config.settings,group_mrp_properties:0 @@ -285,7 +299,7 @@ msgstr "" #. module: mrp #: report:mrp.production.order:0 msgid "Partner Ref" -msgstr "Partnerio nuoroda" +msgstr "Partnerio ident." #. module: mrp #: selection:mrp.workcenter.load,measure_unit:0 @@ -300,7 +314,7 @@ msgstr "Suplanuotos žaliavos" #. module: mrp #: selection:mrp.bom,type:0 msgid "Sets / Phantom" -msgstr "Nustatytas" +msgstr "Rinkinys" #. module: mrp #: view:mrp.production:0 @@ -311,27 +325,28 @@ msgstr "Būsena" #. module: mrp #: help:mrp.bom,position:0 msgid "Reference to a position in an external plan." -msgstr "Nuoroda į poziciją išoriniame plane." +msgstr "" +"Tai gali būti numeris nurodytas išoriniame dokumente (gamybos plane)." #. module: mrp #: model:res.groups,name:mrp.group_mrp_routings msgid "Manage Routings" -msgstr "" +msgstr "Valdyti maršrutus" #. module: mrp #: model:ir.model,name:mrp.model_mrp_product_produce msgid "Product Produce" -msgstr "" +msgstr "Produkto gamyba" #. module: mrp #: constraint:mrp.bom:0 msgid "Error ! You cannot create recursive BoM." -msgstr "" +msgstr "Klaida! Jūs negalite sukurti grįžtamojo BoM." #. module: mrp #: model:ir.model,name:mrp.model_mrp_routing_workcenter msgid "Work Center Usage" -msgstr "" +msgstr "Darbo centro naudojimas" #. module: mrp #: model:process.transition,name:mrp.process_transition_procurestockableproduct0 @@ -355,11 +370,23 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Paspauskite, kad sukurtumėte gamybos užsakymą. \n" +"

\n" +" Gamybos užsakymas, pagal komplektacijos specifikaciją, " +"sunaudos\n" +" žaliavas bei pagamins galutinį produktą.\n" +"

\n" +" Gamybos užsakymai dažniausiai sukuriami pagal pirkėjo\n" +" reikalavimus arba automatines sandėlio lygio palaikymo\n" +" taisykles.\n" +"

\n" +" " #. module: mrp #: sql_constraint:mrp.production:0 msgid "Reference must be unique per Company!" -msgstr "" +msgstr "Nuoroda turi būti unikali kiekvienai įmonei!" #. module: mrp #: code:addons/mrp/report/price.py:139 @@ -378,16 +405,18 @@ msgid "" "Fill this product to easily track your production costs in the analytic " "accounting." msgstr "" +"Pasirinkite šį produktą, kad lengviau būtų galima atsekti gamybos kaštus " +"analitinėse sąskaitose." #. module: mrp #: field:mrp.workcenter,product_id:0 msgid "Work Center Product" -msgstr "" +msgstr "Darbo centro produktas" #. module: mrp #: view:mrp.production:0 msgid "Confirm Production" -msgstr "Patvirtinti gamybą" +msgstr "Patvirtinti užsakymą" #. module: mrp #: model:process.transition,note:mrp.process_transition_stockproduct0 @@ -408,7 +437,7 @@ msgstr "" #: field:mrp.production,product_qty:0 #: field:mrp.production.product.line,product_qty:0 msgid "Product Quantity" -msgstr "Produktų kiekis" +msgstr "Kiekis" #. module: mrp #: help:mrp.production,picking_id:0 @@ -416,6 +445,8 @@ msgid "" "This is the Internal Picking List that brings the finished product to the " "production plan" msgstr "" +"Vidinis perkėlimas naudojamas pagamintų produktų perkėlimui į baigtos " +"produkcijos vietą." #. module: mrp #: model:ir.ui.menu,name:mrp.menu_view_resource_calendar_search_mrp @@ -440,7 +471,7 @@ msgstr "" #. module: mrp #: model:ir.actions.act_window,name:mrp.action_report_in_out_picking_tree msgid "Weekly Stock Value Variation" -msgstr "" +msgstr "Savaitinis atsargų lygio pokytis" #. module: mrp #: model:ir.actions.act_window,help:mrp.mrp_property_action @@ -462,19 +493,34 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad įvestumėte naują savybę.\n" +"

\n" +" Savybės naudojamos tinkamos komplektavimo specifikacijos " +"pasirinkimui,\n" +" gaminant produktą, kuris gali būti pagamintas skirtingais " +"būdais.\n" +" Jūs galite priskirti keletą savybių kiekvienai " +"komplektavimo\n" +" specifikacijai. Kai pardavėjas sukuria pardavimo\n" +" užsakymą, jį gali susieti su keletu savybių\n" +" ir OpenERP automatiškai parinks komplektavimo " +"specifikacija.\n" +"

\n" +" " #. module: mrp #: view:mrp.production:0 #: field:mrp.production,date_planned:0 #: report:mrp.production.order:0 msgid "Scheduled Date" -msgstr "" +msgstr "Suplanuota data" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." -msgstr "" +msgstr "Gamybos užsakymas %s sukurtas." #. module: mrp #: view:mrp.bom:0 @@ -489,14 +535,14 @@ msgid "" "needed.Set a location if you produce at a fixed location. This can be a " "partner location if you subcontract the manufacturing operations." msgstr "" -"Nepildykite, jeigu gamybos vieta, ir galutinė produkcijos vieta sutampa. " -"Vietos nurodomos, jeigu gaminama fiksuotoje vietoje. Tai gali būti ir " -"kontrahento vieta, jeigu jūsų tiekėjai atlieka gamybos operacijas." +"Palikite tuščią lauką, jeigu gamybos ir baigtos produkcijos vietos sutampa. " +"Nurodykite, jeigu gaminama fiksuotoje vietoje. Tai gali būti ir kontakto " +"vieta, jeigu gamyba atliekama subrangos būdu." #. module: mrp #: view:board.board:0 msgid "Stock Value Variation" -msgstr "" +msgstr "Atsargų lygio pokytis" #. module: mrp #: model:ir.actions.act_window,name:mrp.action2 @@ -506,28 +552,28 @@ msgstr "KS struktūra" #. module: mrp #: model:process.node,note:mrp.process_node_serviceproduct0 msgid "Product type is service" -msgstr "" +msgstr "Produkto tipas yra paslauga" #. module: mrp #: help:mrp.workcenter,costs_cycle:0 msgid "Specify Cost of Work Center per cycle." -msgstr "" +msgstr "Įveskite darbo centro patiriamus kaštus per ciklą." #. module: mrp #: model:process.transition,name:mrp.process_transition_bom0 msgid "Manufacturing decomposition" -msgstr "" +msgstr "Gamybos skaidymas" #. module: mrp #: model:process.node,note:mrp.process_node_serviceproduct1 msgid "For Services." -msgstr "" +msgstr "Už paslaugas." #. module: mrp #: model:process.node,note:mrp.process_node_orderrfq0 #: model:process.node,note:mrp.process_node_rfq0 msgid "Request for Quotation." -msgstr "" +msgstr "Kainos paklausimas." #. module: mrp #: view:change.production.qty:0 @@ -536,7 +582,7 @@ msgstr "" #: view:mrp.product_price:0 #: view:mrp.workcenter.load:0 msgid "or" -msgstr "" +msgstr "arba" #. module: mrp #: model:process.transition,note:mrp.process_transition_billofmaterialrouting0 @@ -549,12 +595,12 @@ msgstr "" #: view:mrp.production:0 #: field:mrp.production,move_created_ids:0 msgid "Products to Produce" -msgstr "" +msgstr "Gaminami produktai" #. module: mrp #: view:mrp.config.settings:0 msgid "Apply" -msgstr "" +msgstr "Taikyti" #. module: mrp #: view:mrp.routing:0 @@ -570,7 +616,7 @@ msgstr "Priverstinai rezervuoti" #. module: mrp #: field:report.mrp.inout,value:0 msgid "Stock value" -msgstr "" +msgstr "Atsargų lygis" #. module: mrp #: model:ir.actions.act_window,name:mrp.action_product_bom_structure @@ -580,23 +626,23 @@ msgstr "Produkto KS struktūra" #. module: mrp #: view:mrp.production:0 msgid "Search Production" -msgstr "" +msgstr "Gamybos paieška" #. module: mrp #: help:mrp.routing.workcenter,sequence:0 msgid "" "Gives the sequence order when displaying a list of routing Work Centers." -msgstr "" +msgstr "Eilės tvarka, pagal kurią išdėstomas darbo centrų operacijų sąrašas." #. module: mrp #: field:mrp.bom,child_complete_ids:0 msgid "BoM Hierarchy" -msgstr "" +msgstr "BoM hierarchija" #. module: mrp #: model:process.transition,name:mrp.process_transition_stockproduction0 msgid "To Produce" -msgstr "" +msgstr "Gaminti" #. module: mrp #: help:mrp.config.settings,module_stock_no_autopicking:0 @@ -625,7 +671,7 @@ msgstr "KS eilutės" #. module: mrp #: field:mrp.workcenter,time_start:0 msgid "Time before prod." -msgstr "Laikas prieš gaminimą" +msgstr "Pasiruošimo laikas" #. module: mrp #: help:mrp.routing,active:0 @@ -633,6 +679,8 @@ msgid "" "If the active field is set to False, it will allow you to hide the routing " "without removing it." msgstr "" +"Nebenaudojamos technologinės kortelės gali būti paslėptos, vietoj to, kad " +"būtų pašalintos." #. module: mrp #: model:process.transition,name:mrp.process_transition_billofmaterialrouting0 @@ -644,17 +692,17 @@ msgstr "" #: field:mrp.production,move_lines2:0 #: report:mrp.production.order:0 msgid "Consumed Products" -msgstr "Suvartojami produktai" +msgstr "Sunaudotos žaliavos" #. module: mrp #: model:ir.actions.act_window,name:mrp.action_mrp_workcenter_load_wizard #: model:ir.model,name:mrp.model_mrp_workcenter_load #: model:ir.model,name:mrp.model_report_workcenter_load msgid "Work Center Load" -msgstr "" +msgstr "Darbo centro užimtumas" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Šiam produktui nenustatyta komplektavimo specifikacija!" @@ -663,23 +711,23 @@ msgstr "Šiam produktui nenustatyta komplektavimo specifikacija!" #: model:ir.actions.act_window,name:mrp.mrp_bom_form_action2 #: model:ir.ui.menu,name:mrp.menu_mrp_bom_form_action2 msgid "Bill of Material Components" -msgstr "" +msgstr "Komplektavimo specifikacijos komponentai" #. module: mrp #: model:ir.model,name:mrp.model_stock_move msgid "Stock Move" -msgstr "" +msgstr "Atsargų judėjimas" #. module: mrp #: model:ir.ui.menu,name:mrp.menu_mrp_planning #: view:mrp.config.settings:0 msgid "Planning" -msgstr "" +msgstr "Planavimas" #. module: mrp #: view:mrp.production:0 msgid "Ready" -msgstr "" +msgstr "Paruošta" #. module: mrp #: help:mrp.production,routing_id:0 @@ -689,11 +737,14 @@ msgid "" "operations and to plan future loads on work centers based on production " "plannification." msgstr "" +"Sąrašas darbų (darbo centrų sąrašas) atliekamų gaminant produktą. " +"Technologinės kortelės dažniausiai naudojamos apskaičiuoti darbo centrų " +"veiklos sąnaudoms bei planuoti darbo centrų užimtumą." #. module: mrp #: help:mrp.workcenter,time_cycle:0 msgid "Time in hours for doing one cycle." -msgstr "Vieno ciklo laikas valandomis." +msgstr "Užtrunkamas laikas valandomis vieno ciklo įvykdymui." #. module: mrp #: model:ir.actions.act_window,help:mrp.mrp_bom_form_action2 @@ -708,11 +759,22 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad įdėtumėte komponentą į komplektavimo " +"specifikaciją.\n" +"

\n" +" Komplektavimo specifikacijos komponentai yra komponentai ir " +"subproduktai\n" +" naudojami galutinės komplektavimo specifikacijos sukūrimui. " +"Naudokite šį\n" +" meniu specifikacijų paieškai su tam tikru komponentu.\n" +"

\n" +" " #. module: mrp #: constraint:mrp.bom:0 msgid "BoM line product should not be same as BoM product." -msgstr "" +msgstr "BoM produktų linija neturėtų būti tokia pati kaip BoM produktas." #. module: mrp #: view:mrp.production:0 @@ -761,6 +823,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte darbo centrą.\n" +"

\n" +" Darbo centras leidžia apibrėžti ir valdyti gamybos " +"vienetus.\n" +" Jie gali būti sudaryti iš darbuotojų ir/arba įrengimų, kurie " +"yra\n" +" laikomi kaip vienetai užduočių priskyrimui bei gamybos " +"pajėgumų\n" +" ir įvykdymo prognozavimui.\n" +"

\n" +" " #. module: mrp #: model:process.node,note:mrp.process_node_minimumstockrule0 @@ -788,13 +862,14 @@ msgstr "Produkto pavadinimas" #: help:mrp.bom,product_efficiency:0 msgid "A factor of 0.9 means a loss of 10% within the production process." msgstr "" +"Pasirinkus 0.9 koeficientą reikš, kad 10% žaliavų prarandama gamybos metu." #. module: mrp #: code:addons/mrp/mrp.py:737 #: code:addons/mrp/mrp.py:765 #, python-format msgid "Warning!" -msgstr "" +msgstr "Įspėjimas!" #. module: mrp #: report:mrp.production.order:0 @@ -805,12 +880,12 @@ msgstr "Spausdinimo data" #: model:process.node,name:mrp.process_node_orderrfq0 #: model:process.node,name:mrp.process_node_rfq0 msgid "RFQ" -msgstr "" +msgstr "RFQ" #. module: mrp #: model:process.transition,name:mrp.process_transition_producttostockrules0 msgid "Procurement rule" -msgstr "" +msgstr "Pirkimų taisyklės" #. module: mrp #: help:mrp.workcenter,costs_cycle_account_id:0 @@ -819,16 +894,18 @@ msgid "" "Fill this only if you want automatic analytic accounting entries on " "production orders." msgstr "" +"Pasirinkite, jeigu norite, kad vykdant gamybą, automatiškai būtų sukuriami " +"įrašai analitinėse sąskaitose." #. module: mrp #: view:mrp.production:0 msgid "Mark as Started" -msgstr "" +msgstr "Žymėti kaip pradėta" #. module: mrp #: view:mrp.production:0 msgid "Partial" -msgstr "" +msgstr "Galima dalimis" #. module: mrp #: report:mrp.production.order:0 @@ -851,7 +928,7 @@ msgstr "Skubu" #. module: mrp #: view:mrp.production:0 msgid "Manufacturing Orders which are waiting for raw materials." -msgstr "" +msgstr "Gamybos užsakymai, kurių vykdymui laukiama žaliavų." #. module: mrp #: code:addons/mrp/mrp.py:285 @@ -860,6 +937,8 @@ msgid "" "The Product Unit of Measure you chose has a different category than in the " "product form." msgstr "" +"Produkto matavimo vienetas, kurį pasirinkote, priklauso kitai kategorijai " +"nei esantis produktų formoje." #. module: mrp #: model:ir.model,name:mrp.model_mrp_production @@ -868,7 +947,7 @@ msgstr "" #: field:mrp.production.workcenter.line,production_id:0 #: field:procurement.order,production_id:0 msgid "Manufacturing Order" -msgstr "" +msgstr "Gamybos užsakymas" #. module: mrp #: model:process.transition,name:mrp.process_transition_productionprocureproducts0 @@ -882,6 +961,9 @@ msgid "" "You should install the mrp_byproduct module if you want to manage extra " "products on BoMs !" msgstr "" +"Visas produktų kiekis turi būti didesnis už 0.\n" +"Jūs turite įdiegti mrp_byproduct modulį, jei norite valdyti papildomus BoM " +"produktus!" #. module: mrp #: view:mrp.production:0 @@ -899,13 +981,13 @@ msgstr "Paruošta gamybai" #: field:mrp.production,message_is_follower:0 #: field:mrp.production.workcenter.line,message_is_follower:0 msgid "Is a Follower" -msgstr "" +msgstr "Ar prenumeratorius" #. module: mrp #: view:mrp.bom:0 #: view:mrp.production:0 msgid "Date" -msgstr "" +msgstr "Data" #. module: mrp #: model:ir.actions.act_window,help:mrp.mrp_production_action_planning @@ -924,6 +1006,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Paspauskite, kad sukurtumėte gamybos užsakymą. \n" +"

\n" +" Gamybos užsakymas, pagal komplektacijos specifikaciją, " +"sunaudos\n" +" žaliavas bei pagamins galutinį produktą.\n" +"

\n" +" Gamybos užsakymai dažniausiai sukuriami pagal pirkėjo\n" +" reikalavimus arba automatines sandėlio lygio palaikymo\n" +" taisykles.\n" +"

\n" +" " #. module: mrp #: field:mrp.bom,type:0 @@ -931,7 +1025,7 @@ msgid "BoM Type" msgstr "KS tipas" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" @@ -940,17 +1034,17 @@ msgstr "" #. module: mrp #: view:mrp.property:0 msgid "Search" -msgstr "" +msgstr "Paieška" #. module: mrp #: model:process.node,note:mrp.process_node_billofmaterial0 msgid "Product's structure" -msgstr "" +msgstr "Produkto struktūra" #. module: mrp #: model:ir.model,name:mrp.model_res_company msgid "Companies" -msgstr "" +msgstr "Įmonės" #. module: mrp #: code:addons/mrp/mrp.py:634 @@ -964,27 +1058,27 @@ msgstr "" #: model:process.node,name:mrp.process_node_minimumstockrule0 #: model:process.node,name:mrp.process_node_productminimumstockrule0 msgid "Minimum Stock" -msgstr "" +msgstr "Minimalūs ištekliai" #. module: mrp #: code:addons/mrp/report/price.py:160 #: code:addons/mrp/report/price.py:211 #, python-format msgid "Total Cost of %s %s" -msgstr "" +msgstr "Bendra savikaina - %s %s" #. module: mrp #: model:process.node,name:mrp.process_node_stockproduct0 #: model:process.node,name:mrp.process_node_stockproduct1 #: model:process.process,name:mrp.process_process_stockableproductprocess0 msgid "Stockable Product" -msgstr "Savikaina per valandą" +msgstr "Sandėliuojamas produktas" #. module: mrp #: code:addons/mrp/report/price.py:130 #, python-format msgid "Work Center name" -msgstr "" +msgstr "Darbo centro pavadinimas" #. module: mrp #: field:mrp.routing,code:0 @@ -999,7 +1093,7 @@ msgstr "Valandų skaičius" #. module: mrp #: view:mrp.property:0 msgid "Property Group" -msgstr "Ypatybių grupė" +msgstr "Savybių grupė" #. module: mrp #: field:mrp.config.settings,group_mrp_routings:0 @@ -1009,13 +1103,13 @@ msgstr "" #. module: mrp #: model:process.node,note:mrp.process_node_production0 msgid "Manufacturing Plan." -msgstr "" +msgstr "Gamybos planas." #. module: mrp #: view:mrp.routing:0 #: view:mrp.workcenter:0 msgid "Inactive" -msgstr "" +msgstr "Neaktyvus" #. module: mrp #: view:change.production.qty:0 @@ -1036,17 +1130,17 @@ msgstr "" #. module: mrp #: view:mrp.production:0 msgid "Late" -msgstr "" +msgstr "Pavėluota" #. module: mrp #: model:process.node,name:mrp.process_node_servicemts0 msgid "Make to stock" -msgstr "Iš sandėlio" +msgstr "Iš atsargų" #. module: mrp #: report:bom.structure:0 msgid "BOM Name" -msgstr "" +msgstr "KS pavadinimas" #. module: mrp #: model:ir.actions.act_window,name:mrp.act_product_manufacturing_open @@ -1055,22 +1149,22 @@ msgstr "" #: model:ir.ui.menu,name:mrp.menu_mrp_production_action #: view:mrp.production:0 msgid "Manufacturing Orders" -msgstr "" +msgstr "Gamybos užsakymai" #. module: mrp #: selection:mrp.production,state:0 msgid "Awaiting Raw Materials" -msgstr "" +msgstr "Laukiama Žaliavos" #. module: mrp #: field:mrp.bom,position:0 msgid "Internal Reference" -msgstr "" +msgstr "Vidinis numeris" #. module: mrp #: field:mrp.production,product_uos_qty:0 msgid "Product UoS Quantity" -msgstr "" +msgstr "Kiekis pardavimo matais" #. module: mrp #: field:mrp.bom,name:0 @@ -1090,14 +1184,14 @@ msgstr "Gamybos užsakymo Nr. :" #. module: mrp #: field:mrp.product.produce,mode:0 msgid "Mode" -msgstr "" +msgstr "Būdas" #. module: mrp #: help:mrp.bom,message_ids:0 #: help:mrp.production,message_ids:0 #: help:mrp.production.workcenter.line,message_ids:0 msgid "Messages and communication history" -msgstr "" +msgstr "Žinučių ir pranešimų istorija" #. module: mrp #: field:mrp.workcenter.load,measure_unit:0 @@ -1117,7 +1211,7 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,costs_hour:0 msgid "Specify Cost of Work Center per hour." -msgstr "" +msgstr "Įveskite darbo centro patiriamus kaštus per valandą." #. module: mrp #: help:mrp.workcenter,capacity_per_cycle:0 @@ -1125,16 +1219,19 @@ msgid "" "Number of operations this Work Center can do in parallel. If this Work " "Center represents a team of 5 workers, the capacity per cycle is 5." msgstr "" +"Operacijų skaičius, kurias lygiagrečiai, per vieną ciklą, gali atlikti šis " +"darbo centras. Jeigu darbo centras atvaizduoja komandą iš 5 darbuotojų, tai " +"pajėgumas per ciklą bus lygus 5." #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_production_action3 msgid "Manufacturing Orders in Progress" -msgstr "" +msgstr "Vykdomi gamybos užsakymai" #. module: mrp #: model:ir.actions.client,name:mrp.action_client_mrp_menu msgid "Open MRP Menu" -msgstr "" +msgstr "Atidarykite MRP meniu" #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_production_action4 @@ -1148,7 +1245,7 @@ msgstr "" #: view:mrp.routing:0 #: view:mrp.workcenter:0 msgid "Group By..." -msgstr "" +msgstr "Grupuoti pagal..." #. module: mrp #: code:addons/mrp/report/price.py:130 @@ -1176,7 +1273,7 @@ msgstr "Baigtos produkcijos vieta" #. module: mrp #: model:ir.ui.menu,name:mrp.menu_pm_resources_config msgid "Resources" -msgstr "" +msgstr "Resursai" #. module: mrp #: help:mrp.routing.workcenter,hour_nbr:0 @@ -1184,6 +1281,8 @@ msgid "" "Time in hours for this Work Center to achieve the operation of the specified " "routing." msgstr "" +"Valandų skaičius, per kurias darbo centras atliks šią technologinės kortelės " +"operaciją." #. module: mrp #: field:mrp.workcenter,costs_journal_id:0 @@ -1194,7 +1293,7 @@ msgstr "Analitinis žurnalas" #: code:addons/mrp/report/price.py:139 #, python-format msgid "Supplier Price per Unit of Measure" -msgstr "" +msgstr "Vieneto pirkimo kaina" #. module: mrp #: selection:mrp.workcenter.load,time_unit:0 @@ -1206,7 +1305,7 @@ msgstr "Per savaitę" #: field:mrp.production,message_unread:0 #: field:mrp.production.workcenter.line,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Neperžiūrėtos žinutės" #. module: mrp #: model:process.transition,note:mrp.process_transition_stockmts0 @@ -1218,7 +1317,7 @@ msgstr "" #. module: mrp #: view:mrp.routing:0 msgid "Work Center Operations" -msgstr "" +msgstr "Darbo centrų operacijos" #. module: mrp #: view:mrp.routing:0 @@ -1228,7 +1327,7 @@ msgstr "Pastabos" #. module: mrp #: view:mrp.production:0 msgid "Manufacturing Orders which are ready to start production." -msgstr "" +msgstr "Gamybos užsakymai paruošti pradėti gamybą." #. module: mrp #: model:ir.model,name:mrp.model_mrp_bom @@ -1249,17 +1348,17 @@ msgstr "Pasirinkti laiko vienetą" #: model:ir.ui.menu,name:mrp.menu_mrp_product_form #: view:mrp.config.settings:0 msgid "Products" -msgstr "" +msgstr "Produktai" #. module: mrp #: view:report.workcenter.load:0 msgid "Work Center load" -msgstr "" +msgstr "Darbo centro užimtumas" #. module: mrp #: help:mrp.production,location_dest_id:0 msgid "Location where the system will stock the finished products." -msgstr "Vieta, kurioje talpinami pabaigti produktai ." +msgstr "Atsargų vieta, kurioje talpinami pabaigti produktai ." #. module: mrp #: help:mrp.routing.workcenter,routing_id:0 @@ -1273,7 +1372,7 @@ msgstr "" #: code:addons/mrp/mrp.py:505 #, python-format msgid "Invalid Action!" -msgstr "" +msgstr "Klaidingas veiksmas!" #. module: mrp #: model:process.transition,note:mrp.process_transition_producttostockrules0 @@ -1287,7 +1386,7 @@ msgstr "" #: code:addons/mrp/report/price.py:187 #, python-format msgid "Components Cost of %s %s" -msgstr "" +msgstr "Komponentų savikaina %s %s" #. module: mrp #: selection:mrp.workcenter.load,time_unit:0 @@ -1303,7 +1402,7 @@ msgstr "Svarbumas" #: model:ir.model,name:mrp.model_stock_picking #: field:mrp.production,picking_id:0 msgid "Picking List" -msgstr "" +msgstr "Siunta" #. module: mrp #: help:mrp.production,bom_id:0 @@ -1311,40 +1410,42 @@ msgid "" "Bill of Materials allow you to define the list of required raw materials to " "make a finished product." msgstr "" +"Komplektavimo specifikacija apibrėžia žaliavas bei jų kiekius, kurie " +"sunaudojami produkto gamyboje." #. module: mrp #: code:addons/mrp/mrp.py:375 #, python-format msgid "%s (copy)" -msgstr "" +msgstr "%s (kopija)" #. module: mrp #: model:ir.model,name:mrp.model_mrp_production_product_line msgid "Production Scheduled Product" -msgstr "" +msgstr "Planuojama produkto gamyba" #. module: mrp #: code:addons/mrp/report/price.py:204 #, python-format msgid "Work Cost of %s %s" -msgstr "" +msgstr "Darbo sąnaudos %s %s" #. module: mrp #: help:res.company,manufacturing_lead:0 msgid "Security days for each manufacturing operation." -msgstr "Saugios dienos kiekvienai gamybos operacijai." +msgstr "Atsarga dėl galimo vėlavimo vykdant gamybos operacijas." #. module: mrp #: model:process.node,name:mrp.process_node_mts0 #: model:process.transition,name:mrp.process_transition_servicemts0 #: model:process.transition,name:mrp.process_transition_stockmts0 msgid "Make to Stock" -msgstr "" +msgstr "Iš atsargų" #. module: mrp #: constraint:mrp.production:0 msgid "Order quantity cannot be negative or zero!" -msgstr "" +msgstr "Užsakymo kiekis negali būti neigiamas arba lygus nuliui!" #. module: mrp #: model:process.transition,note:mrp.process_transition_stockrfq0 @@ -1352,6 +1453,8 @@ msgid "" "In case the Supply method of the product is Buy, the system creates a " "purchase order." msgstr "" +"Tuo atveju, jei tiekimo metodas šiems produktams yra Pirkti, sistema sukuria " +"pirkimo pavedimą." #. module: mrp #: model:ir.model,name:mrp.model_procurement_order @@ -1361,7 +1464,7 @@ msgstr "Planinis užsakymas" #. module: mrp #: field:mrp.config.settings,module_product_manufacturer:0 msgid "Define manufacturers on products " -msgstr "" +msgstr "Nustatykite produktų gamintojus " #. module: mrp #: model:ir.actions.act_window,name:mrp.action_view_mrp_product_price_wizard @@ -1373,17 +1476,17 @@ msgstr "Produkto savikainos struktūra" #: code:addons/mrp/report/price.py:139 #, python-format msgid "Components suppliers" -msgstr "" +msgstr "Komponentų tiekėjai" #. module: mrp #: view:mrp.production:0 msgid "Production Work Centers" -msgstr "" +msgstr "Gamybos darbo centrai" #. module: mrp #: view:mrp.workcenter:0 msgid "Search for mrp workcenter" -msgstr "" +msgstr "Ieškoti MRP darbo centro" #. module: mrp #: view:mrp.bom:0 @@ -1398,19 +1501,19 @@ msgstr "Pradžios data" #. module: mrp #: field:mrp.workcenter,costs_hour_account_id:0 msgid "Hour Account" -msgstr "Valandos sąskaita" +msgstr "Valandinių kaštų sąskaita" #. module: mrp #: field:mrp.bom,product_uom:0 #: field:mrp.production,product_uom:0 #: field:mrp.production.product.line,product_uom:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "Matavimo vienetas" #. module: mrp #: view:mrp.production:0 msgid "Destination Loc." -msgstr "" +msgstr "Pristatymo vieta" #. module: mrp #: field:mrp.bom,method:0 @@ -1420,7 +1523,7 @@ msgstr "Metodas" #. module: mrp #: view:mrp.production:0 msgid "Pending" -msgstr "" +msgstr "Laukianti" #. module: mrp #: field:mrp.bom,active:0 @@ -1441,7 +1544,7 @@ msgstr "" #. module: mrp #: view:report.workcenter.load:0 msgid "Work Center Loads" -msgstr "" +msgstr "Darbo centrų užimtumas" #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_property_action @@ -1451,13 +1554,13 @@ msgstr "" #: view:mrp.property:0 #: field:procurement.order,property_ids:0 msgid "Properties" -msgstr "Ypatybės" +msgstr "Savybės" #. module: mrp #: help:mrp.production,origin:0 msgid "" "Reference of the document that generated this production order request." -msgstr "" +msgstr "Dokumento numeris, pagal kurį sugeneruotas šis gamybos užsakymas." #. module: mrp #: model:process.transition,name:mrp.process_transition_minimumstockprocure0 @@ -1472,7 +1575,7 @@ msgstr "Papildoma informacija" #. module: mrp #: model:ir.model,name:mrp.model_change_production_qty msgid "Change Quantity of Products" -msgstr "" +msgstr "Pakeisti produktų kiekį" #. module: mrp #: model:process.node,note:mrp.process_node_productionorder0 @@ -1482,12 +1585,12 @@ msgstr "" #. module: mrp #: field:mrp.production.product.line,product_uos_qty:0 msgid "Product UOS Quantity" -msgstr "" +msgstr "Kiekis pardavimo matais" #. module: mrp #: field:mrp.workcenter,costs_general_account_id:0 msgid "General Account" -msgstr "Bendroji sąskaita" +msgstr "Finansinė sąskaita" #. module: mrp #: report:mrp.production.order:0 @@ -1498,7 +1601,7 @@ msgstr "Pardavimo užsakymo numeris" #: code:addons/mrp/mrp.py:505 #, python-format msgid "Cannot delete a manufacturing order in state '%s'." -msgstr "" +msgstr "Negalima ištrinti gamybos užsakymo būklės '%s'." #. module: mrp #: selection:mrp.production,state:0 @@ -1508,13 +1611,13 @@ msgstr "Atlikta" #. module: mrp #: view:product.product:0 msgid "When you sell this product, OpenERP will trigger" -msgstr "" +msgstr "Parduodant šį produktą, OpenERP sukurs" #. module: mrp #: field:mrp.production,origin:0 #: report:mrp.production.order:0 msgid "Source Document" -msgstr "" +msgstr "Susijęs dokumentas" #. module: mrp #: selection:mrp.production,priority:0 @@ -1524,7 +1627,7 @@ msgstr "Neskubu" #. module: mrp #: field:mrp.production,user_id:0 msgid "Responsible" -msgstr "" +msgstr "Atsakingas asmuo" #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_production_action2 @@ -1540,7 +1643,7 @@ msgstr "" #: view:mrp.workcenter:0 #: field:report.workcenter.load,workcenter_id:0 msgid "Work Center" -msgstr "" +msgstr "Darbo centras" #. module: mrp #: model:ir.actions.act_window,help:mrp.mrp_property_group_action @@ -1566,11 +1669,30 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad sukurtumėte savybių grupę.\n" +"

\n" +" Sukurkite savybių grupes, kurios gali būti priskirtos prie " +"komplektavimo\n" +" specifikacijų ir pardavimo užsakymų. Savybės leidžia " +"sistemai automatiškai\n" +" parinkti tinkamą komplektavimo specifikaciją pagal pardavėjo " +"pasirinktas\n" +" savybes pardavimo užsakymuose.\n" +"

\n" +" Pavyzdžiui, savybių grupėje „Garantija“, galite sukurti\n" +" dvejas savybes: 1 metų garantija, 3 metų garantija. " +"Priklausomai\n" +" nuo pardavimų užsakyme pasirinktos savybės, OpenERP\n" +" sukurs gamybos užsakymą su atitinkama komplektavimo " +"specifikacija.\n" +"

\n" +" " #. module: mrp #: field:mrp.workcenter,capacity_per_cycle:0 msgid "Capacity per Cycle" -msgstr "Užimtumas per ciklą" +msgstr "Pajėgumas per ciklą" #. module: mrp #: model:ir.model,name:mrp.model_product_product @@ -1597,32 +1719,32 @@ msgstr "Žaliavų vieta" #. module: mrp #: view:mrp.product_price:0 msgid "Print Cost Structure of Product." -msgstr "" +msgstr "Spausdinti produkto savikainos struktūrą" #. module: mrp #: field:mrp.bom,product_uos:0 #: field:mrp.production.product.line,product_uos:0 msgid "Product UOS" -msgstr "Produkto mat. vnt." +msgstr "Pardavimo matai" #. module: mrp #: view:mrp.production:0 msgid "Consume Products" -msgstr "" +msgstr "Plataus vartojimo prekės" #. module: mrp #: model:ir.actions.act_window,name:mrp.act_mrp_product_produce #: view:mrp.product.produce:0 #: view:mrp.production:0 msgid "Produce" -msgstr "" +msgstr "Gaminti" #. module: mrp #: model:process.node,name:mrp.process_node_stock0 #: model:process.transition,name:mrp.process_transition_servicemto0 #: model:process.transition,name:mrp.process_transition_stockproduct0 msgid "Make to Order" -msgstr "" +msgstr "Pateikus užsakymą" #. module: mrp #: help:mrp.workcenter,note:0 @@ -1630,6 +1752,7 @@ msgid "" "Description of the Work Center. Explain here what's a cycle according to " "this Work Center." msgstr "" +"Darbo centro aprašymas. Paaiškinkite ką reiškia ciklas pagal šį darbo centrą." #. module: mrp #: field:mrp.production,date_finished:0 @@ -1639,19 +1762,18 @@ msgstr "Pabaigos data" #. module: mrp #: field:mrp.workcenter,resource_id:0 msgid "Resource" -msgstr "" +msgstr "Resursas" #. module: mrp #: help:mrp.bom,date_start:0 #: help:mrp.bom,date_stop:0 msgid "Validity of this BoM or component. Keep empty if it's always valid." -msgstr "" -"KS ar jos komponenčių galiojimas. Palikti tuščią, jeigu visada galioja." +msgstr "Šios komplektavimo specifikacijos ar KS komponento galiojimas." #. module: mrp #: field:mrp.production,product_uos:0 msgid "Product UoS" -msgstr "Pardavimo vnt." +msgstr "Pardavimo matai" #. module: mrp #: selection:mrp.production,priority:0 @@ -1666,26 +1788,29 @@ msgid "" "operations and to plan future loads on work centers based on production " "planning." msgstr "" +"Sąrašas darbų (darbo centrų sąrašas) atliekamų gaminant produktą. " +"Technologinės kortelės dažniausiai naudojamos apskaičiuoti darbo centrų " +"veiklos sąnaudoms bei planuoti darbo centrų užimtumą." #. module: mrp #: view:change.production.qty:0 msgid "Approve" -msgstr "" +msgstr "Patvirtinti" #. module: mrp #: view:mrp.config.settings:0 msgid "Order" -msgstr "" +msgstr "Užsakymas" #. module: mrp #: view:mrp.property.group:0 msgid "Properties categories" -msgstr "Ypatybių kategorijos" +msgstr "Savybių kategorijos" #. module: mrp #: help:mrp.production.workcenter.line,sequence:0 msgid "Gives the sequence order when displaying a list of work orders." -msgstr "" +msgstr "Eilės tvarka, pagal kurią išdėstomas darbų sekos sąrašas." #. module: mrp #: report:mrp.production.order:0 @@ -1701,7 +1826,7 @@ msgstr "Suplanuoti produktai" #. module: mrp #: model:res.groups,name:mrp.group_mrp_manager msgid "Manager" -msgstr "" +msgstr "Vadovas" #. module: mrp #: help:mrp.product.produce,mode:0 @@ -1712,33 +1837,38 @@ msgid "" "the quantity selected and it will finish the production order when total " "ordered quantities are produced." msgstr "" +"„Tik sunaudoti žaliavas“ rėžime bus tik sunaudotos žaliavos pasirinktam " +"kiekiui gaminių.\n" +"„Sunaudoti žaliavas ir pagaminti“ rėžime bus sunaudotos žaliavos bei " +"pagamintas pasirinktas kiekis gaminių. Gamybos užsakymas bus baigtas " +"pagaminus visą užsakymo kiekį." #. module: mrp #: view:mrp.production:0 #: report:mrp.production.order:0 msgid "Work Orders" -msgstr "Darbo užsakymai" +msgstr "Darbų seka" #. module: mrp #: field:mrp.workcenter,costs_cycle:0 msgid "Cost per cycle" -msgstr "Savikaina per ciklą" +msgstr "Kaštai per ciklą" #. module: mrp #: model:process.node,name:mrp.process_node_serviceproduct0 #: model:process.node,name:mrp.process_node_serviceproduct1 msgid "Service" -msgstr "" +msgstr "Paslauga" #. module: mrp #: selection:mrp.production,state:0 msgid "Cancelled" -msgstr "" +msgstr "Atšauktas" #. module: mrp #: view:mrp.production:0 msgid "(Update)" -msgstr "" +msgstr "(Atnaujinti)" #. module: mrp #: help:mrp.config.settings,module_mrp_operations:0 @@ -1771,17 +1901,17 @@ msgstr "" #: field:mrp.routing.workcenter,company_id:0 #: view:mrp.workcenter:0 msgid "Company" -msgstr "" +msgstr "Įmonė" #. module: mrp #: view:mrp.bom:0 msgid "Default Unit of Measure" -msgstr "" +msgstr "Matavimo vienetai" #. module: mrp #: field:mrp.workcenter,time_cycle:0 msgid "Time for 1 cycle (hour)" -msgstr "Laikas vienam ciklui (valandomis)" +msgstr "Ciklo vykdymo laikas" #. module: mrp #: model:ir.actions.report.xml,name:mrp.report_mrp_production_report @@ -1801,7 +1931,7 @@ msgstr "" #: field:mrp.production,message_ids:0 #: field:mrp.production.workcenter.line,message_ids:0 msgid "Messages" -msgstr "" +msgstr "Pranešimai" #. module: mrp #: view:mrp.production:0 @@ -1814,14 +1944,14 @@ msgstr "Apskaičiuoti duomenis" #: code:addons/mrp/wizard/change_production_qty.py:88 #, python-format msgid "Error!" -msgstr "" +msgstr "Klaida!" #. module: mrp #: code:addons/mrp/report/price.py:139 #: view:mrp.bom:0 #, python-format msgid "Components" -msgstr "" +msgstr "Komponentai" #. module: mrp #: report:bom.structure:0 @@ -1852,23 +1982,23 @@ msgstr "Įprastas KS" #. module: mrp #: field:res.company,manufacturing_lead:0 msgid "Manufacturing Lead Time" -msgstr "" +msgstr "Pagaminimo terminas" #. module: mrp #: code:addons/mrp/mrp.py:285 #, python-format msgid "Warning" -msgstr "" +msgstr "Įspėjimas" #. module: mrp #: field:mrp.bom,product_uos_qty:0 msgid "Product UOS Qty" -msgstr "Produkto mat. vnt. kiekis" +msgstr "Kiekis pardavimo matais" #. module: mrp #: field:mrp.production,move_prod_id:0 msgid "Product Move" -msgstr "" +msgstr "Atsargų judėjimas" #. module: mrp #: model:ir.actions.act_window,help:mrp.action_report_in_out_picking_tree @@ -1886,14 +2016,14 @@ msgstr "Patvirtinti" #. module: mrp #: field:mrp.bom,product_efficiency:0 msgid "Manufacturing Efficiency" -msgstr "" +msgstr "Gamybos našumas" #. module: mrp #: field:mrp.bom,message_follower_ids:0 #: field:mrp.production,message_follower_ids:0 #: field:mrp.production.workcenter.line,message_follower_ids:0 msgid "Followers" -msgstr "" +msgstr "Prenumeratoriai" #. module: mrp #: help:mrp.bom,active:0 @@ -1901,21 +2031,23 @@ msgid "" "If the active field is set to False, it will allow you to hide the bills of " "material without removing it." msgstr "" +"Nebenaudojamos komplektavimo specifikacijos gali būti paslėptos, vietoj to, " +"kad būtų pašalintos." #. module: mrp #: field:mrp.bom,product_rounding:0 msgid "Product Rounding" -msgstr "Produkto apvalinimas" +msgstr "Kiekio apvalinimas" #. module: mrp #: selection:mrp.production,state:0 msgid "New" -msgstr "" +msgstr "Naujas" #. module: mrp #: selection:mrp.product.produce,mode:0 msgid "Consume Only" -msgstr "" +msgstr "Tik sunaudoti žaliavas" #. module: mrp #: view:mrp.production:0 @@ -1935,12 +2067,12 @@ msgstr "Nustatymai" #. module: mrp #: view:mrp.bom:0 msgid "Starting Date" -msgstr "" +msgstr "Pradžios data" #. module: mrp #: field:mrp.workcenter,time_stop:0 msgid "Time after prod." -msgstr "Laikas po gaminimo" +msgstr "Užbaigimo laikas" #. module: mrp #: field:mrp.workcenter.load,time_unit:0 @@ -1957,12 +2089,12 @@ msgstr "Kiek iš viso" #: field:mrp.routing.workcenter,hour_nbr:0 #: field:report.workcenter.load,hour:0 msgid "Number of Hours" -msgstr "Valandų kiekis" +msgstr "Valandų skaičius" #. module: mrp #: view:mrp.workcenter:0 msgid "Costing Information" -msgstr "" +msgstr "Kaštai" #. module: mrp #: model:process.node,name:mrp.process_node_purchaseprocure0 @@ -1972,7 +2104,7 @@ msgstr "Planiniai užsakymai" #. module: mrp #: help:mrp.bom,product_rounding:0 msgid "Rounding applied on the product quantity." -msgstr "" +msgstr "Produktų kiekio apvalinimo koeficientas." #. module: mrp #: model:process.node,note:mrp.process_node_stock0 @@ -1997,6 +2129,20 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Spauskite, kad įvestumėte naują komplektavimo specifikaciją. " +"\n" +"

\n" +" Komplektavimo specifikacijoje aprašomas sąrašas reikiamų " +"žaliavų\n" +" norint pagaminti gaminį; naudojant gamybos užsakymą\n" +" ar produktų paką.\n" +"

\n" +" OpenERP naudoja šias specifikacijas, kad automatiškai " +"sukurtų\n" +" gamybos užsakymą pagal planinių užsakymų poreikius.\n" +"

\n" +" " #. module: mrp #: field:mrp.routing.workcenter,routing_id:0 @@ -2006,7 +2152,7 @@ msgstr "Tėvinė techn. kortelė" #. module: mrp #: help:mrp.workcenter,time_start:0 msgid "Time in hours for the setup." -msgstr "Laikas valandomis pradėti gamybai" +msgstr "Užtrunkamas laikas valandomis pasiruošimui prieš pradedant gamybą." #. module: mrp #: field:mrp.config.settings,module_mrp_repair:0 @@ -2031,7 +2177,7 @@ msgstr "KS" #: model:ir.model,name:mrp.model_report_mrp_inout #: view:report.mrp.inout:0 msgid "Stock value variation" -msgstr "" +msgstr "Atsargų lygio pokytis" #. module: mrp #: model:process.node,note:mrp.process_node_mts0 @@ -2043,46 +2189,46 @@ msgstr "" #: code:addons/mrp/report/price.py:139 #, python-format msgid "Cost Price per Unit of Measure" -msgstr "" +msgstr "Vieneto savikaina" #. module: mrp #: field:report.mrp.inout,date:0 #: view:report.workcenter.load:0 #: field:report.workcenter.load,name:0 msgid "Week" -msgstr "" +msgstr "Savaitė" #. module: mrp #: selection:mrp.production,priority:0 msgid "Normal" -msgstr "" +msgstr "Įprasta" #. module: mrp #: view:mrp.production:0 msgid "Production started late" -msgstr "" +msgstr "Pavėluotai pradėta gamyba" #. module: mrp #: model:process.node,note:mrp.process_node_routing0 msgid "Manufacturing Steps." -msgstr "" +msgstr "Gamybos etapai." #. module: mrp #: code:addons/mrp/report/price.py:146 #: model:ir.actions.report.xml,name:mrp.report_cost_structure #, python-format msgid "Cost Structure" -msgstr "" +msgstr "Savikainos struktūra" #. module: mrp #: model:res.groups,name:mrp.group_mrp_user msgid "User" -msgstr "" +msgstr "Naudotojas" #. module: mrp #: selection:mrp.product.produce,mode:0 msgid "Consume & Produce" -msgstr "" +msgstr "Sunaudoti žaliavas ir pagaminti" #. module: mrp #: field:mrp.bom,bom_id:0 @@ -2092,7 +2238,7 @@ msgstr "Tėvinė KS" #. module: mrp #: report:bom.structure:0 msgid "BOM Ref" -msgstr "" +msgstr "KS nr." #. module: mrp #: code:addons/mrp/mrp.py:765 @@ -2110,7 +2256,7 @@ msgstr "" #. module: mrp #: selection:mrp.production,state:0 msgid "Production Started" -msgstr "" +msgstr "Pradėta gamyba" #. module: mrp #: model:process.node,name:mrp.process_node_procureproducts0 @@ -2120,7 +2266,7 @@ msgstr "Užsakyti produktus" #. module: mrp #: field:mrp.product.produce,product_qty:0 msgid "Select Quantity" -msgstr "" +msgstr "Gaminamas kiekis" #. module: mrp #: model:ir.actions.act_window,name:mrp.mrp_bom_form_action @@ -2145,6 +2291,9 @@ msgid "" " The delivery order will be ready once the production " "is done." msgstr "" +"naudojant produktui priskirtą komplektavimo specifikaciją.\n" +" Išvykstančių produktų siunta bus paruošta atlikus " +"gamybos užsakymą." #. module: mrp #: field:mrp.config.settings,module_stock_no_autopicking:0 @@ -2166,7 +2315,7 @@ msgstr "Gamyba" #: model:ir.model,name:mrp.model_stock_move_split #: view:mrp.production:0 msgid "Split in Serial Numbers" -msgstr "" +msgstr "Išskaidyti į partijas" #. module: mrp #: help:mrp.bom,product_uos:0 @@ -2174,6 +2323,8 @@ msgid "" "Product UOS (Unit of Sale) is the unit of measurement for the invoicing and " "promotion of stock." msgstr "" +"Pardavimo matai yra matavimo vientai naudojami sąskaitų išrašymui bei " +"pasiūlymų formavimui." #. module: mrp #: view:mrp.production:0 @@ -2185,22 +2336,22 @@ msgstr "Gamyba" #: model:ir.model,name:mrp.model_mrp_production_workcenter_line #: field:mrp.production.workcenter.line,name:0 msgid "Work Order" -msgstr "" +msgstr "Užduoties pavadinimas" #. module: mrp #: view:board.board:0 msgid "Procurements in Exception" -msgstr "" +msgstr "Neįvykdyti planiniai užsakymai" #. module: mrp #: model:ir.model,name:mrp.model_mrp_product_price msgid "Product Price" -msgstr "" +msgstr "Produkto kaina" #. module: mrp #: view:change.production.qty:0 msgid "Change Quantity" -msgstr "" +msgstr "Pakeisti kiekį" #. module: mrp #: view:change.production.qty:0 @@ -2224,7 +2375,7 @@ msgstr "" #: code:addons/mrp/wizard/change_production_qty.py:68 #, python-format msgid "Active Id not found" -msgstr "" +msgstr "Aktyvus ID nerastas" #. module: mrp #: model:process.node,note:mrp.process_node_procureproducts0 @@ -2248,6 +2399,11 @@ msgid "" "product, it will be sold and shipped as a set of components, instead of " "being produced." msgstr "" +"Jeigu subproduktas naudojamas keletoje gaminių, gali būti naudinga sukurti " +"jo KS. Visgi, jei nenorite sukurti atskirų gamybos užsakymų šiam " +"subproduktui, pasirinkite KS tipą „Rinkinys“. Jeigu „Rinkinys“ naudojamas " +"tėviniam gaminiui, tai jis bus parduotas ir pristatytas kaip atskirų " +"produktų (komponentų) rinkinys, o ne kaip gaminys." #. module: mrp #: model:ir.actions.act_window,name:mrp.action_mrp_configuration @@ -2260,7 +2416,7 @@ msgstr "" msgid "" "a manufacturing\n" " order" -msgstr "" +msgstr "gamybos užsakymą," #. module: mrp #: field:mrp.config.settings,group_mrp_properties:0 @@ -2271,7 +2427,7 @@ msgstr "" #: model:ir.actions.act_window,name:mrp.mrp_property_group_action #: model:ir.ui.menu,name:mrp.menu_mrp_property_group_action msgid "Property Groups" -msgstr "" +msgstr "Savybių grupės" #. module: mrp #: model:ir.model,name:mrp.model_mrp_routing @@ -2294,14 +2450,16 @@ msgstr "" #. module: mrp #: help:mrp.workcenter,time_stop:0 msgid "Time in hours for the cleaning." -msgstr "Laikas valandomis pasiruošimui." +msgstr "" +"Užtrunkamas laikas valandomis darbo vietos valymui ar įrengimų tvarkymui " +"pabaigus gamybą." #. module: mrp #: field:mrp.bom,message_summary:0 #: field:mrp.production,message_summary:0 #: field:mrp.production.workcenter.line,message_summary:0 msgid "Summary" -msgstr "" +msgstr "Santrauka" #. module: mrp #: model:process.transition,name:mrp.process_transition_purchaseprocure0 @@ -2329,6 +2487,8 @@ msgid "" "Specify quantity of products to produce or buy. Report of Cost structure " "will be displayed base on this quantity." msgstr "" +"Nurodykite gaminamą ar perkamą produktų kiekį. Produkto savikainos " +"struktūros ataskaita bus paruošta pagal šį kiekį." #. module: mrp #: selection:mrp.bom,method:0 @@ -2346,24 +2506,25 @@ msgstr "Seka" #. module: mrp #: model:ir.ui.menu,name:mrp.menu_view_resource_calendar_leaves_search_mrp msgid "Resource Leaves" -msgstr "" +msgstr "Resursų prastovos" #. module: mrp #: help:mrp.bom,sequence:0 msgid "Gives the sequence order when displaying a list of bills of material." msgstr "" +"Eilės tvarka, pagal kurią išdėstomas komplektavimo specifikacijos sąrašas." #. module: mrp #: model:ir.model,name:mrp.model_mrp_config_settings msgid "mrp.config.settings" -msgstr "" +msgstr "mrp.config.settings" #. module: mrp #: view:mrp.production:0 #: field:mrp.production,move_lines:0 #: report:mrp.production.order:0 msgid "Products to Consume" -msgstr "" +msgstr "Naudojamos žaliavos" #~ msgid "Moves Created" #~ msgstr "Sukurta perdavimų" diff --git a/addons/mrp/i18n/lv.po b/addons/mrp/i18n/lv.po index d441623e907..7ba9c6d0747 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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -476,7 +476,7 @@ msgid "Scheduled Date" msgstr "Ieplānotais datums" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "Ražošanas orderis %s izveidots." @@ -656,7 +656,7 @@ msgid "Work Center Load" msgstr "Resursa noslodze" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Šim produktam nav nodefinēta recepte!" @@ -941,7 +941,7 @@ msgid "BoM Type" msgstr "Receptes tips" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/mk.po b/addons/mrp/i18n/mk.po index 67c787b22c8..f8616055c74 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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -538,7 +538,7 @@ msgid "Scheduled Date" msgstr "Закажан датум" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "Налогот за производство %s е креиран." @@ -720,7 +720,7 @@ msgid "Work Center Load" msgstr "Оптова на работен центар" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Нема дефинирано спецификација за овој производ !" @@ -1035,7 +1035,7 @@ msgid "BoM Type" msgstr "Тип на спецификација" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" @@ -1296,7 +1296,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/i18n/mn.po b/addons/mrp/i18n/mn.po index 53f793c1804..fbadd14d74a 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-06-05 05:32+0000\n" -"X-Generator: Launchpad (build 16660)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -423,7 +423,7 @@ msgstr "" #: field:mrp.production,product_qty:0 #: field:mrp.production.product.line,product_qty:0 msgid "Product Quantity" -msgstr "Барааны тоо" +msgstr "Барааны тоо хэмжээ" #. module: mrp #: help:mrp.production,picking_id:0 @@ -488,7 +488,7 @@ msgid "Scheduled Date" msgstr "Товлогдсон огноо" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "Үйлдвэрлэлийн захиалга %s үүсгэгдлээ." @@ -673,7 +673,7 @@ msgid "Work Center Load" msgstr "Дамжлагын Ачаалал" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Энэ бараанд орц тодорхойлогдоогүй байна !" @@ -842,6 +842,8 @@ msgid "" "Fill this only if you want automatic analytic accounting entries on " "production orders." msgstr "" +"Үйлдвэрлэлийн захиалга дээр шинжилгээний бичилтийг автоматаар хийх " +"тохиолдолд л үүнийг бөглөнө." #. module: mrp #: view:mrp.production:0 @@ -957,7 +959,7 @@ msgid "BoM Type" msgstr "Орцын төрөл" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" @@ -1091,7 +1093,7 @@ msgstr "Үйлдвэрлэлийн Захиалгууд" #. module: mrp #: selection:mrp.production,state:0 msgid "Awaiting Raw Materials" -msgstr "" +msgstr "Түүхий эд материалыг хүлээж байна" #. module: mrp #: field:mrp.bom,position:0 @@ -1101,7 +1103,7 @@ msgstr "Дотоод Сурвалж" #. module: mrp #: field:mrp.production,product_uos_qty:0 msgid "Product UoS Quantity" -msgstr "" +msgstr "Барааны борлуулалтын нэгжээрх тоо хэмжээ" #. module: mrp #: field:mrp.bom,name:0 @@ -1403,7 +1405,7 @@ msgstr "Татан авалт" #. module: mrp #: field:mrp.config.settings,module_product_manufacturer:0 msgid "Define manufacturers on products " -msgstr "" +msgstr "Бараауудад үйлдвэрлэлгчийг тодорхойлох " #. module: mrp #: model:ir.actions.act_window,name:mrp.action_view_mrp_product_price_wizard @@ -1524,7 +1526,7 @@ msgstr "Түүхийн эдийн татан авах захиалгуудыг #. module: mrp #: field:mrp.production.product.line,product_uos_qty:0 msgid "Product UOS Quantity" -msgstr "" +msgstr "Барааны борлуулалтын нэгжээрх тоо хэмжээ" #. module: mrp #: field:mrp.workcenter,costs_general_account_id:0 @@ -1922,7 +1924,7 @@ msgstr "Барааны борлуулалтын нэгжээрх тоо" #. module: mrp #: field:mrp.production,move_prod_id:0 msgid "Product Move" -msgstr "" +msgstr "Барааны хөдөлгөөн" #. module: mrp #: model:ir.actions.act_window,help:mrp.action_report_in_out_picking_tree @@ -2285,7 +2287,7 @@ msgstr "Үйлдвэрлэлийн самбар" #: code:addons/mrp/wizard/change_production_qty.py:68 #, python-format msgid "Active Id not found" -msgstr "" +msgstr "Идэвхтэй Id олдсонгүй" #. module: mrp #: model:process.node,note:mrp.process_node_procureproducts0 @@ -2314,7 +2316,7 @@ msgstr "" #: model:ir.actions.act_window,name:mrp.action_mrp_configuration #: view:mrp.config.settings:0 msgid "Configure Manufacturing" -msgstr "" +msgstr "Үйлдвэрлэлийг тохируулах" #. module: mrp #: view:product.product:0 diff --git a/addons/mrp/i18n/nb.po b/addons/mrp/i18n/nb.po index e149a55181b..5a1e2c55692 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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -485,7 +485,7 @@ msgid "Scheduled Date" msgstr "Planlagt Dato" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -673,7 +673,7 @@ msgid "Work Center Load" msgstr "Arbeidssenter belastning" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Ingen Materialliste er definert for dette produktet !" @@ -957,7 +957,7 @@ msgid "BoM Type" msgstr "Materialliste Type" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/nl.po b/addons/mrp/i18n/nl.po index 6bc4f4e756d..2ea22edf407 100644 --- a/addons/mrp/i18n/nl.po +++ b/addons/mrp/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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -46,7 +46,7 @@ msgstr "Aantal cycli" #. module: mrp #: help:mrp.production,location_src_id:0 msgid "Location where the system will look for components." -msgstr "Locatie waar het systeem zoekt voor componeten" +msgstr "Locatie waar het systeem zoekt voor componenten." #. module: mrp #: field:mrp.production,workcenter_lines:0 @@ -94,7 +94,7 @@ msgstr "Productiestap" #: model:ir.actions.act_window,name:mrp.mrp_routing_action #: model:ir.ui.menu,name:mrp.menu_mrp_routing_action msgid "Routings" -msgstr "Productiestappen" +msgstr "Productieroutes" #. module: mrp #: view:mrp.bom:0 @@ -354,7 +354,7 @@ msgstr "Refereert aan een positie in een extern plan." #. module: mrp #: model:res.groups,name:mrp.group_mrp_routings msgid "Manage Routings" -msgstr "Productiestappen beheren" +msgstr "Productieroutes beheren" #. module: mrp #: model:ir.model,name:mrp.model_mrp_product_produce @@ -560,7 +560,7 @@ msgid "Scheduled Date" msgstr "Geplande datum" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "Productieorder %s aangemaakt." @@ -741,7 +741,7 @@ msgstr "" #. module: mrp #: model:process.transition,name:mrp.process_transition_billofmaterialrouting0 msgid "Material Routing" -msgstr "Materiaal productiestappen" +msgstr "Materiaal productieroute" #. module: mrp #: view:mrp.production:0 @@ -758,7 +758,7 @@ msgid "Work Center Load" msgstr "Productiestap belasting" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Geen materiaallijst opgegeven voor dit product !" @@ -966,7 +966,7 @@ msgstr "" #. module: mrp #: view:mrp.production:0 msgid "Mark as Started" -msgstr "Markeert als gestart" +msgstr "Markeer als gestart" #. module: mrp #: view:mrp.production:0 @@ -1096,7 +1096,7 @@ msgid "BoM Type" msgstr "Materiaallijst soort" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" @@ -1173,7 +1173,7 @@ msgstr "Eigenschappengroep" #. module: mrp #: field:mrp.config.settings,group_mrp_routings:0 msgid "Manage routings and work orders " -msgstr "Productiestappen en werkopdrachten beheren " +msgstr "Productieroutes en werkopdrachten beheren " #. module: mrp #: model:process.node,note:mrp.process_node_production0 @@ -1402,7 +1402,7 @@ msgstr "" #. module: mrp #: view:mrp.routing:0 msgid "Work Center Operations" -msgstr "Productiestappen" +msgstr "Productiestap bewerkingen" #. module: mrp #: view:mrp.routing:0 @@ -1452,7 +1452,7 @@ msgid "" "Routing is indicated then,the third tab of a production order (Work Centers) " "will be automatically pre-completed." msgstr "" -"Productie routes geven alle gebruikte productiestappen weer, voor hoe lang " +"Productieroutes geven alle gebruikte productiestappen weer, voor hoe lang " "en/of cycly. Indien een productie route is aangegeven dan wordt het derde " "tabblad van een productieorder (productiestappen) automatisch van tevoren " "ingevuld." @@ -1556,7 +1556,7 @@ msgstr "Verwerving" #. module: mrp #: field:mrp.config.settings,module_product_manufacturer:0 msgid "Define manufacturers on products " -msgstr "Definieer producenten bij producten " +msgstr "Definieer fabrikanten bij producten " #. module: mrp #: model:ir.actions.act_window,name:mrp.action_view_mrp_product_price_wizard @@ -1632,8 +1632,8 @@ msgid "" "are attached to bills of materials\n" " that will define the required raw materials." msgstr "" -"Productie routes geven u de mogelijkheid om productie bewerkingen te maken " -"en te beheren,\n" +"Productieroutes geven u de mogelijkheid om productie bewerkingen te maken en " +"te beheren,\n" " welke moeten worden opgevolgd binnen uw productiestappen om " "een product te produceren. Ze zijn gekoppeld aan\n" " een materiaallijst, welke de benodigde materialen beschrijft." @@ -1694,7 +1694,7 @@ msgstr "Algemene rekening" #. module: mrp #: report:mrp.production.order:0 msgid "SO Number" -msgstr "Nummer verkoopopdracht" +msgstr "Verkooporder nummer" #. module: mrp #: code:addons/mrp/mrp.py:505 @@ -1846,7 +1846,7 @@ msgstr "Produceren" #: model:process.transition,name:mrp.process_transition_servicemto0 #: model:process.transition,name:mrp.process_transition_stockproduct0 msgid "Make to Order" -msgstr "Maak op bestelling" +msgstr "Maak op order" #. module: mrp #: help:mrp.workcenter,note:0 @@ -2414,8 +2414,9 @@ msgid "" " The delivery order will be ready once the production " "is done." msgstr "" -"Gebruik makende van de materiaallijst, toegewezen aan dit product.\n" -" De uitgaande order is gereed, wanneer de " +"aanmaken. Hierbij wordt gebruik gemaakt van de materiaallijst welke is " +"toegewezen aan dit product.\n" +" De uitgaande levering is gereed, wanneer de " "productieorder gereed is." #. module: mrp @@ -2567,7 +2568,7 @@ msgstr "Eigenschap groepen" #: view:mrp.routing:0 #: model:process.node,name:mrp.process_node_routing0 msgid "Routing" -msgstr "Productiestappen" +msgstr "Productieroutes" #. module: mrp #: model:process.transition,note:mrp.process_transition_procurestockableproduct0 diff --git a/addons/mrp/i18n/nl_BE.po b/addons/mrp/i18n/nl_BE.po index ebb96dbfb37..9f85e66062a 100644 --- a/addons/mrp/i18n/nl_BE.po +++ b/addons/mrp/i18n/nl_BE.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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -470,7 +470,7 @@ msgid "Scheduled Date" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -650,7 +650,7 @@ msgid "Work Center Load" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "" @@ -927,7 +927,7 @@ msgid "BoM Type" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/pl.po b/addons/mrp/i18n/pl.po index 5adcdfc1021..3bc8de0cb35 100644 --- a/addons/mrp/i18n/pl.po +++ b/addons/mrp/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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -486,7 +486,7 @@ msgid "Scheduled Date" msgstr "Zaplanowana data" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "Zamówienie produkcji %s utworzono." @@ -673,7 +673,7 @@ msgid "Work Center Load" msgstr "Obłożenie centrum roboczego" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Nie zdefiniowano Zestawienia materiałowego dla tego produktu !" @@ -954,7 +954,7 @@ msgid "BoM Type" msgstr "Typ Zest. Mat." #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/pt.po b/addons/mrp/i18n/pt.po index db79c54cc83..10cf11bde05 100644 --- a/addons/mrp/i18n/pt.po +++ b/addons/mrp/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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -484,7 +484,7 @@ msgid "Scheduled Date" msgstr "Data programada" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -673,7 +673,7 @@ msgid "Work Center Load" msgstr "Carga Centro de Trabalho" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Nenhum BoM definido para este artigo !" @@ -847,7 +847,7 @@ msgstr "" #. module: mrp #: view:mrp.production:0 msgid "Mark as Started" -msgstr "" +msgstr "Marcar como iniciado" #. module: mrp #: view:mrp.production:0 @@ -958,7 +958,7 @@ msgid "BoM Type" msgstr "Tipo de BoM" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/pt_BR.po b/addons/mrp/i18n/pt_BR.po index db3f23fad15..60471cdebf6 100644 --- a/addons/mrp/i18n/pt_BR.po +++ b/addons/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -557,7 +557,7 @@ msgid "Scheduled Date" msgstr "Data programada" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "Ordem de Produção %s criada." @@ -755,7 +755,7 @@ msgid "Work Center Load" msgstr "Carga do centro de trabalho" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Nenhuma LdM definida para este produto!" @@ -1089,7 +1089,7 @@ msgid "BoM Type" msgstr "Lista de Materiais Tipo" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/ro.po b/addons/mrp/i18n/ro.po index 7269355c6e2..2319021dd7f 100644 --- a/addons/mrp/i18n/ro.po +++ b/addons/mrp/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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -45,7 +45,7 @@ msgstr "Nr de Cicluri" #. module: mrp #: help:mrp.production,location_src_id:0 msgid "Location where the system will look for components." -msgstr "Locatia in care sistemul va cauta componente." +msgstr "Locația în care sistemul va căuta componente." #. module: mrp #: field:mrp.production,workcenter_lines:0 @@ -62,7 +62,7 @@ msgstr "Circuit Centre de Lucru" #: field:mrp.routing.workcenter,cycle_nbr:0 #: field:report.workcenter.load,cycle:0 msgid "Number of Cycles" -msgstr "Numarul de Cicluri" +msgstr "Numărul de Cicluri" #. module: mrp #: model:process.transition,note:mrp.process_transition_minimumstockprocure0 @@ -93,12 +93,12 @@ msgstr "Centru de lucru Mrp" #: model:ir.actions.act_window,name:mrp.mrp_routing_action #: model:ir.ui.menu,name:mrp.menu_mrp_routing_action msgid "Routings" -msgstr "Fise tehnologice" +msgstr "Fișe tehnologice" #. module: mrp #: view:mrp.bom:0 msgid "Search Bill Of Material" -msgstr "Cauta Lista de Materiale" +msgstr "Caută Lista de Materiale" #. module: mrp #: model:process.node,note:mrp.process_node_stockproduct1 @@ -110,7 +110,7 @@ msgstr "Pentru produsele stocabile și consumabile" #: help:mrp.production,message_unread:0 #: help:mrp.production.workcenter.line,message_unread:0 msgid "If checked new messages require your attention." -msgstr "Daca este selectat, mesajele noi necesita atentia dumneavoastra." +msgstr "Dacă este selectat, mesajele noi necesită atenția dumneavoastră." #. module: mrp #: help:mrp.routing.workcenter,cycle_nbr:0 @@ -131,7 +131,7 @@ msgstr "Fals" #: field:mrp.bom,code:0 #: field:mrp.production,name:0 msgid "Reference" -msgstr "Referinta" +msgstr "Referință" #. module: mrp #: view:mrp.production:0 @@ -554,7 +554,7 @@ msgid "Scheduled Date" msgstr "Data programata" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "Comanda de Productie %s creata." @@ -751,7 +751,7 @@ msgid "Work Center Load" msgstr "Incarcare Centru de Lucru" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Nu este definita nicio LdM pentru acest produs !" @@ -1090,7 +1090,7 @@ msgid "BoM Type" msgstr "Tip LdM" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/ru.po b/addons/mrp/i18n/ru.po index ef4cdb8675b..20561b02532 100644 --- a/addons/mrp/i18n/ru.po +++ b/addons/mrp/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-05-28 05:16+0000\n" -"X-Generator: Launchpad (build 16640)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -480,7 +480,7 @@ msgid "Scheduled Date" msgstr "Запланированная дата" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -667,7 +667,7 @@ msgid "Work Center Load" msgstr "Нагрузка Рабочего центра" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "С этим изделием не связано ни одной спецификации!" @@ -948,7 +948,7 @@ msgid "BoM Type" msgstr "Тип спецификации" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/sk.po b/addons/mrp/i18n/sk.po index 6d2bb51ad9d..4bc0e5870ff 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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -471,7 +471,7 @@ msgid "Scheduled Date" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -651,7 +651,7 @@ msgid "Work Center Load" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "" @@ -928,7 +928,7 @@ msgid "BoM Type" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/sl.po b/addons/mrp/i18n/sl.po index 52393fa8459..6ea871832a3 100644 --- a/addons/mrp/i18n/sl.po +++ b/addons/mrp/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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -490,7 +490,7 @@ msgid "Scheduled Date" msgstr "Načrtovani datum" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "Delovni nalog %s ustvarjen." @@ -680,7 +680,7 @@ msgid "Work Center Load" msgstr "Obremenitev delovne postaje" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Izdelek nima kosovnice" @@ -976,7 +976,7 @@ msgid "BoM Type" msgstr "Vrsta kosovnice" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/sq.po b/addons/mrp/i18n/sq.po index 18011bc57f5..a036d93d794 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-16 05:00+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:51+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -471,7 +471,7 @@ msgid "Scheduled Date" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -651,7 +651,7 @@ msgid "Work Center Load" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "" @@ -928,7 +928,7 @@ msgid "BoM Type" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/sr@latin.po b/addons/mrp/i18n/sr@latin.po index 0c39f51edf5..5729d0bebba 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -471,7 +471,7 @@ msgid "Scheduled Date" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -651,7 +651,7 @@ msgid "Work Center Load" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "" @@ -928,7 +928,7 @@ msgid "BoM Type" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/sv.po b/addons/mrp/i18n/sv.po index d77113d4719..bdf46b103b8 100644 --- a/addons/mrp/i18n/sv.po +++ b/addons/mrp/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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -472,7 +472,7 @@ msgid "Scheduled Date" msgstr "Scheduled Date" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -655,7 +655,7 @@ msgid "Work Center Load" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "No BoM defined for this product !" @@ -932,7 +932,7 @@ msgid "BoM Type" msgstr "Strukturtyp" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/tlh.po b/addons/mrp/i18n/tlh.po index 8fe31d5a579..8d15e9dbb7e 100644 --- a/addons/mrp/i18n/tlh.po +++ b/addons/mrp/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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -470,7 +470,7 @@ msgid "Scheduled Date" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -650,7 +650,7 @@ msgid "Work Center Load" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "" @@ -927,7 +927,7 @@ msgid "BoM Type" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/tr.po b/addons/mrp/i18n/tr.po index 7de7271c284..0c0ca106c9f 100644 --- a/addons/mrp/i18n/tr.po +++ b/addons/mrp/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-16 05:01+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:52+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -542,7 +542,7 @@ msgid "Scheduled Date" msgstr "Planlanan Tarih" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "Üretim Emri %s oluşturuldu." @@ -736,7 +736,7 @@ msgid "Work Center Load" msgstr "İş Merkezi Yükü" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "Bu ürün için herhangi bir Ürün Ağacı tanımlanmadı !" @@ -1022,7 +1022,7 @@ msgstr "Üretime Hazır" #: field:mrp.production,message_is_follower:0 #: field:mrp.production.workcenter.line,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçi" +msgstr "Bir İzleyicidir" #. module: mrp #: view:mrp.bom:0 @@ -1065,7 +1065,7 @@ msgid "BoM Type" msgstr "Ürün Ağacı Türü" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" @@ -1180,7 +1180,7 @@ msgstr "Son" #. module: mrp #: model:process.node,name:mrp.process_node_servicemts0 msgid "Make to stock" -msgstr "Stok için Üretim" +msgstr "Stoğa Üretim" #. module: mrp #: report:bom.structure:0 @@ -1804,7 +1804,7 @@ msgstr "Üret" #: model:process.transition,name:mrp.process_transition_servicemto0 #: model:process.transition,name:mrp.process_transition_stockproduct0 msgid "Make to Order" -msgstr "Siparişe Üretim" +msgstr "Sipariş Ver" #. module: mrp #: help:mrp.workcenter,note:0 @@ -2094,7 +2094,7 @@ msgstr "Üretim Verimliliği" #: field:mrp.production,message_follower_ids:0 #: field:mrp.production.workcenter.line,message_follower_ids:0 msgid "Followers" -msgstr "Takipçiler" +msgstr "İzleyiciler" #. module: mrp #: help:mrp.bom,active:0 diff --git a/addons/mrp/i18n/uk.po b/addons/mrp/i18n/uk.po index 7a033a69a88..9718afcf0cb 100644 --- a/addons/mrp/i18n/uk.po +++ b/addons/mrp/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -470,7 +470,7 @@ msgid "Scheduled Date" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -650,7 +650,7 @@ msgid "Work Center Load" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "" @@ -927,7 +927,7 @@ msgid "BoM Type" msgstr "Тип СВ" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/vi.po b/addons/mrp/i18n/vi.po index cd29ce617fd..a35901e5328 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -471,7 +471,7 @@ msgid "Scheduled Date" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -651,7 +651,7 @@ msgid "Work Center Load" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "" @@ -928,7 +928,7 @@ msgid "BoM Type" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/zh_CN.po b/addons/mrp/i18n/zh_CN.po index 216c9f4d8b9..c27f7efeca6 100644 --- a/addons/mrp/i18n/zh_CN.po +++ b/addons/mrp/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-08-08 04:39+0000\n" -"X-Generator: Launchpad (build 16723)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\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 c6f19024bc3..e46a0105fcf 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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -471,7 +471,7 @@ msgid "Scheduled Date" msgstr "預定日期" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "" @@ -651,7 +651,7 @@ msgid "Work Center Load" msgstr "" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "" @@ -928,7 +928,7 @@ msgid "BoM Type" msgstr "物料清單類型" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp/i18n/zh_TW.po b/addons/mrp/i18n/zh_TW.po index 1f8bdd514fc..55921b0cea0 100644 --- a/addons/mrp/i18n/zh_TW.po +++ b/addons/mrp/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-16 05:02+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:53+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp #: help:mrp.config.settings,module_mrp_repair:0 @@ -470,7 +470,7 @@ msgid "Scheduled Date" msgstr "預定日期" #. module: mrp -#: code:addons/mrp/procurement.py:124 +#: code:addons/mrp/procurement.py:129 #, python-format msgid "Manufacturing Order %s created." msgstr "工令 %s 已建立。" @@ -650,7 +650,7 @@ msgid "Work Center Load" msgstr "工作中心負荷" #. module: mrp -#: code:addons/mrp/procurement.py:50 +#: code:addons/mrp/procurement.py:55 #, python-format msgid "No BoM defined for this product !" msgstr "此產品無物料清單!" @@ -927,7 +927,7 @@ msgid "BoM Type" msgstr "物料清單類型" #. module: mrp -#: code:addons/mrp/procurement.py:52 +#: code:addons/mrp/procurement.py:57 #, python-format msgid "" "Procurement '%s' has an exception: 'No BoM defined for this product !'" diff --git a/addons/mrp_byproduct/i18n/ab.po b/addons/mrp_byproduct/i18n/ab.po index 02ad12ea20b..608032ad66d 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 a2665c3173f..f752b38a1e1 100644 --- a/addons/mrp_byproduct/i18n/ar.po +++ b/addons/mrp_byproduct/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 83837e638d0..bb66fcdee03 100644 --- a/addons/mrp_byproduct/i18n/bg.po +++ b/addons/mrp_byproduct/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 3343abbcc0b..fb96a99fb7c 100644 --- a/addons/mrp_byproduct/i18n/bs.po +++ b/addons/mrp_byproduct/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 fff76b8a9f2..0c8b31e6b7d 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 02899580a1a..0f8e189d771 100644 --- a/addons/mrp_byproduct/i18n/cs.po +++ b/addons/mrp_byproduct/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 547a4ba0911..2d6ff55cbaf 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 1e3b9fa05db..6bd003f1e38 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 ae7ed57a878..099c4fbd747 100644 --- a/addons/mrp_byproduct/i18n/es.po +++ b/addons/mrp_byproduct/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 3e998cd593a..f8aae0f5510 100644 --- a/addons/mrp_byproduct/i18n/es_AR.po +++ b/addons/mrp_byproduct/i18n/es_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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 63f31d00e7b..2a177baa2bb 100644 --- a/addons/mrp_byproduct/i18n/es_CR.po +++ b/addons/mrp_byproduct/i18n/es_CR.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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: mrp_byproduct diff --git a/addons/mrp_byproduct/i18n/es_EC.po b/addons/mrp_byproduct/i18n/es_EC.po index 9e410846d9c..1930d38fdda 100644 --- a/addons/mrp_byproduct/i18n/es_EC.po +++ b/addons/mrp_byproduct/i18n/es_EC.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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 4497f90e756..4fa9b1aa590 100644 --- a/addons/mrp_byproduct/i18n/et.po +++ b/addons/mrp_byproduct/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 7091ec1e3ee..0cd7ead89bf 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 671bb30c68f..0f04d220901 100644 --- a/addons/mrp_byproduct/i18n/fr.po +++ b/addons/mrp_byproduct/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 @@ -27,6 +27,14 @@ msgid "" "BoM / quantity of manufactured product set on the BoM * quantity of " "manufactured product in the production order.)'" msgstr "" +"Définit comment la quantité de sous-produits est déterminée dans les ordres " +"de production utilisant cette nomenclature. \"Fixe\" correspond à une " +"situation où la quantité de sous-produit est toujours égale à la quantité " +"définie dans la nomenclature, quelle que soit la quantité de l'ordre de " +"fabrication. Par opposition, \"variable\" signifie que la quantité sera " +"calculée comme \"(quantité du sous-produit dans la nomenclature / quantité " +"du produit fabriqué dans la nomenclature x quantité du produit fabriqué dans " +"l'ordre de fabrication.)\"" #. module: mrp_byproduct #: field:mrp.subproduct,product_id:0 diff --git a/addons/mrp_byproduct/i18n/gl.po b/addons/mrp_byproduct/i18n/gl.po index 2a7bf7fc33f..1d552a6d7df 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 31025340e60..83c76890db3 100644 --- a/addons/mrp_byproduct/i18n/hr.po +++ b/addons/mrp_byproduct/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 eacc26bf113..5ba765b87d2 100644 --- a/addons/mrp_byproduct/i18n/hu.po +++ b/addons/mrp_byproduct/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 2c2c7195fe9..47dfd0efd3d 100644 --- a/addons/mrp_byproduct/i18n/id.po +++ b/addons/mrp_byproduct/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 9f621ed006c..79347f1fdd8 100644 --- a/addons/mrp_byproduct/i18n/it.po +++ b/addons/mrp_byproduct/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 008b9f39c85..9430893d4fa 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 4705823b9b7..58f75735268 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 14562c12914..1e30526a085 100644 --- a/addons/mrp_byproduct/i18n/lt.po +++ b/addons/mrp_byproduct/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 @@ -31,22 +31,22 @@ msgstr "" #. module: mrp_byproduct #: field:mrp.subproduct,product_id:0 msgid "Product" -msgstr "" +msgstr "Produktas" #. module: mrp_byproduct #: field:mrp.subproduct,product_uom:0 msgid "Product Unit of Measure" -msgstr "" +msgstr "Matavimo vienetas" #. module: mrp_byproduct #: model:ir.model,name:mrp_byproduct.model_mrp_production msgid "Manufacturing Order" -msgstr "" +msgstr "Gamybos užsakymas" #. module: mrp_byproduct #: model:ir.model,name:mrp_byproduct.model_change_production_qty msgid "Change Quantity of Products" -msgstr "" +msgstr "Pakeisti produktų kiekį" #. module: mrp_byproduct #: view:mrp.bom:0 @@ -62,18 +62,18 @@ msgstr "" #. module: mrp_byproduct #: model:ir.model,name:mrp_byproduct.model_mrp_bom msgid "Bill of Material" -msgstr "" +msgstr "Komplektavimo specifikacija" #. module: mrp_byproduct #: field:mrp.subproduct,product_qty:0 msgid "Product Qty" -msgstr "" +msgstr "Produkto kiekis" #. module: mrp_byproduct #: code:addons/mrp_byproduct/mrp_byproduct.py:63 #, python-format msgid "Warning" -msgstr "" +msgstr "Įspėjimas" #. module: mrp_byproduct #: field:mrp.subproduct,bom_id:0 @@ -83,12 +83,12 @@ msgstr "" #. module: mrp_byproduct #: selection:mrp.subproduct,subproduct_type:0 msgid "Variable" -msgstr "" +msgstr "Kintamasis" #. module: mrp_byproduct #: selection:mrp.subproduct,subproduct_type:0 msgid "Fixed" -msgstr "" +msgstr "Fiksuotas" #. module: mrp_byproduct #: code:addons/mrp_byproduct/mrp_byproduct.py:63 @@ -97,6 +97,8 @@ msgid "" "The Product Unit of Measure you chose has a different category than in the " "product form." msgstr "" +"Produkto matavimo vienetas, kurį pasirinkote, priklauso kitai kategorijai " +"nei esantis produktų formoje." #. module: mrp_byproduct #: model:ir.model,name:mrp_byproduct.model_mrp_subproduct diff --git a/addons/mrp_byproduct/i18n/lv.po b/addons/mrp_byproduct/i18n/lv.po index 469f3ba59b5..5f091960c43 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 a50c694e2cb..55d842949f3 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 e02e6fcabe5..b1908b4b429 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp_byproduct #: help:mrp.subproduct,subproduct_type:0 @@ -63,7 +63,7 @@ msgstr "Тоолох төрөл" #. module: mrp_byproduct #: model:ir.model,name:mrp_byproduct.model_mrp_bom msgid "Bill of Material" -msgstr "Жор" +msgstr "Орц" #. module: mrp_byproduct #: field:mrp.subproduct,product_qty:0 @@ -79,7 +79,7 @@ msgstr "" #. module: mrp_byproduct #: field:mrp.subproduct,bom_id:0 msgid "BoM" -msgstr "Материалын тооцоо" +msgstr "Орц" #. module: mrp_byproduct #: selection:mrp.subproduct,subproduct_type:0 diff --git a/addons/mrp_byproduct/i18n/nb.po b/addons/mrp_byproduct/i18n/nb.po index e4a2fc37ae6..15f592c8ace 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 9e0fed8c8cc..22043abd5a8 100644 --- a/addons/mrp_byproduct/i18n/nl.po +++ b/addons/mrp_byproduct/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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 614e691f492..c397485fd86 100644 --- a/addons/mrp_byproduct/i18n/nl_BE.po +++ b/addons/mrp_byproduct/i18n/nl_BE.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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 5af586cb144..14adf264757 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 4807436ed7d..4c28b26070b 100644 --- a/addons/mrp_byproduct/i18n/pl.po +++ b/addons/mrp_byproduct/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 7a182da7f0a..91b4858634b 100644 --- a/addons/mrp_byproduct/i18n/pt.po +++ b/addons/mrp_byproduct/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 b82b6ed1f81..df007acb78e 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 9372d9880f4..614f60d72eb 100644 --- a/addons/mrp_byproduct/i18n/ro.po +++ b/addons/mrp_byproduct/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 ad8e95195a3..e3e25f26fe8 100644 --- a/addons/mrp_byproduct/i18n/ru.po +++ b/addons/mrp_byproduct/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 efaaed2bc7e..e8acfe2bdfe 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 4e7f0af84da..e9ac62f1181 100644 --- a/addons/mrp_byproduct/i18n/sl.po +++ b/addons/mrp_byproduct/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 3455ce3760b..6568cb6abde 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-16 05:35+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 71817b6ef1a..372aae25afd 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 f6ca1542e1a..bce0b673c7b 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 beb9b450c0e..095ede85013 100644 --- a/addons/mrp_byproduct/i18n/sv.po +++ b/addons/mrp_byproduct/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 3d1b26ebb25..5f04cfb7016 100644 --- a/addons/mrp_byproduct/i18n/tlh.po +++ b/addons/mrp_byproduct/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 4f104663c54..ca9965bfc3e 100644 --- a/addons/mrp_byproduct/i18n/tr.po +++ b/addons/mrp_byproduct/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 a8715f163b5..408f29f087d 100644 --- a/addons/mrp_byproduct/i18n/uk.po +++ b/addons/mrp_byproduct/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 7f69b69caf4..5c15bc36ff6 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 bfd6d2f3142..3c6fe2ece9d 100644 --- a/addons/mrp_byproduct/i18n/zh_CN.po +++ b/addons/mrp_byproduct/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 28e142040c9..252c3382000 100644 --- a/addons/mrp_byproduct/i18n/zh_TW.po +++ b/addons/mrp_byproduct/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 875f98c840d..6b1a1f0456b 100644 --- a/addons/mrp_jit/i18n/ar.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 34685838d9f..2438e2527c2 100644 --- a/addons/mrp_jit/i18n/bg.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 bcd9ff99cfa..9227e82235e 100644 --- a/addons/mrp_jit/i18n/bs.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 567ab59d4f1..48d8825cf43 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 82d3b7481ef..b8f28454933 100644 --- a/addons/mrp_jit/i18n/cs.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 956f0d5e214..82905a4ec19 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 53a219def6a..2915ef4d4c5 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 9609270ca0a..5de338cea13 100644 --- a/addons/mrp_jit/i18n/el.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Country: GREECE\n" "X-Poedit-Language: Greek\n" "X-Poedit-SourceCharset: utf-8\n" diff --git a/addons/mrp_jit/i18n/en_GB.po b/addons/mrp_jit/i18n/en_GB.po index 0a2c432a771..44b8dcb7a3d 100644 --- a/addons/mrp_jit/i18n/en_GB.po +++ b/addons/mrp_jit/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-08-24 05:03+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 819845755cf..73ba7da8bae 100644 --- a/addons/mrp_jit/i18n/es.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 cc3b9d32775..06a19a32666 100644 --- a/addons/mrp_jit/i18n/es_AR.po +++ b/addons/mrp_jit/i18n/es_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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 09117a0e1d7..84d4f40cfab 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: mrp_jit diff --git a/addons/mrp_jit/i18n/es_EC.po b/addons/mrp_jit/i18n/es_EC.po index e21956b3e07..b276f6ba2bf 100644 --- a/addons/mrp_jit/i18n/es_EC.po +++ b/addons/mrp_jit/i18n/es_EC.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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 000b158e622..f1edbc58a42 100644 --- a/addons/mrp_jit/i18n/et.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 67dcaa1b12b..63127bf5f8b 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 58a1188f165..5070e0923a4 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 39525f665d1..c32e4506074 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 4a9fb911b31..3e4420571f0 100644 --- a/addons/mrp_jit/i18n/hr.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 0659bc113b4..021efb4119d 100644 --- a/addons/mrp_jit/i18n/hu.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 df543652e2d..bfe899f9739 100644 --- a/addons/mrp_jit/i18n/id.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 f30f6259dab..50fdff11d2d 100644 --- a/addons/mrp_jit/i18n/it.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 83538f23e04..79807b69cb0 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 b1beeba6d5a..a18d974b929 100644 --- a/addons/mrp_jit/i18n/kab.po +++ b/addons/mrp_jit/i18n/kab.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-11 11:15+0000\n" "PO-Revision-Date: 2010-10-09 14:11+0000\n" -"Last-Translator: yugurten \n" +"Last-Translator: yugurten \n" "Language-Team: Kabyle \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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 9447e0941fa..0a50b6930d8 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 4e1c7c9fae2..41738de7b54 100644 --- a/addons/mrp_jit/i18n/lt.po +++ b/addons/mrp_jit/i18n/lt.po @@ -13,13 +13,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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp_jit #: model:ir.module.module,shortdesc:mrp_jit.module_meta_information msgid "MRP JIT" -msgstr "" +msgstr "MRP JIT" #. module: mrp_jit #: model:ir.module.module,description:mrp_jit.module_meta_information diff --git a/addons/mrp_jit/i18n/mk.po b/addons/mrp_jit/i18n/mk.po index 27ba9c2572e..843b4b2e508 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 b326fc29ca0..a0a0f6f94a6 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 17c950bdd43..adaea671241 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 e15413c1074..15c5d70cbbc 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 7d639cbb42f..8af98807d5a 100644 --- a/addons/mrp_jit/i18n/nl.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 16f7c7407d7..868f70e5222 100644 --- a/addons/mrp_jit/i18n/nl_BE.po +++ b/addons/mrp_jit/i18n/nl_BE.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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 75199583985..99aa9e77849 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 925fe16360a..f4fdb6ae65c 100644 --- a/addons/mrp_jit/i18n/pl.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 3ca0a9ee826..2ca6b56f49c 100644 --- a/addons/mrp_jit/i18n/pt.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 1cec8326a8b..1b41b1b356d 100644 --- a/addons/mrp_jit/i18n/pt_BR.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 78f4ec2c1c4..685f86005df 100644 --- a/addons/mrp_jit/i18n/ro.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 13eb765d853..7419749ed22 100644 --- a/addons/mrp_jit/i18n/ru.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 a4b035255cd..640b6ea1c07 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 098ac716773..7473c06d36d 100644 --- a/addons/mrp_jit/i18n/sl.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 9f28d27e541..dc4c042f57e 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 3804b55a60e..bda568d00db 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 d07f5cfb47e..1c8c0b32047 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 acd95fe8330..df4c01f21f3 100644 --- a/addons/mrp_jit/i18n/sv.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 3b848673aa2..5068ec7200c 100644 --- a/addons/mrp_jit/i18n/ta.po +++ b/addons/mrp_jit/i18n/ta.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2011-01-11 11:15+0000\n" "PO-Revision-Date: 2010-09-01 06:55+0000\n" -"Last-Translator: ஆமாச்சு \n" +"Last-Translator: ஆமாச்சு \n" "Language-Team: Tamil \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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 be80da1b7ce..a6cbf750fb0 100644 --- a/addons/mrp_jit/i18n/tr.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 9679de954ee..a9ee23ebae1 100644 --- a/addons/mrp_jit/i18n/uk.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 a4fcee85dd8..d5aacec4097 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-03-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 709086c3591..1b7fd2c60f8 100644 --- a/addons/mrp_jit/i18n/zh_CN.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 ff2746f5e52..03115b93cb1 100644 --- a/addons/mrp_jit/i18n/zh_TW.po +++ b/addons/mrp_jit/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 5c0312c98e7..668d07cb025 100644 --- a/addons/mrp_operations/i18n/ar.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 6fdd50ed262..22e0d63b3d6 100644 --- a/addons/mrp_operations/i18n/bg.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 4e2cdef6a28..72ea2614075 100644 --- a/addons/mrp_operations/i18n/bs.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 058cddfe828..b4d380323dc 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 c6ac0907e34..405a4afdf20 100644 --- a/addons/mrp_operations/i18n/cs.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" "X-Poedit-Language: Czech\n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/da.po b/addons/mrp_operations/i18n/da.po index 800b6c2fa47..100ba7f2fde 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 250adb669fb..787de58731a 100644 --- a/addons/mrp_operations/i18n/de.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 931ff324b86..724322c95ab 100644 --- a/addons/mrp_operations/i18n/es.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 0727537f112..2b045b2bf23 100644 --- a/addons/mrp_operations/i18n/es_AR.po +++ b/addons/mrp_operations/i18n/es_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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 9685f105380..fd91b6b6531 100644 --- a/addons/mrp_operations/i18n/es_CR.po +++ b/addons/mrp_operations/i18n/es_CR.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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: mrp_operations diff --git a/addons/mrp_operations/i18n/es_EC.po b/addons/mrp_operations/i18n/es_EC.po index b7b374ee279..4610704cde7 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 334790f09e6..663e73a4f5c 100644 --- a/addons/mrp_operations/i18n/et.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 4e6bebe5d2d..b1f93778f84 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 18cff7387d7..4b01f46c00e 100644 --- a/addons/mrp_operations/i18n/fr.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -241,7 +241,7 @@ msgstr "Analyses des ordres de travail" #. module: mrp_operations #: model:ir.ui.menu,name:mrp_operations.menu_mrp_production_wc_action_planning msgid "Work Orders By Resource" -msgstr "Ordres de fabrication par ressource" +msgstr "Ordres de travail par ressource" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 diff --git a/addons/mrp_operations/i18n/hi.po b/addons/mrp_operations/i18n/hi.po index f7d79f37b38..028f6338c37 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 efc16f0a6ba..25e3d340934 100644 --- a/addons/mrp_operations/i18n/hr.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 7b01922392f..abc82e011a7 100644 --- a/addons/mrp_operations/i18n/hu.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 f5a4b8c5344..672cc30e102 100644 --- a/addons/mrp_operations/i18n/id.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 bec7af31424..f3ec8be0fd2 100644 --- a/addons/mrp_operations/i18n/it.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 842abb0359f..e1105b07952 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 97e28393349..c0ef0795802 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 f2d04638cca..d19e6b5cc7b 100644 --- a/addons/mrp_operations/i18n/lt.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 3970edc07d9..e1eb4a8f64e 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -431,12 +431,12 @@ msgstr "" #: view:mrp.production.workcenter.line:0 #: selection:mrp.production.workcenter.line,state:0 msgid "Pending" -msgstr "" +msgstr "Gaida" #. module: mrp_operations #: view:mrp_operations.operation.code:0 msgid "Production Operation Code" -msgstr "" +msgstr "Ražošanas operācijas kods" #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:461 @@ -445,99 +445,100 @@ msgid "" "Operation has already started! You can either Pause/Finish/Cancel the " "operation." msgstr "" +"Operācija ir jau uzsākta! Jūs varat veikt Pauze/Beigas/Atcelt operācijas." #. module: mrp_operations #: selection:mrp.workorder,month:0 msgid "August" -msgstr "" +msgstr "Augusts" #. module: mrp_operations #: view:mrp.workorder:0 msgid "Started" -msgstr "" +msgstr "Uzsākts" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Production started late" -msgstr "" +msgstr "Ražošanu uzsāka novēloti" #. module: mrp_operations #: view:mrp.workorder:0 msgid "Planned Day" -msgstr "" +msgstr "Plānotā diena" #. module: mrp_operations #: selection:mrp.workorder,month:0 msgid "June" -msgstr "" +msgstr "Jūnijs" #. module: mrp_operations #: view:mrp.workorder:0 #: field:mrp.workorder,total_cycles:0 msgid "Total Cycles" -msgstr "" +msgstr "Cikli kopā" #. module: mrp_operations #: selection:mrp.production.workcenter.line,production_state:0 msgid "Ready to Produce" -msgstr "" +msgstr "Gatavs ražošanai" #. module: mrp_operations #: field:stock.move,move_dest_id_lines:0 msgid "Children Moves" -msgstr "" +msgstr "Pakārtotās kustības" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_planning msgid "Work Orders Planning" -msgstr "" +msgstr "Ražošanas orderu plānošana" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 #: field:mrp.workorder,date:0 msgid "Date" -msgstr "" +msgstr "Datums" #. module: mrp_operations #: selection:mrp.workorder,month:0 msgid "November" -msgstr "" +msgstr "Novembris" #. module: mrp_operations #: view:mrp.workorder:0 msgid "Search" -msgstr "" +msgstr "Meklēt" #. module: mrp_operations #: selection:mrp.workorder,month:0 msgid "October" -msgstr "" +msgstr "Oktobris" #. module: mrp_operations #: selection:mrp.workorder,month:0 msgid "January" -msgstr "" +msgstr "Janvāris" #. module: mrp_operations #: view:mrp.production:0 msgid "Resume Work Order" -msgstr "" +msgstr "Atsākt izpildes orderi" #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_doneoperation0 msgid "Finish the operation." -msgstr "" +msgstr "Pabeidz operāciju." #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:454 #, python-format msgid "Operation is not started yet !" -msgstr "" +msgstr "Operācija vēl nav uzsākta!" #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_productionorder0 msgid "Information from the production order." -msgstr "" +msgstr "Informācija no ražošanas ordera." #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:454 @@ -546,45 +547,45 @@ msgstr "" #: code:addons/mrp_operations/mrp_operations.py:477 #, python-format msgid "Sorry!" -msgstr "" +msgstr "Atvainojiet!" #. module: mrp_operations #: view:mrp.workorder:0 msgid "Current" -msgstr "" +msgstr "Tekošais" #. module: mrp_operations #: field:mrp_operations.operation,code_id:0 #: field:mrp_operations.operation.code,code:0 msgid "Code" -msgstr "" +msgstr "Kods" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_confirm_action msgid "Confirmed Work Orders" -msgstr "" +msgstr "Apstiprinātie izpildes orderi" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_code_action msgid "Operation Codes" -msgstr "" +msgstr "Operāciju kodi" #. module: mrp_operations #: field:mrp.production.workcenter.line,qty:0 msgid "Qty" -msgstr "" +msgstr "Daudzums" #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_doneoperation0 msgid "Operation Done" -msgstr "" +msgstr "Operācija pabeigta" #. module: mrp_operations #: selection:mrp.production.workcenter.line,production_state:0 #: view:mrp.workorder:0 #: selection:mrp_operations.operation.code,start_stop:0 msgid "Done" -msgstr "" +msgstr "Pabeigts" #. module: mrp_operations #: model:ir.actions.report.xml,name:mrp_operations.report_code_barcode @@ -594,7 +595,7 @@ msgstr "" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Cancel" -msgstr "" +msgstr "Atcelt" #. module: mrp_operations #: help:mrp.production.workcenter.line,state:0 @@ -612,12 +613,12 @@ msgstr "" #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_startoperation0 msgid "Start Operation" -msgstr "" +msgstr "Uzsākt operāciju" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Information" -msgstr "" +msgstr "Informācija" #. module: mrp_operations #: model:ir.actions.act_window,help:mrp_operations.mrp_production_wc_action_planning @@ -639,17 +640,17 @@ msgstr "" #. module: mrp_operations #: model:ir.actions.report.xml,name:mrp_operations.report_wc_barcode msgid "Work Centers Barcode" -msgstr "" +msgstr "Resursu svītrkods" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Late" -msgstr "" +msgstr "Nokavējies" #. module: mrp_operations #: field:mrp.workorder,delay:0 msgid "Delay" -msgstr "" +msgstr "Aizkavējies" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -657,12 +658,12 @@ msgstr "" #: field:mrp.workorder,production_id:0 #: field:mrp_operations.operation,production_id:0 msgid "Production" -msgstr "" +msgstr "Ražošana" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Search Work Orders" -msgstr "" +msgstr "Meklēt izpildes orderi" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -671,25 +672,25 @@ msgstr "" #: field:mrp_operations.operation,workcenter_id:0 #: model:process.node,name:mrp_operations.process_node_workorder0 msgid "Work Center" -msgstr "" +msgstr "Resurss" #. module: mrp_operations #: field:mrp.production.workcenter.line,date_planned:0 msgid "Scheduled Date" -msgstr "" +msgstr "Ieplānotais datums" #. module: mrp_operations #: field:mrp.production.workcenter.line,product:0 #: view:mrp.workorder:0 #: field:mrp.workorder,product_id:0 msgid "Product" -msgstr "" +msgstr "Produkts" #. module: mrp_operations #: view:mrp.workorder:0 #: field:mrp.workorder,total_hours:0 msgid "Total Hours" -msgstr "" +msgstr "Stundas kopā" #. module: mrp_operations #: help:mrp.production,allow_reorder:0 @@ -701,7 +702,7 @@ msgstr "" #. module: mrp_operations #: selection:mrp.workorder,month:0 msgid "May" -msgstr "" +msgstr "Maijs" #. module: mrp_operations #: view:mrp.production:0 @@ -709,47 +710,47 @@ msgstr "" #: selection:mrp.production.workcenter.line,state:0 #: selection:mrp.workorder,state:0 msgid "Finished" -msgstr "" +msgstr "Pabeigts" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Hours by Work Center" -msgstr "" +msgstr "Resursa stundas" #. module: mrp_operations #: field:mrp.production.workcenter.line,delay:0 msgid "Working Hours" -msgstr "" +msgstr "Darba stundas" #. module: mrp_operations #: view:mrp.workorder:0 msgid "Planned Month" -msgstr "" +msgstr "Plānotais mēnesis" #. module: mrp_operations #: selection:mrp.workorder,month:0 msgid "February" -msgstr "" +msgstr "Februāris" #. module: mrp_operations #: model:process.transition,name:mrp_operations.process_transition_startcanceloperation0 msgid "Operation cancelled" -msgstr "" +msgstr "Operācija atcelta" #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_startoperation0 msgid "Start the operation." -msgstr "" +msgstr "Uzsākt operāciju." #. module: mrp_operations #: selection:mrp.workorder,month:0 msgid "April" -msgstr "" +msgstr "Aprīlis" #. module: mrp_operations #: model:process.transition,name:mrp_operations.process_transition_startdoneoperation0 msgid "Operation done" -msgstr "" +msgstr "Operācija pabeigta" #. module: mrp_operations #: view:mrp.workorder:0 @@ -759,7 +760,7 @@ msgstr "" #. module: mrp_operations #: view:mrp.production:0 msgid "Start Working" -msgstr "" +msgstr "Uzsākt darbu" #. module: mrp_operations #: model:process.transition,note:mrp_operations.process_transition_startdoneoperation0 @@ -777,9 +778,9 @@ msgstr "" #: view:mrp.workorder:0 #: field:mrp.workorder,year:0 msgid "Year" -msgstr "" +msgstr "Gads" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Duration" -msgstr "" +msgstr "Ilgums" diff --git a/addons/mrp_operations/i18n/mk.po b/addons/mrp_operations/i18n/mk.po index 7a350bedaa1..9242f5f5b51 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -39,7 +39,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 @@ -50,7 +50,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 @@ -77,12 +77,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 @@ -97,12 +97,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 @@ -113,7 +113,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 @@ -123,7 +123,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 @@ -133,7 +133,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 @@ -173,7 +173,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 @@ -181,11 +181,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 @@ -198,7 +200,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 @@ -221,7 +223,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 @@ -229,6 +231,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 @@ -255,7 +259,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 @@ -274,7 +278,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 @@ -313,15 +317,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" " " @@ -329,6 +337,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 @@ -364,7 +373,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 @@ -380,12 +389,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 @@ -406,12 +415,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 @@ -431,12 +443,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 @@ -448,7 +462,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 @@ -457,6 +471,8 @@ msgid "" "Operation has already started! You can either Pause/Finish/Cancel the " "operation." msgstr "" +"Операцијата е веќе започната. Можете да ја Паузирате/Завршите/Откажете " +"операцијата." #. module: mrp_operations #: selection:mrp.workorder,month:0 @@ -471,7 +487,7 @@ msgstr "Започнато" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 msgid "Production started late" -msgstr "Производството запчна доцна" +msgstr "Производството започна доцна" #. module: mrp_operations #: view:mrp.workorder:0 @@ -533,7 +549,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 @@ -544,7 +560,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 @@ -579,7 +595,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 @@ -601,7 +617,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 @@ -620,6 +636,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 @@ -650,13 +675,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" " " @@ -673,7 +697,7 @@ msgstr "Доцна" #. module: mrp_operations #: field:mrp.workorder,delay:0 msgid "Delay" -msgstr "Доцнење" +msgstr "Одолжување" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -721,6 +745,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 @@ -778,7 +804,7 @@ msgstr "Операцијата е завршена" #. module: mrp_operations #: view:mrp.workorder:0 msgid "#Line Orders" -msgstr "#Лини на налог" +msgstr "#Ставка на налог" #. module: mrp_operations #: view:mrp.production:0 @@ -791,6 +817,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_operations/i18n/mn.po b/addons/mrp_operations/i18n/mn.po index 46e4f641c9d..8928f40221a 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -50,7 +50,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 diff --git a/addons/mrp_operations/i18n/nl.po b/addons/mrp_operations/i18n/nl.po index 161afd172e2..1629683e601 100644 --- a/addons/mrp_operations/i18n/nl.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -49,7 +49,7 @@ msgstr "Groepeer op..." #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_workorder0 msgid "Information from the routing definition." -msgstr "Informatie van de productiestappen" +msgstr "Informatie van de productieroute" #. module: mrp_operations #: field:mrp.production.workcenter.line,uom:0 diff --git a/addons/mrp_operations/i18n/nl_BE.po b/addons/mrp_operations/i18n/nl_BE.po index 2932eea5b8b..7a7a271818d 100644 --- a/addons/mrp_operations/i18n/nl_BE.po +++ b/addons/mrp_operations/i18n/nl_BE.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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 489dd9da27b..997e2afedd5 100644 --- a/addons/mrp_operations/i18n/pl.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 679b7279d33..c632d574201 100644 --- a/addons/mrp_operations/i18n/pt.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 2abe20bfcd0..b9a2fde0d09 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 6630a969270..a8da974cc32 100644 --- a/addons/mrp_operations/i18n/ro.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 4efb66e06a1..200af8285b0 100644 --- a/addons/mrp_operations/i18n/ru.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -112,7 +112,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 diff --git a/addons/mrp_operations/i18n/sl.po b/addons/mrp_operations/i18n/sl.po index 8e9b096cabc..dbd0be82db8 100644 --- a/addons/mrp_operations/i18n/sl.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 075a29c8a26..696c745ad5f 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 dc314f3a6f0..1d48767ec3d 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 3668f8d4e28..fb391bfece7 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 a4809c79791..eb22bd1ac43 100644 --- a/addons/mrp_operations/i18n/sv.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 72468919a8d..72197f521d9 100644 --- a/addons/mrp_operations/i18n/tlh.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 87f216fddca..bd4a3c74eef 100644 --- a/addons/mrp_operations/i18n/tr.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_wc_action_form @@ -28,7 +28,7 @@ msgstr "İş Emirleri" #: code:addons/mrp_operations/mrp_operations.py:484 #, python-format msgid "Operation is already finished!" -msgstr "İşlem neredeye bitti!" +msgstr "İşlem zaten bitmiş!" #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_canceloperation0 @@ -44,12 +44,12 @@ msgstr "mrp_operations.operation.code" #: view:mrp.production.workcenter.line:0 #: view:mrp.workorder:0 msgid "Group By..." -msgstr "Şuna göre grupla" +msgstr "Gruplandır..." #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_workorder0 msgid "Information from the routing definition." -msgstr "Yönlendirme tanımlamasından gelen bilgiler." +msgstr "Rota tanımlamasından gelen bilgiler." #. module: mrp_operations #: field:mrp.production.workcenter.line,uom:0 @@ -71,7 +71,7 @@ msgstr "İş Merkezleri" #: view:mrp.production.workcenter.line:0 #: selection:mrp_operations.operation.code,start_stop:0 msgid "Resume" -msgstr "Devam et" +msgstr "Sürdür" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -81,7 +81,7 @@ msgstr "Üretilecek Ürün" #. module: mrp_operations #: view:mrp_operations.operation:0 msgid "Production Operation" -msgstr "Üretim Operasyonu" +msgstr "Üretim İşlemi" #. module: mrp_operations #: view:mrp.production:0 @@ -101,7 +101,7 @@ msgstr "Üretim Emri" #. module: mrp_operations #: model:process.process,name:mrp_operations.process_process_mrpoperationprocess0 msgid "Mrp Operations" -msgstr "Mrp Operasyonları" +msgstr "Ürt İşlemleri" #. module: mrp_operations #: view:mrp.workorder:0 @@ -112,7 +112,7 @@ msgstr "Gün" #. module: mrp_operations #: view:mrp.production:0 msgid "Cancel Order" -msgstr "Siparişi İptal Et" +msgstr "Sipariş İptali" #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_productionorder0 @@ -132,7 +132,7 @@ msgstr "İş emrinin oluşturulması" #. 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 "İş emirleri ürün siparişi bazında oluşturulur." +msgstr "İş emirleri ürün siparişine göre oluşturulur." #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:134 @@ -155,13 +155,13 @@ msgstr "İptal edildi" #: code:addons/mrp_operations/mrp_operations.py:477 #, python-format msgid "Operation is Already Cancelled!" -msgstr "İşlem Zaten İptal Edilmiş!" +msgstr "İşlem Zaten İptal edilmiş!" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_operation_action #: view:mrp.production.workcenter.line:0 msgid "Operations" -msgstr "Operasyonlar" +msgstr "İşlemler" #. module: mrp_operations #: model:ir.model,name:mrp_operations.model_stock_move @@ -179,12 +179,12 @@ msgstr "İptal edilecek işlem yok." #, python-format msgid "" "In order to Finish the operation, it must be in the Start or Resume state!" -msgstr "İşlemi bitirmek için Başlama ya da Devam durumunda olmalı !" +msgstr "İşlemi Bitirmek için Başlama ya da Sürdürme durumunda olmalı!" #. module: mrp_operations #: field:mrp.workorder,nbr:0 msgid "# of Lines" -msgstr "# / Satır" +msgstr "Satır Sayısı" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -250,7 +250,7 @@ msgstr "Planlama Tarihi" #: view:mrp.workorder:0 #: field:mrp.workorder,product_qty:0 msgid "Product Qty" -msgstr "Ürün Mik." +msgstr "Ürün Mik" #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:134 @@ -266,7 +266,7 @@ msgstr "Temmuz" #. module: mrp_operations #: field:mrp_operations.operation.code,name:0 msgid "Operation Name" -msgstr "Operasyon Adı" +msgstr "İşlem Adı" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -295,7 +295,7 @@ msgstr "Gelecekteki İş Emirleri" #. module: mrp_operations #: view:mrp.production:0 msgid "Finish Order" -msgstr "Siparişi Bitir" +msgstr "Emri Bitir" #. module: mrp_operations #: model:ir.actions.act_window,help:mrp_operations.mrp_production_wc_action_form @@ -313,6 +313,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir iş emri başlatmak için tıklayın. \n" +"

\n" +" İş Emirleri, her üretim emri için yapılması gereken işlemler\n" +" listesidir. Bir üretim emrine ait ilk iş emrini " +"başlattığınızda,\n" +" üretim emri kendiliğinden başladı olarak işaretlenir.\n" +" Bir üretim emrine ait enson işlemi bitirdiğinizde, üretim\n" +" emri kendiliğinden yapıldı olarak işaretlenir ve ilgili\n" +" ürünler üretilmiş olur.\n" +"

\n" +" " #. module: mrp_operations #: help:mrp.production.workcenter.line,delay:0 @@ -322,7 +334,7 @@ msgstr "Bu İş Merkezindeki işlemin başlangıç ve bitiş arasındaki geçen #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_canceloperation0 msgid "Operation Cancelled" -msgstr "Operasyon İptal Edildi" +msgstr "İşlem İptal Edildi" #. module: mrp_operations #: view:mrp.production:0 @@ -364,7 +376,7 @@ msgstr "İş Emri Raporu" #: field:mrp.production.workcenter.line,date_start:0 #: field:mrp_operations.operation,date_start:0 msgid "Start Date" -msgstr "Baş. Tarihi" +msgstr "Başlama Tarihi" #. module: mrp_operations #: selection:mrp.production.workcenter.line,production_state:0 @@ -439,7 +451,7 @@ msgstr "Beklemede" #. module: mrp_operations #: view:mrp_operations.operation.code:0 msgid "Production Operation Code" -msgstr "Üretim Operasyon Kodu" +msgstr "Üretim İşlem Kodu" #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:461 @@ -531,13 +543,13 @@ msgstr "İş Emrini Sürdür" #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_doneoperation0 msgid "Finish the operation." -msgstr "Operasyonu tamamlayın." +msgstr "İşlemi tamamlayın." #. module: mrp_operations #: code:addons/mrp_operations/mrp_operations.py:454 #, python-format msgid "Operation is not started yet !" -msgstr "Operasyon henüz başlatılmadı!" +msgstr "İşlem henüz başlatılmadı!" #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_productionorder0 @@ -572,7 +584,7 @@ msgstr "Onaylanan İş Emirleri" #. module: mrp_operations #: model:ir.actions.act_window,name:mrp_operations.mrp_production_code_action msgid "Operation Codes" -msgstr "Operasyon Kodları" +msgstr "İşlem Kodları" #. module: mrp_operations #: field:mrp.production.workcenter.line,qty:0 @@ -582,14 +594,14 @@ msgstr "Mik." #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_doneoperation0 msgid "Operation Done" -msgstr "Operasyon Yapıldı" +msgstr "İşlem Yapıldı" #. module: mrp_operations #: selection:mrp.production.workcenter.line,production_state:0 #: view:mrp.workorder:0 #: selection:mrp_operations.operation.code,start_stop:0 msgid "Done" -msgstr "Bitti" +msgstr "Yapıldı" #. module: mrp_operations #: model:ir.actions.report.xml,name:mrp_operations.report_code_barcode @@ -613,11 +625,18 @@ msgid "" "* When order is completely processed that time it is set in 'Finished' " "status." msgstr "" +"* Bir iş emri oluşturulduğunda 'Taslak' durumuna ayarlanır.\n" +"* Bir kullanıcı bir iş emrini başaldı durumuna ayarlarsa, o zaman iş emri " +"'İşlemde' durumuna ayarlanacaktır.\n" +"* İş emri çalışıyor durumunda ise, bu süre içinde kullanıcı durdurmak ve " +"değişiklikler yapmak isterse 'Bekliyor' durumuna ayarlanır.\n" +"* Kullanıcı iş emrini iptal ederse 'İptal edildi' durumuna ayarlanacaktır.\n" +"* İş emri tamamen işlenip bitirildiğinde, 'Bitirldi' durumuna ayarlanır." #. module: mrp_operations #: model:process.node,name:mrp_operations.process_node_startoperation0 msgid "Start Operation" -msgstr "Operasyonu Başlat" +msgstr "İşlemi Başlat" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -640,6 +659,19 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir iş emri başlatmak için tıklayın.\n" +"

\n" +" Ürünleri üretmek ya da montaj etmek ve ham malzeme ile bitmiş\n" +" ürünleri kullanmak için üretim işlemleri de yürütmeniz " +"gerekmektedir.\n" +" Üretim işlemleri genellikle İş Emirleri olarak adlandırılır. " +"Çeşitli işlemlerin,\n" +" mevcut iş yüküne bağlı olarak üretim maliyetleri ve planlama " +"maliyetleri\n" +" üzerinde değişik etkileri olacaktır.\n" +"

\n" +" " #. module: mrp_operations #: model:ir.actions.report.xml,name:mrp_operations.report_wc_barcode @@ -716,7 +748,7 @@ msgstr "Mayıs" #: selection:mrp.production.workcenter.line,state:0 #: selection:mrp.workorder,state:0 msgid "Finished" -msgstr "Tamamlandı" +msgstr "Bitirildi" #. module: mrp_operations #: view:mrp.production.workcenter.line:0 @@ -726,7 +758,7 @@ msgstr "İş Merkezi Saatleri" #. module: mrp_operations #: field:mrp.production.workcenter.line,delay:0 msgid "Working Hours" -msgstr "Çalışma Saati" +msgstr "Çalışma Saatleri" #. module: mrp_operations #: view:mrp.workorder:0 @@ -741,12 +773,12 @@ msgstr "Şubat" #. module: mrp_operations #: model:process.transition,name:mrp_operations.process_transition_startcanceloperation0 msgid "Operation cancelled" -msgstr "Operasyon iptal edildi" +msgstr "İşlem iptal edildi" #. module: mrp_operations #: model:process.node,note:mrp_operations.process_node_startoperation0 msgid "Start the operation." -msgstr "Operasyonu başlatın." +msgstr "İşlemi başlatın." #. module: mrp_operations #: selection:mrp.workorder,month:0 @@ -756,7 +788,7 @@ msgstr "Nisan" #. module: mrp_operations #: model:process.transition,name:mrp_operations.process_transition_startdoneoperation0 msgid "Operation done" -msgstr "Operasyon yapıldı" +msgstr "İşlem yapıldı" #. module: mrp_operations #: view:mrp.workorder:0 @@ -774,7 +806,7 @@ msgid "" "When the operation is finished, the operator updates the system by finishing " "the work order." msgstr "" -"Operasyon tamamlandığında, operatör iş emrini tamamlayarak sistemi günceller." +"İşlem tamamlandığında, operatör iş emrini tamamlayarak sistemi günceller." #. module: mrp_operations #: model:process.transition,name:mrp_operations.process_transition_workstartoperation0 diff --git a/addons/mrp_operations/i18n/uk.po b/addons/mrp_operations/i18n/uk.po index 9a97fc7a4d5..da1945f396a 100644 --- a/addons/mrp_operations/i18n/uk.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 45136405e8f..904c2ed85ba 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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 9a9347cb40f..97965118750 100644 --- a/addons/mrp_operations/i18n/zh_CN.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 e6eaac25e7f..2f694beb252 100644 --- a/addons/mrp_operations/i18n/zh_TW.po +++ b/addons/mrp_operations/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-16 05:32+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:25+0000\n" +"X-Generator: Launchpad (build 16753)\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 2ee12f5ac11..a6e48c99be0 100644 --- a/addons/mrp_repair/i18n/ar.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 69d2ed68881..78312d0a7ef 100644 --- a/addons/mrp_repair/i18n/bg.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 e3aa23794ea..b70736ff67b 100644 --- a/addons/mrp_repair/i18n/bs.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 1f2c3eabe38..f03f479c716 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 dbb685cd688..adba29a6dc3 100644 --- a/addons/mrp_repair/i18n/cs.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 a573fb065ef..9f55ba1f30c 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 df43537134c..37744646a3a 100644 --- a/addons/mrp_repair/i18n/de.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 2c48a7067e1..e54718112c2 100644 --- a/addons/mrp_repair/i18n/es.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 e793350c955..3e6cf59e848 100644 --- a/addons/mrp_repair/i18n/es_AR.po +++ b/addons/mrp_repair/i18n/es_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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 8fea284e12e..8df59141457 100644 --- a/addons/mrp_repair/i18n/es_CR.po +++ b/addons/mrp_repair/i18n/es_CR.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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: mrp_repair diff --git a/addons/mrp_repair/i18n/es_EC.po b/addons/mrp_repair/i18n/es_EC.po index fed01c6b304..a1241ee2239 100644 --- a/addons/mrp_repair/i18n/es_EC.po +++ b/addons/mrp_repair/i18n/es_EC.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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 7d223975ad7..56e2fa83c3b 100644 --- a/addons/mrp_repair/i18n/et.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp_repair #: field:mrp.repair,amount_tax:0 diff --git a/addons/mrp_repair/i18n/fi.po b/addons/mrp_repair/i18n/fi.po index 98051068a3d..b8decee5851 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 e7bd901de1f..ed3226aa4df 100644 --- a/addons/mrp_repair/i18n/fr.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 @@ -54,7 +54,7 @@ msgstr "à Facturer" #. module: mrp_repair #: view:mrp.repair:0 msgid "Unit of Measure" -msgstr "" +msgstr "Unité de mesure" #. module: mrp_repair #: report:repair.order:0 @@ -69,7 +69,7 @@ msgstr "Grrouper par Adresse de Facturation Partenaire" #. module: mrp_repair #: field:mrp.repair,message_unread:0 msgid "Unread Messages" -msgstr "" +msgstr "Messages non-lus" #. module: mrp_repair #: code:addons/mrp_repair/mrp_repair.py:435 @@ -123,6 +123,7 @@ msgstr "Adresse de Facturation :" #: help:mrp.repair,partner_id:0 msgid "Choose partner for whom the order will be invoiced and delivered." msgstr "" +"Choisissez un partenaire pour lequel la commande sera facturée et expédiée." #. module: mrp_repair #: view:mrp.repair:0 @@ -168,7 +169,7 @@ msgstr "" #. module: mrp_repair #: help:mrp.repair,message_unread:0 msgid "If checked new messages require your attention." -msgstr "" +msgstr "Si coché, de nouveaux messages demandent votre attention." #. module: mrp_repair #: view:mrp.repair:0 @@ -195,6 +196,21 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour créer un ordre de réparation. \n" +"

\n" +" Dans un ordre de réparation, vous pouvez spécifier les " +"composants à enlever,\n" +" ajouter ou remplacer et enregistrer le temps que vous avez " +"passé sur les différentes \n" +" opérations.\n" +"

\n" +" L'ordre de réparation utilise la date de garantie sur le " +"numéro de série\n" +" afin de déterminer si la réparation devrait être facturée au " +"client ou pas.\n" +"

\n" +" " #. module: mrp_repair #: help:mrp.repair.line,state:0 @@ -500,16 +516,20 @@ msgid "" "invoice before or after the repair is done respectively. 'No invoice' means " "you don't want to generate invoice for this repair order." msgstr "" +"Sélectionner \"Avant la réparation\" ou \"Après la réparation\" vous " +"permettra de générer la facture respectivement avant ou après la réparation. " +"\"Pas de facture\" signifie que vous ne voulez pas générer une facture pour " +"cet ordre de réparation." #. module: mrp_repair #: field:mrp.repair,guarantee_limit:0 msgid "Warranty Expiration" -msgstr "" +msgstr "Fin de garantie" #. module: mrp_repair #: help:mrp.repair,pricelist_id:0 msgid "Pricelist of the selected partner." -msgstr "" +msgstr "Liste de prix du partenaire sélectionné." #. module: mrp_repair #: report:repair.order:0 @@ -692,7 +712,7 @@ msgstr "Créer la facture" #. module: mrp_repair #: view:mrp.repair:0 msgid "Reair Orders" -msgstr "" +msgstr "Ordres de réparation" #. module: mrp_repair #: field:mrp.repair.fee,name:0 @@ -747,7 +767,7 @@ msgstr "Voulez-vous réellement créer la(es) facture(s) ?" #: code:addons/mrp_repair/mrp_repair.py:349 #, python-format msgid "Repair order is already invoiced." -msgstr "" +msgstr "L'ordre de réparation est déjà facturé." #. module: mrp_repair #: field:mrp.repair,picking_id:0 diff --git a/addons/mrp_repair/i18n/hi.po b/addons/mrp_repair/i18n/hi.po index c5d78546ce1..d4100c64e90 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 5a49be952d3..3b5f697469e 100644 --- a/addons/mrp_repair/i18n/hr.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 51cabb633ca..b07ec4388b4 100644 --- a/addons/mrp_repair/i18n/hu.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 4ccb84bdbb0..472a4b35180 100644 --- a/addons/mrp_repair/i18n/id.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 a466e9a6d36..cbf123f1e2e 100644 --- a/addons/mrp_repair/i18n/it.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 136e7614283..1f3e0bbb251 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 50a675d7122..18e656b034f 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 1b06a193fc5..2baaace7e31 100644 --- a/addons/mrp_repair/i18n/lt.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 2e4e1148cf5..e78602d899c 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 04:38+0000\n" -"X-Generator: Launchpad (build 16540)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 7ae41690af2..5d54962bd4d 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 @@ -30,13 +30,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 @@ -74,7 +75,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 @@ -90,7 +91,7 @@ msgstr "Подеси на нацрт" #. module: mrp_repair #: selection:mrp.repair,state:0 msgid "Invoice Exception" -msgstr "" +msgstr "Исклучување на фактура" #. module: mrp_repair #: view:mrp.repair:0 @@ -167,7 +168,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 @@ -218,11 +219,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 @@ -246,6 +255,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 @@ -264,7 +275,7 @@ msgstr "Внимание!" #. module: mrp_repair #: view:mrp.repair:0 msgid "(update)" -msgstr "" +msgstr "(ажурирај)" #. module: mrp_repair #: view:mrp.repair:0 diff --git a/addons/mrp_repair/i18n/mn.po b/addons/mrp_repair/i18n/mn.po index f0f69c28a4a..e3e1d0caa54 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 2f88d36b746..32dee1b3f49 100644 --- a/addons/mrp_repair/i18n/nl.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 @@ -85,7 +85,7 @@ msgstr "Bedrijf" #. module: mrp_repair #: view:mrp.repair:0 msgid "Set to Draft" -msgstr "Zet op Concept" +msgstr "Zet op concept" #. module: mrp_repair #: selection:mrp.repair,state:0 diff --git a/addons/mrp_repair/i18n/nl_BE.po b/addons/mrp_repair/i18n/nl_BE.po index f1213b10bbe..6959db47e2c 100644 --- a/addons/mrp_repair/i18n/nl_BE.po +++ b/addons/mrp_repair/i18n/nl_BE.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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 a42100b3aa2..c836cb310ba 100644 --- a/addons/mrp_repair/i18n/pl.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 b893c415024..0e8b3c4caba 100644 --- a/addons/mrp_repair/i18n/pt.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 ca178cd6e56..78c4177516a 100644 --- a/addons/mrp_repair/i18n/pt_BR.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 7efa9a41207..558b711cc89 100644 --- a/addons/mrp_repair/i18n/ro.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 46ff70357aa..5dc8a87b481 100644 --- a/addons/mrp_repair/i18n/ru.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 0560d655e17..5741abe3284 100644 --- a/addons/mrp_repair/i18n/sl.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 6f85fd87ef4..9efa3481f3b 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 8b9a0e71e15..637872e7b3f 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 1ab792fc5ea..092130cd4a2 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 5a71812581d..ce4e1952aab 100644 --- a/addons/mrp_repair/i18n/sv.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 955df7b673a..c40aa9b6b3b 100644 --- a/addons/mrp_repair/i18n/tlh.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 fbebcd514d5..45a0bb43554 100644 --- a/addons/mrp_repair/i18n/tr.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: mrp_repair #: field:mrp.repair.line,move_id:0 @@ -347,7 +347,7 @@ msgstr "Parti Numarası" #. module: mrp_repair #: field:mrp.repair,message_follower_ids:0 msgid "Followers" -msgstr "Takipçiler" +msgstr "İzleyiciler" #. module: mrp_repair #: field:mrp.repair,fees_lines:0 @@ -575,7 +575,7 @@ msgstr "Etkin ID Bulunamadı" #. module: mrp_repair #: field:mrp.repair,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçi" +msgstr "Bir İzleyicidir" #. module: mrp_repair #: view:mrp.repair:0 diff --git a/addons/mrp_repair/i18n/uk.po b/addons/mrp_repair/i18n/uk.po index 19a4046c5c8..edb9d17a728 100644 --- a/addons/mrp_repair/i18n/uk.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 c112ce69ff4..703d0bf38b7 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 f3029ddc248..c8a89ad6950 100644 --- a/addons/mrp_repair/i18n/zh_CN.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 f647df00c01..7441d9ed552 100644 --- a/addons/mrp_repair/i18n/zh_TW.po +++ b/addons/mrp_repair/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:29+0000\n" +"X-Generator: Launchpad (build 16753)\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 0a6753f57f1..c78e407fe68 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 bececa4c603..4159c307439 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 39a9f5579e2..432c0931889 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 691c1426386..394045779d1 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 0e4f3425a94..2262f4e3b2c 100644 --- a/addons/multi_company/i18n/cs.po +++ b/addons/multi_company/i18n/cs.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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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/da.po b/addons/multi_company/i18n/da.po index 6ababfa8307..f887048f3e6 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 a538aec224b..02de3a5de01 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 5cb6da681dc..fc403dcd441 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 de7ea95bc66..c926b9c6921 100644 --- a/addons/multi_company/i18n/es_CR.po +++ b/addons/multi_company/i18n/es_CR.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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: multi_company diff --git a/addons/multi_company/i18n/es_EC.po b/addons/multi_company/i18n/es_EC.po index e081de2f699..a7225409e5d 100644 --- a/addons/multi_company/i18n/es_EC.po +++ b/addons/multi_company/i18n/es_EC.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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 b8fd0efad9b..3476be1b589 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 a99b756a99f..8fef884130d 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 64ede07c349..25bc63b7550 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 1da363fdeba..a133f488752 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 baa03e0f994..7ab1cd209a5 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 b1525a07338..cd5b96b992c 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 028413ddf3b..0bd8592e171 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 af0530d7a0c..4d8469d3b3a 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 c779b057f96..6bbdef40ae0 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 f82d4f73748..06e2198ccd5 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 4f95a6c86d5..6f0c7e73b28 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 b9330140f3f..6e921735896 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 7980649afb2..dffe2e5ee4a 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 f85da9b9873..8e71de3ac9f 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 7009d2428f0..63220d2fc82 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 87ac9e921ff..3c9b391aed2 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 39df993dd17..4264d6aa970 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 8fbde06eb63..658455588e6 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 2815dfad3a3..901443ddb6e 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 77af650f275..2ebacdb3dc4 100644 --- a/addons/multi_company/i18n/pt_BR.po +++ b/addons/multi_company/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 ced7da773a3..49ce955c5ac 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 e1665d9c838..d4a67f9f968 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-06-07 05:48+0000\n" -"X-Generator: Launchpad (build 16667)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 7d4d38e141c..0602caac6aa 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 dde10e2571c..2ed048c409e 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 6090c7a8191..83b24698877 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 fd075a0ebb1..5c0a448bb9c 100644 --- a/addons/multi_company/i18n/sv.po +++ b/addons/multi_company/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany @@ -44,6 +44,15 @@ msgid "" "Thank you in advance for your cooperation.\n" "Best Regards," msgstr "" +"Hej,\n" +"\n" +"Enligt våra uppgifter saknas det fortfarande inbetalningar. Om beloppet " +"redan har betalats, vänligen bortse från detta meddelande. Annars, vänligen " +"skicka oss det totala belopp som anges nedan.\n" +"Om du har några frågor angående ditt konto kan du kontakta oss.\n" +"\n" +"Tack på förhand för ditt samarbete.\n" +"Vänliga hälsningar," #. module: multi_company #: view:multi_company.default:0 diff --git a/addons/multi_company/i18n/tr.po b/addons/multi_company/i18n/tr.po index 2ba528c5e73..42b3ff3009a 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany @@ -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/multi_company/i18n/uk.po b/addons/multi_company/i18n/uk.po index 89c0b997de4..7d3cbecc7a5 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 39b125ce1d6..943b9adaf3c 100644 --- a/addons/multi_company/i18n/vi.po +++ b/addons/multi_company/i18n/vi.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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany msgid "Multi-Companies" -msgstr "" +msgstr "Đa công ty" #. module: multi_company #: model:product.category,name:multi_company.Odoo1 @@ -49,7 +49,7 @@ msgstr "" #. module: multi_company #: view:multi_company.default:0 msgid "Multi Company" -msgstr "" +msgstr "Đa công ty" #. module: multi_company #: model:ir.actions.act_window,name:multi_company.action_inventory_form diff --git a/addons/multi_company/i18n/zh_CN.po b/addons/multi_company/i18n/zh_CN.po index 5f1df881ea3..8119016e3dc 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 18bddb76d79..0fe82e50eaf 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: multi_company #: model:ir.ui.menu,name:multi_company.menu_custom_multicompany diff --git a/addons/note/i18n/bs.po b/addons/note/i18n/bs.po index d31dd1870f0..5071eed8bc9 100644 --- a/addons/note/i18n/bs.po +++ b/addons/note/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-08-07 04:46+0000\n" -"X-Generator: Launchpad (build 16721)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/cs.po b/addons/note/i18n/cs.po index 9d4cc3a298a..94641cd8eb3 100644 --- a/addons/note/i18n/cs.po +++ b/addons/note/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-28 04:41+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/de.po b/addons/note/i18n/de.po index af1aa80f13a..9b50494f81d 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/es.po b/addons/note/i18n/es.po index 683ac7cd8fb..9aab36a434c 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/fr.po b/addons/note/i18n/fr.po index 493cdb516f4..ac5964d8924 100644 --- a/addons/note/i18n/fr.po +++ b/addons/note/i18n/fr.po @@ -14,18 +14,18 @@ msgstr "" "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 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 msgid "Note Content" -msgstr "" +msgstr "Contenu de la note" #. module: note #: view:note.stage:0 msgid "Stages of Notes" -msgstr "" +msgstr "Étapes des notes" #. module: note #: model:note.stage,name:note.demo_note_stage_04 @@ -41,7 +41,7 @@ msgstr "" #. module: note #: model:ir.model,name:note.model_note_tag msgid "Note Tag" -msgstr "" +msgstr "Étiquette de la note" #. module: note #: model:res.groups,name:note.group_note_fancy @@ -83,6 +83,23 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour ajouter une note personnelle.\n" +"

\n" +" Utilisez les notes pour organiser vos tâches personnelles ou " +"notes. Toutes\n" +" les notes sont privées; personne d'autre ne pourra les voir. " +"Cependant,\n" +" vous pouvez partager des notes avec d'autres personnes en " +"invitant des abonnés\n" +" sur la note. (Utile pour les compte-rendus de réunion, " +"particulièrement si vous activez les pads collaboratifs).\n" +"

\n" +" Vous pouvez personnaliser votre méthode de traitement des " +"notes/tâches en ajoutant, en enlevant ou en modifiant des " +"colonnes.\n" +"

\n" +" " #. module: note #: model:note.stage,name:note.demo_note_stage_01 @@ -103,7 +120,7 @@ msgstr "" #. module: note #: view:note.stage:0 msgid "Stage of Notes" -msgstr "" +msgstr "Étape des notes" #. module: note #: field:note.note,message_unread:0 @@ -118,7 +135,7 @@ msgstr "" #. module: note #: view:note.note:0 msgid "By sticky note Category" -msgstr "" +msgstr "Par catégorie de note repositionnable" #. module: note #: help:note.note,message_unread:0 @@ -149,7 +166,7 @@ msgstr "Actif" #. module: note #: help:note.stage,user_id:0 msgid "Owner of the note stage." -msgstr "" +msgstr "Propriétaire de l'étape de la note." #. module: note #: model:ir.ui.menu,name:note.menu_notes_stage @@ -190,7 +207,7 @@ msgstr "Plus tard" #. module: note #: model:ir.model,name:note.model_note_stage msgid "Note Stage" -msgstr "" +msgstr "Étape de la note" #. module: note #: field:note.note,message_summary:0 @@ -200,12 +217,12 @@ msgstr "Résumé" #. module: note #: field:note.note,stage_ids:0 msgid "Stages of Users" -msgstr "" +msgstr "Étapes des utilisateurs" #. module: note #: field:note.note,name:0 msgid "Note Summary" -msgstr "" +msgstr "Résumé de la note" #. module: note #: model:ir.actions.act_window,name:note.action_note_stage @@ -248,7 +265,7 @@ msgstr "Archiver" #. module: note #: field:base.config.settings,module_note_pad:0 msgid "Use collaborative pads (etherpad)" -msgstr "" +msgstr "Utilisez les pads collaboratifs (etherpad)" #. module: note #: help:note.note,message_summary:0 @@ -271,7 +288,7 @@ msgstr "Propriétaire" #. module: note #: help:note.stage,sequence:0 msgid "Used to order the note stages" -msgstr "" +msgstr "Utiliser pour réagencer les étapes de la notes" #. module: note #: field:note.note,date_done:0 diff --git a/addons/note/i18n/hr.po b/addons/note/i18n/hr.po index c82bb02bed6..f6794cf4f16 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/hu.po b/addons/note/i18n/hu.po index f7f31185e27..9b3a4e09da5 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/id.po b/addons/note/i18n/id.po index 1e40cc257fb..ea2c6d658b6 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/it.po b/addons/note/i18n/it.po index 14e738e581a..96c703425b7 100644 --- a/addons/note/i18n/it.po +++ b/addons/note/i18n/it.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-17 07:15+0000\n" -"Last-Translator: Davide Corio - agilebg.com \n" +"Last-Translator: Davide Corio \n" "Language-Team: Italian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/lt.po b/addons/note/i18n/lt.po index 3e030054520..144f6204319 100644 --- a/addons/note/i18n/lt.po +++ b/addons/note/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-04-30 05:29+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 @@ -93,7 +93,7 @@ msgstr "" #. module: note #: model:ir.model,name:note.model_res_users msgid "Users" -msgstr "" +msgstr "Naudotojai" #. module: note #: view:note.note:0 @@ -154,7 +154,7 @@ msgstr "" #. module: note #: model:ir.ui.menu,name:note.menu_notes_stage msgid "Categories" -msgstr "" +msgstr "Kategorijos" #. module: note #: view:note.note:0 @@ -211,7 +211,7 @@ msgstr "" #: model:ir.actions.act_window,name:note.action_note_stage #: view:note.note:0 msgid "Stages" -msgstr "" +msgstr "Etapai" #. module: note #: help:note.note,message_ids:0 diff --git a/addons/note/i18n/mk.po b/addons/note/i18n/mk.po index a4bf984b83a..09eab5a4e8c 100644 --- a/addons/note/i18n/mk.po +++ b/addons/note/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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/mn.po b/addons/note/i18n/mn.po index 34defa59f87..7a3fa5d8db9 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/nl.po b/addons/note/i18n/nl.po index 8cb77b7ecd5..55ae4cb4ab6 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/pl.po b/addons/note/i18n/pl.po index 20d6a150776..b2c0fed3cf6 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/pt.po b/addons/note/i18n/pt.po index 6cabac97054..9b7f945a006 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\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 ac04ed7e323..4622fddd4a8 100644 --- a/addons/note/i18n/pt_BR.po +++ b/addons/note/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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/ro.po b/addons/note/i18n/ro.po index 5522d4a71f5..4f77ed205a1 100644 --- a/addons/note/i18n/ro.po +++ b/addons/note/i18n/ro.po @@ -9,13 +9,13 @@ msgstr "" "Report-Msgid-Bugs-To: FULL NAME \n" "POT-Creation-Date: 2012-12-21 17:04+0000\n" "PO-Revision-Date: 2012-12-18 14:27+0000\n" -"Last-Translator: Fekete Mihai \n" +"Last-Translator: ERPSystems.ro \n" "Language-Team: Romanian \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"X-Launchpad-Export-Date: 2013-03-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/ru.po b/addons/note/i18n/ru.po index ef2cd6be0c1..4d037cd0342 100644 --- a/addons/note/i18n/ru.po +++ b/addons/note/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-06-07 05:48+0000\n" -"X-Generator: Launchpad (build 16667)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/sl.po b/addons/note/i18n/sl.po index 440609bba36..fcafc271eef 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/sv.po b/addons/note/i18n/sv.po index 63e661fc64d..ea9236d7592 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note/i18n/tr.po b/addons/note/i18n/tr.po index 4376b132e78..eff009c05a5 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 @@ -83,6 +83,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Kişisel bir not eklemek için tıklayın.\n" +"

\n" +" Notları kişisel görev ve notları düzenlemek için kullanın. " +"Bütün\n" +" notlar özeldir; başkaları onları görememelidir. Ancak; " +"izleyicilerinizi\n" +" not ile ile davet ederek bazı notlarınızı diğer kişilerle\n" +" paylaşabilirsiniz. (Toplantı tutanakları için kullanışlı olur, " +"özellikle\n" +" işbirliği yazışmaları için pad özelliğini " +"etkinleştirdiğinizde).\n" +"

\n" +" Sütünları ekleyerek, kaldırarak ya da değiştirerek " +"notlarınız/görevlerinizi\n" +" nasıl işlyeceğinizi özelleştirebilirsiniz.\n" +"

\n" +" " #. module: note #: model:note.stage,name:note.demo_note_stage_01 @@ -133,7 +151,7 @@ msgstr "Aşama Adı" #. module: note #: field:note.note,message_is_follower:0 msgid "Is a Follower" -msgstr "Bir Takipçi mi" +msgstr "Bir İzleyicidir" #. module: note #: model:note.stage,name:note.demo_note_stage_02 @@ -248,7 +266,7 @@ msgstr "Arşiv" #. module: note #: field:base.config.settings,module_note_pad:0 msgid "Use collaborative pads (etherpad)" -msgstr "" +msgstr "İşbirliğ padlerini kullanın (etherpad)" #. module: note #: help:note.note,message_summary:0 @@ -273,7 +291,7 @@ msgstr "Sahibi" #. module: note #: help:note.stage,sequence:0 msgid "Used to order the note stages" -msgstr "" +msgstr "Not aşamalarını sıralamak için kullanın" #. module: note #: field:note.note,date_done:0 @@ -283,4 +301,4 @@ msgstr "Yapılış tarihi" #. module: note #: field:note.stage,fold:0 msgid "Folded by Default" -msgstr "" +msgstr "Varsayılan olarak katlanmış" diff --git a/addons/note/i18n/zh_CN.po b/addons/note/i18n/zh_CN.po index 4adce73bcd2..772c20dce0a 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:46+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note #: field:note.note,memo:0 diff --git a/addons/note_pad/i18n/cs.po b/addons/note_pad/i18n/cs.po index bb2502ee2d1..04849874990 100644 --- a/addons/note_pad/i18n/cs.po +++ b/addons/note_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-31 05:27+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/de.po b/addons/note_pad/i18n/de.po index dde306d42c0..245433601b4 100644 --- a/addons/note_pad/i18n/de.po +++ b/addons/note_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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/en_GB.po b/addons/note_pad/i18n/en_GB.po index a94c1103f8b..d3caeed03ff 100644 --- a/addons/note_pad/i18n/en_GB.po +++ b/addons/note_pad/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-08-24 05:03+0000\n" -"X-Generator: Launchpad (build 16738)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 53ac268a689..d923aee7aa1 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 095c1a2363c..93316838c3f 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 ee6b31580a0..311f94fc7b3 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 77c8d16c33d..131afaded44 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 31a47a68f7b..6faaf35d853 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/lt.po b/addons/note_pad/i18n/lt.po index 3c814e3f7eb..15ccd459170 100644 --- a/addons/note_pad/i18n/lt.po +++ b/addons/note_pad/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-04-25 05:20+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 908c3bf2a63..f6d520f2edb 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 28d6a436087..a4468228d8f 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 98767ec259b..decddb7c0e2 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 66f2467c831..4e508ca1340 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 372b64525a3..420b55f91a2 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 b771b6a39fc..6b72a35d7f7 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 14ccb59bf45..393fbf01f01 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 a6895e76e40..20d04d76539 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 54e80410717..3665dc1cbb0 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 f7b82c4fb5f..9c1b0b77af2 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 1712e4a6beb..114058d055a 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: note_pad #: model:ir.model,name:note_pad.model_note_note diff --git a/addons/note_pad/i18n/vi.po b/addons/note_pad/i18n/vi.po index 76bed331d8a..b3dbdc6939c 100644 --- a/addons/note_pad/i18n/vi.po +++ b/addons/note_pad/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-06-28 05:42+0000\n" -"X-Generator: Launchpad (build 16681)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 f3e466b11e4..2ec449d9a1c 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-16 05:52+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:47+0000\n" +"X-Generator: Launchpad (build 16753)\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 245fff00b7e..192f708ae78 100644 --- a/addons/pad/i18n/ar.po +++ b/addons/pad/i18n/ar.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/bg.po b/addons/pad/i18n/bg.po index 487e80f4c9a..707bd643723 100644 --- a/addons/pad/i18n/bg.po +++ b/addons/pad/i18n/bg.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/ca.po b/addons/pad/i18n/ca.po index 67071bcb342..dce2e3ed857 100644 --- a/addons/pad/i18n/ca.po +++ b/addons/pad/i18n/ca.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/cs.po b/addons/pad/i18n/cs.po index c684191cb1b..00ad2f4ef40 100644 --- a/addons/pad/i18n/cs.po +++ b/addons/pad/i18n/cs.po @@ -14,59 +14,63 @@ msgstr "" "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 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" -msgstr "" +msgstr "Ñ" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format 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 #: 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" #~ msgid "Template used to generate pad URL." #~ msgstr "Šablona použitá pro generování URL bloku" diff --git a/addons/pad/i18n/da.po b/addons/pad/i18n/da.po index b3438df3390..26b187afb9c 100644 --- a/addons/pad/i18n/da.po +++ b/addons/pad/i18n/da.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/de.po b/addons/pad/i18n/de.po index ae19eb6a28e..f051855dd65 100644 --- a/addons/pad/i18n/de.po +++ b/addons/pad/i18n/de.po @@ -15,29 +15,31 @@ msgstr "" "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 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " "Companies, in the configuration tab of your company." msgstr "" +"Sie müssen zuerst Etherpad über das Menü Einstellungen > Unternehmen > " +"Unternehmen im Konfiguration Aktenreiter konfigurieren." #. module: pad #: help:res.company,pad_key:0 msgid "Etherpad lite api key." -msgstr "" +msgstr "Etherpad lite api key" #. module: pad #: model:ir.model,name:pad.model_res_company @@ -67,7 +69,7 @@ msgstr "" #. module: pad #: help:res.company,pad_server:0 msgid "Etherpad lite server. Example: beta.primarypad.com" -msgstr "" +msgstr "Etherpad lite Server. Beispiel: beta.primarypad.com" #, python-format #~ msgid "Ok" diff --git a/addons/pad/i18n/es.po b/addons/pad/i18n/es.po index 0d049df6874..56846b9ec3f 100644 --- a/addons/pad/i18n/es.po +++ b/addons/pad/i18n/es.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "Ñ" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/es_CR.po b/addons/pad/i18n/es_CR.po index b19b5742a87..636480de33b 100644 --- a/addons/pad/i18n/es_CR.po +++ b/addons/pad/i18n/es_CR.po @@ -14,20 +14,20 @@ msgstr "" "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 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/fi.po b/addons/pad/i18n/fi.po index 67f1ce4cb1d..42b36574073 100644 --- a/addons/pad/i18n/fi.po +++ b/addons/pad/i18n/fi.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/fr.po b/addons/pad/i18n/fr.po index e7f55955739..a4143731e5d 100644 --- a/addons/pad/i18n/fr.po +++ b/addons/pad/i18n/fr.po @@ -15,29 +15,31 @@ msgstr "" "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 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "Ñ" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " "Companies, in the configuration tab of your company." msgstr "" +"Vous devez configurer l'etherpad à partir de Configuration > Sociétés > " +"Sociétés, dans l'onglet Configuration de votre société." #. module: pad #: help:res.company,pad_key:0 msgid "Etherpad lite api key." -msgstr "" +msgstr "Clé api de l'etherpad lite." #. module: pad #: model:ir.model,name:pad.model_res_company @@ -52,22 +54,22 @@ msgstr "pad.common" #. module: pad #: view:res.company:0 msgid "Pads" -msgstr "" +msgstr "Pads" #. module: pad #: field:res.company,pad_server:0 msgid "Pad Server" -msgstr "" +msgstr "Serveur du pad" #. module: pad #: field:res.company,pad_key:0 msgid "Pad Api Key" -msgstr "" +msgstr "Clé api du pad" #. module: pad #: help:res.company,pad_server:0 msgid "Etherpad lite server. Example: beta.primarypad.com" -msgstr "" +msgstr "Serveur etherpad lite. Exemple: beta.primarypad.com" #, python-format #~ msgid "Ok" diff --git a/addons/pad/i18n/gl.po b/addons/pad/i18n/gl.po index 9a3296be6d9..db649b8957c 100644 --- a/addons/pad/i18n/gl.po +++ b/addons/pad/i18n/gl.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/hr.po b/addons/pad/i18n/hr.po index 1b6b4259d95..d56da57132a 100644 --- a/addons/pad/i18n/hr.po +++ b/addons/pad/i18n/hr.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "Ñ" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/hu.po b/addons/pad/i18n/hu.po index bd3d972087b..be03c67b5be 100644 --- a/addons/pad/i18n/hu.po +++ b/addons/pad/i18n/hu.po @@ -13,19 +13,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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/it.po b/addons/pad/i18n/it.po index 3e475dce6f9..1e0be2b1fd4 100644 --- a/addons/pad/i18n/it.po +++ b/addons/pad/i18n/it.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "Ñ" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/ja.po b/addons/pad/i18n/ja.po index 33e6d99ad04..281fb5b9d3a 100644 --- a/addons/pad/i18n/ja.po +++ b/addons/pad/i18n/ja.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/mk.po b/addons/pad/i18n/mk.po index 09f1c6a108e..3dc71461647 100644 --- a/addons/pad/i18n/mk.po +++ b/addons/pad/i18n/mk.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/mn.po b/addons/pad/i18n/mn.po index ad90e3c90b2..72d3f8f4f13 100644 --- a/addons/pad/i18n/mn.po +++ b/addons/pad/i18n/mn.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "Ñ" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/nb.po b/addons/pad/i18n/nb.po index 1806011e54a..69eaad1e511 100644 --- a/addons/pad/i18n/nb.po +++ b/addons/pad/i18n/nb.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/nl.po b/addons/pad/i18n/nl.po index 9dfe4698989..98f9fef751f 100644 --- a/addons/pad/i18n/nl.po +++ b/addons/pad/i18n/nl.po @@ -14,25 +14,25 @@ msgstr "" "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 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "Ñ" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " "Companies, in the configuration tab of your company." msgstr "" -"U dient de etherpad te in te stellen bij Instellingen > Bedrijven > " +"U dient de etherpad koppeling in te stellen bij Instellingen > Bedrijven > " "Bedrijven, op het configuratie tabblad van uw bedrijf." #. module: pad diff --git a/addons/pad/i18n/pl.po b/addons/pad/i18n/pl.po index 176d1df57e3..b67dd11b9c1 100644 --- a/addons/pad/i18n/pl.po +++ b/addons/pad/i18n/pl.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/pt.po b/addons/pad/i18n/pt.po index 5e431164b1e..79e60045d99 100644 --- a/addons/pad/i18n/pt.po +++ b/addons/pad/i18n/pt.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "Ñ" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/pt_BR.po b/addons/pad/i18n/pt_BR.po index 0612a28c15a..15503860c9c 100644 --- a/addons/pad/i18n/pt_BR.po +++ b/addons/pad/i18n/pt_BR.po @@ -15,19 +15,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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "Ñ" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/ro.po b/addons/pad/i18n/ro.po index 5fde3dfaf76..86941c9a2cb 100644 --- a/addons/pad/i18n/ro.po +++ b/addons/pad/i18n/ro.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "Ñ" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/ru.po b/addons/pad/i18n/ru.po index 3f162ffc69e..c52a1639323 100644 --- a/addons/pad/i18n/ru.po +++ b/addons/pad/i18n/ru.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "Ñ" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/sl.po b/addons/pad/i18n/sl.po index 80aed203d65..ad485d4cf23 100644 --- a/addons/pad/i18n/sl.po +++ b/addons/pad/i18n/sl.po @@ -14,29 +14,31 @@ msgstr "" "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 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" -msgstr "" +msgstr "Ñ" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " "Companies, in the configuration tab of your company." msgstr "" +"You must configure the etherpad through the menu Settings > Companies > " +"Companies, in the configuration tab of your company." #. module: pad #: help:res.company,pad_key:0 msgid "Etherpad lite api key." -msgstr "" +msgstr "Etherpad lite api key." #. module: pad #: model:ir.model,name:pad.model_res_company @@ -46,27 +48,27 @@ msgstr "Družbe" #. 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 "Pads" #. 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 "" +msgstr "Etherpad lite server. Example: beta.primarypad.com" #, python-format #~ msgid "Ok" diff --git a/addons/pad/i18n/sr@latin.po b/addons/pad/i18n/sr@latin.po index 35f75490cf9..58ec2af67e7 100644 --- a/addons/pad/i18n/sr@latin.po +++ b/addons/pad/i18n/sr@latin.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/sv.po b/addons/pad/i18n/sv.po index 99a885a04a7..b4256eb3992 100644 --- a/addons/pad/i18n/sv.po +++ b/addons/pad/i18n/sv.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad/i18n/tr.po b/addons/pad/i18n/tr.po index f053da2236d..c991ff6d605 100644 --- a/addons/pad/i18n/tr.po +++ b/addons/pad/i18n/tr.po @@ -14,24 +14,26 @@ msgstr "" "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 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" -msgstr "" +msgstr "Ñ" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " "Companies, in the configuration tab of your company." msgstr "" +"Etherpad'i yapılandırma sekmesindeki Ayarlar > Şirketler > Şirketler " +"menüsünden yapılandırmalısınız." #. module: pad #: help:res.company,pad_key:0 @@ -41,7 +43,7 @@ msgstr "Etherpad lite api anahtarı." #. module: pad #: model:ir.model,name:pad.model_res_company msgid "Companies" -msgstr "Firmalar" +msgstr "Şirketler" #. module: pad #: model:ir.model,name:pad.model_pad_common @@ -66,7 +68,7 @@ msgstr "Pad Api Anahtarı" #. module: pad #: help:res.company,pad_server:0 msgid "Etherpad lite server. Example: beta.primarypad.com" -msgstr "Etherpad lite sunucu. Örnek: beta.primarypad.com" +msgstr "Etherpad lite sunucusu. Örnek: beta.primarypad.com" #, python-format #~ msgid "Ok" diff --git a/addons/pad/i18n/zh_CN.po b/addons/pad/i18n/zh_CN.po index 3651bd4ad93..01aaa6781ec 100644 --- a/addons/pad/i18n/zh_CN.po +++ b/addons/pad/i18n/zh_CN.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-16 05:49+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:44+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:27 +#: code:addons/pad/static/src/xml/pad.xml:18 #, python-format msgid "Ñ" msgstr "Ñ" #. module: pad #. openerp-web -#: code:addons/pad/static/src/xml/pad.xml:10 +#: code:addons/pad/static/src/xml/pad.xml:9 #, python-format msgid "" "You must configure the etherpad through the menu Settings > Companies > " diff --git a/addons/pad_project/i18n/ar.po b/addons/pad_project/i18n/ar.po index a6a26ffd553..665d812198c 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 3f908ef37aa..51224357013 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 238745a6b5d..b3545aff877 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 4ad8c9bb590..2200aeef560 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 28ec2c7dbf1..7ab45edb756 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 146a2697a6b..8b2f2b78a0d 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 016c4544101..66759473a73 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad_project #: constraint:project.task:0 @@ -26,7 +26,7 @@ msgstr "" #. module: pad_project #: field:project.task,description_pad:0 msgid "Description PAD" -msgstr "" +msgstr "Description du pad" #. module: pad_project #: model:ir.model,name:pad_project.model_project_task diff --git a/addons/pad_project/i18n/hr.po b/addons/pad_project/i18n/hr.po index 7d284c9a19e..950801a3247 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 3af44152597..da0f2f11ccd 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 7a3dc1a124a..51595f8b28d 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 70109805a95..c0f06bfac90 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/pad_project/i18n/lt.po b/addons/pad_project/i18n/lt.po index 2f7340a36e2..52801f70abd 100644 --- a/addons/pad_project/i18n/lt.po +++ b/addons/pad_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-04-25 05:20+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 53cd902c6ee..0e3f8662ad6 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 0b42f05bb57..cb09eefdd77 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 22a7260d529..33c92de432b 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 e95fcfd3e07..b8b5c120d2a 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 c25b79f4fb2..142313423d0 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 21f7410a253..c42b8e9506e 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 8b13d9d5452..deafb109ffc 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 e2d9ccb3110..b230f0de09e 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 d90fb80b5b4..6e9dd32b457 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 130fa02d7cc..00f1639d46f 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 3282934399a..c11bb5282f3 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 bed576a0615..626e012c7f7 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 28bc991ead0..baf39064784 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 c523b031c84..19f713fa2cd 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-16 05:50+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: pad_project #: constraint:project.task:0 diff --git a/addons/plugin/i18n/ar.po b/addons/plugin/i18n/ar.po index 7d067c1cec5..23cc25ce299 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 9281af77f55..c3ff1437e3c 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 f28299317d4..d0ee1ec564b 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 201865f3183..9a901b611e5 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 18135961e06..a13115d796d 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 28aad2a527b..cbbeffc3fd7 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 da543f4ac66..ae0853219be 100644 --- a/addons/plugin/i18n/fr.po +++ b/addons/plugin/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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 c1604725008..c68aaceec2d 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 22e51632023..471aac668c8 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 ec37aa064d8..383d97d8b19 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 886bce3fb1d..9779ba44d97 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: plugin #: model:ir.model,name:plugin.model_plugin_handler diff --git a/addons/plugin/i18n/lt.po b/addons/plugin/i18n/lt.po index dc120cadcf2..f2ed320e887 100644 --- a/addons/plugin/i18n/lt.po +++ b/addons/plugin/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-04-25 05:20+0000\n" -"X-Generator: Launchpad (build 16580)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 6540892efd7..e7d8741b59b 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 963b05e3715..2a0f9a329ee 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 baec33ea16d..456894d4574 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 1979ad49ae7..1fe3ffd333d 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 0f77670bc2f..5f7eec5051c 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 9e7dc729697..bcbda590d29 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 45f22192845..7d047409eb8 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 8d0640f28d3..3ada3d23591 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 e6069b9b240..2491916e8d1 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 083040607f6..1c8dfe4795b 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 af19eea3086..a3667afb292 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 7a3d2999bca..62e440b1e9b 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 a5d111a8b8e..4a34091d790 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-16 05:51+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:45+0000\n" +"X-Generator: Launchpad (build 16753)\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 e17504e9084..77905d74d7f 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 c6e81dc392c..f961ad24956 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 d37dcedbe76..0355d572345 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: plugin_outlook #: field:outlook.installer,plugin32:0 diff --git a/addons/plugin_outlook/i18n/cs.po b/addons/plugin_outlook/i18n/cs.po index b095bfb469c..2a2cba1f5b0 100644 --- a/addons/plugin_outlook/i18n/cs.po +++ b/addons/plugin_outlook/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-04-01 05:06+0000\n" -"X-Generator: Launchpad (build 16546)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 a7f8f444c76..b0f8765f7f4 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 e809cc337ce..95d35da11b0 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 c37f26ccf7e..93d33a7ba61 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 d4dc6e7f6c7..48a1eec6ca8 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 b0a2b3721f1..8fca3545dc5 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: plugin_outlook diff --git a/addons/plugin_outlook/i18n/et.po b/addons/plugin_outlook/i18n/et.po index 1c8d473ca1e..66d14b0b0ac 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 366295353d3..bc53ab6964e 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 05f248213c4..44528ff7365 100644 --- a/addons/plugin_outlook/i18n/fr.po +++ b/addons/plugin_outlook/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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 4261cb8f977..2bdefaa3641 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 22adda94fa2..89bcc6e8474 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 53b8faab06b..476ca4b24ad 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 53a6124934b..4e55ee08ff9 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 baa57a94d06..21e0b69dadb 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 f507a35774e..73405725125 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 19dcbcf9d1c..97a6b811bf5 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 95aa216e47e..af55fafe882 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 07813b5987a..0971ac40236 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 4f283a2aed6..2f0be453ff3 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 e1c8b276df3..8de764777ee 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 1784bea0721..5b838c5b470 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 e09fd3a0aaa..78884955163 100644 --- a/addons/plugin_outlook/i18n/pt_BR.po +++ b/addons/plugin_outlook/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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 fa8cdfdfa29..b51e16e3a5b 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 9eec939272c..b090ccf8497 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 e6649377a26..c7404ae9628 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 b4d63712ec1..5ff6c98bd8e 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 58daccedd5f..4d940c0d9d0 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 455a613e29c..df6e9e67633 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 17e378df4be..d1f1dba99ed 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-16 05:48+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:42+0000\n" +"X-Generator: Launchpad (build 16753)\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 2f17afd3871..8e179a1f765 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 cf0d7fa22c7..d93714121bd 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 d95eeff1db3..0dc15d63a89 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 61cf5402508..c83e9703d84 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 24ba6d16a4c..af00797b63e 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 f38168715a4..e845fec69a9 100644 --- a/addons/plugin_thunderbird/i18n/de.po +++ b/addons/plugin_thunderbird/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 c4954ae23f1..7c08a1cf092 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 b40aeba1bea..23543f0b77a 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 6d7a4b2c927..8f20e7859db 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 76273e3daec..3a9231a638d 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: es\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/et.po b/addons/plugin_thunderbird/i18n/et.po index 49c4e9b7c1d..1fb2bc3feeb 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 7dc7801103e..f20d6b8edb3 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 09b0b796c12..84d57646be7 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 17c2677b1a3..971602136ac 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 73b144ff9c0..622a22ee37f 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 9c57141c49c..215813e2a69 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: hr\n" #. module: plugin_thunderbird diff --git a/addons/plugin_thunderbird/i18n/hu.po b/addons/plugin_thunderbird/i18n/hu.po index a2121e195e7..715cf2ccf75 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 d86b58f7a05..729d7fe7eca 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 aaeb282b3b2..b5ae187fe2c 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 847ab9c9f5e..1408f312423 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 48eea52d7f3..66353e93933 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 ee33d600a9b..b63ae558ca4 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 69ce4903469..40a74ac3a61 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 6f398fac2e2..3e2c65e7a6f 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 d4dff1dc66e..46c10b615f2 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 ac30bfdb001..3269f705f95 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 884c892e133..15ae3fd1274 100644 --- a/addons/plugin_thunderbird/i18n/pt_BR.po +++ b/addons/plugin_thunderbird/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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 422e074a0c9..2a576977ab7 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 bbf99220b47..6acd7b0962b 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 1b8ff301c96..fa48a7fd7b7 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 373415785dc..3841a0b359d 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 9df1234869e..c6d3da45bb0 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 08b69010b7c..1cefb48e599 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 f452ea34dd6..cdafb2b0915 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 71b0f13d2dc..e9607710312 100644 --- a/addons/plugin_thunderbird/i18n/tr.po +++ b/addons/plugin_thunderbird/i18n/tr.po @@ -14,23 +14,23 @@ msgstr "" "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 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 msgid "Restart Thunderbird." -msgstr "" +msgstr "Thunderbird'ü Yeniden Başlatın." #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 msgid "Thunderbird plug-in installation:" -msgstr "" +msgstr "Thunderbird eklenti kurulumu:" #. module: plugin_thunderbird #: view:sale.config.settings:0 msgid "Download and install the plug-in" -msgstr "" +msgstr "Eklentiyi indir ve kur" #. module: plugin_thunderbird #: model:ir.actions.act_window,name:plugin_thunderbird.action_thunderbird_installer @@ -44,6 +44,7 @@ msgstr "Thunderbird Eklentisini Kur" msgid "" "Thunderbird plug-in file. Save this file and install it in Thunderbird." msgstr "" +"Thunderbird eklenti dosyası. Bu dosyayı kaydedin ve Thunderbird'e kurun." #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 @@ -63,7 +64,7 @@ msgstr "Dosya adı" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 msgid "Click \"Install Now\"." -msgstr "" +msgstr "\"Şimdi Kur\"a tıkla." #. module: plugin_thunderbird #: model:ir.model,name:plugin_thunderbird.model_plugin_thunderbird_installer @@ -79,7 +80,7 @@ msgstr "Thunderbird Eklentisi" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 msgid "Configure your openerp server." -msgstr "" +msgstr "Openerp sununucunuzu kurun." #. module: plugin_thunderbird #: help:plugin_thunderbird.installer,thunderbird:0 @@ -91,17 +92,17 @@ msgstr "İstediğiniz bir nesneyi e-postanıza ve ekine eklemenizi sağlar." #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 msgid "Save the Thunderbird plug-in." -msgstr "" +msgstr "Thunderbird eklentisini kaydet." #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 msgid "Close" -msgstr "" +msgstr "Kapat" #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 msgid "Select the plug-in (the file named openerp_plugin.xpi)." -msgstr "" +msgstr "Eklenti seç (alan adı openerp_plugin.xpi)." #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 @@ -109,11 +110,13 @@ msgid "" "From the Thunderbird menubar: Tools ­> Add-ons -> Screwdriver/Wrench Icon -> " "Install add-on from file..." msgstr "" +"Thunderbird menü çubuğundan: Araçlar > Eklentiler -> Tornavida/Somun " +"anahtarı ikonu -> Dosyadan eklentiyi kur..." #. module: plugin_thunderbird #: view:plugin_thunderbird.installer:0 msgid "From the Thunderbird menubar: OpenERP -> Configuration." -msgstr "" +msgstr "Thunderbird menü çubuğundan: OpenERP -> Yapılandırma." #~ msgid "Description" #~ msgstr "Açıklama" diff --git a/addons/plugin_thunderbird/i18n/zh_CN.po b/addons/plugin_thunderbird/i18n/zh_CN.po index 37361dd291e..2db5a0f5690 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-16 05:36+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 05:30+0000\n" +"X-Generator: Launchpad (build 16753)\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 b970977cd4c..a29fa055b1a 100644 --- a/addons/point_of_sale/i18n/ar.po +++ b/addons/point_of_sale/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:57+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -131,7 +131,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -184,8 +184,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -222,7 +222,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -315,7 +315,7 @@ msgid "Disc.(%)" msgstr "نسبة الخصم (%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -435,7 +435,7 @@ msgid "Fanta Orange 33cl" msgstr "فانتا برتقال 33cl" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -446,7 +446,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -609,7 +609,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "فاتورة العميل" @@ -979,7 +979,7 @@ msgid "User's Product" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1029,7 +1029,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1155,8 +1155,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1359,7 +1359,7 @@ msgid "Today's Closed Cashbox" msgstr "صندوق النقد المغلق اليوم" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1643,7 +1643,7 @@ msgid "Number of Transaction" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1814,7 +1814,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1977,7 +1977,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1985,7 +1985,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "لا يوجد قائمة اسعار !" @@ -2037,7 +2037,7 @@ msgid "No Cash Register Defined !" msgstr "لم يتم تعريف تسجيل النقدية!" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2760,7 +2760,7 @@ msgid "Pos Lines" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2773,7 +2773,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3084,15 +3084,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3186,13 +3188,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3227,7 +3229,7 @@ msgid "Journal Entry" msgstr "قيد يومية" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3258,7 +3260,7 @@ msgid "Supplier Invoice" msgstr "فاتورة المورد" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3337,7 +3339,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3378,7 +3380,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3494,7 +3496,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3538,7 +3540,7 @@ msgid "PRO-FORMA" msgstr "شكلي" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "" @@ -3590,7 +3592,7 @@ msgid "Print Receipt" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4118,6 +4120,7 @@ msgstr "" #~ msgid "Error" #~ msgstr "خطأ" +#, python-format #~ msgid "Close" #~ msgstr "إغلاق" @@ -4185,6 +4188,7 @@ msgstr "" #~ msgid "Disc (%)" #~ msgstr "نسبة الخصم" +#, python-format #~ msgid "Validate" #~ msgstr "تحقق" diff --git a/addons/point_of_sale/i18n/bg.po b/addons/point_of_sale/i18n/bg.po index 5dbc0db438a..d02c0227a2e 100644 --- a/addons/point_of_sale/i18n/bg.po +++ b/addons/point_of_sale/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:57+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -131,7 +131,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -184,8 +184,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -222,7 +222,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -315,7 +315,7 @@ msgid "Disc.(%)" msgstr "Отстъпка (%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -435,7 +435,7 @@ msgid "Fanta Orange 33cl" msgstr "Fanta Orange 33cl" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -446,7 +446,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -609,7 +609,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Фактура към клиент" @@ -979,7 +979,7 @@ msgid "User's Product" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1029,7 +1029,7 @@ msgstr "Coca-Cola Light Lemon 50cl" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1155,8 +1155,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1360,7 +1360,7 @@ msgid "Today's Closed Cashbox" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1644,7 +1644,7 @@ msgid "Number of Transaction" msgstr "Брой транзакции" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1815,7 +1815,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "Не може да се изтрие!" @@ -1979,7 +1979,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1987,7 +1987,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Няма ценова листа !" @@ -2039,7 +2039,7 @@ msgid "No Cash Register Defined !" msgstr "Не е дефиниран касов апарат" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2762,7 +2762,7 @@ msgid "Pos Lines" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2775,7 +2775,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3086,15 +3086,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3188,13 +3190,13 @@ msgid "Chaudfontaine 1.5l" msgstr "Chaudfontaine 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3229,7 +3231,7 @@ msgid "Journal Entry" msgstr "Дневников запис" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3260,7 +3262,7 @@ msgid "Supplier Invoice" msgstr "Фактура към доставчик" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3339,7 +3341,7 @@ msgid "Coca-Cola Regular 1L" msgstr "Coca-Cola Regular 1L" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3380,7 +3382,7 @@ msgid "Spa Barisart 1.5l" msgstr "Spa Barisart 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3496,7 +3498,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3540,7 +3542,7 @@ msgid "PRO-FORMA" msgstr "Проформа" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Моля, изберете партньор за тази продажба." @@ -3592,7 +3594,7 @@ msgid "Print Receipt" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4465,6 +4467,7 @@ msgstr "" #~ msgid "Do you want to close your cash registers ?" #~ msgstr "Искате на приключите касата ли?" +#, python-format #~ msgid "Close" #~ msgstr "Затваряне" diff --git a/addons/point_of_sale/i18n/bs.po b/addons/point_of_sale/i18n/bs.po index 5093864611d..1c06157e441 100644 --- a/addons/point_of_sale/i18n/bs.po +++ b/addons/point_of_sale/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:57+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -131,7 +131,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -184,8 +184,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -222,7 +222,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -315,7 +315,7 @@ msgid "Disc.(%)" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -435,7 +435,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -446,7 +446,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -609,7 +609,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "" @@ -979,7 +979,7 @@ msgid "User's Product" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1029,7 +1029,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1155,8 +1155,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1358,7 +1358,7 @@ msgid "Today's Closed Cashbox" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1642,7 +1642,7 @@ msgid "Number of Transaction" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1813,7 +1813,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1976,7 +1976,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1984,7 +1984,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "" @@ -2036,7 +2036,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2759,7 +2759,7 @@ msgid "Pos Lines" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2772,7 +2772,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3083,15 +3083,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3185,13 +3187,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3226,7 +3228,7 @@ msgid "Journal Entry" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3257,7 +3259,7 @@ msgid "Supplier Invoice" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3336,7 +3338,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3377,7 +3379,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3493,7 +3495,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3537,7 +3539,7 @@ msgid "PRO-FORMA" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "" @@ -3589,7 +3591,7 @@ msgid "Print Receipt" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" diff --git a/addons/point_of_sale/i18n/ca.po b/addons/point_of_sale/i18n/ca.po index 0a1aa4713ee..935a4f2a48c 100644 --- a/addons/point_of_sale/i18n/ca.po +++ b/addons/point_of_sale/i18n/ca.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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:57+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -131,7 +131,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -184,8 +184,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -222,7 +222,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -315,7 +315,7 @@ msgid "Disc.(%)" msgstr "Desc.(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -435,7 +435,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -446,7 +446,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -609,7 +609,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "" @@ -979,7 +979,7 @@ msgid "User's Product" msgstr "Producte del usuari" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1031,7 +1031,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1157,8 +1157,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1360,7 +1360,7 @@ msgid "Today's Closed Cashbox" msgstr "Caixa registradora tancada avui" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1644,7 +1644,7 @@ msgid "Number of Transaction" msgstr "Número de transacció" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1815,7 +1815,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1978,7 +1978,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1986,7 +1986,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "No existeix tarifa!" @@ -2038,7 +2038,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2761,7 +2761,7 @@ msgid "Pos Lines" msgstr "Línies TPV" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2774,7 +2774,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3085,15 +3085,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3187,13 +3189,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3228,7 +3230,7 @@ msgid "Journal Entry" msgstr "Assentament comptable" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3259,7 +3261,7 @@ msgid "Supplier Invoice" msgstr "Factura de proveïdor" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3338,7 +3340,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3379,7 +3381,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3495,7 +3497,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3539,7 +3541,7 @@ msgid "PRO-FORMA" msgstr "PRO-FORMA" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Si us plau, indiqueu una empresa per la venda." @@ -3591,7 +3593,7 @@ msgid "Print Receipt" msgstr "Imprimeix rebut" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4197,6 +4199,7 @@ msgstr "" #~ msgid "Other" #~ msgstr "Varis" +#, python-format #~ msgid "Close" #~ msgstr "Tanca" diff --git a/addons/point_of_sale/i18n/cs.po b/addons/point_of_sale/i18n/cs.po index 2b07b3d19b4..5524309daa4 100644 --- a/addons/point_of_sale/i18n/cs.po +++ b/addons/point_of_sale/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:57+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -143,7 +143,7 @@ msgid "Red grapefruit" msgstr "Červený grep" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "Přiřadit vlastní EAN" @@ -198,8 +198,8 @@ msgid "Reference" msgstr "Číslo" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -236,7 +236,7 @@ msgid "Help needed" msgstr "Nutná pomoc" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "Chyba nastavení!" @@ -329,7 +329,7 @@ msgid "Disc.(%)" msgstr "Sleva (%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "Prosím nastavte příjmový účet tohoto výrobku: \"%s\" (id: %d)." @@ -452,7 +452,7 @@ msgid "Fanta Orange 33cl" msgstr "Fanta pomeranč 33cl" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -467,7 +467,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "chyba!" @@ -646,7 +646,7 @@ msgstr "" " " #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Vydaná faktura" @@ -1032,7 +1032,7 @@ msgid "User's Product" msgstr "Výrobky uživatele" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1084,12 +1084,12 @@ msgstr "Coca-Cola Light Citron 50cl" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format msgid "return" -msgstr "" +msgstr "návrat" #. module: point_of_sale #: view:product.product:0 @@ -1185,7 +1185,7 @@ msgstr "poč. řádků" #: code:addons/point_of_sale/static/src/xml/pos.xml:89 #, python-format msgid "Disc" -msgstr "" +msgstr "Sleva" #. module: point_of_sale #: view:pos.order:0 @@ -1210,8 +1210,8 @@ msgstr "2L Evian" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "Spustit prodejní místo" @@ -1417,7 +1417,7 @@ msgid "Today's Closed Cashbox" msgstr "Dnešní uzavřená pokladna" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "Vybrané objednávky nejsou ze stejného sezení!" @@ -1498,7 +1498,7 @@ msgstr "Účetní deník pro zapisování položek prodeje." #. module: point_of_sale #: field:report.transaction.pos,disc:0 msgid "Disc." -msgstr "" +msgstr "Slv." #. module: point_of_sale #. openerp-web @@ -1705,7 +1705,7 @@ msgid "Number of Transaction" msgstr "Počet transakcí" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1878,7 +1878,7 @@ msgid "Difference" msgstr "Rozdíl" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "Nelze smazat!" @@ -2048,7 +2048,7 @@ msgid "Salespeople" msgstr "Pokladníci" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -2056,7 +2056,7 @@ msgid "You have to open at least one cashbox." msgstr "Musíte otevřít nejméně jednu pokladnu." #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Žádný ceník!" @@ -2108,7 +2108,7 @@ msgid "No Cash Register Defined !" msgstr "Nejsou definovány žádné pokladny!" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2461,7 +2461,7 @@ msgstr "Střední obrázek" #. module: point_of_sale #: model:product.template,name:point_of_sale.papillon_orange_product_template msgid "Orange Butterfly" -msgstr "" +msgstr "Oranžový motýl" #. module: point_of_sale #: view:report.pos.order:0 @@ -2851,7 +2851,7 @@ msgid "Pos Lines" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "ZIsk prodejního místa" @@ -2864,7 +2864,7 @@ msgid "Please wait, a cashier is on the way" msgstr "Prosím čekejte, pokladní je na cestě" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3176,15 +3176,17 @@ msgstr "Pomeranče Boni" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3281,13 +3283,13 @@ msgid "Chaudfontaine 1.5l" msgstr "Chaudfontaine 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "Prodej musí být nový nebo stornovaný aby bylo možné jej smazat." @@ -3324,7 +3326,7 @@ msgid "Journal Entry" msgstr "Položka deníku" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "Není definován žádný příjmový účet pro provedení platby." @@ -3355,7 +3357,7 @@ msgid "Supplier Invoice" msgstr "Přijatá faktura" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3437,7 +3439,7 @@ msgid "Coca-Cola Regular 1L" msgstr "Běžná Coca-Cola 1L" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "Nemohu zrušit naskladnění." @@ -3478,7 +3480,7 @@ msgid "Spa Barisart 1.5l" msgstr "Spa Barisart 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3603,7 +3605,7 @@ msgid "Default Point of Sale" msgstr "Výchozí prodejní místo" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "K tomu sezení není přiřazena žádná pokladna" @@ -3647,7 +3649,7 @@ msgid "PRO-FORMA" msgstr "PROFORMA" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Prosím zadejte partnera pro prodej." @@ -3699,7 +3701,7 @@ msgid "Print Receipt" msgstr "Tisk účtenky" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "Ztráta prodejního místa" @@ -4119,3 +4121,19 @@ msgstr "Objednávky" #~ msgid "Add product :" #~ msgstr "Přidat produkt :" + +#, python-format +#~ msgid "Print" +#~ msgstr "Tisk" + +#, python-format +#~ msgid "Subtotal:" +#~ msgstr "Mezisoučet:" + +#, python-format +#~ msgid "Validate" +#~ msgstr "Schválit" + +#, python-format +#~ msgid "Close" +#~ msgstr "Zavřít" diff --git a/addons/point_of_sale/i18n/da.po b/addons/point_of_sale/i18n/da.po index 5bc9a6b57aa..b9faef7614a 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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:57+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -132,7 +132,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -185,8 +185,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -223,7 +223,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -316,7 +316,7 @@ msgid "Disc.(%)" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -436,7 +436,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -447,7 +447,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -610,7 +610,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "" @@ -980,7 +980,7 @@ msgid "User's Product" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1030,7 +1030,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1156,8 +1156,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1359,7 +1359,7 @@ msgid "Today's Closed Cashbox" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1643,7 +1643,7 @@ msgid "Number of Transaction" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1814,7 +1814,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1977,7 +1977,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1985,7 +1985,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "" @@ -2037,7 +2037,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2760,7 +2760,7 @@ msgid "Pos Lines" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2773,7 +2773,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3084,15 +3084,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3186,13 +3188,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3227,7 +3229,7 @@ msgid "Journal Entry" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3258,7 +3260,7 @@ msgid "Supplier Invoice" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3337,7 +3339,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3378,7 +3380,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3494,7 +3496,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3538,7 +3540,7 @@ msgid "PRO-FORMA" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "" @@ -3590,7 +3592,7 @@ msgid "Print Receipt" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" diff --git a/addons/point_of_sale/i18n/de.po b/addons/point_of_sale/i18n/de.po index ef395664c7b..8a80a1c9b5e 100644 --- a/addons/point_of_sale/i18n/de.po +++ b/addons/point_of_sale/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:57+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -145,10 +145,10 @@ msgstr "Produktbezeichnung" #. module: point_of_sale #: model:product.template,name:point_of_sale.pamplemousse_rouge_pamplemousse_product_template msgid "Red grapefruit" -msgstr "" +msgstr "Rote Pampelmuse" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "Eine benutzerdefinierte EAN zuweisen" @@ -204,8 +204,8 @@ msgid "Reference" msgstr "Referenz" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -233,7 +233,7 @@ msgstr "Abwiegen" #. module: point_of_sale #: model:product.template,name:point_of_sale.fenouil_fenouil_product_template msgid "Fennel" -msgstr "" +msgstr "Fenchel" #. module: point_of_sale #. openerp-web @@ -243,7 +243,7 @@ msgid "Help needed" msgstr "Es wird Hilfe benötigt" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "Konfigurationsfehler!" @@ -336,7 +336,7 @@ msgid "Disc.(%)" msgstr "Rabatt (%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "Weisen Sie ein Ertragskonto für dieses Produkt zu: \"%s\" (id:%d)." @@ -459,7 +459,7 @@ msgid "Fanta Orange 33cl" msgstr "Fanta Orange 33cl" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -474,7 +474,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "Fehler!" @@ -501,7 +501,7 @@ msgstr ") ist \"" #. module: point_of_sale #: model:product.template,name:point_of_sale.Onions_product_template msgid "Onions" -msgstr "" +msgstr "Zwiebeln" #. module: point_of_sale #: view:pos.session:0 @@ -563,7 +563,7 @@ msgstr "Sprudel" #. module: point_of_sale #: view:account.bank.statement:0 msgid "Search Cash Statements" -msgstr "Suche Kassenauszug" +msgstr "Suche Kassenbuch" #. module: point_of_sale #: view:account.bank.statement:0 @@ -656,7 +656,7 @@ msgstr "" " " #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Ausgangsrechnung" @@ -765,7 +765,7 @@ msgstr "Barcode Lesegerät" #. module: point_of_sale #: model:product.template,name:point_of_sale.pomme_granny_smith_product_template msgid "Granny Smith apples" -msgstr "" +msgstr "Granny Smith Äpfel" #. module: point_of_sale #: help:product.product,expense_pdt:0 @@ -923,7 +923,7 @@ msgstr "" #. module: point_of_sale #: model:pos.category,name:point_of_sale.rouges_noyau_fruits msgid "Berries" -msgstr "" +msgstr "Beeren" #. module: point_of_sale #: view:pos.ean_wizard:0 @@ -962,7 +962,7 @@ msgstr "Datum Abschluss" #. module: point_of_sale #: model:product.template,name:point_of_sale.pomme_jonagold_product_template msgid "Jonagold apples" -msgstr "" +msgstr "Jonagold Äpfel" #. module: point_of_sale #: view:account.bank.statement:0 @@ -1046,7 +1046,7 @@ msgid "User's Product" msgstr "Produkte des Benutzers" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1098,7 +1098,7 @@ msgstr "Coca-Cola Light Lemon 50cl" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1120,7 +1120,7 @@ msgstr "Restbetrag:" #. module: point_of_sale #: model:pos.category,name:point_of_sale.legumes msgid "Fresh vegetables" -msgstr "" +msgstr "Frisches Gemüse" #. module: point_of_sale #: view:pos.session:0 @@ -1224,8 +1224,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "Starte Point Of Sale" @@ -1396,7 +1396,7 @@ msgstr "Monatliche Verkäufe nach Marge" #. module: point_of_sale #: model:product.template,name:point_of_sale.poivron_jaunes_product_template msgid "Yellow Peppers" -msgstr "" +msgstr "Gelbe Pepperoni" #. module: point_of_sale #: view:pos.order:0 @@ -1431,7 +1431,7 @@ msgid "Today's Closed Cashbox" msgstr "Heutige Kassenabschlüsse" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "Die ausgewählten Aufträge haben nicht die gleiche Sitzung" @@ -1691,7 +1691,7 @@ msgstr "Bitte scannen Sie einen Artikel oder eine Mitgliedskarte ein" #. module: point_of_sale #: model:product.template,name:point_of_sale.poivron_verts_product_template msgid "Green Peppers" -msgstr "" +msgstr "Grüner Pfeffer" #. module: point_of_sale #: model:product.template,name:point_of_sale.timmermans_faro_37,5cl_product_template @@ -1720,7 +1720,7 @@ msgid "Number of Transaction" msgstr "Transaktionsnummer" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1767,7 +1767,7 @@ msgstr "Verkauf (Summen)" #. module: point_of_sale #: model:product.template,name:point_of_sale.nectarine_product_template msgid "Peach" -msgstr "" +msgstr "Pfirsich" #. module: point_of_sale #: model:product.template,name:point_of_sale.timmermans_kriek_37,5cl_product_template @@ -1893,7 +1893,7 @@ msgid "Difference" msgstr "Differenz" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "Nicht löschbar!" @@ -1901,7 +1901,7 @@ msgstr "Nicht löschbar!" #. module: point_of_sale #: model:pos.category,name:point_of_sale.autres_agrumes msgid "Other Citrus" -msgstr "" +msgstr "Citrone" #. module: point_of_sale #: report:pos.details:0 @@ -2065,7 +2065,7 @@ msgid "Salespeople" msgstr "Verkäufer" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -2073,7 +2073,7 @@ msgid "You have to open at least one cashbox." msgstr "Sie sollten mindestens eine Kasse eröffnen." #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Keine Preisliste!" @@ -2081,7 +2081,7 @@ msgstr "Keine Preisliste!" #. module: point_of_sale #: model:product.template,name:point_of_sale.poivron_rouges_product_template msgid "Red Pepper" -msgstr "" +msgstr "Roter Pfeffer" #. module: point_of_sale #. openerp-web @@ -2116,7 +2116,7 @@ msgstr "Sonstige" #. module: point_of_sale #: model:pos.category,name:point_of_sale.autres_legumes_frais msgid "Other fresh vegetables" -msgstr "" +msgstr "Anderes frisches Gemüse" #. module: point_of_sale #: code:addons/point_of_sale/wizard/pos_open_statement.py:49 @@ -2125,7 +2125,7 @@ msgid "No Cash Register Defined !" msgstr "Keine Kassa definiert." #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2136,7 +2136,7 @@ msgstr "" #. module: point_of_sale #: model:pos.category,name:point_of_sale.oignons_ail_echalotes msgid "Onions / Garlic / Shallots" -msgstr "" +msgstr "Zwiebeln / Knoblauch / Kleine Zwiebeln" #. module: point_of_sale #: model:product.template,name:point_of_sale.evian_50cl_product_template @@ -2195,7 +2195,7 @@ msgstr "" #. module: point_of_sale #: model:product.template,name:point_of_sale.tomate_en_grappe_product_template msgid "In Cluster Tomatoes" -msgstr "" +msgstr "Tomatenstrang" #. module: point_of_sale #: model:ir.actions.client,name:point_of_sale.action_pos_pos @@ -2234,7 +2234,7 @@ msgstr "Point Of Sale Verkäufe" #. module: point_of_sale #: model:product.template,name:point_of_sale.spa_et_fruit_50cl_product_template msgid "Spa Fruit and Orange 50cl" -msgstr "" +msgstr "Spa Fruchtsaft und Orange 50cl" #. module: point_of_sale #: view:pos.config:0 @@ -2529,7 +2529,7 @@ msgstr "Öffne Registerkassen" #. module: point_of_sale #: model:pos.category,name:point_of_sale.poire msgid "Pears" -msgstr "" +msgstr "Pfirsiche" #. module: point_of_sale #: field:report.transaction.pos,journal_id:0 @@ -2555,7 +2555,7 @@ msgstr "Anbindung an Kassenschublade" #. module: point_of_sale #: model:pos.category,name:point_of_sale.tomates msgid "Tomatos" -msgstr "" +msgstr "Tomaten" #. module: point_of_sale #: view:report.pos.order:0 @@ -2570,7 +2570,7 @@ msgstr "" #. module: point_of_sale #: model:pos.category,name:point_of_sale.oranges msgid "Oranges" -msgstr "" +msgstr "Orangen" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_pos_all_sales_lines @@ -2580,7 +2580,7 @@ msgstr "Alle Verkäufe" #. module: point_of_sale #: model:pos.category,name:point_of_sale.beers msgid "Beers" -msgstr "" +msgstr "Beeren" #. module: point_of_sale #: help:pos.config,name:0 @@ -2685,7 +2685,7 @@ msgstr "Zwischensumme" #. module: point_of_sale #: model:product.template,name:point_of_sale.carotte_product_template msgid "Carrots" -msgstr "" +msgstr "Karotten" #. module: point_of_sale #: view:pos.open.statement:0 @@ -2873,7 +2873,7 @@ msgid "Pos Lines" msgstr "Auftragspositionen POS" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "Point Of Sale Umsatz" @@ -2886,7 +2886,7 @@ msgid "Please wait, a cashier is on the way" msgstr "Bitte warten Sie, ein Kassierer ist auf dem Weg" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -2931,7 +2931,7 @@ msgstr "Gesamt Umsatz Transaktionen" #: model:pos.category,name:point_of_sale.pommes_de_terre #: model:product.template,name:point_of_sale.pomme_de_terre_product_template msgid "Potatoes" -msgstr "" +msgstr "Kartoffeln" #. module: point_of_sale #: view:pos.session.opening:0 @@ -2959,7 +2959,7 @@ msgstr "" #. module: point_of_sale #: model:pos.category,name:point_of_sale.pomme msgid "Apples" -msgstr "" +msgstr "Äpfel" #. module: point_of_sale #: report:pos.details:0 @@ -3198,15 +3198,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3303,13 +3305,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "Handel Debitoren" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "Um einen Verkauf zu löschen muss diese neu oder storniert sein." @@ -3347,7 +3349,7 @@ msgid "Journal Entry" msgstr "Journalbuchung" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3379,7 +3381,7 @@ msgid "Supplier Invoice" msgstr "Lieferantenrechnung" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3460,7 +3462,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "Lieferung nicht löschbar!" @@ -3473,7 +3475,7 @@ msgstr "" #. module: point_of_sale #: model:pos.category,name:point_of_sale.fruits msgid "Fresh Fruits" -msgstr "" +msgstr "Frische Früchte" #. module: point_of_sale #: model:product.template,name:point_of_sale.lindemans_pecheresse_37,,5cl_product_template @@ -3501,7 +3503,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3627,7 +3629,7 @@ msgid "Default Point of Sale" msgstr "Standard Point Of Sale" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "Es existiert keine Kasse für diese PoS Session" @@ -3671,7 +3673,7 @@ msgid "PRO-FORMA" msgstr "PRO-FORMA" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Bitte Partner für Verkauf definieren" @@ -3723,7 +3725,7 @@ msgid "Print Receipt" msgstr "Drucke Quittung" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "Point Of Sale Verlust" @@ -4121,7 +4123,7 @@ msgstr "Jahr" #: code:addons/point_of_sale/static/src/xml/pos.xml:505 #, python-format msgid "at" -msgstr "" +msgstr "am" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_cash_box_in @@ -4342,6 +4344,7 @@ msgstr "Bestellungen" #~ msgid "Other" #~ msgstr "Andere" +#, python-format #~ msgid "Close" #~ msgstr "Schließen" @@ -5168,15 +5171,18 @@ msgstr "Bestellungen" #~ "beinhaltet detaillierte Informationen z.B. über die Beschaffung, Preise, " #~ "Kategoriezuordnung, Lieferanten, Lieferzeiten etc." +#, python-format #~ msgid "Validate" #~ msgstr "Bestätigen" #~ msgid "pending orders" #~ msgstr "Offene Aufträge" +#, python-format #~ msgid "Next Order" #~ msgstr "Nächster Auftrag" +#, python-format #~ msgid "Print" #~ msgstr "Drucken" diff --git a/addons/point_of_sale/i18n/el.po b/addons/point_of_sale/i18n/el.po index 2c0e9bb5b10..e057e729155 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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:57+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -132,7 +132,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -185,8 +185,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -223,7 +223,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -316,7 +316,7 @@ msgid "Disc.(%)" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -436,7 +436,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -447,7 +447,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -610,7 +610,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "" @@ -980,7 +980,7 @@ msgid "User's Product" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1030,7 +1030,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1156,8 +1156,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1359,7 +1359,7 @@ msgid "Today's Closed Cashbox" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1643,7 +1643,7 @@ msgid "Number of Transaction" msgstr "Αριθμός Συναλλαγών" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1814,7 +1814,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1977,7 +1977,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1985,7 +1985,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Κανένας Τιμοκατάλογος !" @@ -2037,7 +2037,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2760,7 +2760,7 @@ msgid "Pos Lines" msgstr "Γραμμές POS" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2773,7 +2773,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3084,15 +3084,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3186,13 +3188,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3227,7 +3229,7 @@ msgid "Journal Entry" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3258,7 +3260,7 @@ msgid "Supplier Invoice" msgstr "Τιμολόγιο Προμηθευτή" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3337,7 +3339,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3378,7 +3380,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3494,7 +3496,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3538,7 +3540,7 @@ msgid "PRO-FORMA" msgstr "ΠΡΟ-ΦΟΡΜΑ" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Παρακαλώ καθορίστε έναν συνεργάτη για πώληση." @@ -3590,7 +3592,7 @@ msgid "Print Receipt" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4205,6 +4207,7 @@ msgstr "" #~ msgid "Pos Payment" #~ msgstr "POS Πληρωμή" +#, python-format #~ msgid "Close" #~ msgstr "Κλείσιμο" diff --git a/addons/point_of_sale/i18n/es.po b/addons/point_of_sale/i18n/es.po index 2302573f127..3d3c33b0d07 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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:58+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -142,7 +142,7 @@ msgid "Red grapefruit" msgstr "Pomelo rojo" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "Asignar un EAN personalizado" @@ -197,8 +197,8 @@ msgid "Reference" msgstr "Referencia" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -235,7 +235,7 @@ msgid "Help needed" msgstr "Se necesita ayuda" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "¡Error de configuración!" @@ -328,7 +328,7 @@ msgid "Disc.(%)" msgstr "Desc.(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -451,7 +451,7 @@ msgid "Fanta Orange 33cl" msgstr "Fanta Orange 33cl" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -466,7 +466,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "¡Error!" @@ -644,7 +644,7 @@ msgstr "" " " #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Factura de cliente" @@ -1030,7 +1030,7 @@ msgid "User's Product" msgstr "Producto del usuario" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1082,7 +1082,7 @@ msgstr "Coca-Cola Light Lemon 50cl" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1208,8 +1208,8 @@ msgstr "Evian 2 l" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "Iniciar TPV" @@ -1415,7 +1415,7 @@ msgid "Today's Closed Cashbox" msgstr "Caja registradora cerrada hoy" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "¡Los pedidos seleccionados no tienen la misma sesión!" @@ -1703,7 +1703,7 @@ msgid "Number of Transaction" msgstr "Número de transacción" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1877,7 +1877,7 @@ msgid "Difference" msgstr "Diferencia" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "No se puede eliminar!" @@ -2050,7 +2050,7 @@ msgid "Salespeople" msgstr "Vendedor" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -2058,7 +2058,7 @@ msgid "You have to open at least one cashbox." msgstr "Tiene que abrir al menos una caja." #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "¡No existe tarifa!" @@ -2110,7 +2110,7 @@ msgid "No Cash Register Defined !" msgstr "No se ha definido un registro de caja!" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2850,7 +2850,7 @@ msgid "Pos Lines" msgstr "Líneas TPV" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "Ganancias del TPV" @@ -2863,7 +2863,7 @@ msgid "Please wait, a cashier is on the way" msgstr "Espere, por favor, un cajero está en camino" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3176,15 +3176,17 @@ msgstr "Naranajas Boni" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3280,13 +3282,13 @@ msgid "Chaudfontaine 1.5l" msgstr "Chaudfontaine 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "Créditos por ventas" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "Para eliminar una venta, ésta debe ser nueva o cancelada" @@ -3323,7 +3325,7 @@ msgid "Journal Entry" msgstr "Asiento contable" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "No hay cuenta a cobrar definida para hacer el pago." @@ -3354,7 +3356,7 @@ msgid "Supplier Invoice" msgstr "Factura de proveedor" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3435,7 +3437,7 @@ msgid "Coca-Cola Regular 1L" msgstr "Coca-Cola Regular 1L" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "Imposible cancelar el albarán te entrada." @@ -3476,7 +3478,7 @@ msgid "Spa Barisart 1.5l" msgstr "Spa Barisart 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3600,7 +3602,7 @@ msgid "Default Point of Sale" msgstr "TPV por defecto" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "No hay caja registradora para esta sesión de TPV" @@ -3644,7 +3646,7 @@ msgid "PRO-FORMA" msgstr "PRO-FORMA" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Por favor indique una empresa para la venta." @@ -3696,7 +3698,7 @@ msgid "Print Receipt" msgstr "Imprimir recibo" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "Pérdidas del TPV" @@ -4310,6 +4312,7 @@ msgstr "Pedidos" #~ msgid "Other" #~ msgstr "Varios" +#, python-format #~ msgid "Close" #~ msgstr "Cerrar" @@ -5129,15 +5132,18 @@ msgstr "Pedidos" #~ msgid "Back to Products" #~ msgstr "Volver a Productos" +#, python-format #~ msgid "Validate" #~ msgstr "Validar" #~ msgid "pending orders" #~ msgstr "Pedidos pendientes" +#, python-format #~ msgid "Next Order" #~ msgstr "Siguiente pedido" +#, python-format #~ msgid "Print" #~ msgstr "Imprimir" diff --git a/addons/point_of_sale/i18n/es_AR.po b/addons/point_of_sale/i18n/es_AR.po index 5228c704c51..866ad7bcb3b 100644 --- a/addons/point_of_sale/i18n/es_AR.po +++ b/addons/point_of_sale/i18n/es_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-16 05:07+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:59+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -131,7 +131,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -184,8 +184,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -222,7 +222,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -315,7 +315,7 @@ msgid "Disc.(%)" msgstr "Desc. (%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -435,7 +435,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -446,7 +446,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -609,7 +609,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "" @@ -979,7 +979,7 @@ msgid "User's Product" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1029,7 +1029,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1155,8 +1155,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1358,7 +1358,7 @@ msgid "Today's Closed Cashbox" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1642,7 +1642,7 @@ msgid "Number of Transaction" msgstr "Número de Transacción" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1813,7 +1813,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1976,7 +1976,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1984,7 +1984,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Sin lista de precio !" @@ -2036,7 +2036,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2759,7 +2759,7 @@ msgid "Pos Lines" msgstr "Líneas del PdV" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2772,7 +2772,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3083,15 +3083,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3185,13 +3187,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3226,7 +3228,7 @@ msgid "Journal Entry" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3257,7 +3259,7 @@ msgid "Supplier Invoice" msgstr "Factura de proveedor" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3336,7 +3338,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3377,7 +3379,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3493,7 +3495,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3537,7 +3539,7 @@ msgid "PRO-FORMA" msgstr "PRO-FORMA" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Please provide a partner for the sale." @@ -3589,7 +3591,7 @@ msgid "Print Receipt" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4170,6 +4172,7 @@ msgstr "" #~ msgid "Add payment :" #~ msgstr "Añadir pago :" +#, python-format #~ msgid "Close" #~ msgstr "Cerrar" diff --git a/addons/point_of_sale/i18n/es_CR.po b/addons/point_of_sale/i18n/es_CR.po index db801edb002..f77c389ad8c 100644 --- a/addons/point_of_sale/i18n/es_CR.po +++ b/addons/point_of_sale/i18n/es_CR.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-16 05:07+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:59+0000\n" +"X-Generator: Launchpad (build 16753)\n" "Language: \n" #. module: point_of_sale @@ -132,7 +132,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -185,8 +185,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -223,7 +223,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -316,7 +316,7 @@ msgid "Disc.(%)" msgstr "Desc.(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -436,7 +436,7 @@ msgid "Fanta Orange 33cl" msgstr "Fanta Naranja 33cl" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -447,7 +447,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -610,7 +610,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Factura de cliente" @@ -980,7 +980,7 @@ msgid "User's Product" msgstr "Producto del usuario" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1032,7 +1032,7 @@ msgstr "Coca-Cola Light Lemon 50cl" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1158,8 +1158,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1363,7 +1363,7 @@ msgid "Today's Closed Cashbox" msgstr "Caja registradora cerrada hoy" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1647,7 +1647,7 @@ msgid "Number of Transaction" msgstr "Número de transacción" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1818,7 +1818,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "¡Imposible Eliminar!" @@ -1985,7 +1985,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1993,7 +1993,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "¡No existe tarifa!" @@ -2045,7 +2045,7 @@ msgid "No Cash Register Defined !" msgstr "¡No definido por la caja registradora!" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2771,7 +2771,7 @@ msgid "Pos Lines" msgstr "Líneas TPV" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2784,7 +2784,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3095,15 +3095,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3197,13 +3199,13 @@ msgid "Chaudfontaine 1.5l" msgstr "Chaudfontaine 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "Con el fin de eliminar una venta, debe ser nuevo o cancelado." @@ -3240,7 +3242,7 @@ msgid "Journal Entry" msgstr "Asiento contable" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3271,7 +3273,7 @@ msgid "Supplier Invoice" msgstr "Factura de proveedor" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3350,7 +3352,7 @@ msgid "Coca-Cola Regular 1L" msgstr "Coca-Cola Regular 1L" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "No se puede cancelar la recolección." @@ -3391,7 +3393,7 @@ msgid "Spa Barisart 1.5l" msgstr "Spa Barisart 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3507,7 +3509,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3551,7 +3553,7 @@ msgid "PRO-FORMA" msgstr "PRO-FORMA" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Por favor indique una empresa para la venta." @@ -3603,7 +3605,7 @@ msgid "Print Receipt" msgstr "Imprimir recibo" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4160,6 +4162,7 @@ msgstr "" #~ msgid "Close Cash Registers" #~ msgstr "Cerrar registros de caja" +#, python-format #~ msgid "Close" #~ msgstr "Cerrar" @@ -5103,14 +5106,17 @@ msgstr "" #~ msgid "Back to Products" #~ msgstr "Volver a Productos" +#, python-format #~ msgid "Validate" #~ msgstr "Validar" +#, python-format #~ msgid "Next Order" #~ msgstr "Orden Siguiente" #~ msgid "pending orders" #~ msgstr "Ordenes pendientes" +#, python-format #~ msgid "Print" #~ msgstr "Imprimir" diff --git a/addons/point_of_sale/i18n/es_EC.po b/addons/point_of_sale/i18n/es_EC.po index 48ae9e9b0ae..b03a6d5e3f7 100644 --- a/addons/point_of_sale/i18n/es_EC.po +++ b/addons/point_of_sale/i18n/es_EC.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-16 05:07+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:59+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -131,7 +131,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -184,8 +184,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -222,7 +222,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -315,7 +315,7 @@ msgid "Disc.(%)" msgstr "Desc.(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -435,7 +435,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -446,7 +446,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -609,7 +609,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "" @@ -979,7 +979,7 @@ msgid "User's Product" msgstr "User's Product" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1031,7 +1031,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1157,8 +1157,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1360,7 +1360,7 @@ msgid "Today's Closed Cashbox" msgstr "Today's Closed Cashbox" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1644,7 +1644,7 @@ msgid "Number of Transaction" msgstr "Número de transacción" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1815,7 +1815,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1978,7 +1978,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1986,7 +1986,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "No hay list de precios" @@ -2038,7 +2038,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2761,7 +2761,7 @@ msgid "Pos Lines" msgstr "Líneas TPV" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2774,7 +2774,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3085,15 +3085,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3187,13 +3189,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3228,7 +3230,7 @@ msgid "Journal Entry" msgstr "Asiento de Diario" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3259,7 +3261,7 @@ msgid "Supplier Invoice" msgstr "Supplier Invoice" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3338,7 +3340,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3379,7 +3381,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3495,7 +3497,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3539,7 +3541,7 @@ msgid "PRO-FORMA" msgstr "PRO-FORMA" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Please provide a partner for the sale." @@ -3591,7 +3593,7 @@ msgid "Print Receipt" msgstr "Print Receipt" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4638,6 +4640,7 @@ msgstr "" #~ msgid "Error" #~ msgstr "Error" +#, python-format #~ msgid "Close" #~ msgstr "Close" diff --git a/addons/point_of_sale/i18n/et.po b/addons/point_of_sale/i18n/et.po index e379516cb0c..45c5a28d93b 100644 --- a/addons/point_of_sale/i18n/et.po +++ b/addons/point_of_sale/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:57+0000\n" +"X-Generator: Launchpad (build 16753)\n" #, python-format #~ msgid "Modify line failed !" @@ -143,7 +143,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -196,8 +196,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -234,7 +234,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -327,7 +327,7 @@ msgid "Disc.(%)" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -447,7 +447,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -458,7 +458,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -621,7 +621,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "" @@ -991,7 +991,7 @@ msgid "User's Product" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1041,7 +1041,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1167,8 +1167,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1370,7 +1370,7 @@ msgid "Today's Closed Cashbox" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1654,7 +1654,7 @@ msgid "Number of Transaction" msgstr "Tehingu number" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1825,7 +1825,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1988,7 +1988,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1996,7 +1996,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Puudub hinnakiri !" @@ -2048,7 +2048,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2771,7 +2771,7 @@ msgid "Pos Lines" msgstr "MK read" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2784,7 +2784,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3095,15 +3095,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3197,13 +3199,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3238,7 +3240,7 @@ msgid "Journal Entry" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3269,7 +3271,7 @@ msgid "Supplier Invoice" msgstr "Tarnija arve" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3348,7 +3350,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3389,7 +3391,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3505,7 +3507,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3549,7 +3551,7 @@ msgid "PRO-FORMA" msgstr "Ettemaks" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Palun lisa müügipartnerit" @@ -3601,7 +3603,7 @@ msgid "Print Receipt" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4094,6 +4096,7 @@ msgstr "" #~ msgid "Other" #~ msgstr "Muu" +#, python-format #~ msgid "Close" #~ msgstr "Sulge" diff --git a/addons/point_of_sale/i18n/fi.po b/addons/point_of_sale/i18n/fi.po index ab8a1901645..631873d991c 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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:57+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -132,7 +132,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -185,8 +185,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -223,7 +223,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -316,7 +316,7 @@ msgid "Disc.(%)" msgstr "Alennus (%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -436,7 +436,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -447,7 +447,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -610,7 +610,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "" @@ -980,7 +980,7 @@ msgid "User's Product" msgstr "Käyttäjän tuote" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1032,7 +1032,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1158,8 +1158,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1361,7 +1361,7 @@ msgid "Today's Closed Cashbox" msgstr "Päivän suljettu kassakone" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1645,7 +1645,7 @@ msgid "Number of Transaction" msgstr "Tapahtuman numero" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1816,7 +1816,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1979,7 +1979,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1987,7 +1987,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Ei hinnastoa!" @@ -2039,7 +2039,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2762,7 +2762,7 @@ msgid "Pos Lines" msgstr "Kassapääte rivit" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2775,7 +2775,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3086,15 +3086,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3188,13 +3190,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3229,7 +3231,7 @@ msgid "Journal Entry" msgstr "Päiväkirjavienti" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3260,7 +3262,7 @@ msgid "Supplier Invoice" msgstr "Toimittajan lasku" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3339,7 +3341,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3380,7 +3382,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3496,7 +3498,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3540,7 +3542,7 @@ msgid "PRO-FORMA" msgstr "Proforma" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Anna kumppani myyntiä varten." @@ -3592,7 +3594,7 @@ msgid "Print Receipt" msgstr "Tulosta kuitti" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4076,6 +4078,7 @@ msgstr "" #~ msgid "Discount percentage" #~ msgstr "Alennusprosentti" +#, python-format #~ msgid "Close" #~ msgstr "Sulje" diff --git a/addons/point_of_sale/i18n/fr.po b/addons/point_of_sale/i18n/fr.po index 7af2c4e2deb..e1808928fa8 100644 --- a/addons/point_of_sale/i18n/fr.po +++ b/addons/point_of_sale/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:57+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -145,7 +145,7 @@ msgid "Red grapefruit" msgstr "Pamplemousse rouge" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "Attribuer un EAN personnalisé" @@ -200,8 +200,8 @@ msgid "Reference" msgstr "Référence" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -239,7 +239,7 @@ msgid "Help needed" msgstr "Aide demandée" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "Erreur de paramétrage !" @@ -332,7 +332,7 @@ msgid "Disc.(%)" msgstr "Rem.(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -455,7 +455,7 @@ msgid "Fanta Orange 33cl" msgstr "Fanta Orange 33cl" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -470,7 +470,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "erreur !" @@ -651,7 +651,7 @@ msgstr "" " " #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Facture client" @@ -1035,7 +1035,7 @@ msgid "User's Product" msgstr "Articles utilisateur" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1087,7 +1087,7 @@ msgstr "Coca-Cola Light Lemon 50cl" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1114,7 +1114,7 @@ msgstr "Légumes frais" #. module: point_of_sale #: view:pos.session:0 msgid "tab of the" -msgstr "" +msgstr "onglet du" #. module: point_of_sale #. openerp-web @@ -1213,8 +1213,8 @@ msgstr "Evian 2L" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "Démarrer le point de vente" @@ -1420,7 +1420,7 @@ msgid "Today's Closed Cashbox" msgstr "Caisse fermée d'aujourd'hui" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "Les commandes sélectionnées n'ont pas la même session !" @@ -1497,6 +1497,7 @@ msgstr "Catégories d'articles" #: help:pos.config,journal_id:0 msgid "Accounting journal used to post sales entries." msgstr "" +"Journal de comptabilité utilisé pour enregistrer des écritures de vente." #. module: point_of_sale #: field:report.transaction.pos,disc:0 @@ -1559,7 +1560,7 @@ msgstr "inconnu" #. module: point_of_sale #: field:product.product,income_pdt:0 msgid "Point of Sale Cash In" -msgstr "" +msgstr "Entrée d'argent du point de vente" #. module: point_of_sale #. openerp-web @@ -1663,7 +1664,7 @@ msgstr "" #. module: point_of_sale #: field:product.product,expense_pdt:0 msgid "Point of Sale Cash Out" -msgstr "" +msgstr "Sortie d'argent du point de vente" #. module: point_of_sale #: selection:report.pos.order,month:0 @@ -1706,7 +1707,7 @@ msgid "Number of Transaction" msgstr "Nombre de Transactions" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1879,7 +1880,7 @@ msgid "Difference" msgstr "Différence" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "Suppression impossible !" @@ -2050,7 +2051,7 @@ msgid "Salespeople" msgstr "Vendeurs" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -2058,7 +2059,7 @@ msgid "You have to open at least one cashbox." msgstr "Vous devez ouvrir au moins une caisse." #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Pas de Liste de Prix !" @@ -2110,7 +2111,7 @@ msgid "No Cash Register Defined !" msgstr "Pas de caisse définie" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2244,6 +2245,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Cliquez pour ajouter un nouvel article.\n" +"

\n" +" Vous devez définir un article pour tout ce que vous vendez à " +"travers l'interface du point de vente.\n" +"

\n" +" N'oubliez pas de configurer le prix et la catégorie de point " +"de vente dans laquelle il devrait apparaître. Si un produit n'a pas de " +"catégorie de point de vente, vous ne pouvez pas le vendre à travers " +"l'interface de point de vente.\n" +"

\n" +" " #. module: point_of_sale #: view:pos.order:0 @@ -2568,7 +2581,7 @@ msgstr "Id. de session" #. module: point_of_sale #: view:pos.make.payment:0 msgid "Pay Order" -msgstr "" +msgstr "Payer la commande" #. module: point_of_sale #: view:pos.session:0 @@ -2840,7 +2853,7 @@ msgid "Pos Lines" msgstr "Lignes des ventes en PdV" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "Gains du point de vente" @@ -2853,7 +2866,7 @@ msgid "Please wait, a cashier is on the way" msgstr "Veuillez patienter, un caissier va arriver" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3164,15 +3177,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3204,6 +3219,9 @@ msgid "" "The Point of Sale Category this products belongs to. Those categories are " "used to group similar products and are specific to the Point of Sale." msgstr "" +"La catégorie de point de vente à laquelle cet article appartient. Ces " +"catégories sont utilisées pour grouper les articles similaires et sont " +"spécifiques au point de vente." #. module: point_of_sale #: model:product.template,name:point_of_sale.orangina_1,5l_product_template @@ -3266,13 +3284,13 @@ msgid "Chaudfontaine 1.5l" msgstr "Chaudfontaine 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3311,7 +3329,7 @@ msgid "Journal Entry" msgstr "Pièce comptable" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3342,7 +3360,7 @@ msgid "Supplier Invoice" msgstr "Facture fournisseur" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3422,7 +3440,7 @@ msgid "Coca-Cola Regular 1L" msgstr "Coca-Cola Regular 1L" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "Impossible d'annuler le bon de préparation" @@ -3463,7 +3481,7 @@ msgid "Spa Barisart 1.5l" msgstr "Spa Barisart 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3579,10 +3597,10 @@ msgid "Default Point of Sale" msgstr "Point de vente par défaut" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" -msgstr "" +msgstr "Il n'y a pas de caisse pour ce point de vente" #. module: point_of_sale #: model:pos.category,name:point_of_sale.special_beers @@ -3623,7 +3641,7 @@ msgid "PRO-FORMA" msgstr "PRO-FORMA" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Veuiller renseigner un client" @@ -3636,7 +3654,7 @@ msgstr "Bières fruitées" #. module: point_of_sale #: view:pos.session:0 msgid "You can define another list of available currencies on the" -msgstr "" +msgstr "Vous pouvez définir une autre liste de devises disponibles dans le" #. module: point_of_sale #. openerp-web @@ -3675,7 +3693,7 @@ msgid "Print Receipt" msgstr "Imprimer le ticket" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "Pertes du point de vente" @@ -4262,6 +4280,7 @@ msgstr "Commandes" #~ msgid "Other" #~ msgstr "Autre" +#, python-format #~ msgid "Close" #~ msgstr "Fermer" @@ -4954,6 +4973,7 @@ msgstr "Commandes" #~ msgid "Dr. Oetker Ristorante Vegetale" #~ msgstr "Dr. Oetker Restaurant Vegetale" +#, python-format #~ msgid "Next Order" #~ msgstr "Commande suivante" diff --git a/addons/point_of_sale/i18n/he.po b/addons/point_of_sale/i18n/he.po index 31f12afc166..fca5910e871 100644 --- a/addons/point_of_sale/i18n/he.po +++ b/addons/point_of_sale/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-06-11 05:40+0000\n" -"X-Generator: Launchpad (build 16667)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:57+0000\n" +"X-Generator: Launchpad (build 16753)\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 95f0d5e29eb..11cdc5ab635 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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:57+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -132,7 +132,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -185,8 +185,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -223,7 +223,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -316,7 +316,7 @@ msgid "Disc.(%)" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -436,7 +436,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -447,7 +447,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -610,7 +610,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "" @@ -980,7 +980,7 @@ msgid "User's Product" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1030,7 +1030,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1156,8 +1156,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1359,7 +1359,7 @@ msgid "Today's Closed Cashbox" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1643,7 +1643,7 @@ msgid "Number of Transaction" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1814,7 +1814,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1977,7 +1977,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1985,7 +1985,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "" @@ -2037,7 +2037,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2760,7 +2760,7 @@ msgid "Pos Lines" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2773,7 +2773,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3084,15 +3084,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3186,13 +3188,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3227,7 +3229,7 @@ msgid "Journal Entry" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3258,7 +3260,7 @@ msgid "Supplier Invoice" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3337,7 +3339,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3378,7 +3380,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3494,7 +3496,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3538,7 +3540,7 @@ msgid "PRO-FORMA" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "" @@ -3590,7 +3592,7 @@ msgid "Print Receipt" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" diff --git a/addons/point_of_sale/i18n/hr.po b/addons/point_of_sale/i18n/hr.po index 0313ca3c325..0e9799b535a 100644 --- a/addons/point_of_sale/i18n/hr.po +++ b/addons/point_of_sale/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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:58+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -150,7 +150,7 @@ msgid "Red grapefruit" msgstr "Crveni grejp" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "Dodijeli korisnički barkod" @@ -206,8 +206,8 @@ msgid "Reference" msgstr "Vezna oznaka" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -245,7 +245,7 @@ msgid "Help needed" msgstr "Potrebna pomoć" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "Greška u konfiguraciji!" @@ -338,7 +338,7 @@ msgid "Disc.(%)" msgstr "Pop.(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "Molimo definirajte konto prihoda za ovaj proizvod \"%s\" (id:%d)." @@ -460,7 +460,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -475,7 +475,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "greška!" @@ -664,7 +664,7 @@ msgstr "" " " #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Izlazni račun" @@ -1053,7 +1053,7 @@ msgid "User's Product" msgstr "Korisnikov proizvod" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1105,7 +1105,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1231,8 +1231,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "Započni Prodaju" @@ -1438,7 +1438,7 @@ msgid "Today's Closed Cashbox" msgstr "Današnji zaključci blagajne" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "Odabrane narudžbe nisu iz iste smjene!" @@ -1728,7 +1728,7 @@ msgid "Number of Transaction" msgstr "broj transakcija" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1901,7 +1901,7 @@ msgid "Difference" msgstr "Razlika" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "Nije moguće obrisati!" @@ -2073,7 +2073,7 @@ msgid "Salespeople" msgstr "Prodavači" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -2081,7 +2081,7 @@ msgid "You have to open at least one cashbox." msgstr "Morate otvoriti barem jednu blagajnu" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Nema cjenika!" @@ -2133,7 +2133,7 @@ msgid "No Cash Register Defined !" msgstr "Nije definirana nijedna blagajna!" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2879,7 +2879,7 @@ msgid "Pos Lines" msgstr "POS linije" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "Dobit prodajnog mjesta" @@ -2892,7 +2892,7 @@ msgid "Please wait, a cashier is on the way" msgstr "Molimo sačekajte, blagajnik je na putu" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3203,15 +3203,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3307,13 +3309,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "Da bi obrisali prodaju ona mora biti nova ili otkazana." @@ -3350,7 +3352,7 @@ msgid "Journal Entry" msgstr "Temeljnica" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "Nije definiran konto prihoda da bi izvršili plaćanje." @@ -3381,7 +3383,7 @@ msgid "Supplier Invoice" msgstr "Ulazni račun" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3462,7 +3464,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "Nije moguće poništiti odabir" @@ -3503,7 +3505,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3631,7 +3633,7 @@ msgid "Default Point of Sale" msgstr "Zadani POS" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "Nema blagajni za ovu smjenu POS-a" @@ -3675,7 +3677,7 @@ msgid "PRO-FORMA" msgstr "Pro-forma" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Molimo odaberite partnera za prodaju" @@ -3727,7 +3729,7 @@ msgid "Print Receipt" msgstr "Ispiši potvrdu" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "Gubitak POS-a" @@ -4371,6 +4373,7 @@ msgstr "Nalozi" #~ msgid "Close Cash Registers" #~ msgstr "Close Cash Registers" +#, python-format #~ msgid "Close" #~ msgstr "Zatvori" @@ -4386,12 +4389,14 @@ msgstr "Nalozi" #~ msgid "Add payment" #~ msgstr "Dodaj plaćanje" +#, python-format #~ msgid "Validate" #~ msgstr "Potvrdi" #~ msgid "Back to Products" #~ msgstr "Povratak" +#, python-format #~ msgid "Next Order" #~ msgstr "Sljedeći račun" diff --git a/addons/point_of_sale/i18n/hu.po b/addons/point_of_sale/i18n/hu.po index 67289bee6d7..b2021e315d9 100644 --- a/addons/point_of_sale/i18n/hu.po +++ b/addons/point_of_sale/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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:57+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -131,7 +131,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -184,8 +184,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -222,7 +222,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -315,7 +315,7 @@ msgid "Disc.(%)" msgstr "Eng. (%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -435,7 +435,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -446,7 +446,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -609,7 +609,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "" @@ -979,7 +979,7 @@ msgid "User's Product" msgstr "Felhasználó termékei" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1029,7 +1029,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1155,8 +1155,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1358,7 +1358,7 @@ msgid "Today's Closed Cashbox" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1642,7 +1642,7 @@ msgid "Number of Transaction" msgstr "Tranzakció száma" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1813,7 +1813,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1976,7 +1976,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1984,7 +1984,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Nincs árlista !" @@ -2036,7 +2036,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2759,7 +2759,7 @@ msgid "Pos Lines" msgstr "Értékesítési pont sorok" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2772,7 +2772,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3083,15 +3083,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3185,13 +3187,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3226,7 +3228,7 @@ msgid "Journal Entry" msgstr "Könyvelési tétel" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3257,7 +3259,7 @@ msgid "Supplier Invoice" msgstr "Bejövő számla" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3336,7 +3338,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3377,7 +3379,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3493,7 +3495,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3537,7 +3539,7 @@ msgid "PRO-FORMA" msgstr "Pro forma" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "" @@ -3589,7 +3591,7 @@ msgid "Print Receipt" msgstr "Átvétel nyomtatása" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4241,6 +4243,7 @@ msgstr "" #~ msgid "Close Cash Registers" #~ msgstr "Pénztár zárása" +#, python-format #~ msgid "Close" #~ msgstr "Zárás" diff --git a/addons/point_of_sale/i18n/id.po b/addons/point_of_sale/i18n/id.po index 45467ec7fad..861798c8e76 100644 --- a/addons/point_of_sale/i18n/id.po +++ b/addons/point_of_sale/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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:57+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -131,7 +131,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -184,8 +184,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -222,7 +222,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -315,7 +315,7 @@ msgid "Disc.(%)" msgstr "Diskon (%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -435,7 +435,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -446,7 +446,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -609,7 +609,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "" @@ -979,7 +979,7 @@ msgid "User's Product" msgstr "Produk Pengguna" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1029,7 +1029,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1155,8 +1155,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1360,7 +1360,7 @@ msgid "Today's Closed Cashbox" msgstr "Box Uang yang ditutup hari ini" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1644,7 +1644,7 @@ msgid "Number of Transaction" msgstr "Angka transaksi" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1815,7 +1815,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1978,7 +1978,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1986,7 +1986,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Tidak ada daftar harga !" @@ -2038,7 +2038,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2761,7 +2761,7 @@ msgid "Pos Lines" msgstr "Baris POS" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2774,7 +2774,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3085,15 +3085,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3187,13 +3189,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3228,7 +3230,7 @@ msgid "Journal Entry" msgstr "Jurnal Masukan" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3259,7 +3261,7 @@ msgid "Supplier Invoice" msgstr "Faktur Pembelian" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3338,7 +3340,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3379,7 +3381,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3495,7 +3497,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3539,7 +3541,7 @@ msgid "PRO-FORMA" msgstr "PRO-FORMA" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Mohon Masukkan Pelanggan di penjualan" @@ -3591,7 +3593,7 @@ msgid "Print Receipt" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" diff --git a/addons/point_of_sale/i18n/it.po b/addons/point_of_sale/i18n/it.po index 4a39a8ab678..92e811744a9 100644 --- a/addons/point_of_sale/i18n/it.po +++ b/addons/point_of_sale/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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:57+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -131,7 +131,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -184,8 +184,8 @@ msgid "Reference" msgstr "Riferimento" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -223,7 +223,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "Errore di configurazione!" @@ -316,7 +316,7 @@ msgid "Disc.(%)" msgstr "Sconto (%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "Definire un conto di ricavo per questo prodotto: \"%s\" (id:%d)." @@ -439,7 +439,7 @@ msgid "Fanta Orange 33cl" msgstr "Fanta Orange 33cl" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -450,7 +450,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "errore!" @@ -615,7 +615,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "" @@ -985,7 +985,7 @@ msgid "User's Product" msgstr "Prodotto dell'utente" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1037,7 +1037,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1163,8 +1163,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1366,7 +1366,7 @@ msgid "Today's Closed Cashbox" msgstr "Chiusura giornaliera registratore di cassa" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1650,7 +1650,7 @@ msgid "Number of Transaction" msgstr "Numero di transazioni" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1821,7 +1821,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1984,7 +1984,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1992,7 +1992,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Nessun Listino Prezzi !" @@ -2044,7 +2044,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2767,7 +2767,7 @@ msgid "Pos Lines" msgstr "Righe Punto Vendita" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2780,7 +2780,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3091,15 +3091,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3193,13 +3195,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3234,7 +3236,7 @@ msgid "Journal Entry" msgstr "Voce giornale" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3265,7 +3267,7 @@ msgid "Supplier Invoice" msgstr "Fattura Fornitore" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3344,7 +3346,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3385,7 +3387,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3501,7 +3503,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3545,7 +3547,7 @@ msgid "PRO-FORMA" msgstr "Pro-Forma" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Prego fornire un partner per la vendita" @@ -3597,7 +3599,7 @@ msgid "Print Receipt" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4178,6 +4180,7 @@ msgstr "" #~ msgid "Other" #~ msgstr "Altro" +#, python-format #~ msgid "Close" #~ msgstr "Chiudi" diff --git a/addons/point_of_sale/i18n/ja.po b/addons/point_of_sale/i18n/ja.po index 8d66e341404..17897188ee2 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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:58+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -132,7 +132,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -185,8 +185,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -223,7 +223,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -316,7 +316,7 @@ msgid "Disc.(%)" msgstr "割引(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -436,7 +436,7 @@ msgid "Fanta Orange 33cl" msgstr "ファンタ オレンジ 330ml" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -447,7 +447,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -610,7 +610,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "顧客請求書" @@ -980,7 +980,7 @@ msgid "User's Product" msgstr "ユーザ商品" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1032,7 +1032,7 @@ msgstr "コカコーラ ライト レモン 500ml" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1158,8 +1158,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1361,7 +1361,7 @@ msgid "Today's Closed Cashbox" msgstr "本日の閉じられた金庫" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1645,7 +1645,7 @@ msgid "Number of Transaction" msgstr "取引数" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1816,7 +1816,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "削除できません。" @@ -1979,7 +1979,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1987,7 +1987,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "価格リストがありません。" @@ -2039,7 +2039,7 @@ msgid "No Cash Register Defined !" msgstr "キャッシュレジスタが定義されていません。" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2763,7 +2763,7 @@ msgid "Pos Lines" msgstr "POS行" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2776,7 +2776,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3087,15 +3087,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3189,13 +3191,13 @@ msgid "Chaudfontaine 1.5l" msgstr "Chaudfontaine 1.5L" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "販売を削除するために、それは新規またはキャンセルする必要があります。" @@ -3230,7 +3232,7 @@ msgid "Journal Entry" msgstr "仕訳帳入力" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3261,7 +3263,7 @@ msgid "Supplier Invoice" msgstr "仕入先請求書" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3340,7 +3342,7 @@ msgid "Coca-Cola Regular 1L" msgstr "コカコーラ 1L" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "集荷をキャンセルできません。" @@ -3381,7 +3383,7 @@ msgid "Spa Barisart 1.5l" msgstr "SPA Barisart 1.5L" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3497,7 +3499,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3541,7 +3543,7 @@ msgid "PRO-FORMA" msgstr "プロフォーマ" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "販売のためのパートナを提供して下さい。" @@ -3593,7 +3595,7 @@ msgid "Print Receipt" msgstr "レシート印刷" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4308,6 +4310,7 @@ msgstr "" #~ msgid "Close Cash Registers" #~ msgstr "キャッシュレジスタを閉じる" +#, python-format #~ msgid "Close" #~ msgstr "閉じる" @@ -4334,15 +4337,18 @@ msgstr "" #~ msgid "Back to Products" #~ msgstr "商品に戻る" +#, python-format #~ msgid "Validate" #~ msgstr "検証" #~ msgid "pending orders" #~ msgstr "保留中オーダー" +#, python-format #~ msgid "Print" #~ msgstr "印刷" +#, python-format #~ msgid "Next Order" #~ msgstr "次のオーダー" diff --git a/addons/point_of_sale/i18n/ko.po b/addons/point_of_sale/i18n/ko.po index 21eeeef0617..befd12222a1 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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:58+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -132,7 +132,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -185,8 +185,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -223,7 +223,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -316,7 +316,7 @@ msgid "Disc.(%)" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -436,7 +436,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -447,7 +447,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -610,7 +610,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "" @@ -980,7 +980,7 @@ msgid "User's Product" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1030,7 +1030,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1156,8 +1156,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1359,7 +1359,7 @@ msgid "Today's Closed Cashbox" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1643,7 +1643,7 @@ msgid "Number of Transaction" msgstr "거래 수" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1814,7 +1814,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1977,7 +1977,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1985,7 +1985,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "가격리스트가 없음!" @@ -2037,7 +2037,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2760,7 +2760,7 @@ msgid "Pos Lines" msgstr "POS 라인" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2773,7 +2773,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3084,15 +3084,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3186,13 +3188,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3227,7 +3229,7 @@ msgid "Journal Entry" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3258,7 +3260,7 @@ msgid "Supplier Invoice" msgstr "공급자 인보이스" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3337,7 +3339,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3378,7 +3380,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3494,7 +3496,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3538,7 +3540,7 @@ msgid "PRO-FORMA" msgstr "프로포마" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "이 판매의 파트너를 기입하십시오." @@ -3590,7 +3592,7 @@ msgid "Print Receipt" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4222,6 +4224,7 @@ msgstr "" #~ msgid "Pos Payment" #~ msgstr "POS 결제" +#, python-format #~ msgid "Close" #~ msgstr "닫기" diff --git a/addons/point_of_sale/i18n/lt.po b/addons/point_of_sale/i18n/lt.po index 6d0979d41ad..41282404352 100644 --- a/addons/point_of_sale/i18n/lt.po +++ b/addons/point_of_sale/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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:58+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -131,7 +131,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -184,8 +184,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -222,7 +222,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -315,7 +315,7 @@ msgid "Disc.(%)" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -435,7 +435,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -446,7 +446,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -609,7 +609,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "" @@ -979,7 +979,7 @@ msgid "User's Product" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1029,7 +1029,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1155,8 +1155,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1358,7 +1358,7 @@ msgid "Today's Closed Cashbox" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1642,7 +1642,7 @@ msgid "Number of Transaction" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1813,7 +1813,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1976,7 +1976,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1984,7 +1984,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "" @@ -2036,7 +2036,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2759,7 +2759,7 @@ msgid "Pos Lines" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2772,7 +2772,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3083,15 +3083,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3185,13 +3187,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3226,7 +3228,7 @@ msgid "Journal Entry" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3257,7 +3259,7 @@ msgid "Supplier Invoice" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3336,7 +3338,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3377,7 +3379,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3493,7 +3495,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3537,7 +3539,7 @@ msgid "PRO-FORMA" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "" @@ -3589,7 +3591,7 @@ msgid "Print Receipt" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" diff --git a/addons/point_of_sale/i18n/lv.po b/addons/point_of_sale/i18n/lv.po index 2a4c7c70626..e58bda85446 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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:58+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -132,7 +132,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -185,8 +185,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -223,7 +223,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -316,7 +316,7 @@ msgid "Disc.(%)" msgstr "Atl.(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -436,7 +436,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -447,7 +447,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -610,7 +610,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Klienta Rēķins" @@ -980,7 +980,7 @@ msgid "User's Product" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1030,7 +1030,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1156,8 +1156,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1359,7 +1359,7 @@ msgid "Today's Closed Cashbox" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1643,7 +1643,7 @@ msgid "Number of Transaction" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1814,7 +1814,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1977,7 +1977,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1985,7 +1985,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "" @@ -2037,7 +2037,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2760,7 +2760,7 @@ msgid "Pos Lines" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2773,7 +2773,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3084,15 +3084,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3186,13 +3188,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3227,7 +3229,7 @@ msgid "Journal Entry" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3258,7 +3260,7 @@ msgid "Supplier Invoice" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3337,7 +3339,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3378,7 +3380,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3494,7 +3496,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3538,7 +3540,7 @@ msgid "PRO-FORMA" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "" @@ -3590,7 +3592,7 @@ msgid "Print Receipt" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" diff --git a/addons/point_of_sale/i18n/mk.po b/addons/point_of_sale/i18n/mk.po index f3a01f441ee..511c8285e01 100644 --- a/addons/point_of_sale/i18n/mk.po +++ b/addons/point_of_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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:58+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -46,11 +46,11 @@ msgstr "" "

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

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

\n" " Доколку поставите слика на категоријата, распоредот на\n" -" интерфејсот со екран ан допире ќе биде автоматски. " +" интерфејсот со екран на допир ќе биде автоматски. " "Препорачуваме\n" " да не се става слика на категории за екрани со мала " "резолуција (1024x768).\n" @@ -65,7 +65,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 @@ -93,13 +93,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 @@ -145,7 +145,7 @@ msgid "Red grapefruit" msgstr "Црвен грејпфрут" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "Доделување на сопствен EAN" @@ -157,7 +157,7 @@ msgid "" " being able to start selling through the " "touchscreen interface." msgstr "" -"Ќе треба да извршите контрола на кеш сумата во касата пред\n" +"Ќе треба да извршите контрола на сумата на готовината во касата пред\n" " да почнете со продажба преку интерфејсот со екран " "на допир." @@ -201,8 +201,8 @@ msgid "Reference" msgstr "Референца" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -239,7 +239,7 @@ msgid "Help needed" msgstr "Потребна е помош" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "Грешка конфигурација!" @@ -332,10 +332,10 @@ msgid "Disc.(%)" msgstr "Попуст(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, 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 @@ -433,7 +433,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 @@ -452,7 +452,7 @@ msgid "Fanta Orange 33cl" msgstr "Фанта Портокал 33cl" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -460,10 +460,14 @@ 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 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "грешка!" @@ -585,7 +589,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 @@ -632,7 +636,8 @@ msgstr "" "

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

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

\n" @@ -642,7 +647,7 @@ msgstr "" " " #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Фактура на клиент" @@ -738,7 +743,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 @@ -803,7 +808,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 @@ -838,7 +843,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 @@ -862,7 +867,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 @@ -870,7 +875,7 @@ msgid "" "This field holds the image used as image for the cateogry, limited to " "1024x1024px." msgstr "" -"Ова поле ја држи сликата која се користи како силика за оваа категорија, " +"Ова поле ја држи сликата која се користи како слика за оваа категорија, " "ограничено на 1024х1024Px." #. module: point_of_sale @@ -895,7 +900,7 @@ msgid "" msgstr "" "Треба да дефинирате кој метод на плаќање треба да биде достапен во точката " "за продажба со повторно користење на постојната банка и готовина преку " -"\"Сметководство / Конфигурација / Картици / Картици\". Изберете картица и " +"\"Сметководство / Конфигурација / Дневници / Дневници\". Изберете дневник и " "означете го полето \"Метод на плаќање на точка на продажба\" од јазичето " "\"Точка на продажба\". Исто така креирајте нови методи на плаќање директно " "од менито \"PoS Backend / Конфигурација / Методи на плаќање\"." @@ -951,7 +956,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 @@ -969,7 +974,7 @@ msgid "" "Check this if you want to group the Journal Items by Product while closing a " "Session" msgstr "" -"Означете го ова ако сакате да групирате ставки од картицата по производ " +"Означете го ова ако сакате да групирате ставки од дневникот по производ " "додека ја затварате сесијата" #. module: point_of_sale @@ -1002,7 +1007,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 @@ -1026,7 +1031,7 @@ msgid "User's Product" msgstr "Производ на корисникот" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1058,7 +1063,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 @@ -1078,7 +1083,7 @@ msgstr "Coca-Cola Light Lemon 50cl" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1204,8 +1209,8 @@ msgstr "2Л Evian" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "Стартувај точка на продажба" @@ -1223,7 +1228,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 @@ -1375,7 +1380,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 @@ -1402,7 +1407,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 @@ -1410,7 +1415,7 @@ msgid "Today's Closed Cashbox" msgstr "Денешна затворена каса" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "Селектираните налози немаат иста сесија!" @@ -1486,7 +1491,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 @@ -1520,7 +1526,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 @@ -1535,7 +1541,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 @@ -1690,7 +1696,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 @@ -1698,13 +1704,13 @@ msgid "Number of Transaction" msgstr "Број на трансакција" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " "\"%s\" (id:%d)." msgstr "" -"Нема дефинирано конто за побарувања за да направите плаќање за партнерот: " +"Нема дефинирано сметка за побарувања за да направите плаќање за партнерот: " "\"%s\" (id:%d)." #. module: point_of_sale @@ -1735,7 +1741,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 @@ -1871,7 +1877,7 @@ msgid "Difference" msgstr "Разлика" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "Не може да се избрише !" @@ -1907,7 +1913,7 @@ msgid "" "Generate all sale journal entries for non invoiced orders linked to a closed " "cash register or statement." msgstr "" -"Генерирај ги сите записи од картицата за продажба за нефактурираните налози " +"Генерирај ги сите записи од дневникот за продажба за нефактурираните налози " "поврзани со затворена каса или извод." #. module: point_of_sale @@ -1969,13 +1975,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 @@ -2039,10 +2045,10 @@ 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 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -2050,7 +2056,7 @@ msgid "You have to open at least one cashbox." msgstr "Треба да отворите барем една каса." #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Нема ценовник !" @@ -2102,12 +2108,12 @@ msgid "No Cash Register Defined !" msgstr "Нема дефинирано каса !" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." msgstr "" -"Н е пронајден готовински извод за оваа сесија. Не може да се зачува " +"Не е пронајден готовински извод за оваа сесија. Не може да се зачува " "вратената готовина." #. module: point_of_sale @@ -2238,6 +2244,21 @@ msgid "" "

\n" " " msgstr "" +"

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

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

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

\n" +" " #. module: point_of_sale #: view:pos.order:0 @@ -2442,7 +2463,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 @@ -2493,12 +2514,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 @@ -2818,7 +2839,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 @@ -2831,7 +2852,7 @@ msgid "Pos Lines" msgstr "Ставки на точка на продажба" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "Профит од точка на продажба" @@ -2844,7 +2865,7 @@ msgid "Please wait, a cashier is on the way" msgstr "Ве молиме почекајте, касиерот доаѓа" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -2950,7 +2971,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 @@ -3058,7 +3079,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 @@ -3157,15 +3178,17 @@ msgstr "Boni Портокали" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3209,7 +3232,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 @@ -3262,13 +3285,13 @@ msgid "Chaudfontaine 1.5l" msgstr "Chaudfontaine 1.5л" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" -msgstr "" +msgstr "Побарувања од трговија" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "Со цел да избришете продажба, мора да има ново или откажано." @@ -3302,13 +3325,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 +#: code:addons/point_of_sale/point_of_sale.py:757 #, 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 @@ -3336,7 +3359,7 @@ msgid "Supplier Invoice" msgstr "Фактура на добавувач" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3418,7 +3441,7 @@ msgid "Coca-Cola Regular 1L" msgstr "Кока-Кола Регулар 1L" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "Не може да се откаже требување." @@ -3459,7 +3482,7 @@ msgid "Spa Barisart 1.5l" msgstr "Spa Barisart 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3540,7 +3563,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 @@ -3585,7 +3608,7 @@ msgid "Default Point of Sale" msgstr "Стандардна точка на продажба" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "Нема каса за оваа сесија на точка на продажба" @@ -3608,7 +3631,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 @@ -3629,7 +3652,7 @@ msgid "PRO-FORMA" msgstr "ПРО-ФАКТУРА" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Обезбедете партнер за продажбата." @@ -3681,7 +3704,7 @@ msgid "Print Receipt" msgstr "Печати приемница" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "Загуба на точка на продажба" @@ -3773,7 +3796,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 @@ -3832,7 +3855,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 @@ -3923,6 +3946,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 @@ -3975,7 +4010,7 @@ msgstr "Плаќања" #. module: point_of_sale #: report:pos.invoice:0 msgid "Supplier Refund" -msgstr "Поврати на добавувач" +msgstr "Поврат на добавувач" #. module: point_of_sale #. openerp-web @@ -4000,8 +4035,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 @@ -4013,7 +4048,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 @@ -4085,4 +4120,4 @@ msgstr "Налози" #, python-format #~ msgid "Subtotal:" -#~ msgstr "Subtotal:" +#~ msgstr "Вкупно:" diff --git a/addons/point_of_sale/i18n/mn.po b/addons/point_of_sale/i18n/mn.po index fd0e0cdb502..3d13432965b 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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:58+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -103,7 +103,7 @@ msgstr "Борлуулалтын дэлгэрэнгүй" #. module: point_of_sale #: constraint:pos.config:0 msgid "You cannot have two cash controls in one Point Of Sale !" -msgstr "" +msgstr "Нэг кассын удирдалагад 2 бэлэн мөнгө байгаа тул боломжгүй." #. module: point_of_sale #: field:pos.payment.report.user,user_id:0 @@ -112,7 +112,7 @@ msgstr "" #: view:report.pos.order:0 #: field:report.pos.order,user_id:0 msgid "Salesperson" -msgstr "Худалдагч" +msgstr "Борлуулалтын ажилтан" #. module: point_of_sale #: view:report.pos.order:0 @@ -132,7 +132,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -185,8 +185,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -223,7 +223,7 @@ msgid "Help needed" msgstr "Тусламж хэрэгтэй" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -260,7 +260,7 @@ msgstr "Санхүүгийн мэдээлэл" #. module: point_of_sale #: field:pos.session.opening,show_config:0 msgid "Show Config" -msgstr "" +msgstr "Тохиргоо харах" #. module: point_of_sale #: report:pos.lines:0 @@ -316,7 +316,7 @@ msgid "Disc.(%)" msgstr "Хөнг.(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -376,12 +376,12 @@ msgstr "Эцэг ангилал" #: code:addons/point_of_sale/static/src/xml/pos.xml:482 #, python-format msgid "Open Cashbox" -msgstr "" +msgstr "Нээлттэй касс" #. module: point_of_sale #: view:pos.session.opening:0 msgid "Select your Point of Sale" -msgstr "" +msgstr "Борлуулалтын цэгээ сонгоно уу" #. module: point_of_sale #: field:report.sales.by.margin.pos,total:0 @@ -405,7 +405,7 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:480 #, python-format msgid "Payment Request" -msgstr "" +msgstr "Төлбөрийн хүсэлт" #. module: point_of_sale #: field:product.product,to_weight:0 @@ -436,7 +436,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -447,10 +447,10 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" -msgstr "" +msgstr "алдаа" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_report_sales_by_user_pos_month @@ -496,7 +496,7 @@ msgstr "" #. module: point_of_sale #: help:res.users,ean13:0 msgid "BarCode" -msgstr "" +msgstr "Зураасан код" #. module: point_of_sale #: help:pos.category,image_medium:0 @@ -569,14 +569,14 @@ msgstr "POS захиалгын мөр" #. module: point_of_sale #: view:pos.config:0 msgid "Point of Sale Configuration" -msgstr "" +msgstr "Кассын тохиргоо" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:359 #, python-format msgid "Your order has to be validated by a cashier." -msgstr "" +msgstr "Таны захиалга кассчинаар шалгагдах ёстой." #. module: point_of_sale #: model:product.template,name:point_of_sale.fanta_orange_50cl_product_template @@ -610,7 +610,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Захиалагчийн нэхэмжлэл" @@ -632,7 +632,7 @@ msgstr "Хаалтын огноо" #. module: point_of_sale #: view:pos.session:0 msgid "Opening Cashbox Lines" -msgstr "" +msgstr "Кассын Нээлтийн Мөрүүд" #. module: point_of_sale #: selection:report.pos.order,month:0 @@ -694,7 +694,7 @@ msgstr "Цэвэр дүн" #. module: point_of_sale #: model:ir.actions.client,name:point_of_sale.action_client_pos_menu msgid "Open POS Menu" -msgstr "" +msgstr "POS цэсийг нээх" #. module: point_of_sale #: report:pos.details_summary:0 @@ -711,7 +711,7 @@ msgstr "POS-н журналын бичилтүүдийг илгээх" #: code:addons/point_of_sale/static/src/xml/pos.xml:457 #, python-format msgid "Barcode Scanner" -msgstr "" +msgstr "Зураасан код уншигч" #. module: point_of_sale #: model:product.template,name:point_of_sale.pomme_granny_smith_product_template @@ -779,7 +779,7 @@ msgstr "Бараа нэмэх" #. module: point_of_sale #: field:pos.config,name:0 msgid "Point of Sale Name" -msgstr "" +msgstr "Борлуулалтын цэгийн нэр" #. module: point_of_sale #: field:report.transaction.pos,invoice_am:0 @@ -940,7 +940,7 @@ msgstr "" #. module: point_of_sale #: view:res.users:0 msgid "Edit EAN" -msgstr "" +msgstr "EAN засах" #. module: point_of_sale #: code:addons/point_of_sale/wizard/pos_open_statement.py:80 @@ -980,7 +980,7 @@ msgid "User's Product" msgstr "Хэрэглэгчийн Бараа" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1032,12 +1032,12 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format msgid "return" -msgstr "" +msgstr "буцаах" #. module: point_of_sale #: view:product.product:0 @@ -1093,7 +1093,7 @@ msgstr "" #. module: point_of_sale #: view:pos.session:0 msgid "payment method." -msgstr "" +msgstr "Төлбөрийн арга" #. module: point_of_sale #: view:pos.order:0 @@ -1158,8 +1158,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1298,7 +1298,7 @@ msgstr "Нэхэмжилсэн дүн" #: model:ir.model,name:point_of_sale.model_pos_category #: field:product.product,pos_categ_id:0 msgid "Point of Sale Category" -msgstr "" +msgstr "Кассын ангилал" #. module: point_of_sale #: view:report.pos.order:0 @@ -1318,7 +1318,7 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:324 #, python-format msgid "Choose your type of receipt:" -msgstr "" +msgstr "Талоны төрлийг сонгох:" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_report_sales_by_margin_pos_month @@ -1360,10 +1360,10 @@ msgstr "" #. module: point_of_sale #: report:all.closed.cashbox.of.the.day:0 msgid "Today's Closed Cashbox" -msgstr "Өнөөдрийн хаагдсан мөнгөний хайрцаг" +msgstr "Өнөөдрийн хаагдсан касс" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1381,7 +1381,7 @@ msgstr "" #. module: point_of_sale #: report:pos.invoice:0 msgid "Fiscal Position Remark :" -msgstr "Санхүүгийн жилийн харгалзуулалтын тайлбар :" +msgstr "Санхүүгийн харгалзааны тайлбар :" #. module: point_of_sale #: selection:report.pos.order,month:0 @@ -1399,7 +1399,7 @@ msgstr "Нээх өдөр" #: model:ir.actions.act_window,name:point_of_sale.action_pos_session #: model:ir.ui.menu,name:point_of_sale.menu_pos_session_all msgid "All Sessions" -msgstr "" +msgstr "Бүх сэшн" #. module: point_of_sale #. openerp-web @@ -1461,7 +1461,7 @@ msgstr "" #. module: point_of_sale #: view:pos.config:0 msgid "Point of Sale Config" -msgstr "" +msgstr "Борлуулалтын цэгийн тохиргоо" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_zero_33cl_product_template @@ -1502,7 +1502,7 @@ msgstr "тодорхойгүй" #. module: point_of_sale #: field:product.product,income_pdt:0 msgid "Point of Sale Cash In" -msgstr "" +msgstr "Борлуулалтын цэгийн бэлэн мөнгөний орлого" #. module: point_of_sale #. openerp-web @@ -1647,7 +1647,7 @@ msgid "Number of Transaction" msgstr "Гүйлгээний тоо" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1810,7 +1810,7 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:325 #, python-format msgid "Ticket" -msgstr "" +msgstr "Тасалбар" #. module: point_of_sale #: field:pos.session,cash_register_difference:0 @@ -1818,7 +1818,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "Устгах боломжгүй !" @@ -1898,7 +1898,7 @@ msgstr "" #: model:ir.actions.act_window,name:point_of_sale.action_report_pos_order_all #: model:ir.ui.menu,name:point_of_sale.menu_report_pos_order_all msgid "Orders Analysis" -msgstr "" +msgstr "Захиалгын анализ" #. module: point_of_sale #. openerp-web @@ -1975,7 +1975,7 @@ msgstr "POS захиалгууд" #. module: point_of_sale #: model:ir.actions.report.xml,name:point_of_sale.all_closed_cashbox_of_the_day msgid "All Closed CashBox" -msgstr "Бүх хаагдсан мөнгөний хайрцагууд" +msgstr "Бүх хаагдсан кассууд" #. module: point_of_sale #: field:pos.details,user_ids:0 @@ -1983,15 +1983,15 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format msgid "You have to open at least one cashbox." -msgstr "" +msgstr "Дор хаяж нэг касс нээх хэрэгтэй" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Үнийн жагсаалт алга!" @@ -2043,7 +2043,7 @@ msgid "No Cash Register Defined !" msgstr "Кассын бүртгэл тодорхойлогдоогүй байна !" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2594,7 +2594,7 @@ msgid "" msgstr "" "Систем кассын бүртгэлүүдийг бүгдийг нээх бөгөөд ингэснээр төлбөрүүдийг " "хөтлөж эхлэх боломжтой болно. Кассын бүртгэл бүрийн нээлтийн балансыг " -"тэдгээрийн мөнгөний хайрцагийн хавтасыг ашиглан шалгахыг зөвлөе." +"тэдгээрийн касс хавтасыг ашиглан шалгахыг зөвлөе." #. module: point_of_sale #: view:pos.order:0 @@ -2705,7 +2705,7 @@ msgstr "Борлуулалт хэрэглэгчээр сараар" #. module: point_of_sale #: view:pos.session:0 msgid "Cashbox Lines" -msgstr "" +msgstr "Кассын Мөрүүд" #. module: point_of_sale #: model:ir.actions.report.xml,name:point_of_sale.pos_payment_report_user @@ -2769,7 +2769,7 @@ msgid "Pos Lines" msgstr "POS мөрүүд" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2782,7 +2782,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3093,15 +3093,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3195,13 +3197,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "Захиалгыг устгахын тулд энэ нь шинэ юмуу цуцлагдсан байх ёстой." @@ -3238,7 +3240,7 @@ msgid "Journal Entry" msgstr "Журналын бичилтүүд" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3269,7 +3271,7 @@ msgid "Supplier Invoice" msgstr "Нийлүүлэгчийн Нэхэмжлэл" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3348,7 +3350,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "Бэлтгэлтийг цуцлах боломжгүй." @@ -3389,7 +3391,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3505,7 +3507,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3546,10 +3548,10 @@ msgstr "" #. module: point_of_sale #: report:pos.invoice:0 msgid "PRO-FORMA" -msgstr "PRO-FORMA" +msgstr "УРЬДЧИЛСАН" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Харилцагчийг сонгоно уу." @@ -3601,7 +3603,7 @@ msgid "Print Receipt" msgstr "Баримт хэвлэх" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4150,6 +4152,7 @@ msgstr "" #~ msgid "Add payment :" #~ msgstr "Төлбөр нэмэх" +#, python-format #~ msgid "Close" #~ msgstr "Хаах" @@ -4594,15 +4597,18 @@ msgstr "" #~ msgid "PoS Cash Input" #~ msgstr "PoS бэлэн мөнгө орлого" +#, python-format #~ msgid "Validate" #~ msgstr "Шалгах" #~ msgid "pending orders" #~ msgstr "хүлээгдэж байгаа захиалгууд" +#, python-format #~ msgid "Next Order" #~ msgstr "Дараагийн Захиалга" +#, python-format #~ msgid "Print" #~ msgstr "Хэвлэх" diff --git a/addons/point_of_sale/i18n/nb.po b/addons/point_of_sale/i18n/nb.po index 7ea68911f25..55b73f8e90d 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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:58+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -132,7 +132,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -185,8 +185,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -223,7 +223,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -316,7 +316,7 @@ msgid "Disc.(%)" msgstr "Rab.(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -436,7 +436,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -447,7 +447,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -610,7 +610,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Kundefaktura" @@ -980,7 +980,7 @@ msgid "User's Product" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1030,7 +1030,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1156,8 +1156,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1359,7 +1359,7 @@ msgid "Today's Closed Cashbox" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1643,7 +1643,7 @@ msgid "Number of Transaction" msgstr "Antall transaksjoner" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1814,7 +1814,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1977,7 +1977,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1985,7 +1985,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "" @@ -2037,7 +2037,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2760,7 +2760,7 @@ msgid "Pos Lines" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2773,7 +2773,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3084,15 +3084,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3186,13 +3188,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3227,7 +3229,7 @@ msgid "Journal Entry" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3258,7 +3260,7 @@ msgid "Supplier Invoice" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3337,7 +3339,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3378,7 +3380,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3494,7 +3496,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3538,7 +3540,7 @@ msgid "PRO-FORMA" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "" @@ -3590,7 +3592,7 @@ msgid "Print Receipt" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" diff --git a/addons/point_of_sale/i18n/nl.po b/addons/point_of_sale/i18n/nl.po index 8c04a60377f..71c0a0d32f0 100644 --- a/addons/point_of_sale/i18n/nl.po +++ b/addons/point_of_sale/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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:57+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -147,7 +147,7 @@ msgid "Red grapefruit" msgstr "Rode grapefruit" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "Wijs een afwijkende EAN code toe" @@ -204,8 +204,8 @@ msgid "Reference" msgstr "Referentie" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -243,7 +243,7 @@ msgid "Help needed" msgstr "Hulp nodig" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "Configuratiefout!" @@ -336,7 +336,7 @@ msgid "Disc.(%)" msgstr "Krt. (%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "Definieer een inkomstenrekening voor dit product: \"%s\" (id:%d)." @@ -459,7 +459,7 @@ msgid "Fanta Orange 33cl" msgstr "Fanta Orange 33cl" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -474,7 +474,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "fout!" @@ -655,7 +655,7 @@ msgstr "" " " #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Verkoopfactuur" @@ -1041,7 +1041,7 @@ msgid "User's Product" msgstr "Gebruikers producten" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1093,7 +1093,7 @@ msgstr "Coca-Cola Light Lemon 50cl" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1219,8 +1219,8 @@ msgstr "2L Evian" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "Start kassa" @@ -1426,7 +1426,7 @@ msgid "Today's Closed Cashbox" msgstr "Vandaag gesloten kassa" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "Geselecteerde orders hebben niet dezelfde sessie!" @@ -1715,7 +1715,7 @@ msgid "Number of Transaction" msgstr "Aantal transacties" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1888,7 +1888,7 @@ msgid "Difference" msgstr "Verschil" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "Onmogelijk te verwijderen!" @@ -2060,7 +2060,7 @@ msgid "Salespeople" msgstr "Verkopers" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -2068,7 +2068,7 @@ msgid "You have to open at least one cashbox." msgstr "U dient tenminste één kassa te openen." #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Geen prijslijst!" @@ -2120,7 +2120,7 @@ msgid "No Cash Register Defined !" msgstr "Geen kassa gedefinieerd" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2863,7 +2863,7 @@ msgid "Pos Lines" msgstr "Kassa regels" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "Kassa bruto winst" @@ -2876,7 +2876,7 @@ msgid "Please wait, a cashier is on the way" msgstr "Even geduld aub, de Kassière is onderweg." #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3187,15 +3187,17 @@ msgstr "Boni sinasappelen" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3292,13 +3294,13 @@ msgid "Chaudfontaine 1.5l" msgstr "Chaudfontaine 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "Handel debiteuren" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3336,7 +3338,7 @@ msgid "Journal Entry" msgstr "Dagboek invoer" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "Er is geen debiteuren rekening ingesteld om een betaling te maken." @@ -3367,7 +3369,7 @@ msgid "Supplier Invoice" msgstr "Inkoopfactuur" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3448,7 +3450,7 @@ msgid "Coca-Cola Regular 1L" msgstr "Coca-Cola Normaal 1L" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "Niet mogelijk om het verzamelen te stoppen." @@ -3489,7 +3491,7 @@ msgid "Spa Barisart 1.5l" msgstr "Spa Barisart 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3615,7 +3617,7 @@ msgid "Default Point of Sale" msgstr "Standaard kassa" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "Er is geen kasregister voor deze kassa sessie" @@ -3659,7 +3661,7 @@ msgid "PRO-FORMA" msgstr "PRO-FORMA" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Kies een relatie voor deze verkoop" @@ -3712,7 +3714,7 @@ msgid "Print Receipt" msgstr "Afdrukken kassabon" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "Kassa verlies" @@ -4410,6 +4412,7 @@ msgstr "Orders" #~ msgid "You can't modify this order. It has already been paid" #~ msgstr "U kunt deze order niet wijzigen. Deze is inmiddels betaald" +#, python-format #~ msgid "Close" #~ msgstr "Afsluiten" @@ -4697,12 +4700,15 @@ msgstr "Orders" #~ msgid "Back to Products" #~ msgstr "Terug naar producten" +#, python-format #~ msgid "Validate" #~ msgstr "Bevestigen" +#, python-format #~ msgid "Next Order" #~ msgstr "Volgende order" +#, python-format #~ msgid "Print" #~ msgstr "Afdrukken" diff --git a/addons/point_of_sale/i18n/nl_BE.po b/addons/point_of_sale/i18n/nl_BE.po index 0bd93f81772..79947fa5226 100644 --- a/addons/point_of_sale/i18n/nl_BE.po +++ b/addons/point_of_sale/i18n/nl_BE.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-16 05:07+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:59+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -131,7 +131,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -184,8 +184,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -222,7 +222,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -315,7 +315,7 @@ msgid "Disc.(%)" msgstr "Korting(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -435,7 +435,7 @@ msgid "Fanta Orange 33cl" msgstr "Fanta Orange 33cl" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -446,7 +446,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -609,7 +609,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Verkoopfactuur" @@ -979,7 +979,7 @@ msgid "User's Product" msgstr "Product van de gebruiker" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1031,7 +1031,7 @@ msgstr "Coca-Cola Light Lemon 50cl" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1157,8 +1157,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1362,7 +1362,7 @@ msgid "Today's Closed Cashbox" msgstr "Gesloten kasboek van vandaag" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1646,7 +1646,7 @@ msgid "Number of Transaction" msgstr "Aantal transacties" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1817,7 +1817,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "Niet in staat om te verwijderen" @@ -1983,7 +1983,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1991,7 +1991,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Geen prijslijst" @@ -2043,7 +2043,7 @@ msgid "No Cash Register Defined !" msgstr "Geen kasboek gedefinieerd" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2769,7 +2769,7 @@ msgid "Pos Lines" msgstr "Kassaverkooplijnen" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2782,7 +2782,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3093,15 +3093,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3195,13 +3197,13 @@ msgid "Chaudfontaine 1.5l" msgstr "Chaudfontaine 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3240,7 +3242,7 @@ msgid "Journal Entry" msgstr "Boeking" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3271,7 +3273,7 @@ msgid "Supplier Invoice" msgstr "Aankoopfactuur" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3350,7 +3352,7 @@ msgid "Coca-Cola Regular 1L" msgstr "Coca-Cola Regular 1L" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "Kan de picking niet annuleren." @@ -3391,7 +3393,7 @@ msgid "Spa Barisart 1.5l" msgstr "Spa Barisart 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3507,7 +3509,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3551,7 +3553,7 @@ msgid "PRO-FORMA" msgstr "PRO FORMA" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Gelieve een relatie op te geven voor de verkoop." @@ -3603,7 +3605,7 @@ msgid "Print Receipt" msgstr "Kasticket afdrukken" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4421,6 +4423,7 @@ msgstr "" #~ msgid "Close Cash Registers" #~ msgstr "Kasboeken sluiten" +#, python-format #~ msgid "Close" #~ msgstr "Sluiten" @@ -4453,15 +4456,18 @@ msgstr "" #~ msgid "Back to Products" #~ msgstr "Terug naar producten" +#, python-format #~ msgid "Validate" #~ msgstr "Goedkeuren" #~ msgid "pending orders" #~ msgstr "hangende orders" +#, python-format #~ msgid "Print" #~ msgstr "Afdrukken" +#, python-format #~ msgid "Next Order" #~ msgstr "Volgende order" diff --git a/addons/point_of_sale/i18n/pl.po b/addons/point_of_sale/i18n/pl.po index 4accf58800e..67971756e76 100644 --- a/addons/point_of_sale/i18n/pl.po +++ b/addons/point_of_sale/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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:58+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -131,7 +131,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "Przypisz własny EAN" @@ -184,8 +184,8 @@ msgid "Reference" msgstr "Odnośnik" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -222,7 +222,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "Błąd konfiguracji!" @@ -315,7 +315,7 @@ msgid "Disc.(%)" msgstr "Up.(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "Zdefiniuj konto przychodów dla tego produktu: \"%s\" (id:%d)." @@ -435,7 +435,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -446,7 +446,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "błąd!" @@ -621,7 +621,7 @@ msgstr "" " " #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Faktura dla klienta" @@ -994,7 +994,7 @@ msgid "User's Product" msgstr "Produkt użytkownika" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1046,7 +1046,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1172,8 +1172,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "Uruchom PS" @@ -1377,7 +1377,7 @@ msgid "Today's Closed Cashbox" msgstr "Dzisiaj zamknięte kasy" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "Wybrane zamówienia nie należą do tej samej sesji." @@ -1663,7 +1663,7 @@ msgid "Number of Transaction" msgstr "Numer transakcji" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1834,7 +1834,7 @@ msgid "Difference" msgstr "Różnica" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "Nie można usunąć !" @@ -1999,7 +1999,7 @@ msgid "Salespeople" msgstr "Sprzedawcy" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -2007,7 +2007,7 @@ msgid "You have to open at least one cashbox." msgstr "Musisz otworzyć co najmniej jedną kasę." #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Brak cennika !" @@ -2059,7 +2059,7 @@ msgid "No Cash Register Defined !" msgstr "Nie zdefiniowano żadnej kasy !" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2784,7 +2784,7 @@ msgid "Pos Lines" msgstr "Pozycje sprzedaży POS" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2797,7 +2797,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3108,15 +3108,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3210,13 +3212,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3251,7 +3253,7 @@ msgid "Journal Entry" msgstr "Zapis dziennika" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3282,7 +3284,7 @@ msgid "Supplier Invoice" msgstr "Faktura dostawcy" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3361,7 +3363,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3402,7 +3404,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3518,7 +3520,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3562,7 +3564,7 @@ msgid "PRO-FORMA" msgstr "PRO-FORMA" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Proszę wprowadzić partnera dla sprzedaży." @@ -3614,7 +3616,7 @@ msgid "Print Receipt" msgstr "Drukuj paragon" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4109,6 +4111,7 @@ msgstr "" #~ msgid "Add payment :" #~ msgstr "Dodaj płatnośc :" +#, python-format #~ msgid "Close" #~ msgstr "Zamknij" diff --git a/addons/point_of_sale/i18n/pt.po b/addons/point_of_sale/i18n/pt.po index 5f4b3532638..92891cede79 100644 --- a/addons/point_of_sale/i18n/pt.po +++ b/addons/point_of_sale/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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:58+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -62,7 +62,7 @@ msgstr "Hoje" #. module: point_of_sale #: field:pos.config,iface_electronic_scale:0 msgid "Electronic Scale Interface" -msgstr "" +msgstr "Interface de Balança Electrónica" #. module: point_of_sale #: model:pos.category,name:point_of_sale.plain_water @@ -131,10 +131,10 @@ msgid "Red grapefruit" msgstr "Uva vermelha" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" -msgstr "" +msgstr "Definir EAN Personalizado" #. module: point_of_sale #: view:pos.session.opening:0 @@ -143,6 +143,10 @@ msgid "" " being able to start selling through the " "touchscreen interface." msgstr "" +"Poderá ter de controlar a quantidade de dinheiro na caixa registadora, " +"antes\n" +" de poder começar a vender através do monitor " +"sensível ao toque." #. module: point_of_sale #: report:account.statement:0 @@ -169,7 +173,7 @@ msgstr "não usado" #. module: point_of_sale #: field:pos.config,iface_vkeyboard:0 msgid "Virtual KeyBoard Interface" -msgstr "" +msgstr "Interface de Teclado Virtual" #. module: point_of_sale #. openerp-web @@ -184,8 +188,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -219,10 +223,10 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:472 #, python-format msgid "Help needed" -msgstr "" +msgstr "Necessita-se ajuda" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -259,7 +263,7 @@ msgstr "Informação contabilística" #. module: point_of_sale #: field:pos.session.opening,show_config:0 msgid "Show Config" -msgstr "" +msgstr "Mostrar Configuração" #. module: point_of_sale #: report:pos.lines:0 @@ -315,10 +319,10 @@ msgid "Disc.(%)" msgstr "Desc.(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." -msgstr "" +msgstr "Por favor defina conta de receita para este produto: \"%s\" (id:%d)." #. module: point_of_sale #: view:report.pos.order:0 @@ -353,7 +357,7 @@ msgstr "Bebidas" #: model:ir.actions.act_window,name:point_of_sale.action_pos_session_opening #: model:ir.ui.menu,name:point_of_sale.menu_pos_session_opening msgid "Your Session" -msgstr "" +msgstr "A Sua Sessão" #. module: point_of_sale #: model:product.template,name:point_of_sale.stella_50cl_product_template @@ -380,7 +384,7 @@ msgstr "" #. module: point_of_sale #: view:pos.session.opening:0 msgid "Select your Point of Sale" -msgstr "" +msgstr "Seleccione o seu Ponto de Venda" #. module: point_of_sale #: field:report.sales.by.margin.pos,total:0 @@ -404,25 +408,25 @@ msgstr "Dr. Oetker Ristorante Speciale" #: code:addons/point_of_sale/static/src/xml/pos.xml:480 #, python-format msgid "Payment Request" -msgstr "" +msgstr "Pedido de Pagamento" #. module: point_of_sale #: field:product.product,to_weight:0 msgid "To Weight" -msgstr "" +msgstr "Para Pesar" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:476 #, python-format msgid "Hardware Events" -msgstr "" +msgstr "Eventos de Hardware" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:301 #, python-format msgid "You should assign a Point of Sale to your session." -msgstr "" +msgstr "Deverá atribuir um Ponto de Venda à sua sessão." #. module: point_of_sale #: view:pos.order.line:0 @@ -435,7 +439,7 @@ msgid "Fanta Orange 33cl" msgstr "Fanta Laranja 33cl" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -446,7 +450,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -462,6 +466,7 @@ msgid "" "Difference between the counted cash control at the closing and the computed " "balance." msgstr "" +"Diferença entre o controlo de caixa contabilizado e o saldo contabilizado." #. module: point_of_sale #: view:pos.session.opening:0 @@ -476,7 +481,7 @@ msgstr "" #. module: point_of_sale #: view:pos.session:0 msgid "Validate & Open Session" -msgstr "" +msgstr "Validar & Abrir Sessão" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:99 @@ -495,7 +500,7 @@ msgstr "" #. module: point_of_sale #: help:res.users,ean13:0 msgid "BarCode" -msgstr "" +msgstr "Código de barras" #. module: point_of_sale #: help:pos.category,image_medium:0 @@ -504,6 +509,9 @@ msgid "" "128x128px image, with aspect ratio preserved. Use this field in form views " "or some kanban views." msgstr "" +"Imagem da Categoria. É automaticamente redimensionada para 128x128 pixeis, " +"preservando o rácio. Use este campo em vistas formulário ou em algumas " +"vistas kanban." #. module: point_of_sale #: view:pos.session.opening:0 @@ -568,14 +576,14 @@ msgstr "Linha de Ordem de Venda de POS" #. module: point_of_sale #: view:pos.config:0 msgid "Point of Sale Configuration" -msgstr "" +msgstr "Configuração de Ponto de Venda" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:359 #, python-format msgid "Your order has to be validated by a cashier." -msgstr "" +msgstr "O seu pedido tem de ser validado pelo operador de caixa." #. module: point_of_sale #: model:product.template,name:point_of_sale.fanta_orange_50cl_product_template @@ -607,9 +615,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para iniciar uma nova sessão.\n" +"

\n" +" Uma sessão é um período de tempo, tipicamente durante o dia, " +"durante o qual\n" +" vende através do ponto de venda. O utilizador deverá " +"verificar as notas \n" +" existentes na sua caixa registadora no início e no final de " +"\n" +" cada sessão.\n" +"

\n" +" Deverá usar o menu Sua Sessão\n" +" para rapidamente abrir uma nova sessão.\n" +"

\n" +" " #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Fatura do Cliente" @@ -678,7 +701,7 @@ msgstr "Sem Linha" #: code:addons/point_of_sale/static/src/xml/pos.xml:453 #, python-format msgid "Set Weight" -msgstr "" +msgstr "Defina o Peso" #. module: point_of_sale #: view:account.bank.statement:0 @@ -693,7 +716,7 @@ msgstr "Total Liquido:" #. module: point_of_sale #: model:ir.actions.client,name:point_of_sale.action_client_pos_menu msgid "Open POS Menu" -msgstr "" +msgstr "Abrir Menu POS" #. module: point_of_sale #: report:pos.details_summary:0 @@ -710,7 +733,7 @@ msgstr "Publicar Entrada Diária POS" #: code:addons/point_of_sale/static/src/xml/pos.xml:457 #, python-format msgid "Barcode Scanner" -msgstr "" +msgstr "Leitor de Código de Barras" #. module: point_of_sale #: model:product.template,name:point_of_sale.pomme_granny_smith_product_template @@ -739,11 +762,14 @@ msgid "" "use\n" " a modern browser like" msgstr "" +"O Ponto de Venda não é suportado pelo Microsoft Internet Explorer. Por favor " +"use\n" +" um navegador moderno como o" #. module: point_of_sale #: view:pos.session.opening:0 msgid "Click to start a session." -msgstr "" +msgstr "Clique para iniciar uma sessão." #. module: point_of_sale #: view:pos.details:0 @@ -778,7 +804,7 @@ msgstr "Adicionar Artigo" #. module: point_of_sale #: field:pos.config,name:0 msgid "Point of Sale Name" -msgstr "" +msgstr "Nome do Ponto de Venda" #. module: point_of_sale #: field:report.transaction.pos,invoice_am:0 @@ -833,6 +859,8 @@ msgid "" "This field holds the image used as image for the cateogry, limited to " "1024x1024px." msgstr "" +"O campo guarda a imagem usada como imagem da categoria, limitada a 1024x1024 " +"pixeis." #. module: point_of_sale #: model:product.template,name:point_of_sale.pepsi_max_50cl_product_template @@ -863,7 +891,7 @@ msgstr "" #. module: point_of_sale #: view:pos.ean_wizard:0 msgid "Ean13 Generator" -msgstr "" +msgstr "Gerador Ean13" #. module: point_of_sale #: model:product.template,name:point_of_sale.spa_1l_product_template @@ -924,6 +952,8 @@ msgid "" "Check this if you want to group the Journal Items by Product while closing a " "Session" msgstr "" +"Marcar esta opção se pretende agrupar itens do diário por Produto enquanto " +"fecha uma Sessão" #. module: point_of_sale #: report:pos.details:0 @@ -939,7 +969,7 @@ msgstr "" #. module: point_of_sale #: view:res.users:0 msgid "Edit EAN" -msgstr "" +msgstr "Editar EAN" #. module: point_of_sale #: code:addons/point_of_sale/wizard/pos_open_statement.py:80 @@ -965,7 +995,7 @@ msgstr "" #. module: point_of_sale #: field:pos.session.opening,pos_session_id:0 msgid "PoS Session" -msgstr "" +msgstr "Sessão PoS" #. module: point_of_sale #: selection:report.pos.order,month:0 @@ -979,7 +1009,7 @@ msgid "User's Product" msgstr "Artigo do Utilizador" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1031,7 +1061,7 @@ msgstr "Coca-Cola Light Limão 50cl" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1041,7 +1071,7 @@ msgstr "" #. module: point_of_sale #: view:product.product:0 msgid "Set a Custom EAN" -msgstr "" +msgstr "Definir EAN Personalizado" #. module: point_of_sale #. openerp-web @@ -1053,19 +1083,19 @@ msgstr "" #. module: point_of_sale #: model:pos.category,name:point_of_sale.legumes msgid "Fresh vegetables" -msgstr "" +msgstr "Vegetais frescos" #. module: point_of_sale #: view:pos.session:0 msgid "tab of the" -msgstr "" +msgstr "separador do" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:478 #, python-format msgid "Scan Item Success" -msgstr "" +msgstr "Item digitalizado com sucesso" #. module: point_of_sale #: report:account.statement:0 @@ -1082,17 +1112,17 @@ msgstr "" #. module: point_of_sale #: sql_constraint:pos.session:0 msgid "The name of this POS Session must be unique !" -msgstr "" +msgstr "O nome desta sessão POS tem que ser único !" #. module: point_of_sale #: view:pos.session:0 msgid "Opening Subtotal" -msgstr "" +msgstr "A Abrir Subtotal" #. module: point_of_sale #: view:pos.session:0 msgid "payment method." -msgstr "" +msgstr "método de pagamento" #. module: point_of_sale #: view:pos.order:0 @@ -1157,11 +1187,11 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" -msgstr "" +msgstr "Iniciar Ponto de Venda" #. module: point_of_sale #: model:pos.category,name:point_of_sale.pils @@ -1275,7 +1305,7 @@ msgstr "As minhas vendas" #. module: point_of_sale #: view:pos.config:0 msgid "Set to Deprecated" -msgstr "" +msgstr "Definir Como Obsoleto" #. module: point_of_sale #: model:product.template,name:point_of_sale.limon_product_template @@ -1297,7 +1327,7 @@ msgstr "Total Faturado" #: model:ir.model,name:point_of_sale.model_pos_category #: field:product.product,pos_categ_id:0 msgid "Point of Sale Category" -msgstr "" +msgstr "Categoria de Ponto de Venda" #. module: point_of_sale #: view:report.pos.order:0 @@ -1311,13 +1341,15 @@ msgid "" "This sequence is automatically created by OpenERP but you can change it to " "customize the reference numbers of your orders." msgstr "" +"Esta sequência é automaticamente criada pela OpenERP mas você pode modifica-" +"la de acordo com as suas preferências de enconmendas." #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:324 #, python-format msgid "Choose your type of receipt:" -msgstr "" +msgstr "Escolha o seu tipo de recibo" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_report_sales_by_margin_pos_month @@ -1354,7 +1386,7 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:479 #, python-format msgid "Scan Item Unrecognized" -msgstr "" +msgstr "Digitalização não reconhecida" #. module: point_of_sale #: report:all.closed.cashbox.of.the.day:0 @@ -1362,10 +1394,10 @@ msgid "Today's Closed Cashbox" msgstr "Caixas Fechadas de Hoje" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" -msgstr "" +msgstr "Foram seleccionadas encomendas que não pertençam à mesma sessão!" #. module: point_of_sale #: report:pos.invoice:0 @@ -1398,7 +1430,7 @@ msgstr "Data de Abertura" #: model:ir.actions.act_window,name:point_of_sale.action_pos_session #: model:ir.ui.menu,name:point_of_sale.menu_pos_session_all msgid "All Sessions" -msgstr "" +msgstr "Todas as Sessões" #. module: point_of_sale #. openerp-web @@ -1417,7 +1449,7 @@ msgstr "Impostos :" #: code:addons/point_of_sale/static/src/xml/pos.xml:271 #, python-format msgid "Thank you for shopping with us." -msgstr "" +msgstr "Obrigado por comprar connosco" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_light_2l_product_template @@ -1450,7 +1482,7 @@ msgstr "Desc." #: code:addons/point_of_sale/static/src/xml/pos.xml:467 #, python-format msgid "Invalid Ean" -msgstr "" +msgstr "Ean Inválido" #. module: point_of_sale #: model:product.template,name:point_of_sale.lindemans_kriek_37,5cl_product_template @@ -1460,7 +1492,7 @@ msgstr "Lindemans Kriek 37.5cl" #. module: point_of_sale #: view:pos.config:0 msgid "Point of Sale Config" -msgstr "" +msgstr "Configuração do Ponto de Venda" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_zero_33cl_product_template @@ -1548,7 +1580,7 @@ msgstr "" #. module: point_of_sale #: field:product.product,available_in_pos:0 msgid "Available in the Point of Sale" -msgstr "" +msgstr "Disponível no Ponto de Venda" #. module: point_of_sale #: selection:pos.config,state:0 @@ -1565,7 +1597,7 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:338 #, python-format msgid "The scanned product was not recognized" -msgstr "" +msgstr "O produto digitalizado não foi reconhecido" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_report_transaction_pos @@ -1646,7 +1678,7 @@ msgid "Number of Transaction" msgstr "Número da Transação" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1809,7 +1841,7 @@ msgstr "Coca-Cola 33cl" #: code:addons/point_of_sale/static/src/xml/pos.xml:325 #, python-format msgid "Ticket" -msgstr "" +msgstr "Bilhete" #. module: point_of_sale #: field:pos.session,cash_register_difference:0 @@ -1817,7 +1849,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "Não é possível excluir !" @@ -1859,7 +1891,7 @@ msgstr "" #. module: point_of_sale #: model:product.template,name:point_of_sale.unreferenced_product_product_template msgid "Unreferenced Products" -msgstr "" +msgstr "Produtos não referenciados" #. module: point_of_sale #: view:pos.ean_wizard:0 @@ -1875,6 +1907,8 @@ msgid "" "complete\n" " your purchase" msgstr "" +"Por favor insira o seu cartão no leitor e as instruções para completar\n" +" a sua compra" #. module: point_of_sale #: help:product.product,income_pdt:0 @@ -1913,6 +1947,8 @@ msgid "" "Unable to open the session. You have to assign a sale journal to your point " "of sale." msgstr "" +"Não foi possível abrir a sessão. Tem de definir um diário de venda ao seu " +"ponto de venda." #. module: point_of_sale #: view:report.pos.order:0 @@ -1938,7 +1974,7 @@ msgstr "Data de Impressão" #. module: point_of_sale #: model:product.template,name:point_of_sale.poireaux_poireaux_product_template msgid "Leeks" -msgstr "" +msgstr "Fugas" #. module: point_of_sale #: help:pos.category,sequence:0 @@ -1983,7 +2019,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1991,7 +2027,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Sem Lista de Preços !" @@ -2034,7 +2070,7 @@ msgstr "Outros" #. module: point_of_sale #: model:pos.category,name:point_of_sale.autres_legumes_frais msgid "Other fresh vegetables" -msgstr "" +msgstr "Outros vegetais frescos" #. module: point_of_sale #: code:addons/point_of_sale/wizard/pos_open_statement.py:49 @@ -2043,7 +2079,7 @@ msgid "No Cash Register Defined !" msgstr "Sem caixa registadora definida!" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2116,7 +2152,7 @@ msgstr "" #. module: point_of_sale #: model:ir.actions.client,name:point_of_sale.action_pos_pos msgid "Start Point of Sale" -msgstr "" +msgstr "Iniciar Ponto de Venda" #. module: point_of_sale #. openerp-web @@ -2320,7 +2356,7 @@ msgstr "Coca-Cola Light 50cl" #: code:addons/point_of_sale/static/src/xml/pos.xml:466 #, python-format msgid "Unknown Product" -msgstr "" +msgstr "Produto Desconhecido" #. module: point_of_sale #. openerp-web @@ -2376,7 +2412,7 @@ msgstr "Mês" #. module: point_of_sale #: field:pos.category,image_medium:0 msgid "Medium-sized image" -msgstr "" +msgstr "Imagem de tamanho médio" #. module: point_of_sale #: model:product.template,name:point_of_sale.papillon_orange_product_template @@ -2407,7 +2443,7 @@ msgstr "Folha de Caixa" #: code:addons/point_of_sale/static/src/xml/pos.xml:447 #, python-format msgid "Accept Payment" -msgstr "" +msgstr "Aceitar Pagamento" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_receipt @@ -2511,7 +2547,7 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:470 #, python-format msgid "Hardware Status" -msgstr "" +msgstr "Estado do Hardware" #. module: point_of_sale #. openerp-web @@ -2583,7 +2619,7 @@ msgstr "Subtotal" #. module: point_of_sale #: model:product.template,name:point_of_sale.carotte_product_template msgid "Carrots" -msgstr "" +msgstr "Cenouras" #. module: point_of_sale #: view:pos.open.statement:0 @@ -2665,7 +2701,7 @@ msgstr "" #: code:addons/point_of_sale/static/src/xml/pos.xml:444 #, python-format msgid "Payment Terminal" -msgstr "" +msgstr "Terminal de Pagamento" #. module: point_of_sale #: view:account.bank.statement:0 @@ -2769,10 +2805,10 @@ msgid "Pos Lines" msgstr "Linhas POS" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" -msgstr "" +msgstr "Lucro do Ponto de Venda" #. module: point_of_sale #. openerp-web @@ -2782,7 +2818,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -2845,7 +2881,7 @@ msgstr "Linhas de Vendas por Utilizador" #: code:addons/point_of_sale/static/src/xml/pos.xml:481 #, python-format msgid "Payment Status" -msgstr "" +msgstr "Estado do Pagamento" #. module: point_of_sale #: model:product.template,name:point_of_sale.pepsi_2l_product_template @@ -3093,15 +3129,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3133,6 +3171,9 @@ msgid "" "The Point of Sale Category this products belongs to. Those categories are " "used to group similar products and are specific to the Point of Sale." msgstr "" +"A Categoria de Ponto de Venda a que este produto pertence. Estas categorias " +"são usadas para agrupar produtos similares e são específicas ao Ponto de " +"Venda." #. module: point_of_sale #: model:product.template,name:point_of_sale.orangina_1,5l_product_template @@ -3195,13 +3236,13 @@ msgid "Chaudfontaine 1.5l" msgstr "Chaudfontaine 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "Para apagar uma venda, ela deve ser nova ou cancelada." @@ -3238,7 +3279,7 @@ msgid "Journal Entry" msgstr "Entradas no diário" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3269,7 +3310,7 @@ msgid "Supplier Invoice" msgstr "Fatura do Fornecedor" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3340,7 +3381,7 @@ msgstr "Orval 33cl" #: code:addons/point_of_sale/static/src/xml/pos.xml:515 #, python-format msgid "discount" -msgstr "" +msgstr "desconto" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_regular_1l_product_template @@ -3348,7 +3389,7 @@ msgid "Coca-Cola Regular 1L" msgstr "Coca-Cola 1L" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "Não é possível cancelar o picking." @@ -3361,7 +3402,7 @@ msgstr "" #. module: point_of_sale #: model:pos.category,name:point_of_sale.fruits msgid "Fresh Fruits" -msgstr "" +msgstr "Frutas Frescas" #. module: point_of_sale #: model:product.template,name:point_of_sale.lindemans_pecheresse_37,,5cl_product_template @@ -3389,7 +3430,7 @@ msgid "Spa Barisart 1.5l" msgstr "Spa Barisart 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3470,7 +3511,7 @@ msgstr "" #. module: point_of_sale #: field:pos.config,group_by:0 msgid "Group Journal Items" -msgstr "" +msgstr "Agrupar Itens do Diário" #. module: point_of_sale #: model:ir.actions.act_window,help:point_of_sale.action_pos_pos_form @@ -3502,10 +3543,10 @@ msgstr "Spa Barisart 50cl" #. module: point_of_sale #: field:res.users,pos_config:0 msgid "Default Point of Sale" -msgstr "" +msgstr "Ponto de Venda por Omissão" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3549,7 +3590,7 @@ msgid "PRO-FORMA" msgstr "PRO-FORMA" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Por Favor forneça um parceiro para a venda" @@ -3579,7 +3620,7 @@ msgstr "" #. module: point_of_sale #: model:pos.category,name:point_of_sale.raisins msgid "Grapes" -msgstr "" +msgstr "Uvas" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_trans_pos_tree @@ -3601,7 +3642,7 @@ msgid "Print Receipt" msgstr "Imprimir Recibo" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -3661,7 +3702,7 @@ msgstr "Reembolsar" #: code:addons/point_of_sale/static/src/xml/pos.xml:417 #, python-format msgid "Your shopping cart is empty" -msgstr "" +msgstr "O seu carrinho de compras está vazio" #. module: point_of_sale #: code:addons/point_of_sale/report/pos_invoice.py:46 @@ -3683,7 +3724,7 @@ msgstr "Desc.(%)" #. module: point_of_sale #: view:pos.session.opening:0 msgid "The session" -msgstr "" +msgstr "A sessão" #. module: point_of_sale #: view:pos.order:0 @@ -3708,7 +3749,7 @@ msgstr "Linhas de ordem de venda" #. module: point_of_sale #: view:pos.session.opening:0 msgid "PoS Session Opening" -msgstr "" +msgstr "Abertura de Sessão PoS" #. module: point_of_sale #: field:pos.order.line,price_subtotal:0 @@ -3762,7 +3803,7 @@ msgstr "" #. module: point_of_sale #: field:pos.config,iface_print_via_proxy:0 msgid "Print via Proxy" -msgstr "" +msgstr "Imprimir via Proxy" #. module: point_of_sale #: report:pos.sales.user.today:0 @@ -3813,11 +3854,14 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Imagem de tamanho pequeno da categoria. É automaticamente redimensionada " +"para 64x64 pixeis, com o rácio preservado. Use este campo sempre que uma " +"imagem pequena seja necessária." #. module: point_of_sale #: field:pos.session.opening,pos_state:0 msgid "Session Status" -msgstr "" +msgstr "Estado da Sessão" #. module: point_of_sale #: field:pos.order,picking_id:0 @@ -3840,6 +3884,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar um método de pagamento.\n" +"

\n" +" Métodos de pagamento são definidos por diários na " +"contabilidade que tenham o\n" +" campo Método de Pagamento PoS marcado. para poder " +"vender \n" +" à partir do Ponto de Venda, deverá definir método de " +"pagamento na \n" +" configuração Ponto de Venda.\n" +"

\n" +" " #. module: point_of_sale #: view:pos.order:0 @@ -3861,12 +3917,12 @@ msgstr "" #. module: point_of_sale #: view:pos.session.opening:0 msgid "Click to continue the session." -msgstr "" +msgstr "Clique para continuar com a sessão" #. module: point_of_sale #: view:pos.config:0 msgid "Set to Active" -msgstr "" +msgstr "Definir como Activo" #. module: point_of_sale #: view:pos.category:0 @@ -3959,7 +4015,7 @@ msgstr "Utilizador de Vendas Hoje" #: code:addons/point_of_sale/static/src/xml/pos.xml:351 #, python-format msgid "Sorry, we could not create a session for this user." -msgstr "" +msgstr "Desculpe, não foi possível criar sessão para este utilizador" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:98 @@ -4130,6 +4186,7 @@ msgstr "" #~ msgid "Other" #~ msgstr "Outro" +#, python-format #~ msgid "Close" #~ msgstr "Fechar" @@ -5073,9 +5130,11 @@ msgstr "" #~ msgid "pending orders" #~ msgstr "ordens pendentes" +#, python-format #~ msgid "Next Order" #~ msgstr "Próxima ordem" +#, python-format #~ msgid "Print" #~ msgstr "Imprimir" @@ -5101,5 +5160,6 @@ msgstr "" #~ msgstr "" #~ "Não existe nenhuma conta ordenado definida para este artigo: \"%s\" (id:%d)" +#, python-format #~ msgid "Validate" #~ msgstr "Validar" diff --git a/addons/point_of_sale/i18n/pt_BR.po b/addons/point_of_sale/i18n/pt_BR.po index 4d4efabdec3..bb3dde2b085 100644 --- a/addons/point_of_sale/i18n/pt_BR.po +++ b/addons/point_of_sale/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-04-19 05:24+0000\n" -"X-Generator: Launchpad (build 16567)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:59+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -114,7 +114,7 @@ msgstr "Detalhes das Vendas" #. module: point_of_sale #: constraint:pos.config:0 msgid "You cannot have two cash controls in one Point Of Sale !" -msgstr "Você não pode ter dois controles de caixa em um ponto de venda!" +msgstr "Você não pode ter dois controles de caixa em um Ponto de Venda!" #. module: point_of_sale #: field:pos.payment.report.user,user_id:0 @@ -143,7 +143,7 @@ msgid "Red grapefruit" msgstr "Uva vermelha" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "Definir um EAN personalizado" @@ -156,9 +156,7 @@ msgid "" "touchscreen interface." msgstr "" "Você deve controlar o valor na caixa registradora, antes\n" -" " -" de iniciar as vendas através da " -"interface de toque." +" de iniciar as vendas através da interface de toque." #. module: point_of_sale #: report:account.statement:0 @@ -200,8 +198,8 @@ msgid "Reference" msgstr "Referência" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -228,7 +226,7 @@ msgstr "Pesando" #. module: point_of_sale #: model:product.template,name:point_of_sale.fenouil_fenouil_product_template msgid "Fennel" -msgstr "erva-doce" +msgstr "Erva Doce" #. module: point_of_sale #. openerp-web @@ -238,7 +236,7 @@ msgid "Help needed" msgstr "Ajuda necessária" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "Erro de Configuração!" @@ -280,7 +278,7 @@ msgstr "Mostrar Configuração" #. module: point_of_sale #: report:pos.lines:0 msgid "Disc. (%)" -msgstr "Desconto (%)" +msgstr "Desc. (%)" #. module: point_of_sale #: report:pos.details:0 @@ -331,7 +329,7 @@ msgid "Disc.(%)" msgstr "Desc.(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -400,7 +398,7 @@ msgstr "Abrir Caixa Registradora" #. module: point_of_sale #: view:pos.session.opening:0 msgid "Select your Point of Sale" -msgstr "Escolha seu Ponto de Vendas" +msgstr "Escolha seu Ponto de Venda" #. module: point_of_sale #: field:report.sales.by.margin.pos,total:0 @@ -436,13 +434,13 @@ msgstr "Para Pesar" #: code:addons/point_of_sale/static/src/xml/pos.xml:476 #, python-format msgid "Hardware Events" -msgstr "Eventos do Hardware" +msgstr "Eventos do Equipamento" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:301 #, python-format msgid "You should assign a Point of Sale to your session." -msgstr "Você precisa associar um Ponto de Vendas a sua sessão." +msgstr "Você precisa associar um Ponto de Venda a sua sessão." #. module: point_of_sale #: view:pos.order.line:0 @@ -455,7 +453,7 @@ msgid "Fanta Orange 33cl" msgstr "Fanta Laranja 33cl" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -470,7 +468,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "erro!" @@ -486,11 +484,12 @@ msgid "" "Difference between the counted cash control at the closing and the computed " "balance." msgstr "" +"Diferença entre o controle do dinheiro contado e o balanço computado." #. module: point_of_sale #: view:pos.session.opening:0 msgid ") is \"" -msgstr ") é \"" +msgstr ") está \"" #. module: point_of_sale #: model:product.template,name:point_of_sale.Onions_product_template @@ -514,12 +513,12 @@ msgstr "Em Andamento" #: view:pos.session:0 #: field:pos.session,opening_details_ids:0 msgid "Opening Cash Control" -msgstr "Controle de Abertura de Caixa" +msgstr "Abrindo Controle de Caixa" #. module: point_of_sale #: help:res.users,ean13:0 msgid "BarCode" -msgstr "Código de barras" +msgstr "Código de Barras" #. module: point_of_sale #: help:pos.category,image_medium:0 @@ -528,6 +527,9 @@ msgid "" "128x128px image, with aspect ratio preserved. Use this field in form views " "or some kanban views." msgstr "" +"Image médias da categoria. Ele é automaticamente redimensionada como uma " +"imagem de 128x128px, com relação de aspecto preservado. Utilize este campo " +"em vista de formulário ou algumas vistas kanban." #. module: point_of_sale #: view:pos.session.opening:0 @@ -631,9 +633,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para iniciar uma nova sessão.\n" +" \n" +" Uma sessão é um período de tempo, geralmente um dia, durante " +"o qual\n" +" você vende através do ponto de venda. O usuário tem que " +"verificar o\n" +" moedas em sua caixa registradora no início e no final\n" +" de cada sessão.\n" +" \n" +" Observe que você deve melhor usar o menu O Session \n" +" para abrir rapidamente uma nova sessão.\n" +" \n" +" " #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Fatura de Cliente" @@ -741,7 +758,7 @@ msgstr "Scanner de Código de Barras" #. module: point_of_sale #: model:product.template,name:point_of_sale.pomme_granny_smith_product_template msgid "Granny Smith apples" -msgstr "" +msgstr "Maçãs Granny Smith" #. module: point_of_sale #: help:product.product,expense_pdt:0 @@ -749,6 +766,9 @@ msgid "" "Check if, this is a product you can use to take cash from a statement for " "the point of sale backend, example: money lost, transfer to bank, etc." msgstr "" +"Verifique se, este é um produto que você pode usar para tirar dinheiro de " +"uma declaração para o ponto de venda de back-end, como por exemplo: dinheiro " +"perdido, a transferência para o banco, etc" #. module: point_of_sale #: view:report.pos.order:0 @@ -835,7 +855,7 @@ msgstr "Recibo" #: field:report.sales.by.margin.pos,net_margin_per_qty:0 #: field:report.sales.by.margin.pos.month,net_margin_per_qty:0 msgid "Net margin per Qty" -msgstr "" +msgstr "Margem líquida por Qtd." #. module: point_of_sale #: view:pos.confirm:0 @@ -883,6 +903,12 @@ msgid "" "Method\" from the \"Point of Sale\" tab. You can also create new payment " "methods directly from menu \"PoS Backend / Configuration / Payment Methods\"." msgstr "" +"Você tem que definir qual o método de pagamento deve estar disponível no " +"ponto de venda através da reutilização de banco e dinheiro existente através " +"de \"Contabilidade / Configurações / Revistas / Revistas\". Selecione um " +"jornal e deixe o campo \"PoS Forma de Pagamento\" da aba \"Point of Sale\". " +"Você também pode criar novos métodos de pagamento diretamente a partir do " +"menu \"Pos Backend / Configurações / Métodos de pagamento\"." #. module: point_of_sale #: model:pos.category,name:point_of_sale.rouges_noyau_fruits @@ -926,7 +952,7 @@ msgstr "Data de término" #. module: point_of_sale #: model:product.template,name:point_of_sale.pomme_jonagold_product_template msgid "Jonagold apples" -msgstr "" +msgstr "Jonagold apples" #. module: point_of_sale #: view:account.bank.statement:0 @@ -935,7 +961,7 @@ msgstr "" #: model:ir.model,name:point_of_sale.model_account_journal #: field:report.pos.order,journal_id:0 msgid "Journal" -msgstr "Registro" +msgstr "Diário" #. module: point_of_sale #: view:pos.session:0 @@ -945,7 +971,7 @@ msgstr "Demonstrativos" #. module: point_of_sale #: report:pos.details:0 msgid "Sales total(Revenue)" -msgstr "Vendas Totais" +msgstr "Total de vendas (Receita)" #. module: point_of_sale #: help:pos.config,group_by:0 @@ -1010,7 +1036,7 @@ msgid "User's Product" msgstr "Produto do Usuário" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1062,7 +1088,7 @@ msgstr "Coca-Cola Light Lemon 50cl" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1188,8 +1214,8 @@ msgstr "2L Evian" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "Iniciar Ponto de Venda" @@ -1197,7 +1223,7 @@ msgstr "Iniciar Ponto de Venda" #. module: point_of_sale #: model:pos.category,name:point_of_sale.pils msgid "Pils" -msgstr "" +msgstr "Pils" #. module: point_of_sale #: help:pos.session,cash_register_balance_end_real:0 @@ -1207,7 +1233,7 @@ msgstr "Calculado usando as linhas de controle de caixa" #. module: point_of_sale #: report:all.closed.cashbox.of.the.day:0 msgid "St.Name" -msgstr "" +msgstr "St.Name" #. module: point_of_sale #: report:pos.details_summary:0 @@ -1239,7 +1265,7 @@ msgstr "Total da Transação" #. module: point_of_sale #: model:product.template,name:point_of_sale.chaudfontaine_petillante_50cl_product_template msgid "Chaudfontaine Petillante 50cl" -msgstr "" +msgstr "Chaudfontaine Petillante 50cl" #. module: point_of_sale #. openerp-web @@ -1280,6 +1306,8 @@ msgid "" "You do not have any open cash register. You must create a payment method or " "open a cash register." msgstr "" +"Você não tem uma caixa registrador aberta. Você deve criar um método de " +"pagamento ou abrir uma caixa registradora." #. module: point_of_sale #: view:report.sales.by.margin.pos:0 @@ -1340,6 +1368,8 @@ msgid "" "This sequence is automatically created by OpenERP but you can change it to " "customize the reference numbers of your orders." msgstr "" +"Esta seqüência é criado automaticamente pelo OpenERP mas você pode mudá-lo " +"para personalizar os números de referência das suas ordens." #. module: point_of_sale #. openerp-web @@ -1391,7 +1421,7 @@ msgid "Today's Closed Cashbox" msgstr "Fechamento de Caixa do Dia" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "Os pedidos selecionados não têm a mesma sessão!" @@ -1610,7 +1640,7 @@ msgstr "Data" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_box_entries msgid "Pos Box Entries" -msgstr "" +msgstr "Pos as entradas de caixa" #. module: point_of_sale #: model:product.template,name:point_of_sale.boon_framboise_37,5cl_product_template @@ -1665,6 +1695,9 @@ msgid "" "Your ending balance is too different from the theorical cash closing (%.2f), " "the maximum allowed is: %.2f. You can contact your manager to force it." msgstr "" +"Seu saldo final é muito diferente do fechamento de caixa teórico (%.2f), o " +"máximo permitido é: %.2f. Você pode contatar seu gerente para forçar o " +"fechamento." #. module: point_of_sale #: view:pos.session:0 @@ -1677,12 +1710,14 @@ msgid "Number of Transaction" msgstr "Número da Transação" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " "\"%s\" (id:%d)." msgstr "" +"Não há nenhuma conta a receber definido para fazer o pagamento para o " +"parceiro: \"% s\" (id:% d)." #. module: point_of_sale #: view:pos.config:0 @@ -1732,7 +1767,7 @@ msgstr "Timmermans Kriek 37.5cl" #. module: point_of_sale #: field:pos.config,sequence_id:0 msgid "Order IDs Sequence" -msgstr "" +msgstr "Ordem IDs Sequence" #. module: point_of_sale #: report:pos.invoice:0 @@ -1747,7 +1782,7 @@ msgstr "Preço unitário" #: code:addons/point_of_sale/static/src/xml/pos.xml:190 #, python-format msgid "Product Weighting" -msgstr "" +msgstr "Ponderação produto" #. module: point_of_sale #. openerp-web @@ -1788,6 +1823,7 @@ msgstr "Caixa Registradoras" #: help:pos.session,cash_register_balance_end:0 msgid "Computed with the initial cash control and the sum of all payments." msgstr "" +"Calculado com o controlo de caixa inicial e a soma de todos os pagamentos." #. module: point_of_sale #. openerp-web @@ -1848,7 +1884,7 @@ msgid "Difference" msgstr "Diferença" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "Não foi possível Excluir!" @@ -1856,7 +1892,7 @@ msgstr "Não foi possível Excluir!" #. module: point_of_sale #: model:pos.category,name:point_of_sale.autres_agrumes msgid "Other Citrus" -msgstr "" +msgstr "Other Citrus" #. module: point_of_sale #: report:pos.details:0 @@ -1876,7 +1912,7 @@ msgstr "Nome" #. module: point_of_sale #: model:product.template,name:point_of_sale.spa_gazeuse_33cl_product_template msgid "Spa Barisart 33cl" -msgstr "" +msgstr "Spa Barisart 33cl" #. module: point_of_sale #: view:pos.confirm:0 @@ -1884,6 +1920,8 @@ msgid "" "Generate all sale journal entries for non invoiced orders linked to a closed " "cash register or statement." msgstr "" +"Gerar todos os lançamentos de venda para as ordens não faturadas ligados a " +"uma caixa registradora fechada ou declaração." #. module: point_of_sale #: model:product.template,name:point_of_sale.unreferenced_product_product_template @@ -1914,16 +1952,18 @@ msgid "" "Check if, this is a product you can use to put cash into a statement for the " "point of sale backend." msgstr "" +"Verifique se, este é um produto que você pode usar para colocar dinheiro em " +"uma declaração para o ponto de venda backend." #. module: point_of_sale #: model:product.template,name:point_of_sale.ijsboerke_moka_2,5l_product_template msgid "IJsboerke Mocha 2.5L" -msgstr "" +msgstr "IJsboerke Mocha 2.5L" #. module: point_of_sale #: field:pos.session,cash_control:0 msgid "Has Cash Control" -msgstr "" +msgstr "Tem Controle de Caixa" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_report_pos_order_all @@ -1951,7 +1991,7 @@ msgstr "" #. module: point_of_sale #: view:report.pos.order:0 msgid "POS ordered created during current year" -msgstr "" +msgstr "POS ordenou criados durante o ano corrente" #. module: point_of_sale #: model:product.template,name:point_of_sale.peche_product_template @@ -2018,7 +2058,7 @@ msgid "Salespeople" msgstr "Vendedores" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -2026,7 +2066,7 @@ msgid "You have to open at least one cashbox." msgstr "Você precisa abrir pelo menos uma Caixa Registradora" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Sem Lista de Preços !" @@ -2046,7 +2086,7 @@ msgstr "caps lock" #. module: point_of_sale #: model:product.template,name:point_of_sale.grisette_cerise_25cl_product_template msgid "Grisette Cherry 25cl" -msgstr "" +msgstr "Grisette Cherry 25cl" #. module: point_of_sale #: report:pos.invoice:0 @@ -2078,11 +2118,13 @@ msgid "No Cash Register Defined !" msgstr "Nenhuma Caixa Registradora Definida!" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." msgstr "" +"Nenhuma afirmação dinheiro encontrado para esta sessão. Incapaz de gravar " +"dinheiro devolvido." #. module: point_of_sale #: model:pos.category,name:point_of_sale.oignons_ail_echalotes @@ -2141,7 +2183,7 @@ msgstr "Dr. Oetker Ristorante Quattro Formaggi" #. module: point_of_sale #: model:product.template,name:point_of_sale.croky_naturel_45g_product_template msgid "Croky Natural 45g" -msgstr "" +msgstr "Croky Natural 45g" #. module: point_of_sale #: model:product.template,name:point_of_sale.tomate_en_grappe_product_template @@ -2151,7 +2193,7 @@ msgstr "Tomates em Conjunto" #. module: point_of_sale #: model:ir.actions.client,name:point_of_sale.action_pos_pos msgid "Start Point of Sale" -msgstr "Iniciar Ponto de Vendas" +msgstr "Iniciar Ponto de Venda" #. module: point_of_sale #. openerp-web @@ -2185,7 +2227,7 @@ msgstr "Pedidos do Ponto de Vendas" #. module: point_of_sale #: model:product.template,name:point_of_sale.spa_et_fruit_50cl_product_template msgid "Spa Fruit and Orange 50cl" -msgstr "" +msgstr "Spa Fruit and Orange 50cl" #. module: point_of_sale #: view:pos.config:0 @@ -2258,7 +2300,7 @@ msgstr "Origem" #: code:addons/point_of_sale/static/src/xml/pos.xml:461 #, python-format msgid "Admin Badge" -msgstr "" +msgstr "Emblema Administrador" #. module: point_of_sale #: field:pos.make.payment,journal_id:0 @@ -2334,7 +2376,7 @@ msgstr "Qtd de Produtos" #. module: point_of_sale #: model:product.template,name:point_of_sale.pomme_golden_perlim_product_template msgid "Golden Apples Perlim" -msgstr "" +msgstr "Maçãs Douradas Perlim" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:100 @@ -2381,7 +2423,7 @@ msgstr "" #. module: point_of_sale #: model:product.template,name:point_of_sale.jupiler_50cl_product_template msgid "Jupiler 50cl" -msgstr "" +msgstr "Jupiler 50cl" #. module: point_of_sale #: report:pos.details:0 @@ -2414,7 +2456,7 @@ msgstr "Sincronizada" #. module: point_of_sale #: model:product.template,name:point_of_sale.chimay_rouge_33cl_product_template msgid "Chimay Red 33cl" -msgstr "" +msgstr "Chimay Red 33cl" #. module: point_of_sale #: view:report.pos.order:0 @@ -2430,7 +2472,7 @@ msgstr "Imagem de tamanho Médio" #. module: point_of_sale #: model:product.template,name:point_of_sale.papillon_orange_product_template msgid "Orange Butterfly" -msgstr "" +msgstr "Laranja Butterfly" #. module: point_of_sale #: view:report.pos.order:0 @@ -2499,7 +2541,7 @@ msgstr "Fechado" #. module: point_of_sale #: field:pos.config,iface_cashdrawer:0 msgid "Cashdrawer Interface" -msgstr "" +msgstr "Interface de Cashdrawer" #. module: point_of_sale #: model:pos.category,name:point_of_sale.tomates @@ -2602,7 +2644,7 @@ msgstr "Linhas do demonstrativo" #. module: point_of_sale #: model:product.template,name:point_of_sale.croky_paprika_45g_product_template msgid "Croky Paprika 45g" -msgstr "" +msgstr "Croky Paprika 45g" #. module: point_of_sale #: view:pos.order:0 @@ -2624,7 +2666,7 @@ msgstr "Procurar Produtos" #. module: point_of_sale #: field:report.transaction.pos,invoice_id:0 msgid "Nbr Invoice" -msgstr "" +msgstr "NBR fatura" #. module: point_of_sale #: field:pos.order.line,price_subtotal_incl:0 @@ -2643,6 +2685,9 @@ msgid "" "payments. We suggest you to control the opening balance of each register, " "using their CashBox tab." msgstr "" +"O sistema irá abrir todas as caixas registadoras, de modo que você pode " +"começar a pagamentos de gravação. Sugerimos que você controlar o equilíbrio " +"de cada registro de abertura, usando o seu guia CashBox." #. module: point_of_sale #: view:pos.order:0 @@ -2671,7 +2716,7 @@ msgstr "shift" #. module: point_of_sale #: model:product.template,name:point_of_sale.rochefort_8_33cl_product_template msgid "Rochefort \"8\" 33cl" -msgstr "" +msgstr "Rochefort \"8\" 33cl" #. module: point_of_sale #: view:account.bank.statement:0 @@ -2696,12 +2741,12 @@ msgstr "Com um" #. module: point_of_sale #: model:product.template,name:point_of_sale.courgette_product_template msgid "Zucchini" -msgstr "" +msgstr "Abobrinha" #. module: point_of_sale #: model:product.template,name:point_of_sale.timmermans_geuze_37,5cl_product_template msgid "Timmermans Geuze 37.5cl" -msgstr "" +msgstr "Timmermans Geuze 37.5cl" #. module: point_of_sale #: view:pos.session:0 @@ -2724,7 +2769,7 @@ msgstr "Responsável" #. module: point_of_sale #: model:product.template,name:point_of_sale.croky_bolognaise_250g_product_template msgid "Croky Bolognese 250g" -msgstr "" +msgstr "Croky Bolognese 250g" #. module: point_of_sale #. openerp-web @@ -2738,7 +2783,7 @@ msgstr "Ean13 Personalizado" #: code:addons/point_of_sale/static/src/xml/pos.xml:465 #, python-format msgid "1.54€ Lemon" -msgstr "" +msgstr "1.54R$ Limão" #. module: point_of_sale #: field:pos.make.payment,payment_name:0 @@ -2753,7 +2798,7 @@ msgstr "Vendas Mensais por Usuário" #. module: point_of_sale #: view:pos.session:0 msgid "Cashbox Lines" -msgstr "" +msgstr "Cashbox Lines" #. module: point_of_sale #: model:ir.actions.report.xml,name:point_of_sale.pos_payment_report_user @@ -2772,12 +2817,12 @@ msgstr "Vendas por Margem de Usuário" #: report:pos.invoice:0 #, python-format msgid "Taxes:" -msgstr "Taxas:" +msgstr "Impostos:" #. module: point_of_sale #: model:product.template,name:point_of_sale.pepsi_max_33cl_product_template msgid "Pepsi Max 33cl" -msgstr "" +msgstr "Pepsi Max 33cl" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_report_pos_order @@ -2819,7 +2864,7 @@ msgid "Pos Lines" msgstr "Linhas de Vendas" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "Lucro do Ponto de Vendas" @@ -2832,7 +2877,7 @@ msgid "Please wait, a cashier is on the way" msgstr "Por favor aguarde, um caixa está a caminho" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -2843,7 +2888,7 @@ msgstr "Sessão" #. module: point_of_sale #: model:product.template,name:point_of_sale.chaudfontaine_33cl_product_template msgid "Chaudfontaine 33cl" -msgstr "" +msgstr "Chaudfontaine 33cl" #. module: point_of_sale #: model:product.template,name:point_of_sale.oetker_margherita_product_template @@ -2871,7 +2916,7 @@ msgstr "Nome do Demonstrativo" #. module: point_of_sale #: field:pos.session,cash_register_total_entry_encoding:0 msgid "Total Cash Transaction" -msgstr "" +msgstr "Transação de Caixa Total" #. module: point_of_sale #: model:pos.category,name:point_of_sale.pommes_de_terre @@ -2928,7 +2973,7 @@ msgstr "Detalhes do PDV" #: code:addons/point_of_sale/static/src/xml/pos.xml:462 #, python-format msgid "Client Badge" -msgstr "" +msgstr "Emblema do cliente" #. module: point_of_sale #: report:pos.lines:0 @@ -3023,6 +3068,8 @@ msgid "" "Person who uses the the cash register. It can be a reliever, a student or an " "interim employee." msgstr "" +"A pessoa que usa a caixa registadora. Ele pode ser um apaziguador, um " +"estudante ou um empregado interino." #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_zero_decaf_33cl_product_template @@ -3138,20 +3185,22 @@ msgstr "Fanta Laranja Zero 1.5L" #. module: point_of_sale #: model:product.template,name:point_of_sale.boni_orange_product_template msgid "Boni Oranges" -msgstr "" +msgstr "Boni Laranjas" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3190,7 +3239,7 @@ msgstr "" #. module: point_of_sale #: model:product.template,name:point_of_sale.orangina_1,5l_product_template msgid "Orangina 1.5L" -msgstr "" +msgstr "Orangina 1.5L" #. module: point_of_sale #: view:report.pos.order:0 @@ -3224,17 +3273,17 @@ msgstr "Linha do Demonstrativo Bancário" #. module: point_of_sale #: model:product.template,name:point_of_sale.belle_vue_kriek_25cl_product_template msgid "Belle-Vue Kriek 25cl" -msgstr "" +msgstr "Belle-Vue Kriek 25cl" #. module: point_of_sale #: model:product.template,name:point_of_sale.chaudfontaine_petillante_1,5l_product_template msgid "Chaudfontaine Petillante 1.5l" -msgstr "" +msgstr "Chaudfontaine Petillante 1.5l" #. module: point_of_sale #: model:product.template,name:point_of_sale.ijsboerke_stracciatella_2,5l_product_template msgid "IJsboerke Stracciatella 2.5L" -msgstr "" +msgstr "IJsboerke Stracciatella 2.5L" #. module: point_of_sale #: view:report.sales.by.user.pos:0 @@ -3249,13 +3298,13 @@ msgid "Chaudfontaine 1.5l" msgstr "Chaudfontaine 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "Contas a Receber" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "Para excluir uma venda, ela precisa ser nova ou ser cancelada." @@ -3292,7 +3341,7 @@ msgid "Journal Entry" msgstr "Lançamento de Diário" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3324,7 +3373,7 @@ msgid "Supplier Invoice" msgstr "Fatura do Fornecedor" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3405,7 +3454,7 @@ msgid "Coca-Cola Regular 1L" msgstr "Coca-Cola Regular 1L" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "Não foi possível cancelar a separação." @@ -3446,7 +3495,7 @@ msgid "Spa Barisart 1.5l" msgstr "Spa Barisart 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3571,7 +3620,7 @@ msgid "Default Point of Sale" msgstr "Ponto de Venda Padrão" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "Não tem nenhum caixa registradora para esta sessão do PdV" @@ -3615,7 +3664,7 @@ msgid "PRO-FORMA" msgstr "PRO-FORMA" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Por favor informe um parceiro para a venda" @@ -3628,7 +3677,7 @@ msgstr "Cerveja de Frutas" #. module: point_of_sale #: view:pos.session:0 msgid "You can define another list of available currencies on the" -msgstr "" +msgstr "Você pode definir uma outra lista de moedas disponíveis no" #. module: point_of_sale #. openerp-web @@ -3640,12 +3689,12 @@ msgstr "Soda 33cl" #. module: point_of_sale #: help:pos.session,cash_register_balance_start:0 msgid "Computed using the cash control at the opening." -msgstr "" +msgstr "Calculado usando o controle de caixa na abertura." #. module: point_of_sale #: model:pos.category,name:point_of_sale.raisins msgid "Grapes" -msgstr "" +msgstr "Uvas" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_trans_pos_tree @@ -3667,10 +3716,10 @@ msgid "Print Receipt" msgstr "Imprimir Recibo" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" -msgstr "" +msgstr "Ponto de Venda Loss" #. module: point_of_sale #: field:pos.make.payment,payment_date:0 @@ -3685,7 +3734,7 @@ msgstr "Janeiro" #. module: point_of_sale #: view:pos.order.line:0 msgid "POS Orders lines" -msgstr "" +msgstr "Ordens linhas POS" #. module: point_of_sale #: model:product.template,name:point_of_sale.chaudfontaine_petillante_33cl_product_template @@ -3779,7 +3828,7 @@ msgstr "Abrindo Sessão do PDV" #. module: point_of_sale #: field:pos.order.line,price_subtotal:0 msgid "Subtotal w/o Tax" -msgstr "" +msgstr "Subtotal Sem Impostos" #. module: point_of_sale #. openerp-web @@ -3797,7 +3846,7 @@ msgstr "Spa Reine 50cl" #. module: point_of_sale #: model:product.template,name:point_of_sale.chicon_flandria_extra_product_template msgid "Extra Flandria chicory" -msgstr "" +msgstr "Extra Flandria chicória" #. module: point_of_sale #: model:product.template,name:point_of_sale.lays_light_naturel_170g_product_template @@ -3860,7 +3909,7 @@ msgstr "Maio" #. module: point_of_sale #: report:pos.lines:0 msgid "Sales lines" -msgstr "" +msgstr "Linhas de vendas" #. module: point_of_sale #: field:pos.order,note:0 @@ -3879,6 +3928,9 @@ msgid "" "image, with aspect ratio preserved. Use this field anywhere a small image is " "required." msgstr "" +"Imagem de tamanho pequeno da categoria. Ele é automaticamente redimensionada " +"como uma imagem 64x64px, com relação de aspecto preservado. Utilize este " +"campo em qualquer lugar uma imagem pequena é necessária." #. module: point_of_sale #: field:pos.session.opening,pos_state:0 @@ -3906,6 +3958,18 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Clique para adicionar um método de pagamento.\n" +" \n" +" Métodos de pagamento são definidos pelas revistas de " +"contabilidade com a\n" +" campo PoS Forma de Pagamento marcada. Para ser " +"utilizável\n" +" a partir da interface touchscreen, você deve definir o " +"método de pagamento\n" +" no Ponto de Venda de configuração.\n" +" \n" +" " #. module: point_of_sale #: view:pos.order:0 @@ -3932,12 +3996,12 @@ msgstr "Clique para continuar a sessão." #. module: point_of_sale #: view:pos.config:0 msgid "Set to Active" -msgstr "" +msgstr "Marque para Ativar" #. module: point_of_sale #: view:pos.category:0 msgid "Product PoS Categories" -msgstr "" +msgstr "Produto PoS Categorias" #. module: point_of_sale #: view:pos.session.opening:0 @@ -3970,7 +4034,7 @@ msgstr "Desconto:" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_report_sales_by_margin_pos_month msgid "Sales by User Monthly margin" -msgstr "" +msgstr "Vendas por margem Mensal Usuário" #. module: point_of_sale #: model:product.template,name:point_of_sale.leffe_9_33cl_product_template @@ -3983,6 +4047,8 @@ msgid "" "Check this box if this journal define a payment method that can be used in " "point of sales." msgstr "" +"Marque esta caixa se esta revista definir um método de pagamento que pode " +"ser usado no ponto de venda." #. module: point_of_sale #. openerp-web @@ -3994,7 +4060,7 @@ msgstr "Mozilla Firefox" #. module: point_of_sale #: model:product.template,name:point_of_sale.raisins_noir_product_template msgid "Black Grapes" -msgstr "" +msgstr "Uvas Pretas" #. module: point_of_sale #: field:pos.category,sequence:0 @@ -4016,7 +4082,7 @@ msgstr "Erro! Você não pode criar categorias recursivas." #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_sales_user_today msgid "Sales User Today" -msgstr "" +msgstr "Vendas do usuário Hoje" #. module: point_of_sale #. openerp-web @@ -4036,7 +4102,7 @@ msgstr "Abrindo Controle" #. module: point_of_sale #: view:report.pos.order:0 msgid "Month of order date" -msgstr "" +msgstr "Mês da data do pedido" #. module: point_of_sale #: view:report.pos.order:0 @@ -4264,6 +4330,7 @@ msgstr "Pedidos" #~ msgid "Other" #~ msgstr "Outro" +#, python-format #~ msgid "Close" #~ msgstr "Fechar" @@ -4441,3 +4508,19 @@ msgstr "Pedidos" #~ msgid "Box Out" #~ msgstr "Saída de Caixa" + +#, python-format +#~ msgid "Subtotal:" +#~ msgstr "Subtotal:" + +#, python-format +#~ msgid "Print" +#~ msgstr "Imprimir" + +#, python-format +#~ msgid "Validate" +#~ msgstr "Validar" + +#, python-format +#~ msgid "Next Order" +#~ msgstr "Próxima Ordem" diff --git a/addons/point_of_sale/i18n/ro.po b/addons/point_of_sale/i18n/ro.po index c37d9eea7d3..3193a26c1d8 100644 --- a/addons/point_of_sale/i18n/ro.po +++ b/addons/point_of_sale/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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:58+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -144,7 +144,7 @@ msgid "Red grapefruit" msgstr "Grepfrut rosu" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "Alocati un EAN Personalizat" @@ -200,8 +200,8 @@ msgid "Reference" msgstr "Referinta" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -238,7 +238,7 @@ msgid "Help needed" msgstr "E nevoie de ajutor" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "Eroare de configurare!" @@ -331,7 +331,7 @@ msgid "Disc.(%)" msgstr "Reducere(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -455,7 +455,7 @@ msgid "Fanta Orange 33cl" msgstr "Fanta de portocale 33cl (330ml)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -470,7 +470,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "eroare!" @@ -653,7 +653,7 @@ msgstr "" " " #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Factura client" @@ -1041,7 +1041,7 @@ msgid "User's Product" msgstr "Produsul utilizatorului" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1093,7 +1093,7 @@ msgstr "Coca-Cola Light Lemon 50cl" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1219,8 +1219,8 @@ msgstr "2L Evian" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "Incepeti Punctul de Vanzare" @@ -1426,7 +1426,7 @@ msgid "Today's Closed Cashbox" msgstr "Casa de bani inchisa de astazi" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "Comenzile selectate nu au aceeasi sesiune!" @@ -1714,7 +1714,7 @@ msgid "Number of Transaction" msgstr "Numarul tranzactiei" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1888,7 +1888,7 @@ msgid "Difference" msgstr "Diferenta" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "Nu poate fi sters (stearsa) !" @@ -2062,7 +2062,7 @@ msgid "Salespeople" msgstr "Agenti de vanzari" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -2070,7 +2070,7 @@ msgid "You have to open at least one cashbox." msgstr "Trebuie sa deschideti cel putin o caseta de numerar." #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Nu exista nicio lista de preturi !" @@ -2122,7 +2122,7 @@ msgid "No Cash Register Defined !" msgstr "Nici o Casa de marcat definita!" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2867,7 +2867,7 @@ msgid "Pos Lines" msgstr "Linii PdV" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "Profit Punct de Vanzare" @@ -2880,7 +2880,7 @@ msgid "Please wait, a cashier is on the way" msgstr "Va rugam sa asteptati, un casier este pe drum" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3193,15 +3193,17 @@ msgstr "Portocale Boni" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3298,13 +3300,13 @@ msgid "Chaudfontaine 1.5l" msgstr "Chaudfontaine 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "Creante Comerciale" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "Pentru a putea sterge o vanzare, trebuie sa fie noua sau anulata." @@ -3341,7 +3343,7 @@ msgid "Journal Entry" msgstr "Inregistrare in jurnal" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "Nu exista un cont de creante definit pentru a face plata." @@ -3372,7 +3374,7 @@ msgid "Supplier Invoice" msgstr "Factura furnizor" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3453,7 +3455,7 @@ msgid "Coca-Cola Regular 1L" msgstr "Coca-Cola obisnuita 1L" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "Nu s-a putut anula ridicarea." @@ -3494,7 +3496,7 @@ msgid "Spa Barisart 1.5l" msgstr "Spa Barisart 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3620,7 +3622,7 @@ msgid "Default Point of Sale" msgstr "Punct de Vanzare Implicit" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "Nu exista nicio casa de marcat pentru Sesiunea acestui PdV" @@ -3664,7 +3666,7 @@ msgid "PRO-FORMA" msgstr "PRO-FORMA" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Va rugam sa furnizati un partener pentru vanzare." @@ -3716,7 +3718,7 @@ msgid "Print Receipt" msgstr "Tipariti Chitanta" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "Punct de Vanzare Pierdere" @@ -5165,6 +5167,7 @@ msgstr "Comenzi" #~ msgid "Close Cash Registers" #~ msgstr "Inchideti Casele de marcat" +#, python-format #~ msgid "Close" #~ msgstr "Inchideti" @@ -5194,15 +5197,18 @@ msgstr "Comenzi" #~ msgid "Back to Products" #~ msgstr "Inapoi la Produse" +#, python-format #~ msgid "Validate" #~ msgstr "Validati" #~ msgid "pending orders" #~ msgstr "comenzi in asteptare" +#, python-format #~ msgid "Print" #~ msgstr "Tipariti" +#, python-format #~ msgid "Next Order" #~ msgstr "Comanda urmatoare" diff --git a/addons/point_of_sale/i18n/ru.po b/addons/point_of_sale/i18n/ru.po index b1bb4feb436..576f0f3c374 100644 --- a/addons/point_of_sale/i18n/ru.po +++ b/addons/point_of_sale/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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:58+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -131,7 +131,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -184,8 +184,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -222,7 +222,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -315,7 +315,7 @@ msgid "Disc.(%)" msgstr "Скидка (%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -435,7 +435,7 @@ msgid "Fanta Orange 33cl" msgstr "Фанта Апельсин 0,33л" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -446,7 +446,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "ошибка!" @@ -609,7 +609,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "" @@ -979,7 +979,7 @@ msgid "User's Product" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1029,7 +1029,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1155,8 +1155,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1358,7 +1358,7 @@ msgid "Today's Closed Cashbox" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1642,7 +1642,7 @@ msgid "Number of Transaction" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1813,7 +1813,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1976,7 +1976,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1984,7 +1984,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Нет прейскуранта!" @@ -2036,7 +2036,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2759,7 +2759,7 @@ msgid "Pos Lines" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2772,7 +2772,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3083,15 +3083,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3185,13 +3187,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3226,7 +3228,7 @@ msgid "Journal Entry" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3257,7 +3259,7 @@ msgid "Supplier Invoice" msgstr "Счета поставщиков" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3336,7 +3338,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3377,7 +3379,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3493,7 +3495,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3537,7 +3539,7 @@ msgid "PRO-FORMA" msgstr "Проформа" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "" @@ -3589,7 +3591,7 @@ msgid "Print Receipt" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4130,6 +4132,7 @@ msgstr "" #~ msgid "Other" #~ msgstr "Прочие" +#, python-format #~ msgid "Close" #~ msgstr "Закрыть" diff --git a/addons/point_of_sale/i18n/sl.po b/addons/point_of_sale/i18n/sl.po index e4b8a31dd1a..73f981d29a7 100644 --- a/addons/point_of_sale/i18n/sl.po +++ b/addons/point_of_sale/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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:58+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -131,7 +131,7 @@ msgid "Red grapefruit" msgstr "Red grapefruit" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -184,8 +184,8 @@ msgid "Reference" msgstr "Sklic" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -222,7 +222,7 @@ msgid "Help needed" msgstr "Potrebna je pomoč" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "Napaka v nastavitvah" @@ -315,7 +315,7 @@ msgid "Disc.(%)" msgstr "Popust (%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "Prosim določite konto prihodkov za ta izdelek: \"%s\" (id:%d)." @@ -435,7 +435,7 @@ msgid "Fanta Orange 33cl" msgstr "Fanta Orange 33cl" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -446,7 +446,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "napaka!" @@ -609,7 +609,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Izdan račun" @@ -979,7 +979,7 @@ msgid "User's Product" msgstr "Artikli uporabnika" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1031,7 +1031,7 @@ msgstr "Coca-Cola Light Lemon 50cl" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1157,8 +1157,8 @@ msgstr "2L Evian" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1360,7 +1360,7 @@ msgid "Today's Closed Cashbox" msgstr "Današna zaprta blagajna" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1644,7 +1644,7 @@ msgid "Number of Transaction" msgstr "Številka transakcije" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1815,7 +1815,7 @@ msgid "Difference" msgstr "Razlika" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1978,7 +1978,7 @@ msgid "Salespeople" msgstr "Prodajalci" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1986,7 +1986,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Ni cenika!" @@ -2038,7 +2038,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2761,7 +2761,7 @@ msgid "Pos Lines" msgstr "POS postavke" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2774,7 +2774,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3085,15 +3085,17 @@ msgstr "Boni Oranges" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3187,13 +3189,13 @@ msgid "Chaudfontaine 1.5l" msgstr "Chaudfontaine 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3228,7 +3230,7 @@ msgid "Journal Entry" msgstr "Temeljnica" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3259,7 +3261,7 @@ msgid "Supplier Invoice" msgstr "Račun dobavitelja" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3338,7 +3340,7 @@ msgid "Coca-Cola Regular 1L" msgstr "Coca-Cola Regular 1L" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3379,7 +3381,7 @@ msgid "Spa Barisart 1.5l" msgstr "Spa Barisart 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3495,7 +3497,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3539,7 +3541,7 @@ msgid "PRO-FORMA" msgstr "Predračun" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Prosim vnesite strankao za to prodajo." @@ -3591,7 +3593,7 @@ msgid "Print Receipt" msgstr "Natisni Račun" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4156,6 +4158,7 @@ msgstr "Naročila" #~ msgid "Other" #~ msgstr "Ostalo" +#, python-format #~ msgid "Close" #~ msgstr "Zapri" diff --git a/addons/point_of_sale/i18n/sq.po b/addons/point_of_sale/i18n/sq.po index 5a1d3a4c679..59198cf5382 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-16 05:05+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:57+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -132,7 +132,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -185,8 +185,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -223,7 +223,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -316,7 +316,7 @@ msgid "Disc.(%)" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -436,7 +436,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -447,7 +447,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -610,7 +610,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "" @@ -980,7 +980,7 @@ msgid "User's Product" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1030,7 +1030,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1156,8 +1156,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1359,7 +1359,7 @@ msgid "Today's Closed Cashbox" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1643,7 +1643,7 @@ msgid "Number of Transaction" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1814,7 +1814,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1977,7 +1977,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1985,7 +1985,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "" @@ -2037,7 +2037,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2760,7 +2760,7 @@ msgid "Pos Lines" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2773,7 +2773,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3084,15 +3084,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3186,13 +3188,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3227,7 +3229,7 @@ msgid "Journal Entry" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3258,7 +3260,7 @@ msgid "Supplier Invoice" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3337,7 +3339,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3378,7 +3380,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3494,7 +3496,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3538,7 +3540,7 @@ msgid "PRO-FORMA" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "" @@ -3590,7 +3592,7 @@ msgid "Print Receipt" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" diff --git a/addons/point_of_sale/i18n/sr.po b/addons/point_of_sale/i18n/sr.po index 5663b23b6b1..4ba13b78a0d 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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:58+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -132,7 +132,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -185,8 +185,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -223,7 +223,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -316,7 +316,7 @@ msgid "Disc.(%)" msgstr "Popust(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -436,7 +436,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -447,7 +447,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -610,7 +610,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "" @@ -980,7 +980,7 @@ msgid "User's Product" msgstr "Korisnicki Proizvod" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1030,7 +1030,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1156,8 +1156,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1359,7 +1359,7 @@ msgid "Today's Closed Cashbox" msgstr "Danasnje zatvorene Kase" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1643,7 +1643,7 @@ msgid "Number of Transaction" msgstr "Broj Transakcija" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1814,7 +1814,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1977,7 +1977,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1985,7 +1985,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Nema Cenovnika !" @@ -2037,7 +2037,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2760,7 +2760,7 @@ msgid "Pos Lines" msgstr "POS Linije" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2773,7 +2773,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3084,15 +3084,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3186,13 +3188,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3227,7 +3229,7 @@ msgid "Journal Entry" msgstr "Sadrzaj dnevnika" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3258,7 +3260,7 @@ msgid "Supplier Invoice" msgstr "Faktura Dobavljaca" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3337,7 +3339,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3378,7 +3380,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3494,7 +3496,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3538,7 +3540,7 @@ msgid "PRO-FORMA" msgstr "Predračun" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Molim postavi partnera za prodaju" @@ -3590,7 +3592,7 @@ msgid "Print Receipt" msgstr "Stampa Racuna" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4128,6 +4130,7 @@ msgstr "" #~ msgid "Pos Payment" #~ msgstr "POS Isplate" +#, python-format #~ msgid "Close" #~ msgstr "Zatvori" diff --git a/addons/point_of_sale/i18n/sr@latin.po b/addons/point_of_sale/i18n/sr@latin.po index 37270417dda..327380f1470 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-16 05:07+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:59+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -132,7 +132,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -185,8 +185,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -223,7 +223,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -316,7 +316,7 @@ msgid "Disc.(%)" msgstr "Popust(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -436,7 +436,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -447,7 +447,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -610,7 +610,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "" @@ -980,7 +980,7 @@ msgid "User's Product" msgstr "Korisnicki Proizvod" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1030,7 +1030,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1156,8 +1156,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1359,7 +1359,7 @@ msgid "Today's Closed Cashbox" msgstr "Danasnje zatvorene Kase" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1643,7 +1643,7 @@ msgid "Number of Transaction" msgstr "Broj Transakcija" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1814,7 +1814,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1977,7 +1977,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1985,7 +1985,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Nema Cenovnika !" @@ -2037,7 +2037,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2760,7 +2760,7 @@ msgid "Pos Lines" msgstr "POS Linije" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2773,7 +2773,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3084,15 +3084,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3186,13 +3188,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3227,7 +3229,7 @@ msgid "Journal Entry" msgstr "Sadrzaj dnevnika" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3258,7 +3260,7 @@ msgid "Supplier Invoice" msgstr "Faktura Dobavljaca" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3337,7 +3339,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3378,7 +3380,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3494,7 +3496,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3538,7 +3540,7 @@ msgid "PRO-FORMA" msgstr "Predračun" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Molim postavi partnera za prodaju" @@ -3590,7 +3592,7 @@ msgid "Print Receipt" msgstr "Stampa Racuna" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4453,6 +4455,7 @@ msgstr "" #~ msgid "Error" #~ msgstr "Greska" +#, python-format #~ msgid "Close" #~ msgstr "Zatvori" diff --git a/addons/point_of_sale/i18n/sv.po b/addons/point_of_sale/i18n/sv.po index b41dab8917a..62d08140616 100644 --- a/addons/point_of_sale/i18n/sv.po +++ b/addons/point_of_sale/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-16 05:06+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:58+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -131,7 +131,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -184,8 +184,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -222,7 +222,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -315,7 +315,7 @@ msgid "Disc.(%)" msgstr "Rab.(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -435,7 +435,7 @@ msgid "Fanta Orange 33cl" msgstr "Fanta Orange 33cl" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -446,7 +446,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -609,7 +609,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Kundfaktura" @@ -979,7 +979,7 @@ msgid "User's Product" msgstr "Användarens Produkt" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1031,7 +1031,7 @@ msgstr "Coca-Cola Light Lemon 50cl" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1157,8 +1157,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1362,7 +1362,7 @@ msgid "Today's Closed Cashbox" msgstr "Dagskassa" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1646,7 +1646,7 @@ msgid "Number of Transaction" msgstr "Antal transkationer" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1817,7 +1817,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "Kan ej tas bort!" @@ -1982,7 +1982,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1990,7 +1990,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "Ingen prislista !" @@ -2042,7 +2042,7 @@ msgid "No Cash Register Defined !" msgstr "Ingen kassaregister Definierat!" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2768,7 +2768,7 @@ msgid "Pos Lines" msgstr "Kassarader" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2781,7 +2781,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3092,15 +3092,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3194,13 +3196,13 @@ msgid "Chaudfontaine 1.5l" msgstr "Chaudfontaine 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "För att ta bort en försäljning måste den vara ny eller annulleras." @@ -3237,7 +3239,7 @@ msgid "Journal Entry" msgstr "Journalrad" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3268,7 +3270,7 @@ msgid "Supplier Invoice" msgstr "Leverantörsfaktura" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3347,7 +3349,7 @@ msgid "Coca-Cola Regular 1L" msgstr "Coca-Cola Regular 1L" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "Kan inte avbryta plockning." @@ -3388,7 +3390,7 @@ msgid "Spa Barisart 1.5l" msgstr "Spa Barisart 1.5l" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3504,7 +3506,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3548,7 +3550,7 @@ msgid "PRO-FORMA" msgstr "PRO-FORMA" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "Välj en kund för försäljningen" @@ -3600,7 +3602,7 @@ msgid "Print Receipt" msgstr "Skriv ut kvitto" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" @@ -4220,6 +4222,7 @@ msgstr "" #~ msgid "Add product" #~ msgstr "Lägg till produkt" +#, python-format #~ msgid "Close" #~ msgstr "Stäng" @@ -4601,12 +4604,15 @@ msgstr "" #~ msgid "pending orders" #~ msgstr "väntande order" +#, python-format #~ msgid "Print" #~ msgstr "Skriv ut" +#, python-format #~ msgid "Validate" #~ msgstr "Godkänn" +#, python-format #~ msgid "Next Order" #~ msgstr "Nästa Order" diff --git a/addons/point_of_sale/i18n/tlh.po b/addons/point_of_sale/i18n/tlh.po index 015093cf0ee..911e5735c71 100644 --- a/addons/point_of_sale/i18n/tlh.po +++ b/addons/point_of_sale/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-16 05:07+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:58+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -131,7 +131,7 @@ msgid "Red grapefruit" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" msgstr "" @@ -184,8 +184,8 @@ msgid "Reference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -222,7 +222,7 @@ msgid "Help needed" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "" @@ -315,7 +315,7 @@ msgid "Disc.(%)" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." msgstr "" @@ -435,7 +435,7 @@ msgid "Fanta Orange 33cl" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -446,7 +446,7 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "" @@ -609,7 +609,7 @@ msgid "" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "" @@ -979,7 +979,7 @@ msgid "User's Product" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1029,7 +1029,7 @@ msgstr "" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1155,8 +1155,8 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "" @@ -1358,7 +1358,7 @@ msgid "Today's Closed Cashbox" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" msgstr "" @@ -1642,7 +1642,7 @@ msgid "Number of Transaction" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " @@ -1813,7 +1813,7 @@ msgid "Difference" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "" @@ -1976,7 +1976,7 @@ msgid "Salespeople" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format @@ -1984,7 +1984,7 @@ msgid "You have to open at least one cashbox." msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "" @@ -2036,7 +2036,7 @@ msgid "No Cash Register Defined !" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." @@ -2759,7 +2759,7 @@ msgid "Pos Lines" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:413 +#: code:addons/point_of_sale/point_of_sale.py:416 #, python-format msgid "Point of Sale Profit" msgstr "" @@ -2772,7 +2772,7 @@ msgid "Please wait, a cashier is on the way" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_session_opening.py:68 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:67 #: field:pos.box.entries,session_id:0 #: view:pos.order:0 #: field:pos.order,session_id:0 @@ -3083,15 +3083,17 @@ msgstr "" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:300 #: code:addons/point_of_sale/point_of_sale.py:409 -#: code:addons/point_of_sale/point_of_sale.py:419 -#: code:addons/point_of_sale/point_of_sale.py:457 -#: code:addons/point_of_sale/point_of_sale.py:712 -#: code:addons/point_of_sale/point_of_sale.py:756 -#: code:addons/point_of_sale/point_of_sale.py:818 -#: code:addons/point_of_sale/point_of_sale.py:897 -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:412 +#: code:addons/point_of_sale/point_of_sale.py:422 +#: code:addons/point_of_sale/point_of_sale.py:459 +#: code:addons/point_of_sale/point_of_sale.py:536 +#: code:addons/point_of_sale/point_of_sale.py:733 +#: code:addons/point_of_sale/point_of_sale.py:777 +#: code:addons/point_of_sale/point_of_sale.py:839 +#: code:addons/point_of_sale/point_of_sale.py:920 +#: code:addons/point_of_sale/point_of_sale.py:1031 #: code:addons/point_of_sale/report/pos_invoice.py:46 -#: code:addons/point_of_sale/wizard/pos_box.py:23 +#: code:addons/point_of_sale/wizard/pos_box.py:22 #: code:addons/point_of_sale/wizard/pos_box_entries.py:46 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_entries.py:123 @@ -3185,13 +3187,13 @@ msgid "Chaudfontaine 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1069 +#: code:addons/point_of_sale/point_of_sale.py:1096 #, python-format msgid "Trade Receivables" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "In order to delete a sale, it must be new or cancelled." msgstr "" @@ -3226,7 +3228,7 @@ msgid "Journal Entry" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:736 +#: code:addons/point_of_sale/point_of_sale.py:757 #, python-format msgid "There is no receivable account defined to make payment." msgstr "" @@ -3257,7 +3259,7 @@ msgid "Supplier Invoice" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:458 +#: code:addons/point_of_sale/point_of_sale.py:460 #, python-format msgid "" "You cannot confirm all orders of this session, because they have not the " @@ -3336,7 +3338,7 @@ msgid "Coca-Cola Regular 1L" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:712 +#: code:addons/point_of_sale/point_of_sale.py:733 #, python-format msgid "Unable to cancel the picking." msgstr "" @@ -3377,7 +3379,7 @@ msgid "Spa Barisart 1.5l" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:789 +#: code:addons/point_of_sale/point_of_sale.py:810 #: view:pos.order:0 #, python-format msgid "Return Products" @@ -3493,7 +3495,7 @@ msgid "Default Point of Sale" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/wizard/pos_box.py:24 +#: code:addons/point_of_sale/wizard/pos_box.py:23 #, python-format msgid "There is no cash register for this PoS Session" msgstr "" @@ -3537,7 +3539,7 @@ msgid "PRO-FORMA" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:818 +#: code:addons/point_of_sale/point_of_sale.py:839 #, python-format msgid "Please provide a partner for the sale." msgstr "" @@ -3589,7 +3591,7 @@ msgid "Print Receipt" msgstr "" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:417 +#: code:addons/point_of_sale/point_of_sale.py:420 #, python-format msgid "Point of Sale Loss" msgstr "" diff --git a/addons/point_of_sale/i18n/tr.po b/addons/point_of_sale/i18n/tr.po index dc8caeb90dd..b22f5f516a9 100644 --- a/addons/point_of_sale/i18n/tr.po +++ b/addons/point_of_sale/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-16 05:07+0000\n" -"X-Generator: Launchpad (build 16532)\n" +"X-Launchpad-Export-Date: 2013-09-03 04:58+0000\n" +"X-Generator: Launchpad (build 16753)\n" #. module: point_of_sale #: field:report.transaction.pos,product_nb:0 @@ -42,11 +42,24 @@ msgid "" "

\n" " " msgstr "" +"

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

\n" +" Kategoriler aracılığıyla ürünlerini göz atmak için " +"kullanılır\n" +" dokunmatik ekran arayüzü.\n" +"

\n" +" Eğer kategori bir fotoğraf, düzenini koyarsanız\n" +" dokunmatik ekran arayüzü otomatik olacak. Biz " +"önermeyeceğizyükleme\n" +" Küçük (1024x768) ekranlar için kategoriler bir fotoğraf.\n" +"

\n" +" " #. module: point_of_sale #: view:pos.receipt:0 msgid "Print the Receipt of the Sale" -msgstr "Satışın fişini yazdır" +msgstr "Satışın Fişini Yazdır" #. module: point_of_sale #: field:pos.session,cash_register_balance_end:0 @@ -62,7 +75,7 @@ msgstr "Bugün" #. module: point_of_sale #: field:pos.config,iface_electronic_scale:0 msgid "Electronic Scale Interface" -msgstr "Elektronik Kantar Arayüz" +msgstr "Elektronik Tartı Arayüz" #. module: point_of_sale #: model:pos.category,name:point_of_sale.plain_water @@ -79,7 +92,7 @@ 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 @@ -102,7 +115,7 @@ msgstr "Satış Detayları" #. module: point_of_sale #: constraint:pos.config:0 msgid "You cannot have two cash controls in one Point Of Sale !" -msgstr "Sen bir SatışNoktası iki nakiti kontrol edemezsin !" +msgstr "Sen bir SatışNoktasından iki nakiti kontrol edemezsin !" #. module: point_of_sale #: field:pos.payment.report.user,user_id:0 @@ -128,13 +141,13 @@ msgstr "Ürün Adı" #. module: point_of_sale #: model:product.template,name:point_of_sale.pamplemousse_rouge_pamplemousse_product_template msgid "Red grapefruit" -msgstr "" +msgstr "Kırmızı greyfurt" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1343 +#: code:addons/point_of_sale/point_of_sale.py:1373 #, python-format msgid "Assign a Custom EAN" -msgstr "EAN Özel atama" +msgstr "EAN Özel Atama" #. module: point_of_sale #: view:pos.session.opening:0 @@ -143,6 +156,9 @@ msgid "" " being able to start selling through the " "touchscreen interface." msgstr "" +"Daha önce, sizin kasa içinde nakit miktarın kontrolu gerekebilir\n" +" ile satış başlatmak mümkün olmanın dokunmatik " +"ekran arayüzü." #. module: point_of_sale #: report:account.statement:0 @@ -184,8 +200,8 @@ msgid "Reference" msgstr "Referans" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1041 -#: code:addons/point_of_sale/point_of_sale.py:1057 +#: code:addons/point_of_sale/point_of_sale.py:1066 +#: code:addons/point_of_sale/point_of_sale.py:1083 #: report:pos.invoice:0 #: report:pos.lines:0 #, python-format @@ -222,7 +238,7 @@ msgid "Help needed" msgstr "Yardım gerekli" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:739 +#: code:addons/point_of_sale/point_of_sale.py:760 #, python-format msgid "Configuration Error!" msgstr "Yapılandırma Hatası!" @@ -277,7 +293,7 @@ msgstr "Toplam indirim" #: code:addons/point_of_sale/static/src/xml/pos.xml:441 #, python-format msgid "Debug Window" -msgstr "" +msgstr "Hata Ayıklama Penceresi" #. module: point_of_sale #. openerp-web @@ -315,10 +331,10 @@ msgid "Disc.(%)" msgstr "İnd.(%)" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1006 +#: code:addons/point_of_sale/point_of_sale.py:1031 #, python-format msgid "Please define income account for this product: \"%s\" (id:%d)." -msgstr "" +msgstr "Lütfen bu ürün için gelir hesabı belirtin: \"%s\" (id:%d)." #. module: point_of_sale #: view:report.pos.order:0 @@ -337,6 +353,9 @@ msgid "" "Check this if this point of sale should open by default in a self checkout " "mode. If unchecked, OpenERP uses the normal cashier mode by default." msgstr "" +"Satış bu noktada kendi kendine çıkış varsayılan olarak açık olmalıdır Bu " +"kontrol edin modu. İşaretlenmezse, OpenERP varsayılan olarak normal kasiyer " +"modunu kullanır." #. module: point_of_sale #: model:ir.actions.report.xml,name:point_of_sale.pos_sales_user @@ -386,7 +405,7 @@ msgstr "Satış Noktanızı Seçin" #: field:report.sales.by.margin.pos,total:0 #: field:report.sales.by.margin.pos.month,total:0 msgid "Margin" -msgstr "Sınır" +msgstr "Marj" #. module: point_of_sale #: field:pos.discount,discount:0 @@ -409,20 +428,20 @@ msgstr "Ödeme İsteği" #. module: point_of_sale #: field:product.product,to_weight:0 msgid "To Weight" -msgstr "" +msgstr "Ağırlık" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:476 #, python-format msgid "Hardware Events" -msgstr "" +msgstr "Donanım Etkinlikler" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:301 #, python-format msgid "You should assign a Point of Sale to your session." -msgstr "oturumuna Satış Nokta atamanız gerekir" +msgstr "Oturumuna Satış Nokta atamanız gerekir" #. module: point_of_sale #: view:pos.order.line:0 @@ -435,7 +454,7 @@ msgid "Fanta Orange 33cl" msgstr "Fanta Orange 33cl" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:420 +#: code:addons/point_of_sale/point_of_sale.py:423 #, python-format msgid "" "Please set your profit and loss accounts on your payment method '%s'. This " @@ -443,10 +462,13 @@ msgid "" "close this session, you can update the 'Closing Cash Control' to avoid any " "difference." msgstr "" +"Ödeme yöntemi '%s' üzerinde kar ve zarar hesapları ayarlayın. bu OpenERP " +"sizin biten bakiye %.2f fark sonrası sağlayacak. karşı Bu oturumu kapatmak, " +"herhangi önlemek için 'Kapanış Nakit Kontrol' güncelleyebilirsinizfark." #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:315 -#: code:addons/point_of_sale/point_of_sale.py:512 +#: code:addons/point_of_sale/point_of_sale.py:514 #, python-format msgid "error!" msgstr "hata!" @@ -462,11 +484,12 @@ msgid "" "Difference between the counted cash control at the closing and the computed " "balance." msgstr "" +"Kapanış nakit kontrolü sayılır ve bilgisayarlı arasındaki fark bakiyesi." #. module: point_of_sale #: view:pos.session.opening:0 msgid ") is \"" -msgstr "" +msgstr ") is \"" #. module: point_of_sale #: model:product.template,name:point_of_sale.Onions_product_template @@ -504,11 +527,14 @@ msgid "" "128x128px image, with aspect ratio preserved. Use this field in form views " "or some kanban views." msgstr "" +"Kategorinin orta boyutlu görüntü. Otomatik olarak korunmuş en boy oranına " +"sahip, bir 128x128px görüntü olarak yeniden boyutlandırılır. Form " +"görünümleri ya da kanban görünümlerinde bu alanı kullanın." #. module: point_of_sale #: view:pos.session.opening:0 msgid "Open Session" -msgstr "Oturum Açma" +msgstr "Oturum Aç" #. module: point_of_sale #: model:ir.ui.menu,name:point_of_sale.menu_point_of_sale @@ -520,12 +546,12 @@ msgstr "Günlük Operasyonlar" #: code:addons/point_of_sale/static/src/xml/pos.xml:42 #, python-format msgid "Google Chrome" -msgstr "" +msgstr "Google Chrome" #. module: point_of_sale #: model:pos.category,name:point_of_sale.sparkling_water msgid "Sparkling Water" -msgstr "Sparkling Water" +msgstr "Sparkling Su" #. module: point_of_sale #: view:account.bank.statement:0 @@ -580,7 +606,7 @@ msgstr "Siparişiniz kasiyer tarafından onay edilmelidir." #. module: point_of_sale #: model:product.template,name:point_of_sale.fanta_orange_50cl_product_template msgid "Fanta Orange 50cl" -msgstr "Fanta Orange 50cl" +msgstr "Fanta Portakal 50cl" #. module: point_of_sale #: field:pos.category,child_id:0 @@ -607,9 +633,24 @@ msgid "" "

\n" " " msgstr "" +"

\n" +" Yeni bir oturum başlatmak için tıklayın.\n" +"

\n" +" Bir oturum sırasında, genellikle, tek bir günlük bir süre " +"olduğunu which\n" +" sen satış noktası üzerinden satmatış Kullanıcı kontrol etmek " +"vardır the\n" +" nakit para birimlerinin başında kaydeder ve biten\n" +" Her oturumun.\n" +"

\n" +" Menü kullanımı ile daha iyi gerektiğini unutmayın Sizin " +"Oturum\n" +" hızla yeni bir oturum açmak için.\n" +"

\n" +" " #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:867 +#: code:addons/point_of_sale/point_of_sale.py:888 #, python-format msgid "Customer Invoice" msgstr "Müşteri Faturası" @@ -620,6 +661,8 @@ msgid "" "You can continue sales from the touchscreen interface by clicking on \"Start " "Selling\" or close the cash register session." msgstr "" +"Sen \"Satış Başlat\" tıklayarak dokunmatik ekran arayüzü satış devam " +"edebilirsiniz veya yazarkasa oturumu kapatın." #. module: point_of_sale #: report:account.statement:0 @@ -652,7 +695,7 @@ msgstr "Özet" #. module: point_of_sale #: model:product.template,name:point_of_sale.lays_naturel_45g_product_template msgid "Lays Natural 45g" -msgstr "" +msgstr "Lays Natural 45g" #. module: point_of_sale #: model:product.template,name:point_of_sale.chaudfontaine_50cl_product_template @@ -693,7 +736,7 @@ msgstr "Net Toplam:" #. module: point_of_sale #: model:ir.actions.client,name:point_of_sale.action_client_pos_menu msgid "Open POS Menu" -msgstr "POS Menüsü Açma" +msgstr "POS Menüsü Aç" #. module: point_of_sale #: report:pos.details_summary:0 @@ -703,19 +746,19 @@ msgstr "Ödeme Biçimi" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_confirm msgid "Post POS Journal Entries" -msgstr "İşleme POS Yevmiye Girişlerini" +msgstr "POS Yevmiye Girişlerini İşle" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:457 #, python-format msgid "Barcode Scanner" -msgstr "" +msgstr "Barkod Okuyucu" #. module: point_of_sale #: model:product.template,name:point_of_sale.pomme_granny_smith_product_template msgid "Granny Smith apples" -msgstr "" +msgstr "Granny Smith elma" #. module: point_of_sale #: help:product.product,expense_pdt:0 @@ -723,6 +766,9 @@ msgid "" "Check if, this is a product you can use to take cash from a statement for " "the point of sale backend, example: money lost, transfer to bank, etc." msgstr "" +"Olmadığını kontrol edin, bu sizin için bir açıklama nakit almak için " +"kullanabileceğiniz bir üründür satış noktası arka uç, örnek noktası: para " +"kaybetti, banka, vb transfer." #. module: point_of_sale #: view:report.pos.order:0 @@ -739,6 +785,9 @@ msgid "" "use\n" " a modern browser like" msgstr "" +"Satış Noktası Microsoft Internet Explorer tarafından desteklenmiyor. lütfen " +"use\n" +" Firefox gibi modern bir tarayıcı seçin" #. module: point_of_sale #: view:pos.session.opening:0 @@ -766,7 +815,7 @@ msgstr "Pizza" #. module: point_of_sale #: view:pos.session:0 msgid "= Theoretical Balance" -msgstr "" +msgstr "= Teorik Bakiye" #. module: point_of_sale #: code:addons/point_of_sale/wizard/pos_return.py:85 @@ -807,7 +856,7 @@ msgstr "Fiş" #: field:report.sales.by.margin.pos,net_margin_per_qty:0 #: field:report.sales.by.margin.pos.month,net_margin_per_qty:0 msgid "Net margin per Qty" -msgstr "Adet başına net oran" +msgstr "Adet başına net Oran" #. module: point_of_sale #: view:pos.confirm:0 @@ -833,6 +882,8 @@ msgid "" "This field holds the image used as image for the cateogry, limited to " "1024x1024px." msgstr "" +"Bu alanda 1024x1024px sınırlı kategorik için resmi olarak kullanılan görüntü " +"tutar." #. module: point_of_sale #: model:product.template,name:point_of_sale.pepsi_max_50cl_product_template @@ -858,7 +909,7 @@ msgstr "" #. module: point_of_sale #: model:pos.category,name:point_of_sale.rouges_noyau_fruits msgid "Berries" -msgstr "" +msgstr "Meyveler" #. module: point_of_sale #: view:pos.ean_wizard:0 @@ -879,7 +930,7 @@ msgstr "Hata: Geçersiz barkod" #. module: point_of_sale #: model:pos.category,name:point_of_sale.legumes_racine msgid "Root vegetables" -msgstr "" +msgstr "Sebzeler" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.act_pos_open_statement @@ -897,7 +948,7 @@ msgstr "Bitiş Tarihi" #. module: point_of_sale #: model:product.template,name:point_of_sale.pomme_jonagold_product_template msgid "Jonagold apples" -msgstr "" +msgstr "Jonagold elma" #. module: point_of_sale #: view:account.bank.statement:0 @@ -911,7 +962,7 @@ msgstr "Yevmiye" #. module: point_of_sale #: view:pos.session:0 msgid "Statements" -msgstr "Tablolar" +msgstr "Ekstreler" #. module: point_of_sale #: report:pos.details:0 @@ -924,6 +975,8 @@ msgid "" "Check this if you want to group the Journal Items by Product while closing a " "Session" msgstr "" +"Bir Oturum kapatırken Ürün tarafından Yevmiye öğeler gruplandırmak " +"istiyorsanız bu kontrol edin" #. module: point_of_sale #: report:pos.details:0 @@ -934,12 +987,12 @@ msgstr "Toplam ödeme" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_session_opening msgid "pos.session.opening" -msgstr "" +msgstr "pos.session.opening" #. module: point_of_sale #: view:res.users:0 msgid "Edit EAN" -msgstr "" +msgstr "EAN Düzenle" #. module: point_of_sale #: code:addons/point_of_sale/wizard/pos_open_statement.py:80 @@ -960,7 +1013,7 @@ msgstr "Faturalama Yok" #. module: point_of_sale #: model:product.template,name:point_of_sale.lays_pickles_250g_product_template msgid "250g Lays Pickels" -msgstr "" +msgstr "250g Lays Pickels" #. module: point_of_sale #: field:pos.session.opening,pos_session_id:0 @@ -979,7 +1032,7 @@ msgid "User's Product" msgstr "Kullanıcının Ürünleri" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1143 +#: code:addons/point_of_sale/point_of_sale.py:1173 #, python-format msgid "" "You have to select a pricelist in the sale form !\n" @@ -1006,7 +1059,7 @@ msgstr "Spa Reine 33cl" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_discount msgid "Add a Global Discount" -msgstr "Genel iskonto ekle" +msgstr "Genel İskonto Ekle" #. module: point_of_sale #: view:pos.config:0 @@ -1031,7 +1084,7 @@ msgstr "Coca-Cola Light Lemon 50cl" #. module: point_of_sale #. openerp-web -#: code:addons/point_of_sale/point_of_sale.py:518 +#: code:addons/point_of_sale/point_of_sale.py:520 #: code:addons/point_of_sale/static/src/xml/pos.xml:689 #: code:addons/point_of_sale/static/src/xml/pos.xml:744 #, python-format @@ -1041,24 +1094,24 @@ msgstr "dönen" #. module: point_of_sale #: view:product.product:0 msgid "Set a Custom EAN" -msgstr "" +msgstr "EAN Özel Ayarlama" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:235 #, python-format msgid "Remaining:" -msgstr "Kalan:" +msgstr "Bakiye:" #. module: point_of_sale #: model:pos.category,name:point_of_sale.legumes msgid "Fresh vegetables" -msgstr "" +msgstr "Taze sebzeler" #. module: point_of_sale #: view:pos.session:0 msgid "tab of the" -msgstr "" +msgstr "sekmesinde" #. module: point_of_sale #. openerp-web @@ -1077,12 +1130,12 @@ msgstr "Açılış Bakiyesi" #. module: point_of_sale #: model:product.template,name:point_of_sale.lays_naturel_oven_150g_product_template msgid "Oven Baked Lays Natural 150g" -msgstr "" +msgstr "Oven Baked Lays Natural 150g" #. module: point_of_sale #: sql_constraint:pos.session:0 msgid "The name of this POS Session must be unique !" -msgstr "" +msgstr "Bu POS Oturum adı benzersiz olmalıdır!" #. module: point_of_sale #: view:pos.session:0 @@ -1107,7 +1160,7 @@ msgstr "Chimay Bleu 75cl" #. module: point_of_sale #: report:pos.payment.report.user:0 msgid "Payment By User" -msgstr "Kullanıcıya göre ödemeler" +msgstr "Kullanıcı Ödemeleri" #. module: point_of_sale #. openerp-web @@ -1142,7 +1195,7 @@ msgstr "(güncelle)" #. module: point_of_sale #: model:product.template,name:point_of_sale.ijsboerke_vanille_2,5l_product_template msgid "IJsboerke Vanilla 2.5L" -msgstr "" +msgstr "IJsboerke Vanilya 2.5L" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_report_pos_details @@ -1153,12 +1206,12 @@ msgstr "Satış Detayları" #. module: point_of_sale #: model:product.template,name:point_of_sale.evian_2l_product_template msgid "2L Evian" -msgstr "" +msgstr "2L Evian" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:373 -#: code:addons/point_of_sale/point_of_sale.py:472 -#: code:addons/point_of_sale/wizard/pos_session_opening.py:34 +#: code:addons/point_of_sale/point_of_sale.py:474 +#: code:addons/point_of_sale/wizard/pos_session_opening.py:33 #, python-format msgid "Start Point Of Sale" msgstr "SatışNoktasını Başlat" @@ -1188,12 +1241,12 @@ msgstr "Toplam satış" #: code:addons/point_of_sale/static/src/xml/pos.xml:741 #, python-format msgid "ABC" -msgstr "" +msgstr "ABC" #. module: point_of_sale #: model:product.template,name:point_of_sale.ijsboerke_dame_blanche_2,5l_product_template msgid "IJsboerke 2.5L White Lady" -msgstr "" +msgstr "IJsboerke 2.5L White Lady" #. module: point_of_sale #: field:pos.order,lines:0 @@ -1215,14 +1268,14 @@ msgstr "Chaudfontaine Petillante 50cl" #: code:addons/point_of_sale/static/src/xml/pos.xml:485 #, python-format msgid "Read Weighting Scale" -msgstr "" +msgstr "Ağırlık Ölçü Okuma" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:426 #, python-format msgid "0.00 €" -msgstr "" +msgstr "0.00 €" #. module: point_of_sale #: field:pos.order.line,create_date:0 @@ -1240,7 +1293,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 @@ -1275,12 +1328,12 @@ msgstr "Satışlarım" #. module: point_of_sale #: view:pos.config:0 msgid "Set to Deprecated" -msgstr "" +msgstr "Kaldırılan Ayarlayın" #. module: point_of_sale #: model:product.template,name:point_of_sale.limon_product_template msgid "Stringers" -msgstr "" +msgstr "Stringers" #. module: point_of_sale #: field:pos.order,pricelist_id:0 @@ -1311,6 +1364,8 @@ msgid "" "This sequence is automatically created by OpenERP but you can change it to " "customize the reference numbers of your orders." msgstr "" +"Bu sıralama otomatik OpenERP tarafından oluşturulur ancak siparişlerin " +"referans numaraları özelleştirmek için değiştirebilirsiniz." #. module: point_of_sale #. openerp-web @@ -1327,7 +1382,7 @@ msgstr "Orana göre aylık satışlar" #. module: point_of_sale #: model:product.template,name:point_of_sale.poivron_jaunes_product_template msgid "Yellow Peppers" -msgstr "" +msgstr "Sarı Biberler" #. module: point_of_sale #: view:pos.order:0 @@ -1347,14 +1402,14 @@ msgstr "Stella Artois 33cl" #. module: point_of_sale #: model:product.template,name:point_of_sale.lays_naturel_300g_product_template msgid "Lays Natural XXL 300g" -msgstr "" +msgstr "Lays Natural XXL 300g" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:479 #, python-format msgid "Scan Item Unrecognized" -msgstr "" +msgstr "Tarama Ürünü Tanınmayan" #. module: point_of_sale #: report:all.closed.cashbox.of.the.day:0 @@ -1362,10 +1417,10 @@ msgid "Today's Closed Cashbox" msgstr "Günün Kapanmış Kasaları" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:897 +#: code:addons/point_of_sale/point_of_sale.py:920 #, python-format msgid "Selected orders do not have the same session!" -msgstr "" +msgstr "Seçilen siparişler aynı seansta yok!" #. module: point_of_sale #: report:pos.invoice:0 @@ -1375,7 +1430,7 @@ msgstr "Taslak Fatura" #. module: point_of_sale #: model:product.template,name:point_of_sale.lays_paprika_oven_150g_product_template msgid "Oven Baked Lays Paprika 150g" -msgstr "" +msgstr "Oven Baked Lays Paprika 150g" #. module: point_of_sale #: report:pos.invoice:0 @@ -1417,7 +1472,7 @@ msgstr "Vergiler :" #: code:addons/point_of_sale/static/src/xml/pos.xml:271 #, python-format msgid "Thank you for shopping with us." -msgstr "" +msgstr "Bizimle alışveriş ettiğiniz için teşekkür ederiz." #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_light_2l_product_template @@ -1438,7 +1493,7 @@ msgstr "Ürün Kategorileri" #. module: point_of_sale #: help:pos.config,journal_id:0 msgid "Accounting journal used to post sales entries." -msgstr "" +msgstr "Muhasebe Yevmiye satış kayıtları göndermek için kullanılır." #. module: point_of_sale #: field:report.transaction.pos,disc:0 @@ -1472,7 +1527,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 @@ -1501,7 +1556,7 @@ msgstr "bilinmeyen" #. module: point_of_sale #: field:product.product,income_pdt:0 msgid "Point of Sale Cash In" -msgstr "SatışNoktası Nakit olarak" +msgstr "SatışNoktası Nakit Olarak" #. module: point_of_sale #. openerp-web @@ -1548,7 +1603,7 @@ msgstr "Kg" #. module: point_of_sale #: field:product.product,available_in_pos:0 msgid "Available in the Point of Sale" -msgstr "" +msgstr "Satış Noktası Mevcuttur" #. module: point_of_sale #: selection:pos.config,state:0 @@ -1558,14 +1613,14 @@ msgstr "Kaldırılmış" #. module: point_of_sale #: model:product.template,name:point_of_sale.coca_light_decaf_33cl_product_template msgid "Coca-Cola Light 33cl Decaf" -msgstr "" +msgstr "Coca-Cola Light 33cl Decaf" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:338 #, python-format msgid "The scanned product was not recognized" -msgstr "" +msgstr "Taranan ürün tanınmadı" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_report_transaction_pos @@ -1591,7 +1646,7 @@ msgstr "Boon Framboise 37.5cl" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_config msgid "pos.config" -msgstr "" +msgstr "pos.config" #. module: point_of_sale #: view:pos.ean_wizard:0 @@ -1599,11 +1654,13 @@ msgid "" "Enter a reference, it will be converted\n" " automatically to a valid EAN number." msgstr "" +"Bir referans girin, bu dönüştürülür \n" +" otomatik olarak EAN geçerli bir sayı için." #. module: point_of_sale #: field:product.product,expense_pdt:0 msgid "Point of Sale Cash Out" -msgstr "" +msgstr "Satış Noktası Nakit Çıkış" #. module: point_of_sale #: selection:report.pos.order,month:0 @@ -1615,12 +1672,12 @@ msgstr "Kasım" #: code:addons/point_of_sale/static/src/xml/pos.xml:267 #, python-format msgid "Please scan an item or your member card" -msgstr "" +msgstr "Lütfen bir ürün veya üye kartı tarama" #. module: point_of_sale #: model:product.template,name:point_of_sale.poivron_verts_product_template msgid "Green Peppers" -msgstr "" +msgstr "Yeşil Biber" #. module: point_of_sale #: model:product.template,name:point_of_sale.timmermans_faro_37,5cl_product_template @@ -1634,11 +1691,13 @@ msgid "" "Your ending balance is too different from the theorical cash closing (%.2f), " "the maximum allowed is: %.2f. You can contact your manager to force it." msgstr "" +"Sizin biten bakiyesi teorik nakit kapanış (%.2f), çok farklı izin verilen " +"maksimum: %.2f. Bunu zorlamak için yöneticiniz irtibata geçebilirsiniz." #. module: point_of_sale #: view:pos.session:0 msgid "Validate Closing & Post Entries" -msgstr "" +msgstr "Kapanış ve İşlem Girişler Doğrulama" #. module: point_of_sale #: field:report.transaction.pos,no_trans:0 @@ -1646,12 +1705,14 @@ msgid "Number of Transaction" msgstr "İşlem Numarası" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:738 +#: code:addons/point_of_sale/point_of_sale.py:759 #, python-format msgid "" "There is no receivable account defined to make payment for the partner: " "\"%s\" (id:%d)." msgstr "" +"Partner için ödeme yapmak için tanımlanmış bir alacak hesabı yok: \"%s\" " +"(id:%d)." #. module: point_of_sale #: view:pos.config:0 @@ -1681,7 +1742,7 @@ msgstr "İptal" #: code:addons/point_of_sale/static/src/xml/pos.xml:296 #, python-format msgid "Please put your product on the scale" -msgstr "" +msgstr "Tartıya ürün koyunuz" #. module: point_of_sale #: model:ir.actions.report.xml,name:point_of_sale.pos_details_summary @@ -1691,7 +1752,7 @@ msgstr "Satış (Özetleri)" #. module: point_of_sale #: model:product.template,name:point_of_sale.nectarine_product_template msgid "Peach" -msgstr "" +msgstr "Şeftali" #. module: point_of_sale #: model:product.template,name:point_of_sale.timmermans_kriek_37,5cl_product_template @@ -1701,7 +1762,7 @@ msgstr "Timmermans Kriek 37.5cl" #. module: point_of_sale #: field:pos.config,sequence_id:0 msgid "Order IDs Sequence" -msgstr "" +msgstr "Sipariş ID Sıralaması" #. module: point_of_sale #: report:pos.invoice:0 @@ -1756,7 +1817,7 @@ msgstr "Yazar Kasalar" #. module: point_of_sale #: help:pos.session,cash_register_balance_end:0 msgid "Computed with the initial cash control and the sum of all payments." -msgstr "" +msgstr "İlk nakit kontrolü ve tüm ödemeler toplamı ile hesaplanmıştır." #. module: point_of_sale #. openerp-web @@ -1817,7 +1878,7 @@ msgid "Difference" msgstr "Farkı" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:529 +#: code:addons/point_of_sale/point_of_sale.py:549 #, python-format msgid "Unable to Delete !" msgstr "Silinemiyor !" @@ -1875,6 +1936,8 @@ msgid "" "complete\n" " your purchase" msgstr "" +"Okuyucu kartınızı takın ve talimatları uygulayın tamamlama\n" +" satınalman" #. module: point_of_sale #: help:product.product,income_pdt:0 @@ -1882,16 +1945,18 @@ msgid "" "Check if, this is a product you can use to put cash into a statement for the " "point of sale backend." msgstr "" +"Olmadığını kontrol edin, bu sizin için bir açıklama içine para koymak için " +"kullanabileceğiniz bir üründür satış noktası arka uçu." #. module: point_of_sale #: model:product.template,name:point_of_sale.ijsboerke_moka_2,5l_product_template msgid "IJsboerke Mocha 2.5L" -msgstr "" +msgstr "IJsboerke Mocha 2.5L" #. module: point_of_sale #: field:pos.session,cash_control:0 msgid "Has Cash Control" -msgstr "" +msgstr "Nakit Kontrol Var" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.action_report_pos_order_all @@ -1913,6 +1978,8 @@ msgid "" "Unable to open the session. You have to assign a sale journal to your point " "of sale." msgstr "" +"Oturum açılamıyor. Satış noktasına bir satış yevmiyesi atamak " +"zorundasınız.satış olarak." #. module: point_of_sale #: view:report.pos.order:0 @@ -1938,7 +2005,7 @@ msgstr "Yazdırma Tarihi" #. module: point_of_sale #: model:product.template,name:point_of_sale.poireaux_poireaux_product_template msgid "Leeks" -msgstr "" +msgstr "Pırasa" #. module: point_of_sale #: help:pos.category,sequence:0 @@ -1964,7 +2031,7 @@ msgstr "Mağza:" #. module: point_of_sale #: field:account.journal,self_checkout_payment_method:0 msgid "Self Checkout Payment Method" -msgstr "" +msgstr "Kendi Ödeme Ödeme Yöntemi" #. module: point_of_sale #: view:pos.order:0 @@ -1974,7 +2041,7 @@ msgstr "POS Siparişleri" #. module: point_of_sale #: model:ir.actions.report.xml,name:point_of_sale.all_closed_cashbox_of_the_day msgid "All Closed CashBox" -msgstr "Tüm kapalı kasalar" +msgstr "Tüm Kapalı Kasalar" #. module: point_of_sale #: field:pos.details,user_ids:0 @@ -1982,15 +2049,15 @@ msgid "Salespeople" msgstr "Satışelamanı" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:756 +#: code:addons/point_of_sale/point_of_sale.py:777 #: code:addons/point_of_sale/wizard/pos_box_entries.py:118 #: code:addons/point_of_sale/wizard/pos_box_out.py:91 #, python-format msgid "You have to open at least one cashbox." -msgstr "" +msgstr "En az bir kasa açmak zorundasın." #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:1142 +#: code:addons/point_of_sale/point_of_sale.py:1172 #, python-format msgid "No Pricelist !" msgstr "FiyatListesi yok!" @@ -1998,19 +2065,19 @@ msgstr "FiyatListesi yok!" #. module: point_of_sale #: model:product.template,name:point_of_sale.poivron_rouges_product_template msgid "Red Pepper" -msgstr "" +msgstr "Kırmızı Biber" #. module: point_of_sale #. openerp-web #: code:addons/point_of_sale/static/src/xml/pos.xml:677 #, python-format msgid "caps lock" -msgstr "" +msgstr "büyük harf kilidi" #. module: point_of_sale #: model:product.template,name:point_of_sale.grisette_cerise_25cl_product_template msgid "Grisette Cherry 25cl" -msgstr "" +msgstr "Grisette Cherry 25cl" #. module: point_of_sale #: report:pos.invoice:0 @@ -2023,7 +2090,7 @@ msgstr "Matrah" #: code:addons/point_of_sale/static/src/xml/pos.xml:742 #, python-format msgid " " -msgstr "" +msgstr " " #. module: point_of_sale #: model:pos.category,name:point_of_sale.categ_others @@ -2033,7 +2100,7 @@ msgstr "Diğerleri" #. module: point_of_sale #: model:pos.category,name:point_of_sale.autres_legumes_frais msgid "Other fresh vegetables" -msgstr "" +msgstr "Diğer taze sebze" #. module: point_of_sale #: code:addons/point_of_sale/wizard/pos_open_statement.py:49 @@ -2042,16 +2109,18 @@ msgid "No Cash Register Defined !" msgstr "Hiç Nakit Kasası Tanımlanmamış!" #. module: point_of_sale -#: code:addons/point_of_sale/point_of_sale.py:513 +#: code:addons/point_of_sale/point_of_sale.py:515 #, python-format msgid "" "No cash statement found for this session. Unable to record returned cash." msgstr "" +"Bu oturum için nakit açıklamada bulunamadı. Geri nakit kaydetmek için " +"açılamıyor." #. module: point_of_sale #: model:pos.category,name:point_of_sale.oignons_ail_echalotes msgid "Onions / Garlic / Shallots" -msgstr "" +msgstr "Soğan / Sarımsak / Arpacık" #. module: point_of_sale #: model:product.template,name:point_of_sale.evian_50cl_product_template @@ -2087,7 +2156,7 @@ msgstr "Satış Satırı" #: code:addons/point_of_sale/static/src/xml/pos.xml:741 #, python-format msgid "123" -msgstr "" +msgstr "123" #. module: point_of_sale #: model:ir.actions.act_window,name:point_of_sale.product_normal_action @@ -2105,17 +2174,17 @@ msgstr "Dr. Oetker Ristorante Quattro Formaggi" #. module: point_of_sale #: model:product.template,name:point_of_sale.croky_naturel_45g_product_template msgid "Croky Natural 45g" -msgstr "" +msgstr "Croky Natural 45g" #. module: point_of_sale #: model:product.template,name:point_of_sale.tomate_en_grappe_product_template msgid "In Cluster Tomatoes" -msgstr "" +msgstr "Domates Öbekleri" #. module: point_of_sale #: model:ir.actions.client,name:point_of_sale.action_pos_pos msgid "Start Point of Sale" -msgstr "" +msgstr "Satış Noktası Başlat" #. module: point_of_sale #. openerp-web @@ -2144,19 +2213,19 @@ msgstr "Sipariş Tarihi" #. module: point_of_sale #: view:pos.order:0 msgid "Point of Sale Orders" -msgstr "" +msgstr "Satış Noktası Siparişi" #. module: point_of_sale #: model:product.template,name:point_of_sale.spa_et_fruit_50cl_product_template msgid "Spa Fruit and Orange 50cl" -msgstr "" +msgstr "Spa Meyve ve Turuncu 50 cl" #. module: point_of_sale #: view:pos.config:0 #: field:pos.config,journal_ids:0 #: field:pos.session,journal_ids:0 msgid "Available Payment Methods" -msgstr "" +msgstr "Ödeme Yöntemleri" #. module: point_of_sale #: model:ir.actions.act_window,help:point_of_sale.product_normal_action @@ -2176,6 +2245,18 @@ msgid "" "

\n" " " msgstr "" +"

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

\n" +" Satmak için Ürün tanımlamalısınız\n" +" satış notası arayüzünde.\n" +"

\n" +" Fiyat ve satış noktasını ayarlamayı unutmayınkategori\n" +" o görünmelidir. Bir ürünün herhangi bir noktası varsa satış\n" +" kategori,sen satış noktası üzerinden satmaman değil\n" +" arayüz.\n" +"

\n" +" " #. module: point_of_sale #: view:pos.order:0 @@ -2208,7 +2289,7 @@ msgstr "Kaynak" #: code:addons/point_of_sale/static/src/xml/pos.xml:461 #, python-format msgid "Admin Badge" -msgstr "" +msgstr "Yönetici Rozet" #. module: point_of_sale #: field:pos.make.payment,journal_id:0 @@ -2261,7 +2342,7 @@ msgstr "Su" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_ean_wizard msgid "pos.ean_wizard" -msgstr "" +msgstr "pos.ean_wizard" #. module: point_of_sale #: selection:report.pos.order,month:0 @@ -2284,7 +2365,7 @@ msgstr "Ürün Mik." #. module: point_of_sale #: model:product.template,name:point_of_sale.pomme_golden_perlim_product_template msgid "Golden Apples Perlim" -msgstr "" +msgstr "Altın Elma" #. module: point_of_sale #: code:addons/point_of_sale/point_of_sale.py:100 @@ -2302,7 +2383,7 @@ msgstr "Bekleme Onayı" #. module: point_of_sale #: field:pos.order,nb_print:0 msgid "Number of Print" -msgstr "Yazılacak adet" +msgstr "Yazılacak Adet" #. module: point_of_sale #: model:ir.model,name:point_of_sale.model_pos_make_payment @@ -2326,7 +2407,7 @@ msgstr "Bilinmeyen Ürün" #: code:addons/point_of_sale/static/src/xml/pos.xml:36 #, python-format msgid "" -msgstr "" +msgstr "" #. module: point_of_sale #: model:product.template,name:point_of_sale.jupiler_50cl_product_template @@ -2349,7 +2430,7 @@ msgstr "Coca-Cola Light Lemon 33cl" #: code:addons/point_of_sale/static/src/xml/pos.xml:33 #, python-format msgid "